In [50]:
PROJECT_ROOT_PATH = '../../../..'
TEMP_PATH = PROJECT_ROOT_PATH + '/tmp'
DATA_PATH  = TEMP_PATH + '/suggest/data'
MODEL_PATH = TEMP_PATH + '/suggest/model'
LOG_PATH   = TEMP_PATH + '/suggest/log'

DETECT_TEST_WORDS_PATH = TEMP_PATH + '/detect/label/words.test.tsv'
GT_ERROR_PATH = PROJECT_ROOT_PATH + '/ocrrect-experiment/src/main/resources/mibio-ocr/error.gt.tsv'

TRAIN_TIME_LOG_PATH = LOG_PATH + '/time.model.train.log'

SUGGEST_TRAIN, SUGGEST_TEST = {}, {}
for top in [1, 3, 5, 10, 100]:
    train_paths = []
    for part in range(1, 14):
        path = 'suggest.train.top%d.part%02d.txt' % (top, part)
        train_paths.append(DATA_PATH + '/' + path)
    SUGGEST_TRAIN['top%d' % top] = train_paths
    test_paths = []
    for part in range(1, 5):
        path = 'suggest.test.top%d.part%02d.txt' % (top, part)
        test_paths.append(DATA_PATH + '/' + path)
    SUGGEST_TEST['top%d' % top] = test_paths
In [2]:
import os

# Ensure folders exists in the later experiments. Otherwise may cause abnormal cases.
for path in [DATA_PATH, MODEL_PATH, LOG_PATH]:
    if not os.path.exists(path):
        os.makedirs(path)

Data preparation

Load Errors with Top Candidate Suggestions

In [3]:
import data

def load_dataset(part_list):
    dataset = None
    for path in part_list:
        data_part = data.Dataset.read(path)
        if not dataset:
            dataset = data_part
        else:
            for e in data_part.errors:
                dataset.errors.append(e)
    return dataset
In [4]:
TRAIN_TOP1_DATASET = load_dataset(SUGGEST_TRAIN['top1'])
TEST_TOP1_DATASET = load_dataset(SUGGEST_TEST['top1'])
In [5]:
TRAIN_TOP3_DATASET = load_dataset(SUGGEST_TRAIN['top3'])
TEST_TOP3_DATASET = load_dataset(SUGGEST_TEST['top3'])
In [6]:
TRAIN_TOP5_DATASET = load_dataset(SUGGEST_TRAIN['top5'])
TEST_TOP5_DATASET = load_dataset(SUGGEST_TEST['top5'])
In [7]:
TRAIN_TOP10_DATASET = load_dataset(SUGGEST_TRAIN['top10'])
TEST_TOP10_DATASET = load_dataset(SUGGEST_TEST['top10'])
In [88]:
TRAIN_TOP100_DATASET = load_dataset(SUGGEST_TRAIN['top100'])
TEST_TOP100_DATASET = load_dataset(SUGGEST_TEST['top100'])
In [8]:
print(len(TRAIN_TOP3_DATASET.errors))
print(len(TEST_TOP3_DATASET.errors))
12858
3006

Identify the TP and FP errors

In [89]:
TP_ERROR_INDICE = []

def get_tp_error_indice(any_dataset):
    # Get a length value that covers all the error spans.
    last_err = any_dataset.errors[-1]
    text_len = last_err.position + len(last_err.name)
    # Get all the error span positions in the original (OCR) text.
    is_err = [False] * text_len
    with open(GT_ERROR_PATH, 'r') as f:
        for l in f:
            pos, err, _ = l.split('\t', 2)
            for i in range(int(pos), int(pos) + len(err)):
                is_err[i] = True

    tp_error_indice = []
    for eidx, err in enumerate(any_dataset.errors):
        for pos in range(err.position, err.position + len(err.name)):
            if is_err[pos]:
                tp_error_indice.append(eidx)
                break
    return tp_error_indice

def get_tp_fp_subset(dataset):
    tp_errors, fp_errors = [], [] 
    err_ids = get_tp_error_indice(dataset)
    for i in range(len(dataset.errors)):
        (tp_errors if i in err_ids else fp_errors).append(dataset.errors[i])
    print('tp, fp:', len(tp_errors), len(fp_errors))
    return data.Dataset(tp_errors, dataset.feature_registry), data.Dataset(fp_errors, dataset.feature_registry)

TEST_TOP1_TP_DATASET,  TEST_TOP1_FP_DATASET  = get_tp_fp_subset(TEST_TOP1_DATASET)
TEST_TOP3_TP_DATASET,  TEST_TOP3_FP_DATASET  = get_tp_fp_subset(TEST_TOP3_DATASET)
TEST_TOP5_TP_DATASET,  TEST_TOP5_FP_DATASET  = get_tp_fp_subset(TEST_TOP5_DATASET)
TEST_TOP10_TP_DATASET, TEST_TOP10_FP_DATASET = get_tp_fp_subset(TEST_TOP10_DATASET)
TEST_TOP100_TP_DATASET, TEST_TOP100_FP_DATASET = get_tp_fp_subset(TEST_TOP100_DATASET)
tp, fp: 632 2374
tp, fp: 632 2374
tp, fp: 632 2374
tp, fp: 632 2374
tp, fp: 632 2374

Pruned Candidate Evaluation

Detection Coverage Rate

In [ ]:
 
In [92]:
import numpy as np

def detect_rate(dataset):
    corr = 0
    for err in dataset.errors:
        if sum(err.labels) > 0:
            corr += 1
    return corr / len(dataset.errors)

def avg_cand_size(dataset):
    total = sum(len(e.candidates) for e in dataset.errors)
    return total / len(dataset.errors)

def std_cand_size(dataset):
    size = [len(e.candidates) for e in dataset.errors]
    return np.std(size)

def apply(func, *datasets):
    return tuple(func(d) for d in datasets)

print('                   %6s  %6s  %6s  %6s  %6s' % ('top1', 'top3', 'top5', 'top10', 'top100'))
print('  train detect rate  %.4f  %.4f  %.4f  %.4f  %.4f' % (apply(detect_rate,   TRAIN_TOP1_DATASET, TRAIN_TOP3_DATASET, TRAIN_TOP5_DATASET, TRAIN_TOP10_DATASET, TRAIN_TOP100_DATASET)))
print('   test detect rate  %.4f  %.4f  %.4f  %.4f  %.4f' % (apply(detect_rate,   TEST_TOP1_DATASET, TEST_TOP3_DATASET, TEST_TOP5_DATASET, TEST_TOP10_DATASET, TEST_TOP100_DATASET)))
print('test TP detect rate  %.4f  %.4f  %.4f  %.4f  %.4f' % (apply(detect_rate,   TEST_TOP1_TP_DATASET, TEST_TOP3_TP_DATASET, TEST_TOP5_TP_DATASET, TEST_TOP10_TP_DATASET, TEST_TOP100_TP_DATASET)))
print('test FP detect rate  %.4f  %.4f  %.4f  %.4f  %.4f' % (apply(detect_rate,   TEST_TOP1_FP_DATASET, TEST_TOP3_FP_DATASET, TEST_TOP5_FP_DATASET, TEST_TOP10_FP_DATASET, TEST_TOP100_FP_DATASET)))
print('     avg candidates  %6d  %6d  %6d  %6d  %6d'      % (apply(avg_cand_size, TEST_TOP1_DATASET, TEST_TOP3_DATASET, TEST_TOP5_DATASET, TEST_TOP10_DATASET, TEST_TOP100_DATASET)))
print('     std candidates  %6d  %6d  %6d  %6d  %6d'      % (apply(std_cand_size, TEST_TOP1_DATASET, TEST_TOP3_DATASET, TEST_TOP5_DATASET, TEST_TOP10_DATASET, TEST_TOP100_DATASET)))

# TODO: Stats for the TP errors
                     top1    top3    top5   top10  top100
  train detect rate  0.8690  0.8882  0.8930  0.8980  0.9083
   test detect rate  0.8436  0.8659  0.8706  0.8736  0.8802
test TP detect rate  0.5396  0.6424  0.6646  0.6788  0.7104
test FP detect rate  0.9246  0.9254  0.9254  0.9254  0.9254
     avg candidates       7      23      38      72    3004
     std candidates       2       5       8      17    5248

Detection Coverage on TP Errors

In [108]:
# Print out TP errors

def lev(s1, s2):
    """ Levenshtein distance measure """
    if len(s1) < len(s2):
        return lev(s2, s1)
    # len(s1) >= len(s2)
    if len(s2) == 0:
        return len(s1)
    previous_row = range(len(s2) + 1)
    for i, c1 in enumerate(s1):
        current_row = [i + 1]
        for j, c2 in enumerate(s2):
            insertions = previous_row[j + 1] + 1 # j+1 instead of j since previous_row and current_row are one character longer
            deletions = current_row[j] + 1       # than s2
            substitutions = previous_row[j] + (c1 != c2)
            current_row.append(min(insertions, deletions, substitutions))
        previous_row = current_row
    return previous_row[-1]

true_label, false_label = ' ', 'x'
in_dset = lambda dset, eidx: true_label if sum(1 for c in dset.errors[eidx].candidates if c.label == 1) > 0 else false_label
in_dsets = lambda eidx: (in_dset(TEST_TOP1_DATASET, eidx),
                         in_dset(TEST_TOP3_DATASET, eidx),
                         in_dset(TEST_TOP5_DATASET, eidx),
                         in_dset(TEST_TOP10_DATASET, eidx),
                         in_dset(TEST_TOP100_DATASET, eidx),
                        )

tp_ids = get_tp_error_indice(TEST_TOP100_DATASET)
fmt = '%3s %30s (%30s)' + '  %5s' * 5
for i, e in enumerate(TEST_TOP100_DATASET.errors):
    if i in tp_ids:
        corrs = [c.name for c in e.candidates if c.label == 1]
        corr_str = ','.join(corrs)
        ed_str = str(lev(e.name, corrs[0])) if len(corrs) > 0 else ''
        print(fmt % (ed_str, e.name, corr_str, *in_dsets(i)))
  3                           niaj (                           may)      x                            
                                 ' (                              )      x      x      x      x      x
  1                             bv (                            by)                                   
  2                       llarting (                       Harting)      x      x      x              
  1                         Oologj (                        Oology)                                   
  0                              ' (                             ')                                   
  1                           1S64 (                          1864)                                   
  2                           tlie (                           the)                                   
  2                           l)ut (                           but)      x                            
  2                            l)y (                            by)                                   
  2                       hatclied (                       hatched)                                   
  5                        wliieli (                         which)      x                            
  2                       liowever (                       however)      x                            
  3                        Coniyus (                        Comyns)      x      x      x      x       
                          Lyveudeu (                              )      x      x      x      x      x
  2                         full}' (                         fully)                                   
  2                            b}' (                            by)                                   
  2                           liis (                           his)      x                            
  2                           tlie (                           the)                                   
                Fa>,iilv-C0RJ7D.-E (                              )      x      x      x      x      x
  2                        Corviis (                        Corvus)      x                            
                           iOfoiic (                              )      x      x      x      x      x
  3                          Ijdng (                         lying)      x                            
  2                       Histor}' (                       History)                                   
  2                       ajipears (                       appears)                                   
  2                     h3-bridize (                     hybridize)                                   
                             Gatke (                              )      x      x      x      x      x
  2                         3'ears (                         years)                                   
  2                          the}' (                          they)      x                            
  2                          gre}' (                          grey)      x                            
                         cuIchicKs (                              )      x      x      x      x      x
                        /oi-qna/us (                              )      x      x      x      x      x
  3                    vtrsicoloi- (                    versicolor)                                   
  1                        Barbaiy (                       Barbary)      x                            
  3                         cpiite (                         quite)                                   
  2                            b}' (                            by)                                   
  2                          Tliat (                          That)      x      x      x      x       
  1                       combiued (                      combined)                                   
  2                         badl3^ (                         badly)                                   
  2                           saj^ (                           say)                                   
  2                       natixral (                       natural)      x                            
  1                        Carriou (                       Carrion)                                   
  2                         tliree (                         three)                                   
  2                      greedil}' (                      greedily)                                   
  2                            lie (                            he)      x      x      x              
  1                      .standing (                      standing)                                   
  2                         j'oung (                         young)                                   
                 Familx-C0K]'I1K-E (                              )      x      x      x      x      x
  4                        Collins (                        Corvus)                                   
                                 " (                              )      x      x      x      x      x
                             ^OUND (                              )      x      x      x      x      x
  1                           loug (                          long)      x                            
  1                             iu (                            in)                                   
                                 I (                              )      x      x      x      x      x
                                 ' (                              )      x      x      x      x      x
                        capcllauns (                              )      x      x      x      x      x
                        Sceboli??! (                              )      x      x      x      x      x
  2                       countr}^ (                       country)                                   
  1                             iu (                            in)                                   
  2                        pr\-ing (                        prying)                                   
  2                          e\'es (                          eyes)                                   
  1                    carnivorons (                   carnivorous)                                   
  2                       liowever (                       however)                                   
  5                              j (                         years)      x                            
  0                              - (                             -)                                   
  0                           ears (                          ears)                                   
  1                            vSt (                            St)                                   
                          Mora}'," (                              )      x      x      x      x      x
                       newlj'-boru (                              )      x      x      x      x      x
  2                         )-oung (                         young)                                   
  3                          vcr}' (                          very)                                   
  3                           au}' (                           any)      x                            
  1                             iu (                            in)                                   
  2                           an\' (                           any)      x                            
  2                      destro3-s (                      destroys)                                   
  3                        osprc}' (                        osprey)                                   
  2                            b}' (                            by)                                   
  2                           da\- (                           day)                                   
                             Gatke (                              )      x      x      x      x      x
  2                      scarcel}^ (                      scarcely)                                   
  3                simultaneous!}' (                simultaneously)                                   
                             Gatke (                              )      x      x      x      x      x
  2                       econom_v (                       economy)                                   
  3                    Evcr\'where (                    Everywhere)                                   
  2                      altliough (                      although)                                   
  4                          snuiU (                         small)      x      x                     
  2                         Ital}' (                         Italy)                                   
  2                      scarcel}' (                      scarcely)                                   
  2                            b}- (                            by)                                   
  2                          thej^ (                          they)                                   
  2                            da3 (                          days)                                   
  0                             's (                            's)                                   
  2                         earl}^ (                         early)                                   
  2                            bj^ (                            by)                                   
  2                           an}- (                           any)      x                            
  2                   unsparingl}' (                   unsparingly)                                   
  2                          3'ear (                          year)                                   
  2                            b}' (                            by)                                   
  1                         coroue (                        corone)                                   
  2                     precisel}^ (                     precisely)                                   
  1                         coronc (                        corone)                                   
  2                           saj- (                           say)                                   
  4                         Mail}- (                          Many)      x      x      x      x       
  3                          willi (                          with)                                   
  2                         tliere (                         there)                                   
                            Giitke (                              )      x      x      x      x      x
  2                            sa3 (                          says)      x      x      x      x       
                                's (                              )      x      x      x      x      x
  2                          Gre}' (                          Grey)      x                            
                     c\ten)ii}iatc (                              )      x      x      x      x      x
                  Fawilx-COR]'ID.E (                              )      x      x      x      x      x
  2                        Corviis (                        Corvus)      x                            
                      /nigi/i(;i(s (                              )      x      x      x      x      x
  2                        prett}^ (                        pretty)                                   
  2                          l^are (                          bare)      x      x      x              
  2                           Tlie (                           The)      x                            
  2                           Tlie (                           The)      x                            
  1                       .slender (                       slender)                                   
  2                           tlie (                           the)                                   
  1                         .slate (                         slate)                                   
  1                         larvje (                        larvae)                                   
  2                    preferabl}^ (                    preferably)                                   
  2                          onl}' (                          only)                                   
  2                       segetuin (                       segetum)                                   
  2                      foiirteen (                      fourteen)                                   
  2                          fi^om (                          from)                                   
                        connucuced (                              )      x      x      x      x      x
  1                             iu (                            in)                                   
  2                      unusualh- (                     unusually)                                   
  2                          the}- (                          they)      x                            
  2                      Februar}- (                      February)                                   
  2                            m^' (                            my)                                   
  2                          the}- (                          they)      x                            
                                 t (                              )      x      x      x      x      x
  1                             iu (                            in)                                   
  1                        thicklj (                       thickly)                                   
  0                              ' (                             ')                                   
  2                          the}- (                          they)      x                            
  2                          the}' (                          they)      x                            
  1                       accuracv (                      accuracy)                                   
  1                         hungiy (                        hungry)                                   
  2                         ever}' (                         every)                                   
  0                            How (                           How)                                   
  0                              - (                             -)                                   
                              catv (                              )      x      x      x      x      x
                           ar-cc-o (                              )      x      x      x      x      x
  4                           ni}- (                            my)      x      x      x      x       
                        ALAUDIDJ-: (                              )      x      x      x      x      x
  2                      vSannders (                      Saunders)      x      x                     
  3                         phiccd (                        placed)      x      x      x              
  3                       faniil_y (                        family)                                   
  0                              - (                             -)                                   
  3                   Motaciilidcc (                  Motacillidae)                                   
  3                      vSeel)ohm (                       Seebohm)                                   
  2                            b}' (                            by)                                   
  1                         Sharpc (                        Sharpe)                                   
  1                       vSeebohm (                       Seebohm)                                   
  3                       P'inchcs (                       Finches)      x      x      x      x       
                  Jloiifijniioi/Ia (                              )      x      x      x      x      x
                     PUciropluvics (                              )      x      x      x      x      x
  1                     Corydallar (                     Corydalla)                                   
  2                        familj- (                        family)                                   
  2                      probabl}' (                      probably)                                   
  2                          tliis (                          this)                                   
  1                        becanse (                       because)                                   
  1                       Sannders (                      Saunders)      x                            
  2                          sa3-s (                          says)                                   
  2                      majorit}- (                      majority)                                   
                       Alaiiiiidic (                              )      x      x      x      x      x
                        Coii'ida'' (                              )      x      x      x      x      x
  2                       Passcrcs (                      Passeres)                                   
  2                          i'eet (                          feet)      x                            
  2                          man}' (                          many)                                   
  2                          the}- (                          they)      x                            
  2                       Aluudida (                     Alaudidae)                                   
                            fainih (                              )      x      x      x      x      x
  0                              ' (                             ')                                   
                       j\Iala3-ana (                              )      x      x      x      x      x
  2                        Familx- (                        Family)                                   
                         ALAUDID.E (                              )      x      x      x      x      x
  6                      iDVCiisis (                      arvensis)                                   
  1                      IMongolia (                      Mongolia)                                   
                       \^excepting (                              )      x      x      x      x      x
                       caiitarclla (                              )      x      x      x      x      x
                         giilgiila (                              )      x      x      x      x      x
                           axlivox (                              )      x      x      x      x      x
                         ivai/crsi (                              )      x      x      x      x      x
  2                           arid (                           and)                                   
  4                        sccuiid (                        second)      x      x      x      x       
  2                         inider (                         under)      x                            
  2                          witli (                          with)                                   
                 l:)hickish-br(iwu (                              )      x      x      x      x      x
  2                           tlie (                           the)                                   
                                 j (                              )      x      x      x      x      x
  0                              - (                             -)                                   
                          ellowish (                              )      x      x      x      x      x
  2                          d(jes (                          does)                                   
  2                         3-oung (                         young)                                   
  2                         tawn}^ (                         tawny)                                   
  2                       primar}' (                       primary)                                   
  2                    distinctl}- (                    distinctly)                                   
  2                           se.\ (                           sex)      x                            
  2                            b}- (                            by)                                   
  1                    plantatious (                   plantations)                                   
  1                     iudividual (                    individual)                                   
  2                          ver3' (                          very)                                   
  2                     obliquel}- (                     obliquely)                                   
  2                       rapidl}' (                       rapidly)                                   
                                 ' (                              )      x      x      x      x      x
                             ivhcc (                              )      x      x      x      x      x
  2                          tvhee (                          whee)      x      x      x      x       
                             w/icc (                              )      x      x      x      x      x
  2                     generall}- (                     generally)                                   
  2                            b}' (                            by)                                   
  1                        huffish (                       buffish)      x                            
  2                         smok}' (                         smoky)      x                            
  2                         whicli (                         which)                                   
  2                         sieuua (                        sienna)      x                            
  3                          ]\Iay (                           May)      x      x                     
  1                            Jul (                          July)      x                            
  0                              ' (                             ')                                   
                     niothcr-l)ird (                              )      x      x      x      x      x
  1                           soug (                          song)      x      x      x      x       
  2                       iisually (                       usually)      x                            
                                gd (                              )      x      x      x      x      x
                        Larkrunuer (                              )      x      x      x      x      x
  4                           ui}' (                            my)      x      x                     
  2                            cue (                           one)      x      x      x              
  2                            ]jy (                            by)                                   
                               lec (                              )      x      x      x      x      x
  0                              - (                             -)                                   
                             tcc-u (                              )      x      x      x      x      x
  2                         wear}- (                         weary)      x                            
  2                          tlien (                          then)                                   
  2                          the}' (                          they)                                   
  2                  subsequentl}' (                  subsequently)                                   
  2                         3'oung (                         young)                                   
  1                         fl\ing (                        flying)                                   
  2                  consecjuences (                  consequences)                                   
  2                            mj^ (                            my)                                   
  2                          the}- (                          they)      x                            
  2                        canar}' (                        canary)                                   
  2                          3'our (                          your)                                   
  2                      i-eturned (                      returned)                                   
                             Gatke (                              )      x      x      x      x      x
  3                          saj'S (                          says)      x      x                     
  1                        Family^ (                        Family)                                   
                               ALA (                              )      x      x      x      x      x
                              UDID (                              )      x      x      x      x      x
  0                              . (                             .)                                   
                                 F (                              )      x      x      x      x      x
  3                        Alaitdn (                        Alauda)                                   
  3                       ar/iorca (                       arborea)                                   
                              LlNN (                              )      x      x      x      x      x
  2                              " (                            IN)      x      x      x      x       
                                 T (                              )      x      x      x      x      x
                                 N (                              )      x      x      x      x      x
  0                         Russia (                        Russia)                                   
  1                             "^ (                             ")                                   
                          Iloivard (                              )      x      x      x      x      x
  2                         iipper (                         upper)      x                            
  2                    distinctl}' (                    distinctly)                                   
  3                      soniewhal (                      somewhat)                                   
  2                           Sk3' (                           Sky)      x                            
  1                      deeidedly (                     decidedly)                                   
  1                          Yonng (                         Young)      x                            
  3                        l:)irds (                         birds)                                   
  2                         rnfons (                        rufous)      x      x      x              
  2                        3'ellow (                        yellow)      x                            
  1                        vSharpe (                        Sharpe)                                   
                            IvU-lu (                              )      x      x      x      x      x
  2                          Irb}' (                          Irby)                                   
  3                          sa3'S (                          says)      x      x                     
  3                           \&xy (                          very)      x                            
                         Chaparaks (                              )      x      x      x      x      x
  1                       vSpanish (                       Spanish)                                   
  2                          onl}' (                          only)                                   
  0                              ' (                             ')                                   
  2                     compactl}' (                     compactly)                                   
  2                           Sk^^ (                           Sky)      x                            
                         Secholiin (                              )      x      x      x      x      x
                          huffish- (                              )      x      x      x      x      x
  2                     generall}' (                     generally)                                   
                                 ' (                              )      x      x      x      x      x
  2                         cjuite (                         quite)      x                            
  2                          eaidy (                         early)      x      x                     
  2                          ver^' (                          very)                                   
  1                           pnre (                          pure)                                   
  2                            b}- (                            by)                                   
  2                          man}^ (                          many)                                   
  3                     certaiul}' (                     certainly)                                   
  2                            mj- (                            my)                                   
  1                  Sittiugbourne (                 Sittingbourne)                                   
  1                      promineut (                     prominent)                                   
  2                          awaj^ (                          away)                                   
  1                            aud (                           and)                                   
  1                      certainlj (                     certainly)                                   
  0                              ? (                             ?)                                   
  2                            b}' (                            by)                                   
  1                            aud (                           and)                                   
  2                       uncann}' (                       uncanny)                                   
                                 ' (                              )      x      x      x      x      x
                        Familx-ALA (                              )      x      x      x      x      x
                              UDID (                              )      x      x      x      x      x
                                 E (                              )      x      x      x      x      x
  1                         Alanda (                        Alauda)                                   
  2                       crisfafa (                      cristata)                                   
  2                        Eiirope (                        Europe)                                   
  2                           Tlie (                           The)      x                            
  3                          watli (                          with)                                   
  3                      fcatliers (                      feathers)      x      x                     
  1                        hastard (                       bastard)      x                            
  2                         Ijrown (                         brown)                                   
  2                          greyi (                       greyish)      x                            
  0                              - (                             -)                                   
  3                       luargius (                       margins)      x      x      x      x       
  2                         whicli (                         which)                                   
  1                          sandv (                         sandy)                                   
  2                         t)uter (                         outer)      x                            
  2                   principall}- (                   principally)                                   
  2                           tlie (                           the)                                   
  2                          Irb}- (                          Irby)                                   
  1                            arc (                           are)                                   
  2                          onl}' (                          only)                                   
                         Curiiicit (                              )      x      x      x      x      x
  1                     Sauderling (                    Sanderling)                                   
  1                           eart (                         earth)      x                            
  2                         says:- (                          says)                                   
  0                              - (                             -)                                   
  1                            diy (                           dry)      x      x      x      x       
                               '95 (                              )      x      x      x      x      x
                                 " (                              )      x      x      x      x      x
                                bS (                              )      x      x      x      x      x
  2                         wdiich (                         which)                                   
  2                         sandj^ (                         sandy)      x                            
  2                      rapidit}' (                      rapidity)                                   
  2                          wlien (                          when)                                   
  2                     generall}' (                     generally)                                   
  3                            (U- (                            or)                                   
  1                             iu (                            in)                                   
  2                        fauiily (                        family)      x                            
  1                         duriug (                        during)                                   
  2                            sa3 (                          says)      x      x      x      x       
  0                             's (                            's)                                   
  2                      xA-lgeria (                       Algeria)                                   
  1                           iuto (                          into)                                   
                                 3 (                              )      x      x      x      x      x
  0                              - (                             -)                                   
                          ellowish (                              )      x      x      x      x      x
  1                      uuiformly (                     uniformly)                                   
  1                             iu (                            in)                                   
  1                             iu (                            in)                                   
  1                         plaius (                        plains)                                   
                        guli^iila* (                              )      x      x      x      x      x
  2                           flue (                          fine)      x      x      x      x       
  1                             iu (                            in)                                   
  1                            aud (                           and)                                   
  2                  considerabl}' (                  considerably)      x                            
  2                           tlie (                           the)                                   
                        PyauviotKs (                              )      x      x      x      x      x
                          Icucotis (                              )      x      x      x      x      x
  2                         wliich (                         which)                                   
  2                            b}^ (                            by)                                   
  1                         Jerdou (                        Jerdon)                                   
  2                          the}' (                          they)      x                            
                              Pere (                              )      x      x      x      x      x
                               187 (                              )      x      x      x      x      x
                        Familx-ALA (                              )      x      x      x      x      x
                             UDID^ (                              )      x      x      x      x      x
                           AVinged (                              )      x      x      x      x      x
                   ilTclanocorypha (                              )      x      x      x      x      x
  1                       sidirica (                      sibirica)                                   
                             Gmp;l (                              )      x      x      x      x      x
  1                        Eugland (                       England)                                   
                  Faunlx-ALAUDID.E (                              )      x      x      x      x      x
                    Mcla)iOLoyypha (                              )      x      x      x      x      x
                       ycltontemis (                              )      x      x      x      x      x
                      ALAl'DID.-Ji (                              )      x      x      x      x      x
  6                  Ciila)idixlla (                   Calandrella)                                   
                      bnuhydaityla (                              )      x      x      x      x      x
  1                          geuus (                         genus)                                   
  1                    Calandrclla (                   Calandrella)                                   
  2                        Alaiida (                        Alauda)                                   
  1                     xAbyssinia (                     Abyssinia)                                   
  1                           si.x (                           six)                                   
                      sand3'-browu (                              )      x      x      x      x      x
  1                        huffish (                       buffish)      x                            
  2                           tlie (                           the)                                   
  2                     j^ellowish (                     yellowish)                                   
  3                       Cahuidra (                      Calandra)      x                            
  3                         falhnv (                        fallow)      x      x      x      x       
  2                        i^round (                        ground)      x                            
  3                           au}' (                           any)      x      x                     
  2                        sliglit (                        slight)                                   
  2                          l)ird (                          bird)      x                            
  2                          liird (                          bird)      x      x      x              
  1                       tameuess (                      tameness)                                   
  2                    difficult}' (                    difficulty)                                   
  2                       withoiit (                       without)                                   
  2                         jerk}' (                         jerky)      x                            
  1                          nnite (                         unite)      x      x                     
  2                          man}' (                          many)                                   
  2                      tliousand (                      thousand)                                   
  1                          qnite (                         quite)                                   
  2                        flj'ing (                        flying)                                   
  3                       nnnibers (                       numbers)                                   
  3                       conntr}- (                       country)      x                            
  2                        groiind (                        ground)      x                            
  1                        wonnded (                       wounded)                                   
  3                        alwa3'S (                        always)                                   
  2                          the}' (                          they)      x                            
                             Gatke (                              )      x      x      x      x      x
  2                          ver}- (                          very)                                   
  2                      solitar}' (                      solitary)                                   
  3                   momeutaril}- (                   momentarily)                                   
  2                          ver\' (                          very)                                   
  3              extraordinarilj'' (               extraordinarily)                                   
  3                          Sk}-- (                           Sky)      x                            
  3                       Familx-A (                        Family)                                   
  0                             LA (                            LA)                                   
                                 E (                              )      x      x      x      x      x
                          Olocurvs (                              )      x      x      x      x      x
  1                      alpcstris (                     alpestris)                                   
                              LiNX (                              )      x      x      x      x      x
  2                        bej'ond (                        beyond)                                   
  1                         vShore (                         Shore)                                   
  2                         liills (                         hills)      x      x                     
  1                             nf (                            of)                                   
  0                              ' (                             ')                                   
  3                          Inish (                          bush)      x      x                     
  2                        melod3^ (                        melody)                                   
  2                         .Uauda (                        Alauda)                                   
                       arz'i-fis/s (                              )      x      x      x      x      x
  4                           3'OU (                           you)                                   
  2                         tlieir (                         their)                                   
  2                     speciniens (                     specimens)                                   
  1                    Polygonacea (                  Polygonaceae)                                   
  2                    frequentl}^ (                    frequently)                                   
                             Gatke (                              )      x      x      x      x      x
  2                     captivit}' (                     captivity)                                   
  0                              - (                             -)                                   
  0                            ear (                           ear)                                   
  2                        Canar3^ (                        Canary)                                   
  2                        Canar}' (                        Canary)                                   
  1                             iu (                            in)                                   
  2                         ever}' (                         every)                                   
  1                        alreadj (                       already)                                   
                                 ' (                              )      x      x      x      x      x
  2                       inclttde (                       include)                                   
  1                         remedv (                        remedy)                                   
  2                    deficienc}' (                    deficiency)                                   
                           TURDID^ (                              )      x      x      x      x      x
  2                      Subfamih- (                     Subfamily)                                   
                          TURDINyF (                              )      x      x      x      x      x
  2                        Turdiis (                        Turdus)                                   
  2                        dubiiis (                        dubius)                                   
  1                             NE (                           ONE)      x      x      x      x       
  2                     Stornowa}- (                     Stornoway)                                   
  1                           i8th (                          18th)      x                            
                                Ti (                              )      x      x      x      x      x
  0                              ' (                             ')                                   
                              RDID (                              )      x      x      x      x      x
  0                              . (                             .)                                   
                                E. (                              )      x      x      x      x      x
  3                    Subfaniily- (                     Subfamily)                                   
                                TL (                              )      x      x      x      x      x
  0                              ' (                             ')                                   
                              RUIN (                              )      x      x      x      x      x
  0                              . (                             .)                                   
                                 E (                              )      x      x      x      x      x
                         shipazina (                              )      x      x      x      x      x
  2                          3'ear (                          year)                                   
  2                   occidoitalis (                  occidentalis)                                   
  2                         daerti (                       deserti)                                   
                              TURD (                              )      x      x      x      x      x
  0                             ID (                            ID)                                   
  0                              . (                             .)                                   
                                E. (                              )      x      x      x      x      x
                          TURDIN.E (                              )      x      x      x      x      x
                              Paix (                              )      x      x      x      x      x
  1                     vShetlands (                     Shetlands)                                   
  1                            Maj (                           May)      x                            
  0                              ' (                             ')                                   
  3                        ]\Iarch (                         March)      x                            
                          TURDID.^ (                              )      x      x      x      x      x
                          TURDIN/E (                              )      x      x      x      x      x
                          Spottf:d (                              )      x      x      x      x      x
                       Cxa)icciila (                              )      x      x      x      x      x
                           u'i>l/l (                              )      x      x      x      x      x
  1                            ist (                           1st)      x      x      x      x       
                           TURDID^ (                              )      x      x      x      x      x
                           TURDIN^ (                              )      x      x      x      x      x
                        fliilomcla (                              )      x      x      x      x      x
                               6th (                              )      x      x      x      x      x
  1                     vSeptember (                     September)                                   
  2                          24t]i (                          24th)                                   
  2                         3'oung (                         young)                                   
  2                        Li^dlow (                        Ludlow)                                   
  3                        Fawilx- (                        Family)                                   
                              TURD (                              )      x      x      x      x      x
  0                             ID (                            ID)                                   
  0                              . (                             .)                                   
                                -E (                              )      x      x      x      x      x
                       5«//rtw//r- (                              )      x      x      x      x      x
                                 5 (                              )      x      x      x      x      x
  1                           ILY^ (                           ILY)                                   
  3                        Svlviii (                        Sylvia)                                   
                   viclanoccpliaUx (                              )      x      x      x      x      x
  1                            ist (                           1st)      x      x      x      x       
  1                        Family^ (                        Family)                                   
                                Ti (                              )      x      x      x      x      x
                                7^ (                              )      x      x      x      x      x
                              DILL (                              )      x      x      x      x      x
                                -E (                              )      x      x      x      x      x
                    SuhJaniiiy-SYL (                              )      x      x      x      x      x
                                 J (                              )      x      x      x      x      x
                              7IA\ (                              )      x      x      x      x      x
  1                             E. (                             E)                                   
                           PallAvS (                              )      x      x      x      x      x
  3                   Phy/Iosiopus (                  Phylloscopus)                                   
                     f^ivrcgit/iis (                              )      x      x      x      x      x
  3                          i5tli (                          15th)      x      x      x      x       
  2                          3'ear (                          year)                                   
  1                        Tnlloch (                       Tulloch)                                   
  2                           Ma}^ (                           May)                                   
                          TURDID.F (                              )      x      x      x      x      x
  3                      Subjaimly (                     Subfamily)                                   
                              -SYL (                              )      x      x      x      x      x
                                 I (                              )      x      x      x      x      x
  2                          IIN.E (                           IIN)                                   
  4                  Phy//oscop!is (                  Phylloscopus)                                   
  1                              N (                            AN)      x      x      x              
  1                     lighthonse (                    lighthouse)                                   
                          TURDIL)^ (                              )      x      x      x      x      x
                               SYL (                              )      x      x      x      x      x
  0                              I (                             I)                                   
                            'IIN.E (                              )      x      x      x      x      x
  2                  Phylloscopiis (                  Phylloscopus)                                   
                        viridaiius (                              )      x      x      x      x      x
                             Blvth (                              )      x      x      x      x      x
  2               Siitherlandshire (               Sutherlandshire)                                   
                          couiinou (                              )      x      x      x      x      x
  1                          fouud (                         found)                                   
  1                      Shetlauds (                     Shetlands)                                   
  3                         Fnmtlx (                        Family)                                   
                                TL (                              )      x      x      x      x      x
                             ^RDID (                              )      x      x      x      x      x
  0                              . (                             .)                                   
                                E. (                              )      x      x      x      x      x
                    Sii/^/,u>n/\-S (                              )      x      x      x      x      x
  1                              J (                            J.)                                   
                                 Z (                              )      x      x      x      x      x
  0                            VLV (                           VLV)                                   
                                 E (                              )      x      x      x      x      x
  1                          Aidon (                         Aedon)                                   
                        (^alcnimAs (                              )      x      x      x      x      x
                          TURDID.E (                              )      x      x      x      x      x
                    Siih/auiilySYL (                              )      x      x      x      x      x
                                 I (                              )      x      x      x      x      x
  2                          IIN^E (                           IIN)                                   
  3                         Acdoii (                         Aedon)                                   
  1                     fnmiliaris (                    familiaris)                                   
                              TURD (                              )      x      x      x      x      x
  0                             ID (                            ID)                                   
                                 ^ (                              )      x      x      x      x      x
                               SYL (                              )      x      x      x      x      x
  0                              I (                             I)                                   
  1                           IIN^ (                           IIN)                                   
  1                       sckwarzi (                      schwarzi)                                   
  2                         Haigli (                         Haigh)      x                            
  1                             -- (                             -)                                   
                                Tl (                              )      x      x      x      x      x
  0                              ' (                             ')                                   
                              KDID (                              )      x      x      x      x      x
  0                              . (                             .)                                   
                                E. (                              )      x      x      x      x      x
                    Su/ifaniuy-SVL (                              )      x      x      x      x      x
                                 I (                              )      x      x      x      x      x
                                 ' (                              )      x      x      x      x      x
                              ILWF (                              )      x      x      x      x      x
                          Cetti'vS (                              )      x      x      x      x      x
                           Warrlkr (                              )      x      x      x      x      x
  2                         Cetfin (                        Cettia)                                   
                            ccttii (                              )      x      x      x      x      x
  2                           Ma}' (                           May)                                   
                           TURDID^ (                              )      x      x      x      x      x
                               SYL (                              )      x      x      x      x      x
                             VIIN^ (                              )      x      x      x      x      x
                        polyglolla (                              )      x      x      x      x      x
                       Lighthoi:se (                              )      x      x      x      x      x
  1                             Au (                            An)      x      x                     
  3                  Christclinrch (                  Christchurch)                                   
  1                   Charterhonse (                  Charterhouse)                                   
  2                       Januar}' (                       January)                                   
  2                        Scill}' (                        Scilly)                                   
  0                             TA (                            TA)                                   
                            CILLID (                              )      x      x      x      x      x
  0                              . (                             .)                                   
                                -E (                              )      x      x      x      x      x
  9                             j] (                     Motacilla)      x      x      x              
  0                            lot (                           lot)                                   
  0                             ac (                            ac)                                   
  0                           ilia (                          ilia)                                   
                          60/ra/is (                              )      x      x      x      x      x
  1                          .shot (                          shot)                                   
  0                             TA (                            TA)                                   
  0                            CIL (                           CIL)                                   
                                 L (                              )      x      x      x      x      x
  1                            ID^ (                            ID)                                   
                     vulauoccphala (                              )      x      x      x      x      x
  2                           Ma}- (                           May)                                   
                             ijtli (                              )      x      x      x      x      x
  2                         flaz'a (                         flava)                                   
  1                      followiug (                     following)                                   
                                Fa (                              )      x      x      x      x      x
  1                            ly- (                            ly)                                   
                                MO (                              )      x      x      x      x      x
  0                             TA (                            TA)                                   
  0                           CILL (                          CILL)                                   
  0                             ID (                            ID)                                   
  0                              . (                             .)                                   
                                F. (                              )      x      x      x      x      x
                            SykEvS (                              )      x      x      x      x      x
  0                              ' (                             ')                                   
  3                          2otli (                          20th)      x      x      x      x       
  0                             TA (                            TA)                                   
                          CILLlDzE (                              )      x      x      x      x      x
                             AvShy (                              )      x      x      x      x      x
                             Sa\'I (                              )      x      x      x      x      x
  1                          /lava (                         flava)      x      x                     
  3                      nowadaj'S (                      nowadays)                                   
  2                        Scill3% (                        Scilly)                                   
In [109]:
tp_ids = get_tp_error_indice(TEST_TOP100_DATASET)
fmt = '%3s %30s (%30s)' + '  %5s' * 5
for i, e in enumerate(TEST_TOP100_DATASET.errors):
    if i in tp_ids:
        corrs = [c.name for c in e.candidates if c.label == 1]
        corr_str = ','.join(corrs)
        ed = lev(e.name, corrs[0]) if len(corrs) > 0 else -1
        ed_str = str(lev(e.name, corrs[0])) if len(corrs) > 0 else ''
        if ed > 3:
            print(fmt % (ed_str, e.name, corr_str, *in_dsets(i)))
  5                        wliieli (                         which)      x                            
  4                        Collins (                        Corvus)                                   
  5                              j (                         years)      x                            
  4                          snuiU (                         small)      x      x                     
  4                         Mail}- (                          Many)      x      x      x      x       
  4                           ni}- (                            my)      x      x      x      x       
  6                      iDVCiisis (                      arvensis)                                   
  4                        sccuiid (                        second)      x      x      x      x       
  4                           ui}' (                            my)      x      x                     
  6                  Ciila)idixlla (                   Calandrella)                                   
  4                           3'OU (                           you)                                   
  4                  Phy//oscop!is (                  Phylloscopus)                                   
  9                             j] (                     Motacilla)      x      x      x              

Detection Coverage on FP Errors

In [86]:
# Print out FP errors that have no correct candidates

tp_ids = get_tp_error_indice(TEST_TOP10_DATASET)
fmt = '%30s (%30s)' + '  %5s' * 4
for i, e in enumerate(TEST_TOP10_DATASET.errors):
    if i not in tp_ids:
        corr = ','.join(c.name for c in e.candidates if c.label == 1)
        print(fmt % (e.name, corr, *in_dsets(i)))
                   possibility (                   possibility)                            
                           Mr. (                        Mr.,Mr)                            
                           for (                           for)                            
                             a (                             a)                            
                        Ravens (                        Ravens)                            
                         which (                         which)                            
                         built (                         built)                            
                          fern (                          fern)                            
                          dead (                          dead)                            
                            On (                            On)                            
                           two (                           two)                            
                          nest (                          nest)                            
                           the (                           the)                            
                      visitors (                      visitors)                            
                  considerable (                  considerable)                            
                          1894 (                              )      x      x      x      x
                            In (                            In)                            
                        Ravens (                        Ravens)                            
                       hatched (                       hatched)                            
                          five (                          five)                            
                           Mr. (                            Mr)                            
                            S. (                              )      x      x      x      x
                       Buzzard (                       Buzzard)                            
                         taken (                         taken)                            
                  aggressively (                  aggressively)                            
                          tame (                          tame)                            
                       Buzzard (                       Buzzard)                            
                      remained (                      remained)                            
                      obdurate (                      obdurate)                            
                     instantly (                     instantly)                            
                        dashed (                        dashed)                            
                         after (                         after)                            
                        flying (                        flying)                            
                         hotly (                         hotly)                            
                             ' (                              )      x      x      x      x
                             ' (                              )      x      x      x      x
                      alighted (                      alighted)                            
                     bristling (                     bristling)                            
                          bird (                          bird)                            
                           was (                           was)                            
                      tempered (                      tempered)                            
                       caution (                       caution)                            
                            he (                            he)                            
                       Buzzard (                       Buzzard)                            
                 consternation (                 consternation)                            
                        sprang (                        sprang)                            
                            He (                            He)                            
                       laurels (                       laurels)                            
                         would (                         would)                            
                          beak (                          beak)                            
                             ' (                             ')                            
                     furtively (                     furtively)                            
                      tweaking (                      tweaking)                            
                       Buzzard (                       Buzzard)                            
                            's (                            's)                            
                       attacks (                       attacks)                            
                       Buzzard (                       Buzzard)                            
                            's (                            's)                            
                        wretch (                        wretch)                            
                       denuded (                       denuded)                            
                      Hitherto (                              )      x      x      x      x
                         might (                         might)                            
                         being (                         being)                            
                        Comyns (                        Comyns)                            
                             ' (                             ')                            
                           Mr. (                            Mr)                            
                       Frohawk (                       Frohawk)                            
                           saw (                           saw)                            
                         mouth (                         mouth)                            
                         Devon (                         Devon)                            
                          they (                          they)                            
                             . (                             .)                            
                             , (                              )      x      x      x      x
                          Linn (                          Linn)                            
                            IN (                            IN)                            
                       Siberia (                       Siberia)                            
                       Seebohm (                       Seebohm)                            
                       between (                       between)                            
                       Yenesay (                              )      x      x      x      x
                     Westwards (                              )      x      x      x      x
                            he (                            he)                            
                       Caspian (                       Caspian)                            
                        Hooded (                        Hooded)                            
                        spread (                        spread)                            
                   interbreeds (                   interbreeds)                            
                        Hooded (                        Hooded)                            
                       Yenesay (                              )      x      x      x      x
                             ( (                             ()                            
                   intergrades (                   intergrades)                            
                         these (                         these)                            
                        branch (                        branch)                            
                        Museum (                        Museum)                            
                            In (                            In)                            
                      disliked (                      disliked)                            
                          both (                          both)                            
                           yet (                           yet)                            
                      becoming (                      becoming)                            
                     decidedly (                     decidedly)                            
                      commoner (                      commoner)                            
                            in (                            in)                            
                     Shetlands (                     Shetlands)                            
                            In (                            In)                            
                       Carrion (                       Carrion)                            
                      purplish (                      purplish)                            
                         above (                         above)                            
                           the (                           the)                            
                     similarly (                     similarly)                            
                        tinted (                        tinted)                            
                          bill (                          bill)                            
                          iris (                          iris)                            
                           her (                           her)                            
                            to (                            to)                            
                         Young (                         Young)                            
                         gloss (                         gloss)                            
                            As (                            As)                            
                        freely (                        freely)                            
                        Hooded (                        Hooded)                            
                          Herr (                          Herr)                            
                      shrewdly (                      shrewdly)                            
                       pairing (                       pairing)                            
                        having (                        having)                            
                           for (                           for)                            
                      reverted (                      reverted)                            
                   colouration (                   colouration)                            
                   gradational (                   gradational)                            
                        stages (                        stages)                            
                           and (                           and)                            
                     Pheasants (                     Pheasants)                            
                             - (                             -)                            
                            P. (                            P.)                            
                    interbreed (                    interbreed)                            
                        freely (                        freely)                            
                   intergrades (                   intergrades)                            
                           are (                           are)                            
                      distinct (                      distinct)                            
                        sports (                        sports)                            
                   intergrades (                   intergrades)                            
                     reproduce (                     reproduce)                            
                        Turtle (                        Turtle)                            
                       fertile (                       fertile)                            
                      Bengalee (                      Bengalee)                            
                       Carrion (                       Carrion)                            
                     resembles (                     resembles)                            
                    inhabiting (                    inhabiting)                            
                       similar (                       similar)                            
                        haunts (                        haunts)                            
                            In (                            In)                            
                     predatory (                     predatory)                            
                          both (                          both)                            
                      shepherd (                      shepherd)                            
                          Ever (                          Ever)                            
                          this (                          this)                            
                         seems (                         seems)                            
                       dispute (                       dispute)                            
                          Gull (                          Gull)                            
                          Hawk (                          Hawk)                            
                        attack (                        attack)                            
                          fare (                          fare)                            
                          Lord (                          Lord)                            
                       Lilford (                              )      x      x      x      x
                      observes (                      observes)                            
                            in (                            in)                            
                           His (                           His)                            
                       noxious (                       noxious)                            
                     captivity (                     captivity)                            
                        offers (                        offers)                            
                          evil (                          evil)                            
                             - (                             -)                            
                          Crow (                          Crow)                            
                         wings (                         wings)                            
                     regularly (                     regularly)                            
                          when (                          when)                            
                        wheels (                        wheels)                            
                         walks (                         walks)                            
                         leaps (                         leaps)                            
                         wings (                         wings)                            
                  nidification (                  nidification)                            
                         Iwade (                         Iwade)                            
                          near (                          near)                            
                        Sheppy (                              )      x      x      x      x
                     consisted (                     consisted)                            
                          full (                          full)                            
                      yolkless (                      yolkless)                            
                           one (                           one)                            
                            it (                            it)                            
                             - (                              )      x      x      x      x
                           but (                           but)                            
                            J. (                              )      x      x      x      x
                        Pilley (                        Pilley)                            
                     Zoologist (                     Zoologist)                            
                             " (                             ")                            
                       meadows (                       meadows)                            
                          dead (                          dead)                            
                             - (                             -)                            
                      tussocks (                      tussocks)                            
                        neatly (                        neatly)                            
                      smoothed (                      smoothed)                            
                        number (                        number)                            
                        clutch (                        clutch)                            
                           the (                           the)                            
                       consist (                       consist)                            
                          some (                          some)                            
                          Crow (                          Crow)                            
                         pairs (                         pairs)                            
                       figured (                       figured)                            
                         figs. (                          figs)                            
                           233 (                              )      x      x      x      x
                          Farn (                          Farn)                            
                            's (                            's)                            
                           236 (                              )      x      x      x      x
                       Frohawk (                       Frohawk)                            
                            my (                            my)                            
                characteristic (                characteristic)                            
                  representing (                  representing)                            
                           but (                           but)                            
                      mollusca (                      mollusca)                            
                      Sheppard (                      Sheppard)                            
                       Whitear (                              )      x      x      x      x
                             ) (                             ))                            
                         stale (                         stale)                            
                          fish (                          fish)                            
                       carrion (                       carrion)                            
                      devoured (                      devoured)                            
                             , (                             ,)                            
                            as (                            as)                            
                        weakly (                        weakly)                            
                          half (                          half)                            
                             - (                             -)                            
                           Mr. (                            Mr)                            
                            V. (                              )      x      x      x      x
                         Aplin (                         Aplin)                            
                     Zoologist (                     Zoologist)                            
                             " (                             ")                            
                        bridle (                        bridle)                            
                          near (                          near)                            
                   Clattercutt (                              )      x      x      x      x
                     Reservoir (                     Reservoir)                            
                           has (                           has)                            
                       Carrion (                       Carrion)                            
                             - (                             -)                            
                         Crows (                         Crows)                            
                           One (                           One)                            
                         toads (                         toads)                            
                        partly (                        partly)                            
                       fledged (                       fledged)                            
                      nestling (                      nestling)                            
                         finch (                         finch)                            
                          also (                          also)                            
                     Partridge (                     Partridge)                            
                        showed (                        showed)                            
                         perch (                         perch)                            
                          wing (                          wing)                            
                     hurriedly (                     hurriedly)                            
                        croaks (                        croaks)                            
                     expressed (                     expressed)                            
                    banqueting (                    banqueting)                            
                         ample (                         ample)                            
                          Only (                          Only)                            
                         Crows (                         Crows)                            
                   considering (                   considering)                            
                      wildfowl (                      wildfowl)                            
                       Carrion (                       Carrion)                            
                  considerable (                  considerable)                            
                       numbers (                       numbers)                            
                        arrive (                        arrive)                            
                       Seebohm (                       Seebohm)                            
                            's (                            's)                            
                       Bonhote (                              )      x      x      x      x
                            's (                            's)                            
                  communicated (                  communicated)                            
                      November (                      November)                            
                          1896 (                              )      x      x      x      x
                       Carrion (                       Carrion)                            
                             - (                             -)                            
                         Crows (                         Crows)                            
                           the (                           the)                            
                          when (                          when)                            
                       actions (                       actions)                            
                         moves (                         moves)                            
                          bird (                          bird)                            
                          Grey (                          Grey)                            
                          Crow (                          Crow)                            
                        aviary (                        aviary)                            
                             . (                             .)                            
                         comix (                         comix)                            
                          LiNN (                              )      x      x      x      x
                             . (                             .)                            
                    throughout (                    throughout)                            
                        Europe (                        Europe)                            
                             . (                             .)                            
                           10° (                              )      x      x      x      x
                             , (                             ,)                            
                           and (                           and)                            
                          Asia (                          Asia)                            
                       extends (                       extends)                            
                     Turkestan (                     Turkestan)                            
                     Palestine (                     Palestine)                            
                      Examples (                      Examples)                            
                      replaced (                      replaced)                            
                             ; (                             ;)                            
                           but (                           but)                            
                      Siberian (                      Siberian)                            
                         birds (                         birds)                            
                         birds (                         birds)                            
                             - (                             -)                            
                             . (                             .)                            
                            An (                            An)                            
                       England (                       England)                            
                        whilst (                        whilst)                            
                    Throughout (                              )      x      x      x      x
                 interbreeding (                 interbreeding)                            
                  occasionally (                  occasionally)                            
                       Carrion (                       Carrion)                            
                           and (                           and)                            
                        Hooded (                        Hooded)                            
                     remainder (                     remainder)                            
                       plumage (                       plumage)                            
                          ashy (                          ashy)                            
                      becoming (                      becoming)                            
                          bill (                          bill)                            
                          iris (                          iris)                            
                       browner (                       browner)                            
                          bill (                          bill)                            
                       broader (                       broader)                            
                         lower (                         lower)                            
                       Hoodies (                       Hoodies)                            
                    southwards (                    southwards)                            
                    visitation (                    visitation)                            
                       Royston (                       Royston)                            
                          Crow (                          Crow)                            
                      arriving (                      arriving)                            
                          They (                          They)                            
                      frequent (                      frequent)                            
                        broads (                        broads)                            
                       Norfolk (                       Norfolk)                            
                        leaves (                        leaves)                            
                      probably (                      probably)                            
                           and (                           and)                            
                  propensities (                  propensities)                            
                             . (                             .)                            
                          John (                          John)                            
                            p. (                              )      x      x      x      x
                         lambs (                         lambs)                            
                            It (                            It)                            
                        grouse (                        grouse)                            
                   destructive (                   destructive)                            
                            In (                            In)                            
                       certain (                       certain)                            
                       feeding (                       feeding)                            
                            No (                            No)                            
                          bird (                          bird)                            
                         leave (                         leave)                            
                        Hooded (                        Hooded)                            
                         often (                         often)                            
                           All (                           All)                            
                          seem (                          seem)                            
                       Peewits (                       Peewits)                            
                         Gulls (                         Gulls)                            
                     Redshanks (                     Redshanks)                            
                          etc. (                      etc.,etc)                            
                        attack (                        attack)                            
                     furiously (                     furiously)                            
                          Crow (                          Crow)                            
                         which (                         which)                            
                       hunting (                       hunting)                            
                         great (                         great)                            
                        happen (                        happen)                            
                        Redcar (                        Redcar)                            
                     Zoologist (                     Zoologist)                            
                             " (                             ")                            
                       Hoodies (                       Hoodies)                            
                       Messrs. (                        Messrs)                            
                            T. (                            T.)                            
                       Pilling (                       Pilling)                            
                       observe (                       observe)                            
                       Hoodies (                       Hoodies)                            
                       largest (                       largest)                            
                         thick (                         thick)                            
                       Seebohm (                       Seebohm)                            
                          this (                          this)                            
                             , (                              )      x      x      x      x
                           and (                           and)                            
                          says (                          says)                            
                     commences (                     commences)                            
                           the (                           the)                            
                    consisting (                    consisting)                            
                     continues (                     continues)                            
                        assume (                        assume)                            
                    Heligoland (                    Heligoland)                            
                    migrations (                    migrations)                            
                         eight (                         eight)                            
                        extend (                        extend)                            
                         while (                         while)                            
                           and (                           and)                            
                   Bremerhaven (                   Bremerhaven)                            
                            as (                            as)                            
                         plies (                         plies)                            
                            We (                            We)                            
                     migration (                     migration)                            
                        column (                        column)                            
                          Herr (                          Herr)                            
                      proceeds (                      proceeds)                            
                  nevertheless (                  nevertheless)                            
                     important (                     important)                            
                            as (                            as)                            
                         Crows (                         Crows)                            
                           the (                           the)                            
                       creates (                       creates)                            
                       species (                       species)                            
                  nevertheless (                  nevertheless)                            
                           all (                           all)                            
                        during (                        during)                            
                     migration (                     migration)                            
                         equal (                         equal)                            
                     destroyed (                     destroyed)                            
                           the (                           the)                            
                        Hooded (                        Hooded)                            
                        during (                        during)                            
                        Hooded (                        Hooded)                            
                       becomes (                       becomes)                            
                       nowhere (                       nowhere)                            
                  prepondering (                              )      x      x      x      x
                      quantity (                      quantity)                            
                    Heligoland (                    Heligoland)                            
                           but (                           but)                            
                        during (                        during)                            
                       impedes (                       impedes)                            
                           and (                           and)                            
                      impudent (                      impudent)                            
                           are (                           are)                            
                          dawn (                          dawn)                            
                       plunder (                       plunder)                            
                          Lark (                          Lark)                            
                       Dresser (                       Dresser)                            
                        wonder (                        wonder)                            
                        Hooded (                        Hooded)                            
                          left (                          left)                            
                            By (                            By)                            
                    abstaining (                    abstaining)                            
                         small (                         small)                            
                     shrubbery (                     shrubbery)                            
                      songster (                      songster)                            
                             a (                             a)                            
                          nook (                          nook)                            
                         above (                         above)                            
                    compassing (                    compassing)                            
                        Hooded (                        Hooded)                            
                             , (                             ,)                            
                            in (                            in)                            
                           all (                           all)                            
                  nidification (                  nidification)                            
                            in (                            in)                            
                       Ireland (                       Ireland)                            
                           the (                           the)                            
                           and (                           and)                            
                     according (                     according)                            
                          like (                          like)                            
                           are (                           are)                            
                           but (                           but)                            
                        Hooded (                        Hooded)                            
                         Dixon (                         Dixon)                            
                 Ornithologist (                 Ornithologist)                            
                          Crow (                          Crow)                            
                            he (                            he)                            
                         never (                         never)                            
                       readers (                       readers)                            
                          held (                          held)                            
                        regard (                        regard)                            
                       appears (                       appears)                            
                     redeeming (                     redeeming)                            
                        Hoodie (                        Hoodie)                            
                          when (                          when)                            
                           not (                           not)                            
                         tells (                         tells)                            
                 Heligolanders (                 Heligolanders)                            
                        esteem (                        esteem)                            
                          Lord (                          Lord)                            
                       Lilford (                              )      x      x      x      x
                    abominable (                    abominable)                            
                      although (                      although)                            
                          Crow (                          Crow)                            
                       vagrant (                       vagrant)                            
                            We (                            We)                            
                           any (                           any)                            
                           but (                           but)                            
                             . (                             .)                            
                             , (                              )      x      x      x      x
                          Linn (                          Linn)                            
                            IN (                            IN)                            
                       Western (                       Western)                            
                          Rook (                          Rook)                            
                        breeds (                        breeds)                            
                     migratory (                     migratory)                            
                      Southern (                      Southern)                            
                          Asia (                          Asia)                            
                     Eastwards (                              )      x      x      x      x
                     Turkestan (                     Turkestan)                            
                      Cashmere (                      Cashmere)                            
                            In (                            In)                            
                          Rook (                          Rook)                            
                     generally (                     generally)                            
                    localities (                    localities)                            
                            in (                            in)                            
                        though (                        though)                            
                         rarer (                         rarer)                            
                          Rook (                          Rook)                            
                          grey (                          grey)                            
                         warty (                         warty)                            
                         patch (                         patch)                            
                          Bill (                          Bill)                            
                          iris (                          iris)                            
                        female (                        female)                            
                         young (                         young)                            
                       Carrion (                       Carrion)                            
                            it (                            it)                            
                          bill (                          bill)                            
                          deep (                          deep)                            
                             - (                             -)                            
                        colour (                        colour)                            
                            In (                            In)                            
                          Rook (                          Rook)                            
                            so (                            so)                            
                           but (                           but)                            
                       drought (                       drought)                            
                         after (                         after)                            
                            In (                            In)                            
                        almost (                        almost)                            
                       Carrion (                       Carrion)                            
                          weak (                          weak)                            
                         birds (                         birds)                            
                           for (                           for)                            
                     witnessed (                     witnessed)                            
                     predatory (                     predatory)                            
                        severe (                        severe)                            
                        haunts (                        haunts)                            
                          well (                          well)                            
                             - (                             -)                            
                         where (                         where)                            
                          here (                          here)                            
                        busily (                        busily)                            
                         grubs (                         grubs)                            
                            in (                            in)                            
                      swallows (                      swallows)                            
                  incalculable (                  incalculable)                            
                          wire (                          wire)                            
                   cockchafers (                   cockchafers)                            
                       devours (                       devours)                            
                          such (                          such)                            
                         grubs (                         grubs)                            
                  considerable (                  considerable)                            
                   destructive (                   destructive)                            
                   caterpillar (                   caterpillar)                            
                             ) (                             ))                            
                             . (                             .)                            
                        either (                        either)                            
                        copses (                        copses)                            
                      bounding (                      bounding)                            
                           but (                           but)                            
                     Stevenson (                     Stevenson)                            
                       rightly (                       rightly)                            
                     selecting (                     selecting)                            
                        Scotch (                        Scotch)                            
                     Spixworth (                     Spixworth)                            
                          Park (                          Park)                            
                   laurustinus (                   laurustinus)                            
                        bushes (                        bushes)                            
                          feet (                          feet)                            
                          ilex (                          ilex)                            
                         close (                         close)                            
                    connecting (                    connecting)                            
                       rookery (                       rookery)                            
                      moreover (                      moreover)                            
                     continual (                     continual)                            
                        noises (                        noises)                            
                         Rooks (                         Rooks)                            
                         still (                         still)                            
                         breed (                         breed)                            
                            or (                            or)                            
                      repaired (                      repaired)                            
                         March (                         March)                            
                          mild (                          mild)                            
                      building (                      building)                            
                    operations (                    operations)                            
                     sometimes (                     sometimes)                            
                      commence (                      commence)                            
                        1895-6 (                              )      x      x      x      x
                             I (                             I)                            
                         Rooks (                         Rooks)                            
                       sitting (                       sitting)                            
                           had (                           had)                            
                         Rooks (                         Rooks)                            
                       rookery (                       rookery)                            
                         close (                         close)                            
                     repairing (                     repairing)                            
                         their (                         their)                            
                       January (                       January)                            
                             a (                             a)                            
                         daily (                         daily)                            
                       visited (                       visited)                            
                        garden (                        garden)                            
                       Dulwich (                       Dulwich)                            
                         first (                         first)                            
                          made (                          made)                            
                      assuring (                      assuring)                            
                         Rooks (                         Rooks)                            
                      carrying (                      carrying)                            
                     Feathered (                     Feathered)                            
                           Mr. (                        Mr.,Mr)                            
                            W. (                              )      x      x      x      x
                            N. (                              )      x      x      x      x
                        Rushen (                        Rushen)                            
                          says (                          says)                            
                         Rooks (                         Rooks)                            
                          near (                          near)                            
                      Wanstead (                      Wanstead)                            
                           and (                           and)                            
                          must (                          must)                            
                        formed (                        formed)                            
                        sticks (                        sticks)                            
                          moss (                          moss)                            
                          dead (                          dead)                            
                        number (                        number)                            
                       similar (                       similar)                            
                          they (                          they)                            
                     different (                     different)                            
                         nests (                         nests)                            
                           the (                           the)                            
                          deep (                          deep)                            
                       figured (                       figured)                            
                         figs. (                          figs)                            
                           241 (                              )      x      x      x      x
                           243 (                              )      x      x      x      x
                          Farn (                          Farn)                            
                            's (                            's)                            
                             . (                             .)                            
                            as (                            as)                            
                        branch (                        branch)                            
                           tip (                           tip)                            
                      forwards (                      forwards)                            
                           but (                           but)                            
                     gradually (                     gradually)                            
                            To (                            To)                            
                     authoress (                     authoress)                            
                             ' (                             ')                            
                          Rook (                          Rook)                            
                         could (                         could)                            
                        Hooded (                        Hooded)                            
                           she (                           she)                            
                        parent (                        parent)                            
                           Yet (                           Yet)                            
                      creature (                      creature)                            
                           and (                           and)                            
                     clamorous (                     clamorous)                            
                        mouths (                        mouths)                            
                  depredations (                  depredations)                            
                          Poor (                          Poor)                            
                        hunted (                        hunted)                            
                          Crow (                          Crow)                            
                       against (                       against)                            
                           man (                           man)                            
                           She (                           She)                            
                     thirsting (                     thirsting)                            
                      cylinder (                      cylinder)                            
                       pointed (                       pointed)                            
                         snare (                         snare)                            
                      entangle (                      entangle)                            
                          dear (                          dear)                            
                       clamour (                       clamour)                            
                            or (                            or)                            
                         Robin (                         Robin)                            
                        babies (                        babies)                            
                        babies (                        babies)                            
                           The (                           The)                            
                       ignores (                       ignores)                            
                           she (                           she)                            
                          carr (                          carr)                            
                           and (                           and)                            
                       rookery (                       rookery)                            
                          born (                          born)                            
                     incessant (                     incessant)                            
                             . (                             .)                            
                          arid (                          arid)                            
                    localities (                    localities)                            
                      mollusca (                      mollusca)                            
                       carrion (                       carrion)                            
                         Later (                         Later)                            
                        fruits (                        fruits)                            
                         beech (                         beech)                            
                           but (                           but)                            
                        refuse (                        refuse)                            
                         heaps (                         heaps)                            
                          cast (                          cast)                            
                        though (                        though)                            
                      sparrows (                      sparrows)                            
                          cage (                          cage)                            
                       brother (                       brother)                            
                           Mr. (                            Mr)                            
                       Bonhote (                              )      x      x      x      x
                        writes (                        writes)                            
                           but (                           but)                            
                       Carrion (                       Carrion)                            
                      scarcely (                      scarcely)                            
                        FAMILY (                        FAMILY)                            
                             . (                             .)                            
                           THE (                           THE)                            
                      position (                      position)                            
                           has (                           has)                            
                          this (                          this)                            
                            as (                            as)                            
                            's (                            's)                            
                     evidently (                     evidently)                            
                     advocated (                     advocated)                            
                           Dr. (                        Dr.,Dr)                            
                         Larks (                         Larks)                            
                          than (                          than)                            
                        Pipits (                        Pipits)                            
                           had (                           had)                            
                         borne (                         borne)                            
                            's (                            's)                            
                        appear (                        appear)                            
                        Pipits (                        Pipits)                            
                      Thrushes (                      Thrushes)                            
                            do (                            do)                            
                      Warblers (                      Warblers)                            
                        Jerdon (                        Jerdon)                            
                            's (                            's)                            
                             - (                             -)                            
                           may (                           may)                            
                            on (                            on)                            
                           and (                           and)                            
                             ; (                             ;)                            
                           and (                           and)                            
                        Pipits (                        Pipits)                            
                       through (                       through)                            
                           The (                           The)                            
                            is (                            is)                            
                  scutellation (                  scutellation)                            
                            at (                            at)                            
                           and (                           and)                            
                   peculiarity (                   peculiarity)                            
                             ( (                             ()                            
                          they (                          they)                            
                 subordinating (                 subordinating)                            
                            O. (                            O.)                            
                           has (                           has)                            
                         Larks (                         Larks)                            
                           all (                           all)                            
                        scaled (                        scaled)                            
                         Larks (                         Larks)                            
                       walking (                       walking)                            
                         birds (                         birds)                            
                      building (                      building)                            
                       species (                       species)                            
                      roosting (                      roosting)                            
                      arboreal (                      arboreal)                            
                        rarely (                        rarely)                            
                         perch (                         perch)                            
                           and (                           and)                            
                          dust (                          dust)                            
                      Sparrows (                      Sparrows)                            
                  Gallinaceous (                  Gallinaceous)                            
                         Their (                         Their)                            
                         Larks (                         Larks)                            
                           are (                           are)                            
                           the (                           the)                            
                      stronger (                      stronger)                            
                     doubtless (                     doubtless)                            
                       soaring (                       soaring)                            
                      hovering (                      hovering)                            
                             - (                             -)                            
                       fulness (                       fulness)                            
                            By (                            By)                            
                          bird (                          bird)                            
                         Larks (                         Larks)                            
                      directly (                      directly)                            
                         tells (                         tells)                            
                          Lark (                          Lark)                            
                   Practically (                              )      x      x      x      x
                    constitute (                    constitute)                            
                        Jerdon (                        Jerdon)                            
                      observes (                      observes)                            
                           and (                           and)                            
                             . (                              )      x      x      x      x
                        Alauda (                        Alauda)                            
                             , (                             ,)                            
                          LiNN (                              )      x      x      x      x
                             . (                             .)                            
                         FOUND (                              )      x      x      x      x
                        during (                        during)                            
                       nesting (                       nesting)                            
                           70° (                          70.5)                            
                             , (                             ,)                            
                     sparingly (                     sparingly)                            
                         South (                         South)                            
                     Turkestan (                     Turkestan)                            
                            In (                            In)                            
                    Throughout (                              )      x      x      x      x
                             - (                             -)                            
                          have (                          have)                            
                            A. (                              )      x      x      x      x
                      dulcivox (                              )      x      x      x      x
                            A. (                          A.,A)                            
                            A. (                          A.,A)                            
                        liopus (                              )      x      x      x      x
                            A. (                          A.,A)                            
                    blakistoni (                              )      x      x      x      x
                            A. (                          A.,A)                            
                            A. (                          A.,A)                            
                            A. (                          A.,A)                            
                            A. (                              )      x      x      x      x
                          sala (                          sala)                            
                           but (                           but)                            
                   intergrades (                   intergrades)                            
                         exist (                         exist)                            
                Ornithologists (                Ornithologists)                            
                     generally (                     generally)                            
                           Our (                           Our)                            
                           Sky (                           Sky)                            
                             - (                             -)                            
                        golden (                        golden)                            
                       centres (                       centres)                            
                         edges (                         edges)                            
                         paler (                         paler)                            
                           the (                           the)                            
                             - (                             -)                            
                             - (                             -)                            
                      blackish (                      blackish)                            
                        streak (                        streak)                            
                           the (                           the)                            
                       feather (                       feather)                            
                         white (                         white)                            
                         parts (                         parts)                            
                       buffish (                       buffish)                            
                            on (                            on)                            
                        throat (                        throat)                            
                          bill (                          bill)                            
                          dark (                          dark)                            
                          feet (                          feet)                            
                             - (                             -)                            
                          iris (                          iris)                            
                         hazel (                         hazel)                            
                             . (                             .)                            
                       plumage (                       plumage)                            
                             : (                             :)                            
                         birds (                         birds)                            
                          buff (                          buff)                            
                          tips (                          tips)                            
                         moult (                         moult)                            
                          both (                          both)                            
                     colouring (                     colouring)                            
                          bird (                          bird)                            
                       touches (                       touches)                            
                        longer (                        longer)                            
                             . (                             .)                            
                          thus (                          thus)                            
                      catchers (                      catchers)                            
                     forwarded (                     forwarded)                            
                   experienced (                   experienced)                            
                    poulterers (                    poulterers)                            
                      Although (                      Although)                            
                      abundant (                      abundant)                            
                        enough (                        enough)                            
                         downs (                         downs)                            
                     certainly (                     certainly)                            
                       prefers (                       prefers)                            
                        arable (                        arable)                            
                         shuns (                         shuns)                            
                       thickly (                       thickly)                            
                           but (                           but)                            
                       country (                       country)                            
                     Excepting (                              )      x      x      x      x
                            of (                            of)                            
                            it (                            it)                            
                characteristic (                characteristic)                            
                             . (                             .)                            
                        always (                        always)                            
                     commences (                     commences)                            
                      hovering (                      hovering)                            
                        action (                        action)                            
                            at (                            at)                            
                           and (                           and)                            
                      abruptly (                      abruptly)                            
                       perhaps (                       perhaps)                            
                      flutters (                      flutters)                            
                          each (                          each)                            
                        shrill (                        shrill)                            
                             , (                             ,)                            
                            of (                            of)                            
                       amongst (                       amongst)                            
                       growing (                       growing)                            
                     sheltered (                     sheltered)                            
                            an (                            an)                            
                          tuft (                          tuft)                            
                      whatever (                      whatever)                            
                             a (                             a)                            
                          nest (                          nest)                            
                        formed (                        formed)                            
                         bents (                         bents)                            
                          dead (                          dead)                            
                        number (                        number)                            
                     incubated (                     incubated)                            
                    represents (                    represents)                            
                          clay (                          clay)                            
                     generally (                     generally)                            
                       densely (                       densely)                            
                       mottled (                       mottled)                            
                          grey (                          grey)                            
                          zone (                          zone)                            
                     sometimes (                     sometimes)                            
                       streaks (                       streaks)                            
                           egg (                           egg)                            
                             I (                             I)                            
                          lent (                          lent)                            
                            XI (                            XI)                            
                          fig. (                           fig)                            
                       Bunting (                       Bunting)                            
                            it (                            it)                            
                           and (                           and)                            
                       macular (                       macular)                            
                         along (                         along)                            
                             - (                             -)                            
                         pairs (                         pairs)                            
                  nidification (                  nidification)                            
                          does (                          does)                            
                         nests (                         nests)                            
                             ; (                             ;)                            
                           two (                           two)                            
                          eggs (                          eggs)                            
                          Both (                          Both)                            
                    descending (                    descending)                            
                       towards (                       towards)                            
                       wanders (                       wanders)                            
                            By (                            By)                            
                      watching (                      watching)                            
                     patiently (                     patiently)                            
                            's (                            's)                            
                            is (                            is)                            
                            it (                            it)                            
                         trill (                         trill)                            
                  interspersed (                  interspersed)                            
                         drawn (                         drawn)                            
                  marvellously (                  marvellously)                            
                  exhilarating (                  exhilarating)                            
                   considering (                   considering)                            
                        either (                        either)                            
                       soaring (                       soaring)                            
                      consists (                      consists)                            
                           but (                           but)                            
                    gregarious (                    gregarious)                            
                       immense (                       immense)                            
                     realizing (                     realizing)                            
                          from (                          from)                            
                            to (                            to)                            
                        apiece (                        apiece)                            
                           the (                           the)                            
                            In (                            In)                            
                       rearing (                       rearing)                            
                           Sky (                           Sky)                            
                             - (                             -)                            
                         Larks (                         Larks)                            
                         seven (                         seven)                            
                           but (                           but)                            
                       bounded (                       bounded)                            
                     alighting (                     alighting)                            
                        bought (                        bought)                            
                          cage (                          cage)                            
                            In (                            In)                            
                         Sedge (                         Sedge)                            
                         birds (                         birds)                            
                           one (                           one)                            
                       jumping (                       jumping)                            
                          When (                          When)                            
                           off (                           off)                            
                       blanket (                       blanket)                            
                       tumbled (                       tumbled)                            
                             - (                             -)                            
                           and (                           and)                            
                           and (                           and)                            
                       tumbled (                       tumbled)                            
                          They (                          They)                            
                        seemed (                        seemed)                            
                           got (                           got)                            
                     purchased (                     purchased)                            
                          male (                          male)                            
                             - (                             -)                            
                   continually (                   continually)                            
                             , (                             ,)                            
                          when (                          when)                            
                    recklessly (                    recklessly)                            
                            to (                            to)                            
                            he (                            he)                            
                          claw (                          claw)                            
                    watercress (                    watercress)                            
                            In (                            In)                            
                             I (                             I)                            
                      nestling (                      nestling)                            
                           Sky (                           Sky)                            
                         Larks (                         Larks)                            
                       brought (                       brought)                            
                   Nightingale (                   Nightingale)                            
                          food (                          food)                            
                           the (                           the)                            
                        Bulbul (                        Bulbul)                            
                          into (                          into)                            
                         Larks (                         Larks)                            
                          when (                          when)                            
                      Although (                      Although)                            
                         cramp (                         cramp)                            
                        reared (                        reared)                            
                         moult (                         moult)                            
                           two (                           two)                            
                           the (                           the)                            
                          tame (                          tame)                            
                        little (                        little)                            
                            it (                            it)                            
                         crest (                         crest)                            
                            it (                            it)                            
                    eventually (                    eventually)                            
                          This (                          This)                            
                      perching (                      perching)                            
                       hanging (                       hanging)                            
                       roosted (                       roosted)                            
                       Judging (                       Judging)                            
                           own (                           own)                            
                       rearing (                       rearing)                            
                           Sky (                           Sky)                            
                         Larks (                         Larks)                            
                   Whitethroat (                   Whitethroat)                            
                            's (                            's)                            
                         fixed (                         fixed)                            
                           the (                           the)                            
                        crouch (                        crouch)                            
                           but (                           but)                            
                     moistened (                     moistened)                            
                          ants (                          ants)                            
                             ' (                             ')                            
                       cocoons (                       cocoons)                            
                          When (                          When)                            
                     mealworms (                     mealworms)                            
                           and (                           and)                            
                    watercress (                    watercress)                            
                          when (                          when)                            
                        1891-2 (                              )      x      x      x      x
                          that (                          that)                            
                          nets (                          nets)                            
                      thirteen (                      thirteen)                            
                           Sky (                           Sky)                            
                         Larks (                         Larks)                            
                         about (                         about)                            
                           one (                           one)                            
                      retained (                      retained)                            
                          This (                          This)                            
                          tame (                          tame)                            
                        turfed (                        turfed)                            
                        sanded (                        sanded)                            
                            he (                            he)                            
                          eyes (                          eyes)                            
                      dropping (                      dropping)                            
                            to (                            to)                            
                       Towards (                              )      x      x      x      x
                         moult (                         moult)                            
                           Mr. (                            Mr)                            
                           Sky (                           Sky)                            
                             - (                             -)                            
                         Larks (                         Larks)                            
                    Heligoland (                    Heligoland)                            
                           but (                           but)                            
                      Speaking (                      Speaking)                            
                    diminution (                    diminution)                            
                          Herr (                          Herr)                            
                             : (                              )      x      x      x      x
                             " (                             ")                            
                       passage (                       passage)                            
                        travel (                        travel)                            
                     migration (                     migration)                            
                           and (                           and)                            
                         Larks (                         Larks)                            
                        caught (                        caught)                            
                        autumn (                        autumn)                            
                 approximately (                 approximately)                            
                       express (                       express)                            
                       migrant (                       migrant)                            
                         245-8 (                              )      x      x      x      x
                           are (                           are)                            
                          Farn (                          Farn)                            
                            's (                            's)                            
                           249 (                              )      x      x      x      x
                       Frohawk (                       Frohawk)                            
                            's (                            's)                            
                         250-4 (                              )      x      x      x      x
                          from (                          from)                            
                             . (                             .)                            
                             , (                              )      x      x      x      x
                             . (                             .)                            
                        summer (                        summer)                            
                          Wood (                          Wood)                            
                      inhabits (                      inhabits)                            
                         below (                         below)                            
                           60° (                            60)                            
                            N. (                              )      x      x      x      x
                            as (                            as)                            
                     Southward (                     Southward)                            
                             - (                             -)                            
                          down (                          down)                            
                           its (                           its)                            
                      Northern (                      Northern)                            
                             - (                             -)                            
                      Saunders (                      Saunders)                            
                             . (                             .)                            
                            In (                            In)                            
                          Wood (                          Wood)                            
                             - (                             -)                            
                          Lark (                          Lark)                            
                     occurring (                     occurring)                            
                    undulating (                    undulating)                            
                        dotted (                        dotted)                            
                           six (                           six)                            
                           but (                           but)                            
                            In (                            In)                            
                 Stirlingshire (                 Stirlingshire)                            
                            In (                            In)                            
                     colouring (                     colouring)                            
                          Wood (                          Wood)                            
                        nearly (                        nearly)                            
                           Sky (                           Sky)                            
                             - (                             -)                            
                      perching (                      perching)                            
                           the (                           the)                            
                       bastard (                       bastard)                            
                       primary (                       primary)                            
                           the (                           the)                            
                      blackish (                      blackish)                            
                       centres (                       centres)                            
                       surface (                       surface)                            
                       central (                       central)                            
                       reddish (                       reddish)                            
                       centres (                       centres)                            
                     outermost (                     outermost)                            
                       feather (                       feather)                            
                         brown (                         brown)                            
                         dusky (                         dusky)                            
                     remaining (                     remaining)                            
                      feathers (                      feathers)                            
                      blackish (                      blackish)                            
                    triangular (                    triangular)                            
                             a (                             a)                            
                       buffish (                       buffish)                            
                           ear (                           ear)                            
                        rufous (                        rufous)                            
                        cheeks (                        cheeks)                            
                     yellowish (                     yellowish)                            
                        flanks (                        flanks)                            
                      brownish (                      brownish)                            
                        throat (                        throat)                            
                      narrowly (                      narrowly)                            
                        breast (                        breast)                            
                       broadly (                       broadly)                            
                      streaked (                      streaked)                            
                             ; (                             ;)                            
                          bill (                          bill)                            
                          dark (                          dark)                            
                          feet (                          feet)                            
                         light (                         light)                            
                          horn (                          horn)                            
                             - (                             -)                            
                          iris (                          iris)                            
                         hazel (                         hazel)                            
                             . (                             .)                            
                            as (                            as)                            
                             - (                             -)                            
                           the (                           the)                            
                       shorter (                       shorter)                            
                           are (                           are)                            
                         above (                         above)                            
                         below (                         below)                            
                       spotted (                       spotted)                            
                            On (                            On)                            
                           Dr. (                            Dr)                            
                           and (                           and)                            
                       Lullula (                       Lullula)                            
                             , (                             ,)                            
                          Kaup (                          Kaup)                            
                          Col. (                           Col)                            
                            L. (                            L.)                            
                   Ornithology (                   Ornithology)                            
                          that (                          that)                            
                    Andalucian (                    Andalucian)                            
                          Wood (                          Wood)                            
                             - (                             -)                            
                          Lark (                          Lark)                            
                   frequenting (                   frequenting)                            
                         scrub (                         scrub)                            
                           not (                           not)                            
                         thick (                         thick)                            
                      locality (                      locality)                            
                     Gibraltar (                     Gibraltar)                            
                             ( (                             ()                            
                          Well (                          Well)                            
                          bird (                          bird)                            
                          they (                          they)                            
                         never (                         never)                            
                       remains (                       remains)                            
                      timbered (                      timbered)                            
                           not (                           not)                            
                     clearings (                     clearings)                            
                      although (                      although)                            
                       resorts (                       resorts)                            
                           for (                           for)                            
                       commons (                       commons)                            
                           but (                           but)                            
                         trees (                         trees)                            
                      Although (                      Although)                            
                         feeds (                         feeds)                            
                        roosts (                        roosts)                            
                        builds (                        builds)                            
                       tussock (                       tussock)                            
                            it (                            it)                            
                         built (                         built)                            
                             - (                             -)                            
                     sometimes (                     sometimes)                            
                         couch (                         couch)                            
                         grass (                         grass)                            
                     sometimes (                     sometimes)                            
                         grass (                         grass)                            
                         bents (                         bents)                            
                       Central (                       Central)                            
                       Lilford (                              )      x      x      x      x
                         until (                         until)                            
                            or (                            or)                            
                        greyer (                        greyer)                            
                         spots (                         spots)                            
                        massed (                        massed)                            
                            as (                            as)                            
                     confluent (                     confluent)                            
                         being (                         being)                            
                      admitted (                      admitted)                            
                      resemble (                      resemble)                            
                        enough (                        enough)                            
                    consisting (                    consisting)                            
                             - (                             -)                            
                            's (                            's)                            
                           and (                           and)                            
                            it (                            it)                            
                            is (                            is)                            
                  nevertheless (                  nevertheless)                            
                    persevered (                    persevered)                            
                            it (                            it)                            
                           but (                           but)                            
                           old (                           old)                            
                      Grayling (                      Grayling)                            
                             ; (                             ;)                            
                            we (                            we)                            
                    delightful (                    delightful)                            
                       looking (                       looking)                            
                        espied (                        espied)                            
                           eye (                           eye)                            
                             - (                             -)                            
                     Presently (                              )      x      x      x      x
                        rising (                        rising)                            
                     obliquely (                     obliquely)                            
                      swinging (                      swinging)                            
                        rising (                        rising)                            
                        spiral (                        spiral)                            
                        curves (                        curves)                            
                          does (                          does)                            
                      gloaming (                      gloaming)                            
                       rustics (                       rustics)                            
                   Nightingale (                   Nightingale)                            
                           but (                           but)                            
                      Although (                      Although)                            
                     sometimes (                     sometimes)                            
                         soars (                         soars)                            
                         quite (                         quite)                            
                          this (                          this)                            
                      moreover (                      moreover)                            
                            it (                            it)                            
                     obliquely (                     obliquely)                            
                         jerky (                         jerky)                            
                         drops (                         drops)                            
                          Lark (                          Lark)                            
                            On (                            On)                            
                           but (                           but)                            
                           fed (                           fed)                            
                     repletion (                     repletion)                            
                         Later (                         Later)                            
                             I (                             I)                            
                       exerted (                       exerted)                            
                      hawthorn (                      hawthorn)                            
                         About (                         About)                            
                          bird (                          bird)                            
                          Wood (                          Wood)                            
                    splendidly (                    splendidly)                            
                           One (                           One)                            
                             I (                             I)                            
                            it (                            it)                            
                             ; (                             ;)                            
                       however (                       however)                            
                          Lark (                          Lark)                            
                           and (                           and)                            
                           Sky (                           Sky)                            
                             - (                             -)                            
                         whose (                         whose)                            
                             - (                             -)                            
                       figured (                       figured)                            
                          Farn (                          Farn)                            
                            's (                            's)                            
                       Crested (                       Crested)                            
                             , (                             ,)                            
                          LiNN (                              )      x      x      x      x
                             . (                             .)                            
                      RESIDENT (                              )      x      x      x      x
                       Central (                       Central)                            
                           60° (                            60)                            
                            N. (                              )      x      x      x      x
                            in (                            in)                            
                         North (                         North)                            
                    Senegambia (                    Senegambia)                            
                     Abyssinia (                     Abyssinia)                            
                          east (                          east)                            
                            To (                            To)                            
                           one (                           one)                            
                        Sussex (                        Sussex)                            
                  Macclesfield (                  Macclesfield)                            
                      climatic (                      climatic)                            
                 modifications (                 modifications)                            
                          Lark (                          Lark)                            
                           all (                           all)                            
                       typical (                       typical)                            
                        darker (                        darker)                            
                       centres (                       centres)                            
                           the (                           the)                            
                         crest (                         crest)                            
                        darker (                        darker)                            
                           the (                           the)                            
                       primary (                       primary)                            
                           the (                           the)                            
                             , (                             ,)                            
                         outer (                         outer)                            
                       feather (                       feather)                            
                             - (                             -)                            
                        margin (                        margin)                            
                           web (                           web)                            
                           the (                           the)                            
                     backwards (                     backwards)                            
                       buffish (                       buffish)                            
                           the (                           the)                            
                       buffish (                       buffish)                            
                        deeper (                        deeper)                            
                         sides (                         sides)                            
                       spotted (                       spotted)                            
                        breast (                        breast)                            
                       spotted (                       spotted)                            
                        flanks (                        flanks)                            
                      slightly (                      slightly)                            
                      streaked (                      streaked)                            
                             ; (                             ;)                            
                          bill (                          bill)                            
                      mandible (                      mandible)                            
                         paler (                         paler)                            
                          feet (                          feet)                            
                        fleshy (                        fleshy)                            
                          iris (                          iris)                            
                         hazel (                         hazel)                            
                             . (                             .)                            
                         crest (                         crest)                            
                     rufescent (                     rufescent)                            
                      blackish (                      blackish)                            
                           sub (                           sub)                            
                             - (                             -)                            
                          tips (                          tips)                            
                         moult (                         moult)                            
                       becomes (                       becomes)                            
                       centres (                       centres)                            
                          less (                          less)                            
                          Col. (                           Col)                            
                   Ornithology (                   Ornithology)                            
                     Andalucia (                     Andalucia)                            
                          They (                          They)                            
                   distributed (                   distributed)                            
                         pairs (                         pairs)                            
                          some (                          some)                            
                   Excessively (                              )      x      x      x      x
                          tame (                          tame)                            
                   frequenting (                   frequenting)                            
                         roads (                         roads)                            
                          dung (                          dung)                            
                            at (                            at)                            
                            as (                            as)                            
                       dusting (                       dusting)                            
                           and (                           and)                            
                        within (                        within)                            
                         birds (                         birds)                            
                          This (                          This)                            
                     migrating (                     migrating)                            
                       Crested (                       Crested)                            
                       usually (                       usually)                            
                             - (                             -)                            
                         Larks (                         Larks)                            
                         bents (                         bents)                            
                          etc. (                      etc.,etc)                            
                      Saunders (                      Saunders)                            
                             " (                             ")                            
                     commenced (                     commenced)                            
                    depression (                    depression)                            
                             - (                             -)                            
                       herbage (                       herbage)                            
                           the (                           the)                            
                         grass (                         grass)                            
                    distinctly (                    distinctly)                            
                       average (                       average)                            
                  measurements (                  measurements)                            
                            in (                            in)                            
                             . (                             .)                            
                    Incubation (                    Incubation)                            
                           the (                           the)                            
                       Crested (                       Crested)                            
                         roads (                         roads)                            
                       dusting (                       dusting)                            
                         glide (                         glide)                            
                           Its (                           Its)                            
                          Lark (                          Lark)                            
                             . (                             .)                            
                    gregarious (                    gregarious)                            
                          seen (                          seen)                            
                         pairs (                         pairs)                            
                       parties (                       parties)                            
                        liquid (                        liquid)                            
                       uttered (                       uttered)                            
                             a (                             a)                            
                           the (                           the)                            
                     syllabled (                     syllabled)                            
                             ' (                             ')                            
                             ' (                             ')                            
                         horse (                         horse)                            
                         Dixon (                         Dixon)                            
                            he (                            he)                            
                          soar (                          soar)                            
                      warbling (                      warbling)                            
                      Theobald (                      Theobald)                            
                     describes (                     describes)                            
                ovato-pyriform (                              )      x      x      x      x
                             - (                             -)                            
                      freckled (                      freckled)                            
                        Jerdon (                        Jerdon)                            
                       Chendul (                              )      x      x      x      x
                       chiefly (                       chiefly)                            
                         grass (                         grass)                            
                            II (                            II)                            
                           nor (                           nor)                            
                     Himalayas (                     Himalayas)                            
                            It (                            It)                            
                      ploughed (                      ploughed)                            
                            It (                            It)                            
                            A. (                              )      x      x      x      x
                           nor (                           nor)                            
                            In (                            In)                            
                  considerable (                  considerable)                            
                        flocks (                        flocks)                            
                        Jerdon (                        Jerdon)                            
                       Chendul (                              )      x      x      x      x
                       Seebohm (                       Seebohm)                            
                        states (                        states)                            
                       Bunting (                       Bunting)                            
                         caged (                         caged)                            
                           the (                           the)                            
                        custom (                        custom)                            
                          Herr (                          Herr)                            
                        Rausch (                        Rausch)                            
                        speaks (                        speaks)                            
                      songster (                      songster)                            
                          wild (                          wild)                            
                        singer (                        singer)                            
                       Perhaps (                       Perhaps)                            
                          Herr (                          Herr)                            
                        Rausch (                        Rausch)                            
                          like (                          like)                            
                       Seebohm (                       Seebohm)                            
                       Bunting (                       Bunting)                            
                            as (                            as)                            
                          This (                          This)                            
                           the (                           the)                            
                     specimens (                     specimens)                            
                          have (                          have)                            
                      variable (                      variable)                            
                        liquid (                        liquid)                            
                          song (                          song)                            
                          N.W. (                              )      x      x      x      x
                         India (                         India)                            
                       Judging (                       Judging)                            
                            's (                              )      x      x      x      x
                         India (                         India)                            
                      Tientsin (                      Tientsin)                            
                          Lark (                          Lark)                            
                      scolding (                      scolding)                            
                            My (                            My)                            
                 aviculturists (                 aviculturists)                            
                         would (                         would)                            
                        Rausch (                        Rausch)                            
                            's (                            's)                            
                           but (                           but)                            
                        desire (                        desire)                            
                       Crested (                       Crested)                            
                        import (                        import)                            
                        (P.Z.S (                              )      x      x      x      x
                             . (                             .)                            
                            In (                            In)                            
                        Jerdon (                        Jerdon)                            
                           Cat (                           Cat)                            
                         Birds (                         Birds)                            
                            E. (                              )      x      x      x      x
                           Ind (                           Ind)                            
                             . (                             .)                            
                          Comp (                          Comp)                            
                            II (                            II)                            
                  grasshoppers (                  grasshoppers)                            
                       Seebohm (                       Seebohm)                            
                             - (                             -)                            
                             " (                             ")                            
                            In (                            In)                            
                       insects (                       insects)                            
                     mealworms (                     mealworms)                            
                             . (                              )      x      x      x      x
                          Lark (                          Lark)                            
                             . (                             .)                            
                             , (                              )      x      x      x      x
                             . (                             .)                            
                          THIS (                          THIS)                            
                       species (                       species)                            
                          1869 (                              )      x      x      x      x
                        Rowley (                        Rowley)                            
                          1870 (                              )      x      x      x      x
                       species (                       species)                            
                           and (                           and)                            
                            by (                            by)                            
                     Mongolian (                     Mongolian)                            
                          This (                          This)                            
                            in (                            in)                            
                       January (                       January)                            
                          1908 (                              )      x      x      x      x
                        Sussex (                        Sussex)                            
                             . (                             .)                            
                             . (                             .)                            
                             , (                              )      x      x      x      x
                         FoRST (                              )      x      x      x      x
                             . (                             .)                            
                             A (                             A)                            
                         FLOCK (                              )      x      x      x      x
                         About (                         About)                            
                      imported (                      imported)                            
                    Leadenhall (                    Leadenhall)                            
                         Larks (                         Larks)                            
                      Ortolans (                      Ortolans)                            
                           and (                           and)                            
                        Quails (                        Quails)                            
                             " (                             ")                            
                        almost (                        almost)                            
                      bullocks (                      bullocks)                            
                       jerking (                       jerking)                            
                          open (                          open)                            
                      smashing (                      smashing)                            
                      liberate (                      liberate)                            
                        enough (                        enough)                            
                         flock (                         flock)                            
                            No (                            No)                            
                  importations (                  importations)                            
                         birds (                         birds)                            
                        Family (                        Family)                            
                             . (                             .)                            
                             , (                              )      x      x      x      x
                         LEISL (                              )      x      x      x      x
                             . (                             .)                            
                        HOWARD (                              )      x      x      x      x
                      SAUNDERS (                              )      x      x      x      x
                        admits (                        admits)                            
                   justifiably (                   justifiably)                            
                             , (                              )      x      x      x      x
                 characterized (                 characterized)                            
                         crest (                         crest)                            
                       conical (                       conical)                            
                          hind (                          hind)                            
                 infinitesimal (                 infinitesimal)                            
                       bastard (                       bastard)                            
                       primary (                       primary)                            
                             . (                             .)                            
                      Inhabits (                              )      x      x      x      x
                      Southern (                      Southern)                            
                            in (                            in)                            
                             ; (                             ;)                            
                      eastward (                      eastward)                            
                            To (                            To)                            
                     straggler (                     straggler)                            
                         about (                         about)                            
                 authenticated (                 authenticated)                            
                            of (                            of)                            
                           one (                           one)                            
                        caught (                        caught)                            
                           was (                           was)                            
                            In (                            In)                            
                           the (                           the)                            
                             - (                             -)                            
                      blackish (                      blackish)                            
                           but (                           but)                            
                       patches (                       patches)                            
                             a (                             a)                            
                  superciliary (                  superciliary)                            
                        streak (                        streak)                            
                         under (                         under)                            
                             a (                             a)                            
                          neck (                          neck)                            
                          bill (                          bill)                            
                          dark (                          dark)                            
                          feet (                          feet)                            
                          horn (                          horn)                            
                          iris (                          iris)                            
                         hazel (                         hazel)                            
                             . (                             .)                            
                        tipped (                        tipped)                            
                          buff (                          buff)                            
                         moult (                         moult)                            
                       Colonel (                       Colonel)                            
                          Irby (                          Irby)                            
                   Ornithology (                   Ornithology)                            
                        says:- (                          says)                            
                             " (                             ")                            
                    Andalucian (                    Andalucian)                            
                     commences (                     commences)                            
                         nests (                         nests)                            
                   Excessively (                              )      x      x      x      x
                      abundant (                      abundant)                            
                             ; (                             ;)                            
                          they (                          they)                            
                             , (                              )      x      x      x      x
                          clod (                          clod)                            
                    depression (                    depression)                            
                             I (                             I)                            
                           off (                           off)                            
                             " (                             ")                            
                      Saunders (                      Saunders)                            
                     frequents (                     frequents)                            
                           dry (                           dry)                            
                         while (                         while)                            
                            is (                            is)                            
                            in (                            in)                            
                      shooting (                      shooting)                            
                       blowing (                       blowing)                            
                           cut (                           cut)                            
                        utters (                        utters)                            
                          song (                          song)                            
                          clod (                          clod)                            
                        flight (                        flight)                            
                            In (                            In)                            
                  nidification (                  nidification)                            
                            as (                            as)                            
                       Seebohm (                       Seebohm)                            
                        varies (                        varies)                            
                    commencing (                    commencing)                            
                            in (                            in)                            
                       nesting (                       nesting)                            
                    operations (                    operations)                            
                     sheltered (                     sheltered)                            
                         Larks (                         Larks)                            
                         grass (                         grass)                            
                      feathers (                      feathers)                            
                          bird (                          bird)                            
                           but (                           but)                            
                           Sky (                           Sky)                            
                             - (                             -)                            
                         Larks (                         Larks)                            
                            In (                            In)                            
                     colouring (                     colouring)                            
                       whitish (                       whitish)                            
                        freely (                        freely)                            
                     sprinkled (                     sprinkled)                            
                         smoky (                         smoky)                            
                        greyer (                        greyer)                            
                         shell (                         shell)                            
                         these (                         these)                            
                       marking (                       marking)                            
                           but (                           but)                            
                         Larks (                         Larks)                            
                        Jerdon (                        Jerdon)                            
                            cf (                            cf)                            
                           Cat (                           Cat)                            
                         Birds (                         Birds)                            
                            E. (                              )      x      x      x      x
                            I. (                             I)                            
                            II (                            II)                            
                            It (                            It)                            
                    associates (                    associates)                            
                   frequenting (                   frequenting)                            
                          bare (                          bare)                            
                             - (                             -)                            
                         downs (                         downs)                            
                            it (                            it)                            
                         grain (                         grain)                            
                       retires (                       retires)                            
                          from (                          from)                            
                            II (                            II)                            
                          both (                          both)                            
                          Lark (                          Lark)                            
                            's (                            's)                            
                       Towards (                              )      x      x      x      x
                         April (                         April)                            
                        flocks (                        flocks)                            
                          into (                          into)                            
                        troops (                        troops)                            
                    containing (                    containing)                            
                         birds (                         birds)                            
                     darkening (                     darkening)                            
                             . (                             .)                            
                         Great (                         Great)                            
                           are (                           are)                            
                           for (                           for)                            
                            On (                            On)                            
                        parade (                        parade)                            
                             , (                             ,)                            
                            at (                            at)                            
                       Kamptee (                       Kamptee)                            
                             I (                             I)                            
                        bagged (                        bagged)                            
                        twelve (                        twelve)                            
                         birds (                         birds)                            
                   discharging (                   discharging)                            
                          both (                          both)                            
                         birds (                         birds)                            
                       escaped (                       escaped)                            
                          They (                          They)                            
                        called (                        called)                            
                       Ortolan (                       Ortolan)                            
                            by (                            by)                            
                          They (                          They)                            
                         breed (                         breed)                            
                        laying (                        laying)                            
                        rufous (                        rufous)                            
                         spots (                         spots)                            
                     unspotted (                     unspotted)                            
                        yellow (                        yellow)                            
                         Larks (                         Larks)                            
                       insects (                       insects)                            
                          Herr (                          Herr)                            
                          says (                          says)                            
                    Heligoland (                    Heligoland)                            
                             " (                             ")                            
                           pp. (                            pp)                            
                      359-360) (                              )      x      x      x      x
                             : (                              )      x      x      x      x
                             " (                             ")                            
                          Lark (                          Lark)                            
                         being (                         being)                            
                     instances (                     instances)                            
                             . (                             .)                            
                            In (                            In)                            
                           and (                           and)                            
                       besides (                       besides)                            
                             I (                             I)                            
                            it (                            it)                            
                       stunned (                       stunned)                            
                          soon (                          soon)                            
                          tame (                          tame)                            
                            It (                            It)                            
                           but (                           but)                            
                           Its (                           Its)                            
                       Bunting (                       Bunting)                            
                          than (                          than)                            
                          Lark (                          Lark)                            
                             . (                             .)                            
                             I (                             I)                            
                        Canary (                        Canary)                            
                             - (                             -)                            
                             a (                             a)                            
                          Lark (                          Lark)                            
                             . (                             .)                            
                             , (                              )      x      x      x      x
                             . (                             .)                            
                        BREEDS (                              )      x      x      x      x
                        within (                        within)                            
                           the (                           the)                            
                            on (                            on)                            
                      eastward (                      eastward)                            
                     Turkestan (                     Turkestan)                            
                            S. (                              )      x      x      x      x
                            To (                            To)                            
                          when (                          when)                            
                     according (                     according)                            
                         Aplin (                         Aplin)                            
                            In (                            In)                            
                          Fair (                          Fair)                            
                        partly (                        partly)                            
                        creamy (                        creamy)                            
                           the (                           the)                            
                      erectile (                      erectile)                            
                          tuft (                          tuft)                            
                        cheeks (                        cheeks)                            
                           ear (                           ear)                            
                        creamy (                        creamy)                            
                          nape (                          nape)                            
                             , (                             ,)                            
                     vinaceous (                     vinaceous)                            
                          wing (                          wing)                            
                             - (                             -)                            
                        quills (                        quills)                            
                         smoky (                         smoky)                            
                         white (                         white)                            
                          ashy (                          ashy)                            
                             - (                             -)                            
                       margins (                       margins)                            
                      feathers (                      feathers)                            
                       greyish (                       greyish)                            
                       centres (                       centres)                            
                           two (                           two)                            
                      coloured (                      coloured)                            
                     remainder (                     remainder)                            
                         under (                         under)                            
                        creamy (                        creamy)                            
                        vinous (                        vinous)                            
                            on (                            on)                            
                        flanks (                        flanks)                            
                          bill (                          bill)                            
                          iris (                          iris)                            
                          deep (                          deep)                            
                      erectile (                      erectile)                            
                         tufts (                         tufts)                            
                       centres (                       centres)                            
                         Young (                         Young)                            
                         moult (                         moult)                            
                         adult (                         adult)                            
                            In (                            In)                            
                             - (                             -)                            
                      inhabits (                      inhabits)                            
                       Seebohm (                       Seebohm)                            
                          says (                          says)                            
                      Everyone (                      Everyone)                            
                            It (                            It)                            
                            At (                            At)                            
                          does (                          does)                            
                          take (                          take)                            
                            As (                            As)                            
                         Larks (                         Larks)                            
                        stones (                        stones)                            
                     sometimes (                     sometimes)                            
                     naturally (                     naturally)                            
                       differs (                       differs)                            
                    externally (                    externally)                            
                          dead (                          dead)                            
                         bents (                         bents)                            
                           but (                           but)                            
                      reindeer (                      reindeer)                            
                        number (                        number)                            
                     generally (                     generally)                            
                            To (                            To)                            
                   conspicuous (                   conspicuous)                            
                           Mr. (                            Mr)                            
                          Hole (                          Hole)                            
                           Sky (                           Sky)                            
                         Larks (                         Larks)                            
                            He (                            He)                            
                           you (                           you)                            
                       firstly (                       firstly)                            
                      chancing (                      chancing)                            
                           and (                           and)                            
                          shot (                          shot)                            
                           and (                           and)                            
                          Lark (                          Lark)                            
                      consists (                      consists)                            
                            it (                            it)                            
                       devours (                       devours)                            
                         small (                         small)                            
                      mollusca (                      mollusca)                            
                     Crustacea (                     Crustacea)                            
                          cast (                          cast)                            
                         Being (                         Being)                            
                          both (                          both)                            
                          tame (                          tame)                            
                     beautiful (                     beautiful)                            
                         caged (                         caged)                            
                           and (                           and)                            
                          bird (                          bird)                            
                          Herr (                          Herr)                            
                      observes (                      observes)                            
                     agreeably (                     agreeably)                            
                          Lark (                          Lark)                            
                           its (                           its)                            
                       peevish (                       peevish)                            
                           and (                           and)                            
                   impetuously (                   impetuously)                            
                    fluttering (                    fluttering)                            
                          this (                          this)                            
                      prettily (                      prettily)                            
                          cage (                          cage)                            
                            My (                            My)                            
                         flies (                         flies)                            
                       earwigs (                       earwigs)                            
                       rejects (                       rejects)                            
                         Small (                         Small)                            
                         moths (                         moths)                            
                           Its (                           Its)                            
                        staple (                        staple)                            
                        Canary (                        Canary)                            
                             - (                             -)                            
                    procurable (                    procurable)                            
                     Sustained (                     Sustained)                            
                         keeps (                         keeps)                            
                         every (                         every)                            
                         Larks (                         Larks)                            
                             - (                             -)                            
                             - (                             -)                            
                           one (                           one)                            
                          Lark (                          Lark)                            
                          husk (                          husk)                            
                          seed (                          seed)                            
                          this (                          this)                            
                           but (                           but)                            
                          Lark (                          Lark)                            
                      swallows (                      swallows)                            
                        ejects (                        ejects)                            
                         later (                         later)                            
                 insectivorous (                 insectivorous)                            
                          When (                          When)                            
                         Larks (                         Larks)                            
                         would (                         would)                            
                       insects (                       insects)                            
                           and (                           and)                            
                       subsist (                       subsist)                            
                         seeds (                         seeds)                            
                            it (                            it)                            
                        solely (                        solely)                            
                        soaked (                        soaked)                            
                          ants (                          ants)                            
                             ' (                             ')                            
                       cocoons (                       cocoons)                            
                     unnatural (                     unnatural)                            
                         Larks (                         Larks)                            
                           you (                           you)                            
                      recently (                      recently)                            
                     branchers (                     branchers)                            
                         Larks (                         Larks)                            
                            it (                            it)                            
                     branchers (                     branchers)                            
                         tamer (                         tamer)                            
                     perfectly (                     perfectly)                            
                          tame (                          tame)                            
                      Appendix (                      Appendix)                            
                             . (                             .)                            
                          WHEN (                          WHEN)                            
                            It (                            It)                            
                          need (                          need)                            
                   particulars (                   particulars)                            
                    respecting (                    respecting)                            
                           Had (                           Had)                            
                      articles (                      articles)                            
                       Messrs. (                        Messrs)                            
                      Witherby (                      Witherby)                            
                            F. (                              )      x      x      x      x
                     Ticehurst (                     Ticehurst)                            
                          been (                          been)                            
                           all (                           all)                            
                      vagrants (                      vagrants)                            
                     gentlemen (                     gentlemen)                            
                            As (                            As)                            
                    considered (                    considered)                            
                      visitors (                      visitors)                            
                          here (                          here)                            
                     published (                     published)                            
                        Family (                        Family)                            
                             . (                             .)                            
                             . (                              )      x      x      x      x
                         Dusky (                              )      x      x      x      x
                             , (                              )      x      x      x      x
                        BechsT (                              )      x      x      x      x
                             . (                             .)                            
                      specimen (                      specimen)                            
                     Gunthorpe (                     Gunthorpe)                            
                         Notts (                         Notts)                            
                             . (                             .)                            
                          1905 (                              )      x      x      x      x
                         Outer (                         Outer)                            
                         White (                         White)                            
                            's (                            's)                            
                          1902 (                              )      x      x      x      x
                           now (                           now)                            
                         Ouzel (                         Ouzel)                            
                        Family (                        Family)                            
                      Saxicola (                      Saxicola)                            
                             , (                             ,)                            
                          LiNN (                              )      x      x      x      x
                             . (                             .)                            
                             A (                             A)                            
                          1902 (                              )      x      x      x      x
                          1905 (                              )      x      x      x      x
                       another (                       another)                            
                           Hoo (                           Hoo)                            
                        Sussex (                        Sussex)                            
                            on (                            on)                            
                             a (                             a)                            
                          Pett (                          Pett)                            
                             a (                             a)                            
                    Winchelsea (                    Winchelsea)                            
                          1907 (                              )      x      x      x      x
                     stapazina (                              )      x      x      x      x
                            by (                            by)                            
                       species (                       species)                            
                      Saxicola (                      Saxicola)                            
                             . (                             .)                            
                      Saxicola (                      Saxicola)                            
                           was (                           was)                            
                      Pentland (                      Pentland)                            
                      Skerries (                      Skerries)                            
                          1906 (                              )      x      x      x      x
                        Family (                        Family)                            
                    Subfamily- (                     Subfamily)                            
                             . (                              )      x      x      x      x
                             . (                             .)                            
                    Pratincola (                    Pratincola)                            
                         maura (                         maura)                            
                             . (                             .)                            
                          male (                             A)      x                     
                          Cley (                          Cley)                            
                          1904 (                              )      x      x      x      x
                             A (                             A)                            
                     Redstarts (                              )      x      x      x      x
                         built (                         built)                            
                       Spiggie (                              )      x      x      x      x
                             ) (                             ))                            
                          1901 (                              )      x      x      x      x
                           two (                           two)                            
                        Skerry (                        Skerry)                            
                          Vore (                          Vore)                            
                         Light (                         Light)                            
                       Messrs. (                        Messrs)                            
                      Witherby (                      Witherby)                            
                     Ticehurst (                     Ticehurst)                            
                        record (                        record)                            
                        Solway (                        Solway)                            
                      Aberdeen (                      Aberdeen)                            
                          20th (                              )      x      x      x      x
                          1900 (                              )      x      x      x      x
                         Moray (                         Moray)                            
                       Flannan (                       Flannan)                            
                          June (                          June)                            
                        Orkney (                        Orkney)                            
                          male (                          male)                            
                      November (                      November)                            
                          1905 (                              )      x      x      x      x
                        Family (                        Family)                            
                             . (                             .)                            
                    Subfamily- (                     Subfamily)                            
                             . (                              )      x      x      x      x
                    Bluethroat (                    Bluethroat)                            
                             . (                             .)                            
                             , (                              )      x      x      x      x
                         BrEHM (                              )      x      x      x      x
                             . (                             .)                            
                             A (                             A)                            
                     Dungeness (                     Dungeness)                            
                             a (                             a)                            
                          1905 (                              )      x      x      x      x
                            it (                            it)                            
                       visited (                       visited)                            
                  Lincolnshire (                  Lincolnshire)                            
                        Sussex (                        Sussex)                            
                          1903 (                              )      x      x      x      x
                        Surrey (                        Surrey)                            
                          1904 (                              )      x      x      x      x
                     Yorkshire (                     Yorkshire)                            
                          1903 (                              )      x      x      x      x
                     Shetlands (                     Shetlands)                            
                          1905 (                              )      x      x      x      x
                        Family (                        Family)                            
                             . (                             .)                            
                    Subfamily- (                     Subfamily)                            
                             . (                              )      x      x      x      x
                   Nightingale (                   Nightingale)                            
                       Daulias (                              )      x      x      x      x
                             , (                              )      x      x      x      x
                        Bechst (                              )      x      x      x      x
                             A (                             A)                            
                        Smeeth (                        Smeeth)                            
                      believed (                      believed)                            
                   Nightingale (                   Nightingale)                            
                        nested (                        nested)                            
                             A (                             A)                            
                       Orphean (                       Orphean)                            
                          1903 (                              )      x      x      x      x
                          1905 (                              )      x      x      x      x
                          1904 (                              )      x      x      x      x
                       secured (                       secured)                            
                    Woodchurch (                    Woodchurch)                            
                          1907 (                              )      x      x      x      x
                           one (                           one)                            
                     September (                     September)                            
                          1902 (                              )      x      x      x      x
                           one (                           one)                            
                             a (                             a)                            
                        female (                        female)                            
                         North (                         North)                            
                  Lincolnshire (                  Lincolnshire)                            
                          1899 (                              )      x      x      x      x
                             a (                             a)                            
                       October (                       October)                            
                          1900 (                              )      x      x      x      x
                          1905 (                              )      x      x      x      x
                           two (                           two)                            
                    Shropshire (                    Shropshire)                            
                          1903 (                              )      x      x      x      x
                           and (                           and)                            
                             . (                             .)                            
                             . (                             .)                            
                     Sardinian (                     Sardinian)                            
                             , (                              )      x      x      x      x
                          GmEL (                              )      x      x      x      x
                             . (                             .)                            
                             A (                             A)                            
                          1907 (                              )      x      x      x      x
                        Parkin (                        Parkin)                            
                           Esq (                           Esq)                            
                         F.Z.S (                              )      x      x      x      x
                             . (                             .)                            
                          Wren (                          Wren)                            
                   Breconshire (                   Breconshire)                            
                          1899 (                              )      x      x      x      x
                             A (                             A)                            
                          1905 (                              )      x      x      x      x
                           one (                           one)                            
                          1906 (                              )      x      x      x      x
                        Tresco (                        Tresco)                            
                        Scilly (                        Scilly)                            
                          1905 (                              )      x      x      x      x
                             . (                              )      x      x      x      x
                             ' (                              )      x      x      x      x
                             . (                             .)                            
                             . (                              )      x      x      x      x
                        single (                             A)      x                     
                   Chiffchaffs (                   Chiffchaffs)                            
                       visited (                       visited)                            
                       between (                       between)                            
                          1904 (                              )      x      x      x      x
                            in (                            in)                            
                           one (                           one)                            
                            at (                            at)                            
                          27th (                              )      x      x      x      x
                        Family (                        Family)                            
                             . (                             .)                            
                             . (                             .)                            
                       tristis (                       tristis)                            
                         BlyTH (                              )      x      x      x      x
                             . (                             .)                            
                       example (                       example)                            
                           off (                           off)                            
                        Family (                        Family)                            
                             . (                             .)                            
                    Subfamily- (                     Subfamily)                            
                             . (                             .)                            
                      Greenish (                      Greenish)                            
                        Willow (                        Willow)                            
                             . (                             .)                            
                             , (                              )      x      x      x      x
                             . (                             .)                            
                             a (                             a)                            
                          Sule (                          Sule)                            
                    Lighthouse (                    Lighthouse)                            
                          1902 (                              )      x      x      x      x
                           Two (                           Two)                            
                        Willow (                        Willow)                            
                            in (                            in)                            
                             - (                             -)                            
                             - (                             -)                            
                        Rufous (                        Rufous)                            
                             . (                             .)                            
                             , (                              )      x      x      x      x
                          Temm (                              )      x      x      x      x
                          THIS (                          THIS)                            
                          rare (                          rare)                            
                        Family (                        Family)                            
                             . (                             .)                            
                             . (                             .)                            
                       Warbler (                       Warbler)                            
                             . (                             .)                            
                             . (                              )      x      x      x      x
                             A (                             A)                            
                          1907 (                              )      x      x      x      x
                        Family (                        Family)                            
                             . (                             .)                            
                    Subfamily- (                     Subfamily)                            
                             . (                             .)                            
                         Radde (                         Radde)                            
                            's (                            's)                            
                    Lusciniola (                              )      x      x      x      x
                             , (                              )      x      x      x      x
                         Radde (                         Radde)                            
                             A (                             A)                            
                           Mr. (                        Mr.,Mr)                            
                             . (                             .)                            
                        Family (                        Family)                            
                             . (                             .)                            
                             . (                              )      x      x      x      x
                             , (                              )      x      x      x      x
                          Marm (                          Marm)                            
                             . (                             .)                            
                             A (                             A)                            
                          12th (                              )      x      x      x      x
                          1904 (                              )      x      x      x      x
                           One (                           One)                            
                      Icterine (                      Icterine)                            
                        Cromer (                        Cromer)                            
                           one (                           one)                            
                           one (                           one)                            
                     September (                     September)                            
                           one (                           one)                            
                          Cley (                          Cley)                            
                       Holkham (                       Holkham)                            
                           one (                           one)                            
                         Knock (                         Knock)                            
                     Lightship (                     Lightship)                            
                     September (                     September)                            
                           one (                           one)                            
                          June (                          June)                            
                           one (                           one)                            
                        Family (                        Family)                            
                             . (                             .)                            
                    Subfamily- (                     Subfamily)                            
                             . (                             .)                            
                     Melodious (                              )      x      x      x      x
                      Hypolais (                      Hypolais)                            
                             , (                              )      x      x      x      x
                        ViEILL (                              )      x      x      x      x
                             . (                             .)                            
                            AN (                            AN)                            
                       example (                       example)                            
                       Burwash (                       Burwash)                            
                             a (                             a)                            
                      Ninfield (                      Ninfield)                            
                           May (                           May)                            
                           one (                           one)                            
                             , (                             ,)                            
                           co. (                            co)                            
                          Cork (                          Cork)                            
                           the (                           the)                            
                          Rev. (                           Rev)                            
                        Mathew (                        Mathew)                            
                         heard (                         heard)                            
                      Warblers (                      Warblers)                            
                          near (                          near)                            
                            he (                            he)                            
                     Melodious (                              )      x      x      x      x
                      Warblers (                      Warblers)                            
                        nested (                        nested)                            
                     Shetlands (                     Shetlands)                            
                          1906 (                              )      x      x      x      x
                       Warbler (                       Warbler)                            
                       example (                       example)                            
                             a (                             a)                            
                       Bexhill (                       Bexhill)                            
                           one (                           one)                            
                         Hants (                         Hants)                            
                           one (                           one)                            
                       Horning (                       Horning)                            
                         there (                         there)                            
                    collection (                    collection)                            
                          shot (                          shot)                            
                     Godalming (                     Godalming)                            
                Ornithologists (                Ornithologists)                            
                      believed (                      believed)                            
                        Tresco (                        Tresco)                            
                        Scilly (                        Scilly)                            
                     Specimens (                     Specimens)                            
                       Ireland (                       Ireland)                            
                    Additional (                    Additional)                            
                      Accentor (                      Accentor)                            
                           has (                           has)                            
                          1905 (                              )      x      x      x      x
                     Godalming (                     Godalming)                            
                           one (                           one)                            
                       January (                       January)                            
                            it (                            it)                            
                             . (                             .)                            
                             A (                             A)                            
                       Crested (                       Crested)                            
                           Tit (                           Tit)                            
                      Yarmouth (                      Yarmouth)                            
                             a (                             a)                            
                       Creeper (                       Creeper)                            
                      Alderney (                      Alderney)                            
                        Family (                        Family)                            
                             . (                             .)                            
                       Wagtail (                       Wagtail)                            
                             . (                             .)                            
                             , (                             ,)                            
                          SuND (                              )      x      x      x      x
                             . (                             .)                            
                          THIS (                          THIS)                            
                          race (                          race)                            
                          near (                          near)                            
                            In (                            In)                            
                           two (                           two)                            
                          near (                          near)                            
                    Willingdon (                    Willingdon)                            
                             A (                             A)                            
                          Lydd (                          Lydd)                            
                             A (                             A)                            
                    Winchelsea (                    Winchelsea)                            
                        Family (                        Family)                            
                             . (                             .)                            
                       Wagtail (                       Wagtail)                            
                     Motacilla (                     Motacilla)                            
                             , (                             ,)                            
                         LiCHT (                              )      x      x      x      x
                             . (                             .)                            
                             A (                             A)                            
                    Willingdon (                    Willingdon)                            
                             , (                              )      x      x      x      x
                          1906 (                              )      x      x      x      x
                            it (                            it)                            
                            as (                            as)                            
                             . (                             .)                            
                       Wagtail (                       Wagtail)                            
                             . (                             .)                            
                     Motacilla (                     Motacilla)                            
                         beema (                              )      x      x      x      x
                         SykeS (                              )      x      x      x      x
                             . (                             .)                            
                             A (                             A)                            
                   Rottingdean (                   Rottingdean)                            
                          1898 (                              )      x      x      x      x
                        Family (                        Family)                            
                             . (                             .)                            
                             - (                             -)                            
                       Wagtail (                       Wagtail)                            
                             . (                             .)                            
                     Motacilla (                     Motacilla)                            
                cinereocapilla (                              )      x      x      x      x
                             , (                             ,)                            
                             . (                             .)                            
                           THE (                           THE)                            
                           but (                           but)                            
                Ornithologists (                Ornithologists)                            
                            is (                            is)                            
                            if (                            if)                            
                        occurs (                        occurs)                            
                     Shetlands (                     Shetlands)                            
                            as (                            as)                            
                            it (                            it)                            
                        Scilly (                        Scilly)                            
                             A (                             A)                            
                        Achill (                        Achill)                            
                           co. (                            co)                            
                             a (                             a)                            
                           co. (                            co)                            
                       Donegal (                       Donegal)                            
                          1898 (                              )      x      x      x      x
                             a (                             a)                            
                      Ninfield (                      Ninfield)                            
                          1901 (                              )      x      x      x      x
                            In (                            In)                            
                          1903 (                              )      x      x      x      x
                          four (                          four)                            
                         Tawny (                         Tawny)                            
                       another (                       another)                            
                       Bexhill (                       Bexhill)                            
                             a (                             a)                            
                        Bodmin (                        Bodmin)                            
                       Richard (                       Richard)                            
                        Scilly (                        Scilly)                            
                       Kentish (                       Kentish)                            
                         Pipit (                         Pipit)                            
                           one (                           one)                            
                           May (                           May)                            
                           one (                           one)                            
                       Milcomb (                              )      x      x      x      x
                             ( (                             ()                            
                           one (                           one)                            
                           one (                           one)                            
                   Littlestone (                   Littlestone)                            
                    altogether (                    altogether)                            
                        Sussex (                        Sussex)                            

Candidate Existence Evaluation

In [102]:
true_label, false_label = ' ', 'x'
in_dset = lambda dset, eidx: true_label if sum(1 for c in dset.errors[eidx].candidates if c.label == 1) > 0 else false_label
in_dsets = lambda eidx: (in_dset(TEST_TOP1_DATASET, eidx),
                         in_dset(TEST_TOP3_DATASET, eidx),
                         in_dset(TEST_TOP5_DATASET, eidx),
                         in_dset(TEST_TOP10_DATASET, eidx),
                         in_dset(TEST_TOP100_DATASET, eidx),
                        )

print(' ' * 63 + '  %5s' * 5 % ('top1', 'top3', 'top5', 'top10', 'top100'))
fmt = '%30s (%30s)' + '  %5s' * 5
for i, e in enumerate(TEST_TOP100_DATASET.errors):
    corr = ','.join(c.name for c in e.candidates if c.label == 1)
    print(fmt % (e.name, corr, *in_dsets(i)))
                                                                  top1   top3   top5  top10  top100
                   possibility (                   possibility)                                   
                          niaj (                           may)      x                            
                             ' (                              )      x      x      x      x      x
                            bv (                            by)                                   
                           Mr. (                        Mr,Mr.)                                   
                      llarting (                       Harting)      x      x      x              
                           for (                           for)                                   
                        Oologj (                        Oology)                                   
                             ' (                             ')                                   
                          1S64 (                          1864)                                   
                             a (                             a)                                   
                        Ravens (                        Ravens)                                   
                         which (                         which)                                   
                         built (                         built)                                   
                          fern (                          fern)                                   
                          dead (                          dead)                                   
                            On (                            On)                                   
                           two (                           two)                                   
                          tlie (                           the)                                   
                          nest (                          nest)                                   
                          l)ut (                           but)      x                            
                           the (                           the)                                   
                           l)y (                            by)                                   
                      visitors (                      visitors)                                   
                      hatclied (                       hatched)                                   
                       wliieli (                         which)      x                            
                      liowever (                       however)      x                            
                  considerable (                  considerable)                                   
                          1894 (                              )      x      x      x      x      x
                            In (                            In)                                   
                        Ravens (                        Ravens)                                   
                       hatched (                       hatched)                                   
                          five (                          five)                                   
                           Mr. (                            Mr)                                   
                       Coniyus (                        Comyns)      x      x      x      x       
                      Lyveudeu (                              )      x      x      x      x      x
                            S. (                              )      x      x      x      x      x
                       Buzzard (                       Buzzard)                                   
                         taken (                         taken)                                   
                  aggressively (                  aggressively)                                   
                          tame (                          tame)                                   
                       Buzzard (                       Buzzard)                                   
                      remained (                      remained)                                   
                      obdurate (                      obdurate)                                   
                        full}' (                         fully)                                   
                     instantly (                     instantly)                                   
                        dashed (                        dashed)                                   
                         after (                         after)                                   
                        flying (                        flying)                                   
                         hotly (                         hotly)                                   
                           b}' (                            by)                                   
                             ' (                              )      x      x      x      x      x
                             ' (                              )      x      x      x      x      x
                      alighted (                      alighted)                                   
                     bristling (                     bristling)                                   
                          bird (                          bird)                                   
                           was (                           was)                                   
                      tempered (                      tempered)                                   
                       caution (                       caution)                                   
                            he (                            he)                                   
                       Buzzard (                       Buzzard)                                   
                 consternation (                 consternation)                                   
                        sprang (                        sprang)                                   
                            He (                            He)                                   
                          liis (                           his)      x                            
                       laurels (                       laurels)                                   
                         would (                         would)                                   
                          beak (                          beak)                                   
                             ' (                             ')                                   
                     furtively (                     furtively)                                   
                      tweaking (                      tweaking)                                   
                       Buzzard (                       Buzzard)                                   
                            's (                            's)                                   
                       attacks (                       attacks)                                   
                       Buzzard (                       Buzzard)                                   
                            's (                            's)                                   
                        wretch (                        wretch)                                   
                       denuded (                       denuded)                                   
                      Hitherto (                              )      x      x      x      x      x
                         might (                         might)                                   
                         being (                         being)                                   
                        Comyns (                        Comyns)                                   
                             ' (                             ')                                   
                           Mr. (                            Mr)                                   
                       Frohawk (                       Frohawk)                                   
                           saw (                           saw)                                   
                          tlie (                           the)                                   
                         mouth (                         mouth)                                   
                         Devon (                         Devon)                                   
                          they (                          they)                                   
            Fa>,iilv-C0RJ7D.-E (                              )      x      x      x      x      x
                             . (                             .)                                   
                       Corviis (                        Corvus)      x                            
                       iOfoiic (                              )      x      x      x      x      x
                             , (                              )      x      x      x      x      x
                          Linn (                          Linn)                                   
                            IN (                            IN)                                   
                       Siberia (                       Siberia)                                   
                       Seebohm (                       Seebohm)                                   
                         Ijdng (                         lying)      x                            
                       between (                       between)                                   
                       Yenesay (                              )      x      x      x      x      x
                     Westwards (                              )      x      x      x      x      x
                            he (                            he)                                   
                       Caspian (                       Caspian)                                   
                        Hooded (                        Hooded)                                   
                        spread (                        spread)                                   
                   interbreeds (                   interbreeds)                                   
                        Hooded (                        Hooded)                                   
                       Yenesay (                              )      x      x      x      x      x
                             ( (                             ()                                   
                   intergrades (                   intergrades)                                   
                         these (                         these)                                   
                      Histor}' (                       History)                                   
                        branch (                        branch)                                   
                        Museum (                        Museum)                                   
                            In (                            In)                                   
                      disliked (                      disliked)                                   
                          both (                          both)                                   
                           yet (                           yet)                                   
                      becoming (                      becoming)                                   
                     decidedly (                     decidedly)                                   
                      commoner (                      commoner)                                   
                            in (                            in)                                   
                     Shetlands (                     Shetlands)                                   
                            In (                            In)                                   
                       Carrion (                       Carrion)                                   
                      purplish (                      purplish)                                   
                         above (                         above)                                   
                           the (                           the)                                   
                     similarly (                     similarly)                                   
                        tinted (                        tinted)                                   
                          bill (                          bill)                                   
                          iris (                          iris)                                   
                           her (                           her)                                   
                      ajipears (                       appears)                                   
                            to (                            to)                                   
                         Young (                         Young)                                   
                         gloss (                         gloss)                                   
                            As (                            As)                                   
                    h3-bridize (                     hybridize)                                   
                        freely (                        freely)                                   
                        Hooded (                        Hooded)                                   
                          Herr (                          Herr)                                   
                         Gatke (                              )      x      x      x      x      x
                      shrewdly (                      shrewdly)                                   
                       pairing (                       pairing)                                   
                        having (                        having)                                   
                        3'ears (                         years)                                   
                           for (                           for)                                   
                         the}' (                          they)      x                            
                      reverted (                      reverted)                                   
                   colouration (                   colouration)                                   
                   gradational (                   gradational)                                   
                        stages (                        stages)                                   
                         gre}' (                          grey)      x                            
                           and (                           and)                                   
                     Pheasants (                     Pheasants)                                   
                             - (                             -)                                   
                     cuIchicKs (                              )      x      x      x      x      x
                            P. (                            P.)                                   
                    /oi-qna/us (                              )      x      x      x      x      x
                   vtrsicoloi- (                    versicolor)                                   
                    interbreed (                    interbreed)                                   
                        freely (                        freely)                                   
                   intergrades (                   intergrades)                                   
                           are (                           are)                                   
                      distinct (                      distinct)                                   
                        sports (                        sports)                                   
                   intergrades (                   intergrades)                                   
                     reproduce (                     reproduce)                                   
                       Barbaiy (                       Barbary)      x                            
                        Turtle (                        Turtle)                                   
                       fertile (                       fertile)                                   
                      Bengalee (                      Bengalee)                                   
                       Carrion (                       Carrion)                                   
                     resembles (                     resembles)                                   
                    inhabiting (                    inhabiting)                                   
                       similar (                       similar)                                   
                        haunts (                        haunts)                                   
                            In (                            In)                                   
                     predatory (                     predatory)                                   
                        cpiite (                         quite)                                   
                          both (                          both)                                   
                      shepherd (                      shepherd)                                   
                          Ever (                          Ever)                                   
                           b}' (                            by)                                   
                         Tliat (                          That)      x      x      x      x       
                          this (                          this)                                   
                         seems (                         seems)                                   
                       dispute (                       dispute)                                   
                          Gull (                          Gull)                                   
                          Hawk (                          Hawk)                                   
                      combiued (                      combined)                                   
                        attack (                        attack)                                   
                          fare (                          fare)                                   
                        badl3^ (                         badly)                                   
                          Lord (                          Lord)                                   
                       Lilford (                              )      x      x      x      x      x
                      observes (                      observes)                                   
                          saj^ (                           say)                                   
                            in (                            in)                                   
                           His (                           His)                                   
                       noxious (                       noxious)                                   
                     captivity (                     captivity)                                   
                        offers (                        offers)                                   
                      natixral (                       natural)      x                            
                          evil (                          evil)                                   
                       Carriou (                       Carrion)                                   
                             - (                             -)                                   
                          Crow (                          Crow)                                   
                         wings (                         wings)                                   
                     regularly (                     regularly)                                   
                          when (                          when)                                   
                        wheels (                        wheels)                                   
                         walks (                         walks)                                   
                         leaps (                         leaps)                                   
                         wings (                         wings)                                   
                  nidification (                  nidification)                                   
                         Iwade (                         Iwade)                                   
                          near (                          near)                                   
                        Sheppy (                              )      x      x      x      x      x
                     consisted (                     consisted)                                   
                        tliree (                         three)                                   
                          full (                          full)                                   
                      yolkless (                      yolkless)                                   
                           one (                           one)                                   
                            it (                            it)                                   
                             - (                              )      x      x      x      x      x
                           but (                           but)                                   
                            J. (                              )      x      x      x      x      x
                        Pilley (                        Pilley)                                   
                     Zoologist (                     Zoologist)                                   
                             " (                             ")                                   
                       meadows (                       meadows)                                   
                          dead (                          dead)                                   
                             - (                             -)                                   
                      tussocks (                      tussocks)                                   
                        neatly (                        neatly)                                   
                      smoothed (                      smoothed)                                   
                        number (                        number)                                   
                        clutch (                        clutch)                                   
                           the (                           the)                                   
                       consist (                       consist)                                   
                          some (                          some)                                   
                          Crow (                          Crow)                                   
                         pairs (                         pairs)                                   
                       figured (                       figured)                                   
                         figs. (                          figs)                                   
                           233 (                              )      x      x      x      x      x
                          Farn (                          Farn)                                   
                            's (                            's)                                   
                           236 (                              )      x      x      x      x      x
                       Frohawk (                       Frohawk)                                   
                            my (                            my)                                   
                characteristic (                characteristic)                                   
                  representing (                  representing)                                   
                           but (                           but)                                   
                      mollusca (                      mollusca)                                   
                      Sheppard (                      Sheppard)                                   
                       Whitear (                              )      x      x      x      x      x
                             ) (                             ))                                   
                         stale (                         stale)                                   
                          fish (                          fish)                                   
                       carrion (                       carrion)                                   
                      devoured (                      devoured)                                   
                     greedil}' (                      greedily)                                   
                             , (                             ,)                                   
                            as (                            as)                                   
                           lie (                            he)      x      x      x              
                        weakly (                        weakly)                                   
                          half (                          half)                                   
                             - (                             -)                                   
                           Mr. (                            Mr)                                   
                            V. (                              )      x      x      x      x      x
                         Aplin (                         Aplin)                                   
                     Zoologist (                     Zoologist)                                   
                             " (                             ")                                   
                        bridle (                        bridle)                                   
                     .standing (                      standing)                                   
                          near (                          near)                                   
                   Clattercutt (                              )      x      x      x      x      x
                     Reservoir (                     Reservoir)                                   
                           has (                           has)                                   
                       Carrion (                       Carrion)                                   
                             - (                             -)                                   
                         Crows (                         Crows)                                   
                           One (                           One)                                   
                         toads (                         toads)                                   
                        partly (                        partly)                                   
                       fledged (                       fledged)                                   
                      nestling (                      nestling)                                   
                         finch (                         finch)                                   
                          also (                          also)                                   
                     Partridge (                     Partridge)                                   
                        showed (                        showed)                                   
                         perch (                         perch)                                   
                          wing (                          wing)                                   
                     hurriedly (                     hurriedly)                                   
                        croaks (                        croaks)                                   
                     expressed (                     expressed)                                   
                    banqueting (                    banqueting)                                   
                         ample (                         ample)                                   
                          Only (                          Only)                                   
                         Crows (                         Crows)                                   
                   considering (                   considering)                                   
                      wildfowl (                      wildfowl)                                   
                        j'oung (                         young)                                   
                       Carrion (                       Carrion)                                   
                  considerable (                  considerable)                                   
                       numbers (                       numbers)                                   
                        arrive (                        arrive)                                   
                       Seebohm (                       Seebohm)                                   
                            's (                            's)                                   
                       Bonhote (                              )      x      x      x      x      x
                            's (                            's)                                   
                  communicated (                  communicated)                                   
                      November (                      November)                                   
                          1896 (                              )      x      x      x      x      x
                       Carrion (                       Carrion)                                   
                             - (                             -)                                   
                         Crows (                         Crows)                                   
                           the (                           the)                                   
                          when (                          when)                                   
                       actions (                       actions)                                   
                         moves (                         moves)                                   
                          bird (                          bird)                                   
                          Grey (                          Grey)                                   
                          Crow (                          Crow)                                   
                        aviary (                        aviary)                                   
             Familx-C0K]'I1K-E (                              )      x      x      x      x      x
                             . (                             .)                                   
                       Collins (                        Corvus)                                   
                         comix (                         comix)                                   
                          LiNN (                              )      x      x      x      x      x
                             . (                             .)                                   
                             " (                              )      x      x      x      x      x
                         ^OUND (                              )      x      x      x      x      x
                    throughout (                    throughout)                                   
                        Europe (                        Europe)                                   
                          loug (                          long)      x                            
                             . (                             .)                                   
                           10° (                              )      x      x      x      x      x
                             , (                             ,)                                   
                           and (                           and)                                   
                            iu (                            in)                                   
                          Asia (                          Asia)                                   
                       extends (                       extends)                                   
                             I (                              )      x      x      x      x      x
                             ' (                              )      x      x      x      x      x
                     Turkestan (                     Turkestan)                                   
                     Palestine (                     Palestine)                                   
                      Examples (                      Examples)                                   
                      replaced (                      replaced)                                   
                    capcllauns (                              )      x      x      x      x      x
                             ; (                             ;)                                   
                           but (                           but)                                   
                      Siberian (                      Siberian)                                   
                         birds (                         birds)                                   
                         birds (                         birds)                                   
                             - (                             -)                                   
                    Sceboli??! (                              )      x      x      x      x      x
                             . (                             .)                                   
                            An (                            An)                                   
                       England (                       England)                                   
                        whilst (                        whilst)                                   
                    Throughout (                              )      x      x      x      x      x
                 interbreeding (                 interbreeding)                                   
                  occasionally (                  occasionally)                                   
                       Carrion (                       Carrion)                                   
                      countr}^ (                       country)                                   
                           and (                           and)                                   
                        Hooded (                        Hooded)                                   
                     remainder (                     remainder)                                   
                       plumage (                       plumage)                                   
                          ashy (                          ashy)                                   
                      becoming (                      becoming)                                   
                          bill (                          bill)                                   
                          iris (                          iris)                                   
                       browner (                       browner)                                   
                          bill (                          bill)                                   
                       broader (                       broader)                                   
                         lower (                         lower)                                   
                       Hoodies (                       Hoodies)                                   
                    southwards (                    southwards)                                   
                    visitation (                    visitation)                                   
                       Royston (                       Royston)                                   
                          Crow (                          Crow)                                   
                      arriving (                      arriving)                                   
                          They (                          They)                                   
                      frequent (                      frequent)                                   
                        broads (                        broads)                                   
                       Norfolk (                       Norfolk)                                   
                        leaves (                        leaves)                                   
                            iu (                            in)                                   
                      probably (                      probably)                                   
                       pr\-ing (                        prying)                                   
                         e\'es (                          eyes)                                   
                           and (                           and)                                   
                   carnivorons (                   carnivorous)                                   
                  propensities (                  propensities)                                   
                      liowever (                       however)                                   
                             j (                         years)      x                            
                             - (                             -)                                   
                          ears (                          ears)                                   
                           vSt (                            St)                                   
                             . (                             .)                                   
                          John (                          John)                                   
                      Mora}'," (                              )      x      x      x      x      x
                            p. (                              )      x      x      x      x      x
                   newlj'-boru (                              )      x      x      x      x      x
                         lambs (                         lambs)                                   
                            It (                            It)                                   
                        )-oung (                         young)                                   
                        grouse (                        grouse)                                   
                         vcr}' (                          very)                                   
                   destructive (                   destructive)                                   
                            In (                            In)                                   
                       certain (                       certain)                                   
                       feeding (                       feeding)                                   
                            No (                            No)                                   
                          au}' (                           any)      x                            
                          bird (                          bird)                                   
                         leave (                         leave)                                   
                        Hooded (                        Hooded)                                   
                         often (                         often)                                   
                            iu (                            in)                                   
                           All (                           All)                                   
                          seem (                          seem)                                   
                       Peewits (                       Peewits)                                   
                         Gulls (                         Gulls)                                   
                     Redshanks (                     Redshanks)                                   
                          etc. (                      etc.,etc)                                   
                        attack (                        attack)                                   
                     furiously (                     furiously)                                   
                          an\' (                           any)      x                            
                          Crow (                          Crow)                                   
                         which (                         which)                                   
                       hunting (                       hunting)                                   
                     destro3-s (                      destroys)                                   
                         great (                         great)                                   
                       osprc}' (                        osprey)                                   
                        happen (                        happen)                                   
                        Redcar (                        Redcar)                                   
                     Zoologist (                     Zoologist)                                   
                             " (                             ")                                   
                       Hoodies (                       Hoodies)                                   
                       Messrs. (                        Messrs)                                   
                            T. (                            T.)                                   
                       Pilling (                       Pilling)                                   
                       observe (                       observe)                                   
                       Hoodies (                       Hoodies)                                   
                       largest (                       largest)                                   
                         thick (                         thick)                                   
                       Seebohm (                       Seebohm)                                   
                          this (                          this)                                   
                           b}' (                            by)                                   
                          da\- (                           day)                                   
                             , (                              )      x      x      x      x      x
                           and (                           and)                                   
                         Gatke (                              )      x      x      x      x      x
                          says (                          says)                                   
                     commences (                     commences)                                   
                           the (                           the)                                   
                    consisting (                    consisting)                                   
                     continues (                     continues)                                   
                     scarcel}^ (                      scarcely)                                   
                        assume (                        assume)                                   
                    Heligoland (                    Heligoland)                                   
                    migrations (                    migrations)                                   
                         eight (                         eight)                                   
                        extend (                        extend)                                   
                         while (                         while)                                   
               simultaneous!}' (                simultaneously)                                   
                           and (                           and)                                   
                   Bremerhaven (                   Bremerhaven)                                   
                            as (                            as)                                   
                         plies (                         plies)                                   
                            We (                            We)                                   
                     migration (                     migration)                                   
                        column (                        column)                                   
                          Herr (                          Herr)                                   
                         Gatke (                              )      x      x      x      x      x
                      proceeds (                      proceeds)                                   
                  nevertheless (                  nevertheless)                                   
                     important (                     important)                                   
                            as (                            as)                                   
                         Crows (                         Crows)                                   
                      econom_v (                       economy)                                   
                   Evcr\'where (                    Everywhere)                                   
                           the (                           the)                                   
                       creates (                       creates)                                   
                     altliough (                      although)                                   
                         snuiU (                         small)      x      x                     
                       species (                       species)                                   
                  nevertheless (                  nevertheless)                                   
                           all (                           all)                                   
                        Ital}' (                         Italy)                                   
                        during (                        during)                                   
                     migration (                     migration)                                   
                     scarcel}' (                      scarcely)                                   
                         equal (                         equal)                                   
                     destroyed (                     destroyed)                                   
                           b}- (                            by)                                   
                           the (                           the)                                   
                        Hooded (                        Hooded)                                   
                        during (                        during)                                   
                        Hooded (                        Hooded)                                   
                       becomes (                       becomes)                                   
                       nowhere (                       nowhere)                                   
                  prepondering (                              )      x      x      x      x      x
                      quantity (                      quantity)                                   
                    Heligoland (                    Heligoland)                                   
                           but (                           but)                                   
                        during (                        during)                                   
                       impedes (                       impedes)                                   
                           and (                           and)                                   
                      impudent (                      impudent)                                   
                         thej^ (                          they)                                   
                           are (                           are)                                   
                           da3 (                          days)                                   
                            's (                            's)                                   
                        earl}^ (                         early)                                   
                          dawn (                          dawn)                                   
                       plunder (                       plunder)                                   
                          Lark (                          Lark)                                   
                       Dresser (                       Dresser)                                   
                        wonder (                        wonder)                                   
                        Hooded (                        Hooded)                                   
                          left (                          left)                                   
                            By (                            By)                                   
                           bj^ (                            by)                                   
                    abstaining (                    abstaining)                                   
                          an}- (                           any)      x                            
                         small (                         small)                                   
                     shrubbery (                     shrubbery)                                   
                      songster (                      songster)                                   
                             a (                             a)                                   
                          nook (                          nook)                                   
                         above (                         above)                                   
                    compassing (                    compassing)                                   
                        Hooded (                        Hooded)                                   
                  unsparingl}' (                   unsparingly)                                   
                             , (                             ,)                                   
                         3'ear (                          year)                                   
                            in (                            in)                                   
                           b}' (                            by)                                   
                           all (                           all)                                   
                  nidification (                  nidification)                                   
                            in (                            in)                                   
                       Ireland (                       Ireland)                                   
                           the (                           the)                                   
                        coroue (                        corone)                                   
                           and (                           and)                                   
                     according (                     according)                                   
                    precisel}^ (                     precisely)                                   
                          like (                          like)                                   
                        coronc (                        corone)                                   
                           are (                           are)                                   
                           but (                           but)                                   
                        Hooded (                        Hooded)                                   
                         Dixon (                         Dixon)                                   
                 Ornithologist (                 Ornithologist)                                   
                          saj- (                           say)                                   
                          Crow (                          Crow)                                   
                            he (                            he)                                   
                         never (                         never)                                   
                        Mail}- (                          Many)      x      x      x      x       
                       readers (                       readers)                                   
                          held (                          held)                                   
                         willi (                          with)                                   
                        regard (                        regard)                                   
                        tliere (                         there)                                   
                       appears (                       appears)                                   
                     redeeming (                     redeeming)                                   
                        Hoodie (                        Hoodie)                                   
                          when (                          when)                                   
                           not (                           not)                                   
                        Giitke (                              )      x      x      x      x      x
                         tells (                         tells)                                   
                 Heligolanders (                 Heligolanders)                                   
                        esteem (                        esteem)                                   
                          Lord (                          Lord)                                   
                       Lilford (                              )      x      x      x      x      x
                           sa3 (                          says)      x      x      x      x       
                            's (                              )      x      x      x      x      x
                    abominable (                    abominable)                                   
                      although (                      although)                                   
                         Gre}' (                          Grey)      x                            
                          Crow (                          Crow)                                   
                       vagrant (                       vagrant)                                   
                            We (                            We)                                   
                 c\ten)ii}iatc (                              )      x      x      x      x      x
                           any (                           any)                                   
                           but (                           but)                                   
              Fawilx-COR]'ID.E (                              )      x      x      x      x      x
                             . (                             .)                                   
                       Corviis (                        Corvus)      x                            
                  /nigi/i(;i(s (                              )      x      x      x      x      x
                             , (                              )      x      x      x      x      x
                          Linn (                          Linn)                                   
                            IN (                            IN)                                   
                       Western (                       Western)                                   
                          Rook (                          Rook)                                   
                        breeds (                        breeds)                                   
                     migratory (                     migratory)                                   
                      Southern (                      Southern)                                   
                          Asia (                          Asia)                                   
                     Eastwards (                              )      x      x      x      x      x
                     Turkestan (                     Turkestan)                                   
                      Cashmere (                      Cashmere)                                   
                            In (                            In)                                   
                          Rook (                          Rook)                                   
                       prett}^ (                        pretty)                                   
                     generally (                     generally)                                   
                    localities (                    localities)                                   
                            in (                            in)                                   
                        though (                        though)                                   
                         rarer (                         rarer)                                   
                          Rook (                          Rook)                                   
                         l^are (                          bare)      x      x      x              
                          grey (                          grey)                                   
                         warty (                         warty)                                   
                         patch (                         patch)                                   
                          Bill (                          Bill)                                   
                          iris (                          iris)                                   
                          Tlie (                           The)      x                            
                        female (                        female)                                   
                          Tlie (                           The)      x                            
                         young (                         young)                                   
                       Carrion (                       Carrion)                                   
                            it (                            it)                                   
                      .slender (                       slender)                                   
                          bill (                          bill)                                   
                          tlie (                           the)                                   
                          deep (                          deep)                                   
                        .slate (                         slate)                                   
                             - (                             -)                                   
                        colour (                        colour)                                   
                            In (                            In)                                   
                          Rook (                          Rook)                                   
                            so (                            so)                                   
                        larvje (                        larvae)                                   
                           but (                           but)                                   
                       drought (                       drought)                                   
                         after (                         after)                                   
                            In (                            In)                                   
                        almost (                        almost)                                   
                       Carrion (                       Carrion)                                   
                          weak (                          weak)                                   
                         birds (                         birds)                                   
                           for (                           for)                                   
                     witnessed (                     witnessed)                                   
                     predatory (                     predatory)                                   
                        severe (                        severe)                                   
                        haunts (                        haunts)                                   
                          well (                          well)                                   
                             - (                             -)                                   
                   preferabl}^ (                    preferably)                                   
                         where (                         where)                                   
                          here (                          here)                                   
                        busily (                        busily)                                   
                         grubs (                         grubs)                                   
                            in (                            in)                                   
                      swallows (                      swallows)                                   
                  incalculable (                  incalculable)                                   
                          wire (                          wire)                                   
                   cockchafers (                   cockchafers)                                   
                         onl}' (                          only)                                   
                       devours (                       devours)                                   
                          such (                          such)                                   
                         grubs (                         grubs)                                   
                  considerable (                  considerable)                                   
                   destructive (                   destructive)                                   
                   caterpillar (                   caterpillar)                                   
                      segetuin (                       segetum)                                   
                             ) (                             ))                                   
                             . (                             .)                                   
                        either (                        either)                                   
                        copses (                        copses)                                   
                      bounding (                      bounding)                                   
                           but (                           but)                                   
                     Stevenson (                     Stevenson)                                   
                       rightly (                       rightly)                                   
                     selecting (                     selecting)                                   
                        Scotch (                        Scotch)                                   
                     Spixworth (                     Spixworth)                                   
                          Park (                          Park)                                   
                   laurustinus (                   laurustinus)                                   
                        bushes (                        bushes)                                   
                     foiirteen (                      fourteen)                                   
                          feet (                          feet)                                   
                          ilex (                          ilex)                                   
                         close (                         close)                                   
                    connecting (                    connecting)                                   
                         fi^om (                          from)                                   
                       rookery (                       rookery)                                   
                      moreover (                      moreover)                                   
                     continual (                     continual)                                   
                        noises (                        noises)                                   
                         Rooks (                         Rooks)                                   
                         still (                         still)                                   
                         breed (                         breed)                                   
                    connucuced (                              )      x      x      x      x      x
                            or (                            or)                                   
                      repaired (                      repaired)                                   
                            iu (                            in)                                   
                         March (                         March)                                   
                     unusualh- (                     unusually)                                   
                          mild (                          mild)                                   
                      building (                      building)                                   
                    operations (                    operations)                                   
                     sometimes (                     sometimes)                                   
                      commence (                      commence)                                   
                        1895-6 (                              )      x      x      x      x      x
                             I (                             I)                                   
                         Rooks (                         Rooks)                                   
                       sitting (                       sitting)                                   
                         the}- (                          they)      x                            
                           had (                           had)                                   
                         Rooks (                         Rooks)                                   
                       rookery (                       rookery)                                   
                         close (                         close)                                   
                     repairing (                     repairing)                                   
                         their (                         their)                                   
                       January (                       January)                                   
                     Februar}- (                      February)                                   
                             a (                             a)                                   
                         daily (                         daily)                                   
                       visited (                       visited)                                   
                           m^' (                            my)                                   
                        garden (                        garden)                                   
                       Dulwich (                       Dulwich)                                   
                         first (                         first)                                   
                          made (                          made)                                   
                      assuring (                      assuring)                                   
                         Rooks (                         Rooks)                                   
                      carrying (                      carrying)                                   
                     Feathered (                     Feathered)                                   
                           Mr. (                        Mr,Mr.)                                   
                            W. (                              )      x      x      x      x      x
                            N. (                              )      x      x      x      x      x
                        Rushen (                        Rushen)                                   
                          says (                          says)                                   
                         Rooks (                         Rooks)                                   
                          near (                          near)                                   
                      Wanstead (                      Wanstead)                                   
                           and (                           and)                                   
                         the}- (                          they)      x                            
                          must (                          must)                                   
                             t (                              )      x      x      x      x      x
                        formed (                        formed)                                   
                        sticks (                        sticks)                                   
                          moss (                          moss)                                   
                          dead (                          dead)                                   
                        number (                        number)                                   
                       similar (                       similar)                                   
                          they (                          they)                                   
                            iu (                            in)                                   
                     different (                     different)                                   
                         nests (                         nests)                                   
                           the (                           the)                                   
                       thicklj (                       thickly)                                   
                             ' (                             ')                                   
                          deep (                          deep)                                   
                       figured (                       figured)                                   
                         figs. (                          figs)                                   
                           241 (                              )      x      x      x      x      x
                           243 (                              )      x      x      x      x      x
                          Farn (                          Farn)                                   
                            's (                            's)                                   
                             . (                             .)                                   
                            as (                            as)                                   
                        branch (                        branch)                                   
                         the}- (                          they)      x                            
                           tip (                           tip)                                   
                      forwards (                      forwards)                                   
                           but (                           but)                                   
                         the}' (                          they)      x                            
                     gradually (                     gradually)                                   
                            To (                            To)                                   
                      accuracv (                      accuracy)                                   
                     authoress (                     authoress)                                   
                             ' (                             ')                                   
                          Rook (                          Rook)                                   
                         could (                         could)                                   
                        Hooded (                        Hooded)                                   
                           she (                           she)                                   
                        parent (                        parent)                                   
                           Yet (                           Yet)                                   
                      creature (                      creature)                                   
                        hungiy (                        hungry)                                   
                           and (                           and)                                   
                     clamorous (                     clamorous)                                   
                        mouths (                        mouths)                                   
                  depredations (                  depredations)                                   
                          Poor (                          Poor)                                   
                        hunted (                        hunted)                                   
                          Crow (                          Crow)                                   
                       against (                       against)                                   
                        ever}' (                         every)                                   
                           man (                           man)                                   
                           She (                           She)                                   
                     thirsting (                     thirsting)                                   
                      cylinder (                      cylinder)                                   
                       pointed (                       pointed)                                   
                         snare (                         snare)                                   
                      entangle (                      entangle)                                   
                          dear (                          dear)                                   
                       clamour (                       clamour)                                   
                           How (                           How)                                   
                             - (                             -)                                   
                            or (                            or)                                   
                         Robin (                         Robin)                                   
                        babies (                        babies)                                   
                        babies (                        babies)                                   
                           The (                           The)                                   
                       ignores (                       ignores)                                   
                           she (                           she)                                   
                          carr (                          carr)                                   
                          catv (                              )      x      x      x      x      x
                           and (                           and)                                   
                       rookery (                       rookery)                                   
                          born (                          born)                                   
                     incessant (                     incessant)                                   
                       ar-cc-o (                              )      x      x      x      x      x
                             . (                             .)                                   
                          arid (                          arid)                                   
                    localities (                    localities)                                   
                      mollusca (                      mollusca)                                   
                       carrion (                       carrion)                                   
                         Later (                         Later)                                   
                        fruits (                        fruits)                                   
                         beech (                         beech)                                   
                           but (                           but)                                   
                        refuse (                        refuse)                                   
                         heaps (                         heaps)                                   
                          cast (                          cast)                                   
                        though (                        though)                                   
                      sparrows (                      sparrows)                                   
                          cage (                          cage)                                   
                          ni}- (                            my)      x      x      x      x       
                       brother (                       brother)                                   
                           Mr. (                            Mr)                                   
                       Bonhote (                              )      x      x      x      x      x
                        writes (                        writes)                                   
                           but (                           but)                                   
                       Carrion (                       Carrion)                                   
                      scarcely (                      scarcely)                                   
                        FAMILY (                        FAMILY)                                   
                    ALAUDIDJ-: (                              )      x      x      x      x      x
                             . (                             .)                                   
                           THE (                           THE)                                   
                      position (                      position)                                   
                     vSannders (                      Saunders)      x      x                     
                           has (                           has)                                   
                        phiccd (                        placed)      x      x      x              
                          this (                          this)                                   
                      faniil_y (                        family)                                   
                             - (                             -)                                   
                  Motaciilidcc (                  Motacillidae)                                   
                            as (                            as)                                   
                     vSeel)ohm (                       Seebohm)                                   
                            's (                            's)                                   
                     evidently (                     evidently)                                   
                     advocated (                     advocated)                                   
                           b}' (                            by)                                   
                           Dr. (                        Dr,Dr.)                                   
                        Sharpc (                        Sharpe)                                   
                         Larks (                         Larks)                                   
                          than (                          than)                                   
                        Pipits (                        Pipits)                                   
                           had (                           had)                                   
                         borne (                         borne)                                   
                      vSeebohm (                       Seebohm)                                   
                            's (                            's)                                   
                        appear (                        appear)                                   
                        Pipits (                        Pipits)                                   
                      Thrushes (                      Thrushes)                                   
                            do (                            do)                                   
                      Warblers (                      Warblers)                                   
                        Jerdon (                        Jerdon)                                   
                            's (                            's)                                   
                             - (                             -)                                   
                           may (                           may)                                   
                      P'inchcs (                       Finches)      x      x      x      x       
                            on (                            on)                                   
              Jloiifijniioi/Ia (                              )      x      x      x      x      x
                           and (                           and)                                   
                 PUciropluvics (                              )      x      x      x      x      x
                             ; (                             ;)                                   
                           and (                           and)                                   
                        Pipits (                        Pipits)                                   
                       through (                       through)                                   
                    Corydallar (                     Corydalla)                                   
                           The (                           The)                                   
                       familj- (                        family)                                   
                            is (                            is)                                   
                  scutellation (                  scutellation)                                   
                            at (                            at)                                   
                           and (                           and)                                   
                     probabl}' (                      probably)                                   
                         tliis (                          this)                                   
                   peculiarity (                   peculiarity)                                   
                             ( (                             ()                                   
                       becanse (                       because)                                   
                          they (                          they)                                   
                      Sannders (                      Saunders)      x                            
                 subordinating (                 subordinating)                                   
                         sa3-s (                          says)                                   
                     majorit}- (                      majority)                                   
                            O. (                            O.)                                   
                   Alaiiiiidic (                              )      x      x      x      x      x
                    Coii'ida'' (                              )      x      x      x      x      x
                           has (                           has)                                   
                         Larks (                         Larks)                                   
                      Passcrcs (                      Passeres)                                   
                           all (                           all)                                   
                         i'eet (                          feet)      x                            
                        scaled (                        scaled)                                   
                         Larks (                         Larks)                                   
                       walking (                       walking)                                   
                         birds (                         birds)                                   
                      building (                      building)                                   
                         man}' (                          many)                                   
                       species (                       species)                                   
                      roosting (                      roosting)                                   
                      arboreal (                      arboreal)                                   
                         the}- (                          they)      x                            
                        rarely (                        rarely)                                   
                         perch (                         perch)                                   
                           and (                           and)                                   
                          dust (                          dust)                                   
                      Sparrows (                      Sparrows)                                   
                  Gallinaceous (                  Gallinaceous)                                   
                         Their (                         Their)                                   
                         Larks (                         Larks)                                   
                           are (                           are)                                   
                           the (                           the)                                   
                      stronger (                      stronger)                                   
                     doubtless (                     doubtless)                                   
                       soaring (                       soaring)                                   
                      hovering (                      hovering)                                   
                             - (                             -)                                   
                       fulness (                       fulness)                                   
                            By (                            By)                                   
                          bird (                          bird)                                   
                         Larks (                         Larks)                                   
                      directly (                      directly)                                   
                         tells (                         tells)                                   
                          Lark (                          Lark)                                   
                   Practically (                              )      x      x      x      x      x
                      Aluudida (                     Alaudidae)                                   
                    constitute (                    constitute)                                   
                        fainih (                              )      x      x      x      x      x
                             ' (                             ')                                   
                        Jerdon (                        Jerdon)                                   
                      observes (                      observes)                                   
                   j\Iala3-ana (                              )      x      x      x      x      x
                           and (                           and)                                   
                       Familx- (                        Family)                                   
                     ALAUDID.E (                              )      x      x      x      x      x
                             . (                              )      x      x      x      x      x
                        Alauda (                        Alauda)                                   
                     iDVCiisis (                      arvensis)                                   
                             , (                             ,)                                   
                          LiNN (                              )      x      x      x      x      x
                             . (                             .)                                   
                         FOUND (                              )      x      x      x      x      x
                        during (                        during)                                   
                       nesting (                       nesting)                                   
                           70° (                          70.5)                                   
                             , (                             ,)                                   
                     sparingly (                     sparingly)                                   
                         South (                         South)                                   
                     IMongolia (                      Mongolia)                                   
                     Turkestan (                     Turkestan)                                   
                            In (                            In)                                   
                    Throughout (                              )      x      x      x      x      x
                             - (                             -)                                   
                   \^excepting (                              )      x      x      x      x      x
                          have (                          have)                                   
                            A. (                              )      x      x      x      x      x
                      dulcivox (                              )      x      x      x      x      x
                            A. (                          A,A.)                                   
                   caiitarclla (                              )      x      x      x      x      x
                            A. (                          A,A.)                                   
                        liopus (                              )      x      x      x      x      x
                            A. (                          A,A.)                                   
                    blakistoni (                              )      x      x      x      x      x
                            A. (                          A,A.)                                   
                     giilgiila (                              )      x      x      x      x      x
                            A. (                          A,A.)                                   
                       axlivox (                              )      x      x      x      x      x
                            A. (                          A,A.)                                   
                     ivai/crsi (                              )      x      x      x      x      x
                          arid (                           and)                                   
                            A. (                              )      x      x      x      x      x
                          sala (                          sala)                                   
                           but (                           but)                                   
                   intergrades (                   intergrades)                                   
                         exist (                         exist)                                   
                Ornithologists (                Ornithologists)                                   
                     generally (                     generally)                                   
                           Our (                           Our)                                   
                           Sky (                           Sky)                                   
                             - (                             -)                                   
                        golden (                        golden)                                   
                       centres (                       centres)                                   
                         edges (                         edges)                                   
                         paler (                         paler)                                   
                           the (                           the)                                   
                             - (                             -)                                   
                             - (                             -)                                   
                      blackish (                      blackish)                                   
                        streak (                        streak)                                   
                           the (                           the)                                   
                       sccuiid (                        second)      x      x      x      x       
                       feather (                       feather)                                   
                         white (                         white)                                   
                        inider (                         under)      x                            
                         parts (                         parts)                                   
                       buffish (                       buffish)                                   
                         witli (                          with)                                   
             l:)hickish-br(iwu (                              )      x      x      x      x      x
                            on (                            on)                                   
                          tlie (                           the)                                   
                        throat (                        throat)                                   
                          bill (                          bill)                                   
                          dark (                          dark)                                   
                          feet (                          feet)                                   
                             j (                              )      x      x      x      x      x
                             - (                             -)                                   
                      ellowish (                              )      x      x      x      x      x
                             - (                             -)                                   
                          iris (                          iris)                                   
                         hazel (                         hazel)                                   
                             . (                             .)                                   
                         d(jes (                          does)                                   
                       plumage (                       plumage)                                   
                             : (                             :)                                   
                        3-oung (                         young)                                   
                         birds (                         birds)                                   
                          buff (                          buff)                                   
                          tips (                          tips)                                   
                         moult (                         moult)                                   
                          both (                          both)                                   
                        tawn}^ (                         tawny)                                   
                     colouring (                     colouring)                                   
                          bird (                          bird)                                   
                      primar}' (                       primary)                                   
                       touches (                       touches)                                   
                   distinctl}- (                    distinctly)                                   
                        longer (                        longer)                                   
                          se.\ (                           sex)      x                            
                             . (                             .)                                   
                          thus (                          thus)                                   
                      catchers (                      catchers)                                   
                     forwarded (                     forwarded)                                   
                           b}- (                            by)                                   
                   experienced (                   experienced)                                   
                    poulterers (                    poulterers)                                   
                      Although (                      Although)                                   
                      abundant (                      abundant)                                   
                        enough (                        enough)                                   
                         downs (                         downs)                                   
                     certainly (                     certainly)                                   
                       prefers (                       prefers)                                   
                        arable (                        arable)                                   
                         shuns (                         shuns)                                   
                       thickly (                       thickly)                                   
                   plantatious (                   plantations)                                   
                           but (                           but)                                   
                       country (                       country)                                   
                     Excepting (                              )      x      x      x      x      x
                    iudividual (                    individual)                                   
                            of (                            of)                                   
                            it (                            it)                                   
                         ver3' (                          very)                                   
                characteristic (                characteristic)                                   
                             . (                             .)                                   
                        always (                        always)                                   
                     commences (                     commences)                                   
                      hovering (                      hovering)                                   
                        action (                        action)                                   
                            at (                            at)                                   
                    obliquel}- (                     obliquely)                                   
                           and (                           and)                                   
                      rapidl}' (                       rapidly)                                   
                      abruptly (                      abruptly)                                   
                       perhaps (                       perhaps)                                   
                      flutters (                      flutters)                                   
                          each (                          each)                                   
                        shrill (                        shrill)                                   
                             ' (                              )      x      x      x      x      x
                         ivhcc (                              )      x      x      x      x      x
                             , (                             ,)                                   
                         tvhee (                          whee)      x      x      x      x       
                         w/icc (                              )      x      x      x      x      x
                            of (                            of)                                   
                    generall}- (                     generally)                                   
                       amongst (                       amongst)                                   
                       growing (                       growing)                                   
                     sheltered (                     sheltered)                                   
                           b}' (                            by)                                   
                            an (                            an)                                   
                          tuft (                          tuft)                                   
                      whatever (                      whatever)                                   
                             a (                             a)                                   
                          nest (                          nest)                                   
                        formed (                        formed)                                   
                         bents (                         bents)                                   
                          dead (                          dead)                                   
                        number (                        number)                                   
                     incubated (                     incubated)                                   
                    represents (                    represents)                                   
                       huffish (                       buffish)      x                            
                          clay (                          clay)                                   
                     generally (                     generally)                                   
                       densely (                       densely)                                   
                       mottled (                       mottled)                                   
                        smok}' (                         smoky)      x                            
                          grey (                          grey)                                   
                          zone (                          zone)                                   
                     sometimes (                     sometimes)                                   
                       streaks (                       streaks)                                   
                           egg (                           egg)                                   
                        whicli (                         which)                                   
                             I (                             I)                                   
                          lent (                          lent)                                   
                            XI (                            XI)                                   
                          fig. (                           fig)                                   
                       Bunting (                       Bunting)                                   
                            it (                            it)                                   
                        sieuua (                        sienna)      x                            
                           and (                           and)                                   
                       macular (                       macular)                                   
                         along (                         along)                                   
                             - (                             -)                                   
                         pairs (                         pairs)                                   
                  nidification (                  nidification)                                   
                          does (                          does)                                   
                         nests (                         nests)                                   
                         ]\Iay (                           May)      x      x                     
                             ; (                             ;)                                   
                           two (                           two)                                   
                          eggs (                          eggs)                                   
                           Jul (                          July)      x                            
                             ' (                             ')                                   
                          Both (                          Both)                                   
                    descending (                    descending)                                   
                       towards (                       towards)                                   
                 niothcr-l)ird (                              )      x      x      x      x      x
                       wanders (                       wanders)                                   
                            By (                            By)                                   
                      watching (                      watching)                                   
                     patiently (                     patiently)                                   
                            's (                            's)                                   
                          soug (                          song)      x      x      x      x       
                            is (                            is)                                   
                            it (                            it)                                   
                         trill (                         trill)                                   
                  interspersed (                  interspersed)                                   
                         drawn (                         drawn)                                   
                  marvellously (                  marvellously)                                   
                  exhilarating (                  exhilarating)                                   
                   considering (                   considering)                                   
                        either (                        either)                                   
                       soaring (                       soaring)                                   
                      consists (                      consists)                                   
                           but (                           but)                                   
                    gregarious (                    gregarious)                                   
                       immense (                       immense)                                   
                      iisually (                       usually)      x                            
                     realizing (                     realizing)                                   
                          from (                          from)                                   
                            gd (                              )      x      x      x      x      x
                            to (                            to)                                   
                        apiece (                        apiece)                                   
                           the (                           the)                                   
                            In (                            In)                                   
                       rearing (                       rearing)                                   
                           Sky (                           Sky)                                   
                             - (                             -)                                   
                         Larks (                         Larks)                                   
                         seven (                         seven)                                   
                           but (                           but)                                   
                       bounded (                       bounded)                                   
                     alighting (                     alighting)                                   
                        bought (                        bought)                                   
                    Larkrunuer (                              )      x      x      x      x      x
                          cage (                          cage)                                   
                            In (                            In)                                   
                         Sedge (                         Sedge)                                   
                          ui}' (                            my)      x      x                     
                         birds (                         birds)                                   
                           cue (                           one)      x      x      x              
                           ]jy (                            by)                                   
                           one (                           one)                                   
                       jumping (                       jumping)                                   
                          When (                          When)                                   
                           off (                           off)                                   
                       blanket (                       blanket)                                   
                       tumbled (                       tumbled)                                   
                             - (                             -)                                   
                           lec (                              )      x      x      x      x      x
                             - (                             -)                                   
                         tcc-u (                              )      x      x      x      x      x
                           and (                           and)                                   
                        wear}- (                         weary)      x                            
                           and (                           and)                                   
                         tlien (                          then)                                   
                       tumbled (                       tumbled)                                   
                          They (                          They)                                   
                        seemed (                        seemed)                                   
                         the}' (                          they)                                   
                           got (                           got)                                   
                 subsequentl}' (                  subsequently)                                   
                     purchased (                     purchased)                                   
                        3'oung (                         young)                                   
                          male (                          male)                                   
                             - (                             -)                                   
                   continually (                   continually)                                   
                        fl\ing (                        flying)                                   
                             , (                             ,)                                   
                          when (                          when)                                   
                    recklessly (                    recklessly)                                   
                 consecjuences (                  consequences)                                   
                            to (                            to)                                   
                            he (                            he)                                   
                          claw (                          claw)                                   
                    watercress (                    watercress)                                   
                            In (                            In)                                   
                             I (                             I)                                   
                      nestling (                      nestling)                                   
                           Sky (                           Sky)                                   
                         Larks (                         Larks)                                   
                       brought (                       brought)                                   
                   Nightingale (                   Nightingale)                                   
                          food (                          food)                                   
                           the (                           the)                                   
                        Bulbul (                        Bulbul)                                   
                          into (                          into)                                   
                         Larks (                         Larks)                                   
                          when (                          when)                                   
                      Although (                      Although)                                   
                         cramp (                         cramp)                                   
                        reared (                        reared)                                   
                         moult (                         moult)                                   
                           two (                           two)                                   
                           the (                           the)                                   
                          tame (                          tame)                                   
                        little (                        little)                                   
                            it (                            it)                                   
                         crest (                         crest)                                   
                            it (                            it)                                   
                    eventually (                    eventually)                                   
                          This (                          This)                                   
                      perching (                      perching)                                   
                       hanging (                       hanging)                                   
                       roosted (                       roosted)                                   
                       Judging (                       Judging)                                   
                           mj^ (                            my)                                   
                           own (                           own)                                   
                       rearing (                       rearing)                                   
                           Sky (                           Sky)                                   
                         Larks (                         Larks)                                   
                   Whitethroat (                   Whitethroat)                                   
                            's (                            's)                                   
                         fixed (                         fixed)                                   
                           the (                           the)                                   
                         the}- (                          they)      x                            
                        crouch (                        crouch)                                   
                           but (                           but)                                   
                     moistened (                     moistened)                                   
                          ants (                          ants)                                   
                             ' (                             ')                                   
                       cocoons (                       cocoons)                                   
                          When (                          When)                                   
                     mealworms (                     mealworms)                                   
                       canar}' (                        canary)                                   
                           and (                           and)                                   
                    watercress (                    watercress)                                   
                          when (                          when)                                   
                        1891-2 (                              )      x      x      x      x      x
                          that (                          that)                                   
                          nets (                          nets)                                   
                      thirteen (                      thirteen)                                   
                           Sky (                           Sky)                                   
                         Larks (                         Larks)                                   
                         about (                         about)                                   
                           one (                           one)                                   
                      retained (                      retained)                                   
                          This (                          This)                                   
                          tame (                          tame)                                   
                        turfed (                        turfed)                                   
                        sanded (                        sanded)                                   
                            he (                            he)                                   
                         3'our (                          your)                                   
                          eyes (                          eyes)                                   
                      dropping (                      dropping)                                   
                     i-eturned (                      returned)                                   
                            to (                            to)                                   
                       Towards (                              )      x      x      x      x      x
                         moult (                         moult)                                   
                           Mr. (                            Mr)                                   
                           Sky (                           Sky)                                   
                             - (                             -)                                   
                         Larks (                         Larks)                                   
                    Heligoland (                    Heligoland)                                   
                           but (                           but)                                   
                      Speaking (                      Speaking)                                   
                    diminution (                    diminution)                                   
                          Herr (                          Herr)                                   
                         Gatke (                              )      x      x      x      x      x
                         saj'S (                          says)      x      x                     
                             : (                              )      x      x      x      x      x
                             " (                             ")                                   
                       passage (                       passage)                                   
                        travel (                        travel)                                   
                     migration (                     migration)                                   
                           and (                           and)                                   
                         Larks (                         Larks)                                   
                        caught (                        caught)                                   
                        autumn (                        autumn)                                   
                 approximately (                 approximately)                                   
                       express (                       express)                                   
                       migrant (                       migrant)                                   
                         245-8 (                              )      x      x      x      x      x
                           are (                           are)                                   
                          Farn (                          Farn)                                   
                            's (                            's)                                   
                           249 (                              )      x      x      x      x      x
                       Frohawk (                       Frohawk)                                   
                            's (                            's)                                   
                         250-4 (                              )      x      x      x      x      x
                          from (                          from)                                   
                       Family^ (                        Family)                                   
                           ALA (                              )      x      x      x      x      x
                          UDID (                              )      x      x      x      x      x
                             . (                             .)                                   
                             F (                              )      x      x      x      x      x
                             . (                             .)                                   
                       Alaitdn (                        Alauda)                                   
                      ar/iorca (                       arborea)                                   
                             , (                              )      x      x      x      x      x
                          LlNN (                              )      x      x      x      x      x
                             . (                             .)                                   
                             " (                            IN)      x      x      x      x       
                             T (                              )      x      x      x      x      x
                             N (                              )      x      x      x      x      x
                        summer (                        summer)                                   
                          Wood (                          Wood)                                   
                      inhabits (                      inhabits)                                   
                        Russia (                        Russia)                                   
                         below (                         below)                                   
                           60° (                            60)                                   
                            N. (                              )      x      x      x      x      x
                            as (                            as)                                   
                     Southward (                     Southward)                                   
                             - (                             -)                                   
                          down (                          down)                                   
                           its (                           its)                                   
                      Northern (                      Northern)                                   
                            "^ (                             ")                                   
                             - (                             -)                                   
                      Iloivard (                              )      x      x      x      x      x
                      Saunders (                      Saunders)                                   
                             . (                             .)                                   
                            In (                            In)                                   
                          Wood (                          Wood)                                   
                             - (                             -)                                   
                          Lark (                          Lark)                                   
                     occurring (                     occurring)                                   
                    undulating (                    undulating)                                   
                        dotted (                        dotted)                                   
                           six (                           six)                                   
                           but (                           but)                                   
                            In (                            In)                                   
                 Stirlingshire (                 Stirlingshire)                                   
                            In (                            In)                                   
                     colouring (                     colouring)                                   
                          Wood (                          Wood)                                   
                        nearly (                        nearly)                                   
                           Sky (                           Sky)                                   
                             - (                             -)                                   
                      perching (                      perching)                                   
                           the (                           the)                                   
                       bastard (                       bastard)                                   
                       primary (                       primary)                                   
                           the (                           the)                                   
                      blackish (                      blackish)                                   
                       centres (                       centres)                                   
                        iipper (                         upper)      x                            
                       surface (                       surface)                                   
                       central (                       central)                                   
                       reddish (                       reddish)                                   
                       centres (                       centres)                                   
                     outermost (                     outermost)                                   
                       feather (                       feather)                                   
                         brown (                         brown)                                   
                         dusky (                         dusky)                                   
                     remaining (                     remaining)                                   
                      feathers (                      feathers)                                   
                      blackish (                      blackish)                                   
                    triangular (                    triangular)                                   
                             a (                             a)                                   
                       buffish (                       buffish)                                   
                           ear (                           ear)                                   
                        rufous (                        rufous)                                   
                        cheeks (                        cheeks)                                   
                   distinctl}' (                    distinctly)                                   
                     yellowish (                     yellowish)                                   
                        flanks (                        flanks)                                   
                      brownish (                      brownish)                                   
                        throat (                        throat)                                   
                      narrowly (                      narrowly)                                   
                        breast (                        breast)                                   
                       broadly (                       broadly)                                   
                      streaked (                      streaked)                                   
                             ; (                             ;)                                   
                          bill (                          bill)                                   
                          dark (                          dark)                                   
                          feet (                          feet)                                   
                         light (                         light)                                   
                          horn (                          horn)                                   
                             - (                             -)                                   
                          iris (                          iris)                                   
                         hazel (                         hazel)                                   
                             . (                             .)                                   
                     soniewhal (                      somewhat)                                   
                            as (                            as)                                   
                          Sk3' (                           Sky)      x                            
                             - (                             -)                                   
                           the (                           the)                                   
                     deeidedly (                     decidedly)                                   
                       shorter (                       shorter)                                   
                         Yonng (                         Young)      x                            
                       l:)irds (                         birds)                                   
                           are (                           are)                                   
                        rnfons (                        rufous)      x      x      x              
                         above (                         above)                                   
                         below (                         below)                                   
                       3'ellow (                        yellow)      x                            
                       spotted (                       spotted)                                   
                            On (                            On)                                   
                           Dr. (                            Dr)                                   
                       vSharpe (                        Sharpe)                                   
                           and (                           and)                                   
                       Lullula (                       Lullula)                                   
                             , (                             ,)                                   
                          Kaup (                          Kaup)                                   
                        IvU-lu (                              )      x      x      x      x      x
                          Col. (                           Col)                                   
                            L. (                            L.)                                   
                         Irb}' (                          Irby)                                   
                   Ornithology (                   Ornithology)                                   
                         sa3'S (                          says)      x      x                     
                          that (                          that)                                   
                    Andalucian (                    Andalucian)                                   
                          Wood (                          Wood)                                   
                             - (                             -)                                   
                          Lark (                          Lark)                                   
                   frequenting (                   frequenting)                                   
                         scrub (                         scrub)                                   
                           not (                           not)                                   
                          \&xy (                          very)      x                            
                         thick (                         thick)                                   
                      locality (                      locality)                                   
                     Gibraltar (                     Gibraltar)                                   
                     Chaparaks (                              )      x      x      x      x      x
                             ( (                             ()                                   
                          Well (                          Well)                                   
                      vSpanish (                       Spanish)                                   
                          bird (                          bird)                                   
                          they (                          they)                                   
                         never (                         never)                                   
                       remains (                       remains)                                   
                         onl}' (                          only)                                   
                      timbered (                      timbered)                                   
                           not (                           not)                                   
                     clearings (                     clearings)                                   
                      although (                      although)                                   
                       resorts (                       resorts)                                   
                           for (                           for)                                   
                       commons (                       commons)                                   
                           but (                           but)                                   
                         trees (                         trees)                                   
                             ' (                             ')                                   
                      Although (                      Although)                                   
                         feeds (                         feeds)                                   
                        roosts (                        roosts)                                   
                        builds (                        builds)                                   
                       tussock (                       tussock)                                   
                            it (                            it)                                   
                    compactl}' (                     compactly)                                   
                         built (                         built)                                   
                          Sk^^ (                           Sky)      x                            
                             - (                             -)                                   
                     sometimes (                     sometimes)                                   
                         couch (                         couch)                                   
                         grass (                         grass)                                   
                     sometimes (                     sometimes)                                   
                         grass (                         grass)                                   
                         bents (                         bents)                                   
                       Central (                       Central)                                   
                       Lilford (                              )      x      x      x      x      x
                         until (                         until)                                   
                     Secholiin (                              )      x      x      x      x      x
                      huffish- (                              )      x      x      x      x      x
                            or (                            or)                                   
                        greyer (                        greyer)                                   
                         spots (                         spots)                                   
                        massed (                        massed)                                   
                            as (                            as)                                   
                     confluent (                     confluent)                                   
                         being (                         being)                                   
                    generall}' (                     generally)                                   
                      admitted (                      admitted)                                   
                             ' (                              )      x      x      x      x      x
                      resemble (                      resemble)                                   
                        cjuite (                         quite)      x                            
                         eaidy (                         early)      x      x                     
                        enough (                        enough)                                   
                    consisting (                    consisting)                                   
                             - (                             -)                                   
                            's (                            's)                                   
                         ver^' (                          very)                                   
                          pnre (                          pure)                                   
                           and (                           and)                                   
                           b}- (                            by)                                   
                         man}^ (                          many)                                   
                            it (                            it)                                   
                    certaiul}' (                     certainly)                                   
                            is (                            is)                                   
                  nevertheless (                  nevertheless)                                   
                    persevered (                    persevered)                                   
                            it (                            it)                                   
                           but (                           but)                                   
                           mj- (                            my)                                   
                           old (                           old)                                   
                      Grayling (                      Grayling)                                   
                 Sittiugbourne (                 Sittingbourne)                                   
                             ; (                             ;)                                   
                            we (                            we)                                   
                    delightful (                    delightful)                                   
                       looking (                       looking)                                   
                        espied (                        espied)                                   
                     promineut (                     prominent)                                   
                           eye (                           eye)                                   
                             - (                             -)                                   
                     Presently (                              )      x      x      x      x      x
                         awaj^ (                          away)                                   
                        rising (                        rising)                                   
                     obliquely (                     obliquely)                                   
                      swinging (                      swinging)                                   
                           aud (                           and)                                   
                        rising (                        rising)                                   
                        spiral (                        spiral)                                   
                        curves (                        curves)                                   
                     certainlj (                     certainly)                                   
                             ? (                             ?)                                   
                          does (                          does)                                   
                      gloaming (                      gloaming)                                   
                       rustics (                       rustics)                                   
                   Nightingale (                   Nightingale)                                   
                           but (                           but)                                   
                      Although (                      Although)                                   
                     sometimes (                     sometimes)                                   
                         soars (                         soars)                                   
                         quite (                         quite)                                   
                          this (                          this)                                   
                      moreover (                      moreover)                                   
                            it (                            it)                                   
                     obliquely (                     obliquely)                                   
                           b}' (                            by)                                   
                         jerky (                         jerky)                                   
                         drops (                         drops)                                   
                          Lark (                          Lark)                                   
                            On (                            On)                                   
                           but (                           but)                                   
                           fed (                           fed)                                   
                     repletion (                     repletion)                                   
                         Later (                         Later)                                   
                           aud (                           and)                                   
                             I (                             I)                                   
                       exerted (                       exerted)                                   
                      hawthorn (                      hawthorn)                                   
                         About (                         About)                                   
                          bird (                          bird)                                   
                          Wood (                          Wood)                                   
                    splendidly (                    splendidly)                                   
                           One (                           One)                                   
                             I (                             I)                                   
                            it (                            it)                                   
                      uncann}' (                       uncanny)                                   
                             ; (                             ;)                                   
                       however (                       however)                                   
                          Lark (                          Lark)                                   
                           and (                           and)                                   
                           Sky (                           Sky)                                   
                             - (                             -)                                   
                         whose (                         whose)                                   
                             - (                             -)                                   
                             ' (                              )      x      x      x      x      x
                       figured (                       figured)                                   
                          Farn (                          Farn)                                   
                            's (                            's)                                   
                    Familx-ALA (                              )      x      x      x      x      x
                          UDID (                              )      x      x      x      x      x
                             E (                              )      x      x      x      x      x
                       Crested (                       Crested)                                   
                        Alanda (                        Alauda)                                   
                      crisfafa (                      cristata)                                   
                             , (                             ,)                                   
                          LiNN (                              )      x      x      x      x      x
                             . (                             .)                                   
                      RESIDENT (                              )      x      x      x      x      x
                       Central (                       Central)                                   
                       Eiirope (                        Europe)                                   
                           60° (                            60)                                   
                            N. (                              )      x      x      x      x      x
                            in (                            in)                                   
                         North (                         North)                                   
                    Senegambia (                    Senegambia)                                   
                     Abyssinia (                     Abyssinia)                                   
                          east (                          east)                                   
                            To (                            To)                                   
                           one (                           one)                                   
                        Sussex (                        Sussex)                                   
                  Macclesfield (                  Macclesfield)                                   
                      climatic (                      climatic)                                   
                 modifications (                 modifications)                                   
                          Lark (                          Lark)                                   
                           all (                           all)                                   
                          Tlie (                           The)      x                            
                       typical (                       typical)                                   
                         watli (                          with)                                   
                        darker (                        darker)                                   
                       centres (                       centres)                                   
                           the (                           the)                                   
                         crest (                         crest)                                   
                     fcatliers (                      feathers)      x      x                     
                        darker (                        darker)                                   
                           the (                           the)                                   
                       hastard (                       bastard)      x                            
                       primary (                       primary)                                   
                           the (                           the)                                   
                        Ijrown (                         brown)                                   
                         greyi (                       greyish)      x                            
                             - (                             -)                                   
                      luargius (                       margins)      x      x      x      x       
                             , (                             ,)                                   
                        whicli (                         which)                                   
                         outer (                         outer)                                   
                       feather (                       feather)                                   
                         sandv (                         sandy)                                   
                             - (                             -)                                   
                        margin (                        margin)                                   
                        t)uter (                         outer)      x                            
                           web (                           web)                                   
                           the (                           the)                                   
                     backwards (                     backwards)                                   
                       buffish (                       buffish)                                   
                           the (                           the)                                   
                  principall}- (                   principally)                                   
                       buffish (                       buffish)                                   
                        deeper (                        deeper)                                   
                         sides (                         sides)                                   
                       spotted (                       spotted)                                   
                        breast (                        breast)                                   
                       spotted (                       spotted)                                   
                        flanks (                        flanks)                                   
                      slightly (                      slightly)                                   
                      streaked (                      streaked)                                   
                             ; (                             ;)                                   
                          bill (                          bill)                                   
                      mandible (                      mandible)                                   
                         paler (                         paler)                                   
                          feet (                          feet)                                   
                        fleshy (                        fleshy)                                   
                          iris (                          iris)                                   
                         hazel (                         hazel)                                   
                             . (                             .)                                   
                         crest (                         crest)                                   
                     rufescent (                     rufescent)                                   
                      blackish (                      blackish)                                   
                           sub (                           sub)                                   
                             - (                             -)                                   
                          tips (                          tips)                                   
                          tlie (                           the)                                   
                         moult (                         moult)                                   
                       becomes (                       becomes)                                   
                       centres (                       centres)                                   
                          less (                          less)                                   
                          Col. (                           Col)                                   
                         Irb}- (                          Irby)                                   
                   Ornithology (                   Ornithology)                                   
                     Andalucia (                     Andalucia)                                   
                          They (                          They)                                   
                           arc (                           are)                                   
                   distributed (                   distributed)                                   
                         pairs (                         pairs)                                   
                         onl}' (                          only)                                   
                          some (                          some)                                   
                   Excessively (                              )      x      x      x      x      x
                          tame (                          tame)                                   
                     Curiiicit (                              )      x      x      x      x      x
                   frequenting (                   frequenting)                                   
                         roads (                         roads)                                   
                          dung (                          dung)                                   
                            at (                            at)                                   
                            as (                            as)                                   
                       dusting (                       dusting)                                   
                           and (                           and)                                   
                    Sauderling (                    Sanderling)                                   
                        within (                        within)                                   
                         birds (                         birds)                                   
                          This (                          This)                                   
                     migrating (                     migrating)                                   
                       Crested (                       Crested)                                   
                       usually (                       usually)                                   
                          eart (                         earth)      x                            
                             - (                             -)                                   
                         Larks (                         Larks)                                   
                         bents (                         bents)                                   
                          etc. (                      etc.,etc)                                   
                      Saunders (                      Saunders)                                   
                        says:- (                          says)                                   
                             - (                             -)                                   
                             " (                             ")                                   
                     commenced (                     commenced)                                   
                    depression (                    depression)                                   
                             - (                             -)                                   
                       herbage (                       herbage)                                   
                           the (                           the)                                   
                           diy (                           dry)      x      x      x      x       
                         grass (                         grass)                                   
                    distinctly (                    distinctly)                                   
                       average (                       average)                                   
                  measurements (                  measurements)                                   
                           '95 (                              )      x      x      x      x      x
                             " (                              )      x      x      x      x      x
                            bS (                              )      x      x      x      x      x
                            in (                            in)                                   
                             . (                             .)                                   
                    Incubation (                    Incubation)                                   
                        wdiich (                         which)                                   
                           the (                           the)                                   
                       Crested (                       Crested)                                   
                        sandj^ (                         sandy)      x                            
                         roads (                         roads)                                   
                       dusting (                       dusting)                                   
                     rapidit}' (                      rapidity)                                   
                         glide (                         glide)                                   
                         wlien (                          when)                                   
                           Its (                           Its)                                   
                          Lark (                          Lark)                                   
                             . (                             .)                                   
                    gregarious (                    gregarious)                                   
                    generall}' (                     generally)                                   
                          seen (                          seen)                                   
                           (U- (                            or)                                   
                            iu (                            in)                                   
                         pairs (                         pairs)                                   
                       fauiily (                        family)      x                            
                       parties (                       parties)                                   
                        liquid (                        liquid)                                   
                       uttered (                       uttered)                                   
                        duriug (                        during)                                   
                             a (                             a)                                   
                           the (                           the)                                   
                     syllabled (                     syllabled)                                   
                             ' (                             ')                                   
                             ' (                             ')                                   
                         horse (                         horse)                                   
                         Dixon (                         Dixon)                                   
                           sa3 (                          says)      x      x      x      x       
                            's (                            's)                                   
                     xA-lgeria (                       Algeria)                                   
                            he (                            he)                                   
                          soar (                          soar)                                   
                          iuto (                          into)                                   
                      warbling (                      warbling)                                   
                      Theobald (                      Theobald)                                   
                     describes (                     describes)                                   
                ovato-pyriform (                              )      x      x      x      x      x
                             3 (                              )      x      x      x      x      x
                             - (                             -)                                   
                      ellowish (                              )      x      x      x      x      x
                             - (                             -)                                   
                     uuiformly (                     uniformly)                                   
                      freckled (                      freckled)                                   
                        Jerdon (                        Jerdon)                                   
                       Chendul (                              )      x      x      x      x      x
                       chiefly (                       chiefly)                                   
                         grass (                         grass)                                   
                            II (                            II)                                   
                           nor (                           nor)                                   
                            iu (                            in)                                   
                     Himalayas (                     Himalayas)                                   
                            iu (                            in)                                   
                            It (                            It)                                   
                        plaius (                        plains)                                   
                      ploughed (                      ploughed)                                   
                            It (                            It)                                   
                            A. (                              )      x      x      x      x      x
                    guli^iila* (                              )      x      x      x      x      x
                           nor (                           nor)                                   
                          flue (                          fine)      x      x      x      x       
                            In (                            In)                                   
                            iu (                            in)                                   
                  considerable (                  considerable)                                   
                        flocks (                        flocks)                                   
                        Jerdon (                        Jerdon)                                   
                       Chendul (                              )      x      x      x      x      x
                       Seebohm (                       Seebohm)                                   
                        states (                        states)                                   
                       Bunting (                       Bunting)                                   
                         caged (                         caged)                                   
                           the (                           the)                                   
                        custom (                        custom)                                   
                          Herr (                          Herr)                                   
                        Rausch (                        Rausch)                                   
                        speaks (                        speaks)                                   
                      songster (                      songster)                                   
                          wild (                          wild)                                   
                        singer (                        singer)                                   
                       Perhaps (                       Perhaps)                                   
                          Herr (                          Herr)                                   
                        Rausch (                        Rausch)                                   
                          like (                          like)                                   
                       Seebohm (                       Seebohm)                                   
                       Bunting (                       Bunting)                                   
                           aud (                           and)                                   
                 considerabl}' (                  considerably)      x                            
                            as (                            as)                                   
                          This (                          This)                                   
                          tlie (                           the)                                   
                    PyauviotKs (                              )      x      x      x      x      x
                      Icucotis (                              )      x      x      x      x      x
                           the (                           the)                                   
                     specimens (                     specimens)                                   
                        wliich (                         which)                                   
                          have (                          have)                                   
                      variable (                      variable)                                   
                        liquid (                        liquid)                                   
                          song (                          song)                                   
                          N.W. (                              )      x      x      x      x      x
                         India (                         India)                                   
                       Judging (                       Judging)                                   
                           b}^ (                            by)                                   
                        Jerdou (                        Jerdon)                                   
                            's (                              )      x      x      x      x      x
                         India (                         India)                                   
                      Tientsin (                      Tientsin)                                   
                          Lark (                          Lark)                                   
                      scolding (                      scolding)                                   
                            My (                            My)                                   
                 aviculturists (                 aviculturists)                                   
                         would (                         would)                                   
                        Rausch (                        Rausch)                                   
                            's (                            's)                                   
                           but (                           but)                                   
                         the}' (                          they)      x                            
                        desire (                        desire)                                   
                       Crested (                       Crested)                                   
                        import (                        import)                                   
                          Pere (                              )      x      x      x      x      x
                        (P.Z.S (                              )      x      x      x      x      x
                             . (                             .)                                   
                           187 (                              )      x      x      x      x      x
                            In (                            In)                                   
                        Jerdon (                        Jerdon)                                   
                           Cat (                           Cat)                                   
                         Birds (                         Birds)                                   
                            E. (                              )      x      x      x      x      x
                           Ind (                           Ind)                                   
                             . (                             .)                                   
                          Comp (                          Comp)                                   
                            II (                            II)                                   
                  grasshoppers (                  grasshoppers)                                   
                       Seebohm (                       Seebohm)                                   
                             - (                             -)                                   
                             " (                             ")                                   
                            In (                            In)                                   
                       insects (                       insects)                                   
                     mealworms (                     mealworms)                                   
                    Familx-ALA (                              )      x      x      x      x      x
                         UDID^ (                              )      x      x      x      x      x
                             . (                              )      x      x      x      x      x
                       AVinged (                              )      x      x      x      x      x
                          Lark (                          Lark)                                   
                             . (                             .)                                   
               ilTclanocorypha (                              )      x      x      x      x      x
                      sidirica (                      sibirica)                                   
                             , (                              )      x      x      x      x      x
                         Gmp;l (                              )      x      x      x      x      x
                             . (                             .)                                   
                          THIS (                          THIS)                                   
                       species (                       species)                                   
                          1869 (                              )      x      x      x      x      x
                        Rowley (                        Rowley)                                   
                          1870 (                              )      x      x      x      x      x
                       species (                       species)                                   
                           and (                           and)                                   
                            by (                            by)                                   
                     Mongolian (                     Mongolian)                                   
                       Eugland (                       England)                                   
                          This (                          This)                                   
                            in (                            in)                                   
                       January (                       January)                                   
                          1908 (                              )      x      x      x      x      x
                        Sussex (                        Sussex)                                   
              Faunlx-ALAUDID.E (                              )      x      x      x      x      x
                             . (                             .)                                   
                             . (                             .)                                   
                Mcla)iOLoyypha (                              )      x      x      x      x      x
                   ycltontemis (                              )      x      x      x      x      x
                             , (                              )      x      x      x      x      x
                         FoRST (                              )      x      x      x      x      x
                             . (                             .)                                   
                             A (                             A)                                   
                         FLOCK (                              )      x      x      x      x      x
                         About (                         About)                                   
                      imported (                      imported)                                   
                    Leadenhall (                    Leadenhall)                                   
                         Larks (                         Larks)                                   
                      Ortolans (                      Ortolans)                                   
                           and (                           and)                                   
                        Quails (                        Quails)                                   
                             " (                             ")                                   
                        almost (                        almost)                                   
                      bullocks (                      bullocks)                                   
                       jerking (                       jerking)                                   
                          open (                          open)                                   
                      smashing (                      smashing)                                   
                      liberate (                      liberate)                                   
                        enough (                        enough)                                   
                         flock (                         flock)                                   
                            No (                            No)                                   
                  importations (                  importations)                                   
                         birds (                         birds)                                   
                        Family (                        Family)                                   
                  ALAl'DID.-Ji (                              )      x      x      x      x      x
                             . (                             .)                                   
                 Ciila)idixlla (                   Calandrella)                                   
                  bnuhydaityla (                              )      x      x      x      x      x
                             , (                              )      x      x      x      x      x
                         LEISL (                              )      x      x      x      x      x
                             . (                             .)                                   
                        HOWARD (                              )      x      x      x      x      x
                      SAUNDERS (                              )      x      x      x      x      x
                        admits (                        admits)                                   
                   justifiably (                   justifiably)                                   
                         geuus (                         genus)                                   
                   Calandrclla (                   Calandrella)                                   
                             , (                              )      x      x      x      x      x
                 characterized (                 characterized)                                   
                         crest (                         crest)                                   
                       conical (                       conical)                                   
                          hind (                          hind)                                   
                 infinitesimal (                 infinitesimal)                                   
                       bastard (                       bastard)                                   
                       primary (                       primary)                                   
                       Alaiida (                        Alauda)                                   
                             . (                             .)                                   
                      Inhabits (                              )      x      x      x      x      x
                      Southern (                      Southern)                                   
                            in (                            in)                                   
                    xAbyssinia (                     Abyssinia)                                   
                             ; (                             ;)                                   
                      eastward (                      eastward)                                   
                            To (                            To)                                   
                     straggler (                     straggler)                                   
                         about (                         about)                                   
                 authenticated (                 authenticated)                                   
                          si.x (                           six)                                   
                            of (                            of)                                   
                           one (                           one)                                   
                        caught (                        caught)                                   
                           was (                           was)                                   
                            In (                            In)                                   
                  sand3'-browu (                              )      x      x      x      x      x
                           the (                           the)                                   
                             - (                             -)                                   
                      blackish (                      blackish)                                   
                           but (                           but)                                   
                       huffish (                       buffish)      x                            
                       patches (                       patches)                                   
                             a (                             a)                                   
                  superciliary (                  superciliary)                                   
                        streak (                        streak)                                   
                         under (                         under)                                   
                             a (                             a)                                   
                          tlie (                           the)                                   
                          neck (                          neck)                                   
                          bill (                          bill)                                   
                          dark (                          dark)                                   
                          feet (                          feet)                                   
                    j^ellowish (                     yellowish)                                   
                          horn (                          horn)                                   
                          iris (                          iris)                                   
                         hazel (                         hazel)                                   
                             . (                             .)                                   
                        tipped (                        tipped)                                   
                          buff (                          buff)                                   
                         moult (                         moult)                                   
                       Colonel (                       Colonel)                                   
                          Irby (                          Irby)                                   
                   Ornithology (                   Ornithology)                                   
                        says:- (                          says)                                   
                             " (                             ")                                   
                    Andalucian (                    Andalucian)                                   
                     commences (                     commences)                                   
                         nests (                         nests)                                   
                   Excessively (                              )      x      x      x      x      x
                      abundant (                      abundant)                                   
                      Cahuidra (                      Calandra)      x                            
                             ; (                             ;)                                   
                          they (                          they)                                   
                        falhnv (                        fallow)      x      x      x      x       
                       i^round (                        ground)      x                            
                             , (                              )      x      x      x      x      x
                          clod (                          clod)                                   
                          au}' (                           any)      x      x                     
                       sliglit (                        slight)                                   
                    depression (                    depression)                                   
                             I (                             I)                                   
                         l)ird (                          bird)      x                            
                           off (                           off)                                   
                             " (                             ")                                   
                      Saunders (                      Saunders)                                   
                         liird (                          bird)      x      x      x              
                     frequents (                     frequents)                                   
                           dry (                           dry)                                   
                         while (                         while)                                   
                      tameuess (                      tameness)                                   
                            is (                            is)                                   
                   difficult}' (                    difficulty)                                   
                            in (                            in)                                   
                      shooting (                      shooting)                                   
                      withoiit (                       without)                                   
                       blowing (                       blowing)                                   
                           cut (                           cut)                                   
                        utters (                        utters)                                   
                          song (                          song)                                   
                          clod (                          clod)                                   
                        jerk}' (                         jerky)      x                            
                        flight (                        flight)                                   
                            In (                            In)                                   
                  nidification (                  nidification)                                   
                            as (                            as)                                   
                       Seebohm (                       Seebohm)                                   
                        varies (                        varies)                                   
                    commencing (                    commencing)                                   
                            in (                            in)                                   
                       nesting (                       nesting)                                   
                    operations (                    operations)                                   
                     sheltered (                     sheltered)                                   
                         Larks (                         Larks)                                   
                         grass (                         grass)                                   
                      feathers (                      feathers)                                   
                          bird (                          bird)                                   
                           but (                           but)                                   
                           Sky (                           Sky)                                   
                             - (                             -)                                   
                         Larks (                         Larks)                                   
                            In (                            In)                                   
                     colouring (                     colouring)                                   
                       whitish (                       whitish)                                   
                        freely (                        freely)                                   
                     sprinkled (                     sprinkled)                                   
                         smoky (                         smoky)                                   
                        greyer (                        greyer)                                   
                         shell (                         shell)                                   
                         these (                         these)                                   
                       marking (                       marking)                                   
                           but (                           but)                                   
                         Larks (                         Larks)                                   
                        Jerdon (                        Jerdon)                                   
                            cf (                            cf)                                   
                           Cat (                           Cat)                                   
                         Birds (                         Birds)                                   
                            E. (                              )      x      x      x      x      x
                            I. (                             I)                                   
                            II (                            II)                                   
                            It (                            It)                                   
                    associates (                    associates)                                   
                   frequenting (                   frequenting)                                   
                          bare (                          bare)                                   
                             - (                             -)                                   
                         downs (                         downs)                                   
                            it (                            it)                                   
                         grain (                         grain)                                   
                       retires (                       retires)                                   
                          from (                          from)                                   
                            II (                            II)                                   
                          both (                          both)                                   
                          Lark (                          Lark)                                   
                            's (                            's)                                   
                       Towards (                              )      x      x      x      x      x
                         April (                         April)                                   
                        flocks (                        flocks)                                   
                         nnite (                         unite)      x      x                     
                          into (                          into)                                   
                        troops (                        troops)                                   
                    containing (                    containing)                                   
                         man}' (                          many)                                   
                     tliousand (                      thousand)                                   
                         birds (                         birds)                                   
                         qnite (                         quite)                                   
                     darkening (                     darkening)                                   
                       flj'ing (                        flying)                                   
                             . (                             .)                                   
                         Great (                         Great)                                   
                      nnnibers (                       numbers)                                   
                           are (                           are)                                   
                      conntr}- (                       country)      x                            
                           for (                           for)                                   
                            On (                            On)                                   
                        parade (                        parade)                                   
                       groiind (                        ground)      x                            
                             , (                             ,)                                   
                            at (                            at)                                   
                       Kamptee (                       Kamptee)                                   
                             I (                             I)                                   
                        bagged (                        bagged)                                   
                        twelve (                        twelve)                                   
                         birds (                         birds)                                   
                   discharging (                   discharging)                                   
                          both (                          both)                                   
                       wonnded (                       wounded)                                   
                         birds (                         birds)                                   
                       escaped (                       escaped)                                   
                          They (                          They)                                   
                       alwa3'S (                        always)                                   
                        called (                        called)                                   
                       Ortolan (                       Ortolan)                                   
                            by (                            by)                                   
                          They (                          They)                                   
                         the}' (                          they)      x                            
                         breed (                         breed)                                   
                        laying (                        laying)                                   
                        rufous (                        rufous)                                   
                         spots (                         spots)                                   
                     unspotted (                     unspotted)                                   
                        yellow (                        yellow)                                   
                         Larks (                         Larks)                                   
                       insects (                       insects)                                   
                          Herr (                          Herr)                                   
                         Gatke (                              )      x      x      x      x      x
                          says (                          says)                                   
                    Heligoland (                    Heligoland)                                   
                             " (                             ")                                   
                           pp. (                            pp)                                   
                      359-360) (                              )      x      x      x      x      x
                             : (                              )      x      x      x      x      x
                             " (                             ")                                   
                          Lark (                          Lark)                                   
                         being (                         being)                                   
                         ver}- (                          very)                                   
                     solitar}' (                      solitary)                                   
                     instances (                     instances)                                   
                             . (                             .)                                   
                            In (                            In)                                   
                           and (                           and)                                   
                       besides (                       besides)                                   
                             I (                             I)                                   
                            it (                            it)                                   
                  momeutaril}- (                   momentarily)                                   
                       stunned (                       stunned)                                   
                         ver\' (                          very)                                   
                          soon (                          soon)                                   
             extraordinarilj'' (               extraordinarily)                                   
                          tame (                          tame)                                   
                            It (                            It)                                   
                           but (                           but)                                   
                           Its (                           Its)                                   
                       Bunting (                       Bunting)                                   
                          than (                          than)                                   
                         Sk}-- (                           Sky)      x                            
                          Lark (                          Lark)                                   
                             . (                             .)                                   
                             I (                             I)                                   
                        Canary (                        Canary)                                   
                             - (                             -)                                   
                             a (                             a)                                   
                      Familx-A (                        Family)                                   
                            LA (                            LA)                                   
                             E (                              )      x      x      x      x      x
                          Lark (                          Lark)                                   
                             . (                             .)                                   
                      Olocurvs (                              )      x      x      x      x      x
                     alpcstris (                     alpestris)                                   
                             , (                              )      x      x      x      x      x
                          LiNX (                              )      x      x      x      x      x
                             . (                             .)                                   
                        BREEDS (                              )      x      x      x      x      x
                        within (                        within)                                   
                       bej'ond (                        beyond)                                   
                           the (                           the)                                   
                            on (                            on)                                   
                      eastward (                      eastward)                                   
                     Turkestan (                     Turkestan)                                   
                            S. (                              )      x      x      x      x      x
                            To (                            To)                                   
                          when (                          when)                                   
                     according (                     according)                                   
                         Aplin (                         Aplin)                                   
                            In (                            In)                                   
                          Fair (                          Fair)                                   
                        partly (                        partly)                                   
                        creamy (                        creamy)                                   
                           the (                           the)                                   
                      erectile (                      erectile)                                   
                          tuft (                          tuft)                                   
                        cheeks (                        cheeks)                                   
                           ear (                           ear)                                   
                        creamy (                        creamy)                                   
                          nape (                          nape)                                   
                             , (                             ,)                                   
                     vinaceous (                     vinaceous)                                   
                          wing (                          wing)                                   
                             - (                             -)                                   
                        quills (                        quills)                                   
                         smoky (                         smoky)                                   
                         white (                         white)                                   
                          ashy (                          ashy)                                   
                             - (                             -)                                   
                       margins (                       margins)                                   
                      feathers (                      feathers)                                   
                       greyish (                       greyish)                                   
                       centres (                       centres)                                   
                           two (                           two)                                   
                      coloured (                      coloured)                                   
                     remainder (                     remainder)                                   
                         under (                         under)                                   
                        creamy (                        creamy)                                   
                        vinous (                        vinous)                                   
                            on (                            on)                                   
                        flanks (                        flanks)                                   
                          bill (                          bill)                                   
                          iris (                          iris)                                   
                          deep (                          deep)                                   
                      erectile (                      erectile)                                   
                         tufts (                         tufts)                                   
                       centres (                       centres)                                   
                         Young (                         Young)                                   
                         moult (                         moult)                                   
                         adult (                         adult)                                   
                            In (                            In)                                   
                        vShore (                         Shore)                                   
                             - (                             -)                                   
                      inhabits (                      inhabits)                                   
                        liills (                         hills)      x      x                     
                            nf (                            of)                                   
                       Seebohm (                       Seebohm)                                   
                          says (                          says)                                   
                             ' (                             ')                                   
                         Inish (                          bush)      x      x                     
                      Everyone (                      Everyone)                                   
                       melod3^ (                        melody)                                   
                            It (                            It)                                   
                            At (                            At)                                   
                        .Uauda (                        Alauda)                                   
                   arz'i-fis/s (                              )      x      x      x      x      x
                          does (                          does)                                   
                          3'OU (                           you)                                   
                          take (                          take)                                   
                            As (                            As)                                   
                         Larks (                         Larks)                                   
                        stones (                        stones)                                   
                     sometimes (                     sometimes)                                   
                     naturally (                     naturally)                                   
                       differs (                       differs)                                   
                    externally (                    externally)                                   
                          dead (                          dead)                                   
                         bents (                         bents)                                   
                           but (                           but)                                   
                      reindeer (                      reindeer)                                   
                        number (                        number)                                   
                        tlieir (                         their)                                   
                     generally (                     generally)                                   
                            To (                            To)                                   
                   conspicuous (                   conspicuous)                                   
                           Mr. (                            Mr)                                   
                          Hole (                          Hole)                                   
                           Sky (                           Sky)                                   
                         Larks (                         Larks)                                   
                            He (                            He)                                   
                           you (                           you)                                   
                       firstly (                       firstly)                                   
                      chancing (                      chancing)                                   
                           and (                           and)                                   
                    speciniens (                     specimens)                                   
                          shot (                          shot)                                   
                   Polygonacea (                  Polygonaceae)                                   
                           and (                           and)                                   
                          Lark (                          Lark)                                   
                      consists (                      consists)                                   
                            it (                            it)                                   
                       devours (                       devours)                                   
                         small (                         small)                                   
                      mollusca (                      mollusca)                                   
                     Crustacea (                     Crustacea)                                   
                          cast (                          cast)                                   
                         Being (                         Being)                                   
                          both (                          both)                                   
                          tame (                          tame)                                   
                     beautiful (                     beautiful)                                   
                         caged (                         caged)                                   
                           and (                           and)                                   
                   frequentl}^ (                    frequently)                                   
                          bird (                          bird)                                   
                          Herr (                          Herr)                                   
                         Gatke (                              )      x      x      x      x      x
                      observes (                      observes)                                   
                     agreeably (                     agreeably)                                   
                          Lark (                          Lark)                                   
                           its (                           its)                                   
                       peevish (                       peevish)                                   
                    captivit}' (                     captivity)                                   
                           and (                           and)                                   
                   impetuously (                   impetuously)                                   
                    fluttering (                    fluttering)                                   
                          this (                          this)                                   
                      prettily (                      prettily)                                   
                          cage (                          cage)                                   
                            My (                            My)                                   
                         flies (                         flies)                                   
                       earwigs (                       earwigs)                                   
                       rejects (                       rejects)                                   
                         Small (                         Small)                                   
                         moths (                         moths)                                   
                             - (                             -)                                   
                           ear (                           ear)                                   
                           Its (                           Its)                                   
                        staple (                        staple)                                   
                        Canary (                        Canary)                                   
                             - (                             -)                                   
                    procurable (                    procurable)                                   
                     Sustained (                     Sustained)                                   
                         keeps (                         keeps)                                   
                         every (                         every)                                   
                         Larks (                         Larks)                                   
                             - (                             -)                                   
                       Canar3^ (                        Canary)                                   
                             - (                             -)                                   
                       Canar}' (                        Canary)                                   
                            iu (                            in)                                   
                           one (                           one)                                   
                          Lark (                          Lark)                                   
                          husk (                          husk)                                   
                        ever}' (                         every)                                   
                          seed (                          seed)                                   
                          this (                          this)                                   
                           but (                           but)                                   
                          Lark (                          Lark)                                   
                      swallows (                      swallows)                                   
                        ejects (                        ejects)                                   
                         later (                         later)                                   
                 insectivorous (                 insectivorous)                                   
                          When (                          When)                                   
                         Larks (                         Larks)                                   
                         would (                         would)                                   
                       insects (                       insects)                                   
                           and (                           and)                                   
                       subsist (                       subsist)                                   
                         seeds (                         seeds)                                   
                            it (                            it)                                   
                        solely (                        solely)                                   
                        soaked (                        soaked)                                   
                          ants (                          ants)                                   
                             ' (                             ')                                   
                       cocoons (                       cocoons)                                   
                     unnatural (                     unnatural)                                   
                         Larks (                         Larks)                                   
                           you (                           you)                                   
                      recently (                      recently)                                   
                     branchers (                     branchers)                                   
                         Larks (                         Larks)                                   
                            it (                            it)                                   
                     branchers (                     branchers)                                   
                         tamer (                         tamer)                                   
                     perfectly (                     perfectly)                                   
                          tame (                          tame)                                   
                      Appendix (                      Appendix)                                   
                             . (                             .)                                   
                          WHEN (                          WHEN)                                   
                            It (                            It)                                   
                          need (                          need)                                   
                   particulars (                   particulars)                                   
                    respecting (                    respecting)                                   
                       alreadj (                       already)                                   
                             ' (                              )      x      x      x      x      x
                           Had (                           Had)                                   
                      articles (                      articles)                                   
                       Messrs. (                        Messrs)                                   
                      Witherby (                      Witherby)                                   
                            F. (                              )      x      x      x      x      x
                     Ticehurst (                     Ticehurst)                                   
                          been (                          been)                                   
                      inclttde (                       include)                                   
                           all (                           all)                                   
                      vagrants (                      vagrants)                                   
                     gentlemen (                     gentlemen)                                   
                            As (                            As)                                   
                    considered (                    considered)                                   
                      visitors (                      visitors)                                   
                        remedv (                        remedy)                                   
                   deficienc}' (                    deficiency)                                   
                          here (                          here)                                   
                     published (                     published)                                   
                        Family (                        Family)                                   
                       TURDID^ (                              )      x      x      x      x      x
                             . (                             .)                                   
                     Subfamih- (                     Subfamily)                                   
                      TURDINyF (                              )      x      x      x      x      x
                             . (                              )      x      x      x      x      x
                         Dusky (                              )      x      x      x      x      x
                       Turdiis (                        Turdus)                                   
                       dubiiis (                        dubius)                                   
                             , (                              )      x      x      x      x      x
                        BechsT (                              )      x      x      x      x      x
                             . (                             .)                                   
                            NE (                           ONE)      x      x      x      x       
                      specimen (                      specimen)                                   
                     Gunthorpe (                     Gunthorpe)                                   
                         Notts (                         Notts)                                   
                             . (                             .)                                   
                          1905 (                              )      x      x      x      x      x
                    Stornowa}- (                     Stornoway)                                   
                         Outer (                         Outer)                                   
                         White (                         White)                                   
                            's (                            's)                                   
                          i8th (                          18th)      x                            
                          1902 (                              )      x      x      x      x      x
                           now (                           now)                                   
                         Ouzel (                         Ouzel)                                   
                        Family (                        Family)                                   
                            Ti (                              )      x      x      x      x      x
                             ' (                             ')                                   
                          RDID (                              )      x      x      x      x      x
                             . (                             .)                                   
                            E. (                              )      x      x      x      x      x
                   Subfaniily- (                     Subfamily)                                   
                            TL (                              )      x      x      x      x      x
                             ' (                             ')                                   
                          RUIN (                              )      x      x      x      x      x
                             . (                             .)                                   
                             E (                              )      x      x      x      x      x
                      Saxicola (                      Saxicola)                                   
                     shipazina (                              )      x      x      x      x      x
                             , (                             ,)                                   
                          LiNN (                              )      x      x      x      x      x
                             . (                             .)                                   
                             A (                             A)                                   
                          1902 (                              )      x      x      x      x      x
                          1905 (                              )      x      x      x      x      x
                       another (                       another)                                   
                           Hoo (                           Hoo)                                   
                        Sussex (                        Sussex)                                   
                            on (                            on)                                   
                         3'ear (                          year)                                   
                             a (                             a)                                   
                          Pett (                          Pett)                                   
                             a (                             a)                                   
                    Winchelsea (                    Winchelsea)                                   
                          1907 (                              )      x      x      x      x      x
                     stapazina (                              )      x      x      x      x      x
                            by (                            by)                                   
                       species (                       species)                                   
                      Saxicola (                      Saxicola)                                   
                  occidoitalis (                  occidentalis)                                   
                             . (                             .)                                   
                      Saxicola (                      Saxicola)                                   
                        daerti (                       deserti)                                   
                           was (                           was)                                   
                      Pentland (                      Pentland)                                   
                      Skerries (                      Skerries)                                   
                          1906 (                              )      x      x      x      x      x
                        Family (                        Family)                                   
                          TURD (                              )      x      x      x      x      x
                            ID (                            ID)                                   
                             . (                             .)                                   
                            E. (                              )      x      x      x      x      x
                    Subfamily- (                     Subfamily)                                   
                      TURDIN.E (                              )      x      x      x      x      x
                             . (                              )      x      x      x      x      x
                             . (                             .)                                   
                    Pratincola (                    Pratincola)                                   
                         maura (                         maura)                                   
                          Paix (                              )      x      x      x      x      x
                             . (                             .)                                   
                          male (                             A)      x                            
                          Cley (                          Cley)                                   
                          1904 (                              )      x      x      x      x      x
                             A (                             A)                                   
                     Redstarts (                              )      x      x      x      x      x
                         built (                         built)                                   
                       Spiggie (                              )      x      x      x      x      x
                    vShetlands (                     Shetlands)                                   
                             ) (                             ))                                   
                           Maj (                           May)      x                            
                             ' (                             ')                                   
                          1901 (                              )      x      x      x      x      x
                           two (                           two)                                   
                        Skerry (                        Skerry)                                   
                          Vore (                          Vore)                                   
                         Light (                         Light)                                   
                       Messrs. (                        Messrs)                                   
                      Witherby (                      Witherby)                                   
                     Ticehurst (                     Ticehurst)                                   
                        record (                        record)                                   
                        Solway (                        Solway)                                   
                      Aberdeen (                      Aberdeen)                                   
                       ]\Iarch (                         March)      x                            
                          20th (                              )      x      x      x      x      x
                          1900 (                              )      x      x      x      x      x
                         Moray (                         Moray)                                   
                       Flannan (                       Flannan)                                   
                          June (                          June)                                   
                        Orkney (                        Orkney)                                   
                          male (                          male)                                   
                      November (                      November)                                   
                          1905 (                              )      x      x      x      x      x
                        Family (                        Family)                                   
                      TURDID.^ (                              )      x      x      x      x      x
                             . (                             .)                                   
                    Subfamily- (                     Subfamily)                                   
                      TURDIN/E (                              )      x      x      x      x      x
                             . (                              )      x      x      x      x      x
                      Spottf:d (                              )      x      x      x      x      x
                    Bluethroat (                    Bluethroat)                                   
                             . (                             .)                                   
                   Cxa)icciila (                              )      x      x      x      x      x
                       u'i>l/l (                              )      x      x      x      x      x
                             , (                              )      x      x      x      x      x
                         BrEHM (                              )      x      x      x      x      x
                             . (                             .)                                   
                             A (                             A)                                   
                     Dungeness (                     Dungeness)                                   
                             a (                             a)                                   
                           ist (                           1st)      x      x      x      x       
                          1905 (                              )      x      x      x      x      x
                            it (                            it)                                   
                       visited (                       visited)                                   
                  Lincolnshire (                  Lincolnshire)                                   
                        Sussex (                        Sussex)                                   
                          1903 (                              )      x      x      x      x      x
                        Surrey (                        Surrey)                                   
                          1904 (                              )      x      x      x      x      x
                     Yorkshire (                     Yorkshire)                                   
                          1903 (                              )      x      x      x      x      x
                     Shetlands (                     Shetlands)                                   
                          1905 (                              )      x      x      x      x      x
                        Family (                        Family)                                   
                       TURDID^ (                              )      x      x      x      x      x
                             . (                             .)                                   
                    Subfamily- (                     Subfamily)                                   
                       TURDIN^ (                              )      x      x      x      x      x
                             . (                              )      x      x      x      x      x
                   Nightingale (                   Nightingale)                                   
                       Daulias (                              )      x      x      x      x      x
                    fliilomcla (                              )      x      x      x      x      x
                             , (                              )      x      x      x      x      x
                        Bechst (                              )      x      x      x      x      x
                             A (                             A)                                   
                        Smeeth (                        Smeeth)                                   
                      believed (                      believed)                                   
                   Nightingale (                   Nightingale)                                   
                        nested (                        nested)                                   
                             A (                             A)                                   
                       Orphean (                       Orphean)                                   
                          1903 (                              )      x      x      x      x      x
                           6th (                              )      x      x      x      x      x
                          1905 (                              )      x      x      x      x      x
                    vSeptember (                     September)                                   
                          1904 (                              )      x      x      x      x      x
                       secured (                       secured)                                   
                    Woodchurch (                    Woodchurch)                                   
                         24t]i (                          24th)                                   
                          1907 (                              )      x      x      x      x      x
                           one (                           one)                                   
                     September (                     September)                                   
                          1902 (                              )      x      x      x      x      x
                           one (                           one)                                   
                             a (                             a)                                   
                        3'oung (                         young)                                   
                        female (                        female)                                   
                         North (                         North)                                   
                  Lincolnshire (                  Lincolnshire)                                   
                          1899 (                              )      x      x      x      x      x
                             a (                             a)                                   
                       October (                       October)                                   
                          1900 (                              )      x      x      x      x      x
                          1905 (                              )      x      x      x      x      x
                           two (                           two)                                   
                       Li^dlow (                        Ludlow)                                   
                    Shropshire (                    Shropshire)                                   
                          1903 (                              )      x      x      x      x      x
                           and (                           and)                                   
                       Fawilx- (                        Family)                                   
                          TURD (                              )      x      x      x      x      x
                            ID (                            ID)                                   
                             . (                             .)                                   
                            -E (                              )      x      x      x      x      x
                             . (                             .)                                   
                   5«//rtw//r- (                              )      x      x      x      x      x
                             5 (                              )      x      x      x      x      x
                          ILY^ (                           ILY)                                   
                             . (                             .)                                   
                     Sardinian (                     Sardinian)                                   
                       Svlviii (                        Sylvia)                                   
               viclanoccpliaUx (                              )      x      x      x      x      x
                             , (                              )      x      x      x      x      x
                          GmEL (                              )      x      x      x      x      x
                             . (                             .)                                   
                             A (                             A)                                   
                          1907 (                              )      x      x      x      x      x
                        Parkin (                        Parkin)                                   
                           Esq (                           Esq)                                   
                         F.Z.S (                              )      x      x      x      x      x
                             . (                             .)                                   
                          Wren (                          Wren)                                   
                   Breconshire (                   Breconshire)                                   
                          1899 (                              )      x      x      x      x      x
                             A (                             A)                                   
                          1905 (                              )      x      x      x      x      x
                           one (                           one)                                   
                          1906 (                              )      x      x      x      x      x
                        Tresco (                        Tresco)                                   
                        Scilly (                        Scilly)                                   
                           ist (                           1st)      x      x      x      x       
                          1905 (                              )      x      x      x      x      x
                       Family^ (                        Family)                                   
                            Ti (                              )      x      x      x      x      x
                            7^ (                              )      x      x      x      x      x
                          DILL (                              )      x      x      x      x      x
                            -E (                              )      x      x      x      x      x
                             . (                              )      x      x      x      x      x
                SuhJaniiiy-SYL (                              )      x      x      x      x      x
                             J (                              )      x      x      x      x      x
                          7IA\ (                              )      x      x      x      x      x
                            E. (                             E)                                   
                       PallAvS (                              )      x      x      x      x      x
                             ' (                              )      x      x      x      x      x
                             . (                             .)                                   
                  Phy/Iosiopus (                  Phylloscopus)                                   
                 f^ivrcgit/iis (                              )      x      x      x      x      x
                             . (                              )      x      x      x      x      x
                        single (                             A)      x                            
                   Chiffchaffs (                   Chiffchaffs)                                   
                       visited (                       visited)                                   
                       between (                       between)                                   
                         i5tli (                          15th)      x      x      x      x       
                          1904 (                              )      x      x      x      x      x
                            in (                            in)                                   
                         3'ear (                          year)                                   
                           one (                           one)                                   
                       Tnlloch (                       Tulloch)                                   
                            at (                            at)                                   
                          Ma}^ (                           May)                                   
                          27th (                              )      x      x      x      x      x
                        Family (                        Family)                                   
                      TURDID.F (                              )      x      x      x      x      x
                             . (                             .)                                   
                     Subjaimly (                     Subfamily)                                   
                          -SYL (                              )      x      x      x      x      x
                             I (                              )      x      x      x      x      x
                         IIN.E (                           IIN)                                   
                             . (                             .)                                   
                 Phy//oscop!is (                  Phylloscopus)                                   
                       tristis (                       tristis)                                   
                         BlyTH (                              )      x      x      x      x      x
                             . (                             .)                                   
                             N (                            AN)      x      x      x              
                       example (                       example)                                   
                    lighthonse (                    lighthouse)                                   
                           off (                           off)                                   
                        Family (                        Family)                                   
                      TURDIL)^ (                              )      x      x      x      x      x
                             . (                             .)                                   
                    Subfamily- (                     Subfamily)                                   
                           SYL (                              )      x      x      x      x      x
                             I (                             I)                                   
                        'IIN.E (                              )      x      x      x      x      x
                             . (                             .)                                   
                      Greenish (                      Greenish)                                   
                        Willow (                        Willow)                                   
                             . (                             .)                                   
                 Phylloscopiis (                  Phylloscopus)                                   
                    viridaiius (                              )      x      x      x      x      x
                             , (                              )      x      x      x      x      x
                         Blvth (                              )      x      x      x      x      x
                             . (                             .)                                   
                             a (                             a)                                   
                          Sule (                          Sule)                                   
                    Lighthouse (                    Lighthouse)                                   
              Siitherlandshire (               Sutherlandshire)                                   
                          1902 (                              )      x      x      x      x      x
                           Two (                           Two)                                   
                      couiinou (                              )      x      x      x      x      x
                        Willow (                        Willow)                                   
                         fouud (                         found)                                   
                     Shetlauds (                     Shetlands)                                   
                            in (                            in)                                   
                             - (                             -)                                   
                        Fnmtlx (                        Family)                                   
                             - (                             -)                                   
                            TL (                              )      x      x      x      x      x
                         ^RDID (                              )      x      x      x      x      x
                             . (                             .)                                   
                            E. (                              )      x      x      x      x      x
                Sii/^/,u>n/\-S (                              )      x      x      x      x      x
                             J (                            J.)                                   
                             Z (                              )      x      x      x      x      x
                           VLV (                           VLV)                                   
                             E (                              )      x      x      x      x      x
                        Rufous (                        Rufous)                                   
                             . (                             .)                                   
                         Aidon (                         Aedon)                                   
                    (^alcnimAs (                              )      x      x      x      x      x
                             , (                              )      x      x      x      x      x
                          Temm (                              )      x      x      x      x      x
                          THIS (                          THIS)                                   
                          rare (                          rare)                                   
                        Family (                        Family)                                   
                      TURDID.E (                              )      x      x      x      x      x
                             . (                             .)                                   
                Siih/auiilySYL (                              )      x      x      x      x      x
                             I (                              )      x      x      x      x      x
                         IIN^E (                           IIN)                                   
                             . (                             .)                                   
                       Warbler (                       Warbler)                                   
                             . (                             .)                                   
                        Acdoii (                         Aedon)                                   
                    fnmiliaris (                    familiaris)                                   
                             . (                              )      x      x      x      x      x
                             A (                             A)                                   
                          1907 (                              )      x      x      x      x      x
                        Family (                        Family)                                   
                          TURD (                              )      x      x      x      x      x
                            ID (                            ID)                                   
                             ^ (                              )      x      x      x      x      x
                             . (                             .)                                   
                    Subfamily- (                     Subfamily)                                   
                           SYL (                              )      x      x      x      x      x
                             I (                             I)                                   
                          IIN^ (                           IIN)                                   
                             . (                             .)                                   
                         Radde (                         Radde)                                   
                            's (                            's)                                   
                    Lusciniola (                              )      x      x      x      x      x
                      sckwarzi (                      schwarzi)                                   
                             , (                              )      x      x      x      x      x
                         Radde (                         Radde)                                   
                             A (                             A)                                   
                           Mr. (                        Mr,Mr.)                                   
                        Haigli (                         Haigh)      x                            
                             . (                             .)                                   
                        Family (                        Family)                                   
                            -- (                             -)                                   
                            Tl (                              )      x      x      x      x      x
                             ' (                             ')                                   
                          KDID (                              )      x      x      x      x      x
                             . (                             .)                                   
                            E. (                              )      x      x      x      x      x
                Su/ifaniuy-SVL (                              )      x      x      x      x      x
                             I (                              )      x      x      x      x      x
                             ' (                              )      x      x      x      x      x
                          ILWF (                              )      x      x      x      x      x
                             . (                             .)                                   
                      Cetti'vS (                              )      x      x      x      x      x
                       Warrlkr (                              )      x      x      x      x      x
                             . (                              )      x      x      x      x      x
                        Cetfin (                        Cettia)                                   
                        ccttii (                              )      x      x      x      x      x
                             , (                              )      x      x      x      x      x
                          Marm (                          Marm)                                   
                             . (                             .)                                   
                             A (                             A)                                   
                          Ma}' (                           May)                                   
                          12th (                              )      x      x      x      x      x
                          1904 (                              )      x      x      x      x      x
                           One (                           One)                                   
                      Icterine (                      Icterine)                                   
                        Cromer (                        Cromer)                                   
                           one (                           one)                                   
                           one (                           one)                                   
                     September (                     September)                                   
                           one (                           one)                                   
                          Cley (                          Cley)                                   
                       Holkham (                       Holkham)                                   
                           one (                           one)                                   
                         Knock (                         Knock)                                   
                     Lightship (                     Lightship)                                   
                     September (                     September)                                   
                           one (                           one)                                   
                          June (                          June)                                   
                           one (                           one)                                   
                        Family (                        Family)                                   
                       TURDID^ (                              )      x      x      x      x      x
                             . (                             .)                                   
                    Subfamily- (                     Subfamily)                                   
                           SYL (                              )      x      x      x      x      x
                         VIIN^ (                              )      x      x      x      x      x
                             . (                             .)                                   
                     Melodious (                              )      x      x      x      x      x
                      Hypolais (                      Hypolais)                                   
                    polyglolla (                              )      x      x      x      x      x
                             , (                              )      x      x      x      x      x
                        ViEILL (                              )      x      x      x      x      x
                             . (                             .)                                   
                            AN (                            AN)                                   
                       example (                       example)                                   
                       Burwash (                       Burwash)                                   
                             a (                             a)                                   
                      Ninfield (                      Ninfield)                                   
                           May (                           May)                                   
                           one (                           one)                                   
                   Lighthoi:se (                              )      x      x      x      x      x
                             , (                             ,)                                   
                           co. (                            co)                                   
                          Cork (                          Cork)                                   
                           the (                           the)                                   
                          Rev. (                           Rev)                                   
                        Mathew (                        Mathew)                                   
                         heard (                         heard)                                   
                      Warblers (                      Warblers)                                   
                          near (                          near)                                   
                            he (                            he)                                   
                     Melodious (                              )      x      x      x      x      x
                      Warblers (                      Warblers)                                   
                        nested (                        nested)                                   
                     Shetlands (                     Shetlands)                                   
                          1906 (                              )      x      x      x      x      x
                       Warbler (                       Warbler)                                   
                            Au (                            An)      x      x                     
                       example (                       example)                                   
                             a (                             a)                                   
                       Bexhill (                       Bexhill)                                   
                           one (                           one)                                   
                 Christclinrch (                  Christchurch)                                   
                         Hants (                         Hants)                                   
                           one (                           one)                                   
                       Horning (                       Horning)                                   
                         there (                         there)                                   
                  Charterhonse (                  Charterhouse)                                   
                    collection (                    collection)                                   
                          shot (                          shot)                                   
                     Godalming (                     Godalming)                                   
                Ornithologists (                Ornithologists)                                   
                      believed (                      believed)                                   
                        Tresco (                        Tresco)                                   
                        Scilly (                        Scilly)                                   
                     Specimens (                     Specimens)                                   
                       Ireland (                       Ireland)                                   
                    Additional (                    Additional)                                   
                      Accentor (                      Accentor)                                   
                           has (                           has)                                   
                      Januar}' (                       January)                                   
                          1905 (                              )      x      x      x      x      x
                     Godalming (                     Godalming)                                   
                           one (                           one)                                   
                       January (                       January)                                   
                            it (                            it)                                   
                       Scill}' (                        Scilly)                                   
                             . (                             .)                                   
                             A (                             A)                                   
                       Crested (                       Crested)                                   
                           Tit (                           Tit)                                   
                      Yarmouth (                      Yarmouth)                                   
                             a (                             a)                                   
                       Creeper (                       Creeper)                                   
                      Alderney (                      Alderney)                                   
                        Family (                        Family)                                   
                            TA (                            TA)                                   
                        CILLID (                              )      x      x      x      x      x
                             . (                             .)                                   
                            -E (                              )      x      x      x      x      x
                             . (                             .)                                   
                       Wagtail (                       Wagtail)                                   
                             . (                             .)                                   
                            j] (                     Motacilla)      x      x      x              
                           lot (                           lot)                                   
                            ac (                            ac)                                   
                          ilia (                          ilia)                                   
                      60/ra/is (                              )      x      x      x      x      x
                             , (                             ,)                                   
                          SuND (                              )      x      x      x      x      x
                             . (                             .)                                   
                          THIS (                          THIS)                                   
                          race (                          race)                                   
                          near (                          near)                                   
                            In (                            In)                                   
                           two (                           two)                                   
                         .shot (                          shot)                                   
                          near (                          near)                                   
                    Willingdon (                    Willingdon)                                   
                             A (                             A)                                   
                          Lydd (                          Lydd)                                   
                             A (                             A)                                   
                    Winchelsea (                    Winchelsea)                                   
                        Family (                        Family)                                   
                            TA (                            TA)                                   
                           CIL (                           CIL)                                   
                             L (                              )      x      x      x      x      x
                           ID^ (                            ID)                                   
                             . (                             .)                                   
                       Wagtail (                       Wagtail)                                   
                     Motacilla (                     Motacilla)                                   
                 vulauoccphala (                              )      x      x      x      x      x
                             , (                             ,)                                   
                         LiCHT (                              )      x      x      x      x      x
                             . (                             .)                                   
                             A (                             A)                                   
                    Willingdon (                    Willingdon)                                   
                          Ma}- (                           May)                                   
                         ijtli (                              )      x      x      x      x      x
                             , (                              )      x      x      x      x      x
                          1906 (                              )      x      x      x      x      x
                            it (                            it)                                   
                        flaz'a (                         flava)                                   
                            as (                            as)                                   
                     followiug (                     following)                                   
                             . (                             .)                                   
                            Fa (                              )      x      x      x      x      x
                           ly- (                            ly)                                   
                            MO (                              )      x      x      x      x      x
                            TA (                            TA)                                   
                          CILL (                          CILL)                                   
                            ID (                            ID)                                   
                             . (                             .)                                   
                            F. (                              )      x      x      x      x      x
                        SykEvS (                              )      x      x      x      x      x
                             ' (                             ')                                   
                       Wagtail (                       Wagtail)                                   
                             . (                             .)                                   
                     Motacilla (                     Motacilla)                                   
                         beema (                              )      x      x      x      x      x
                         SykeS (                              )      x      x      x      x      x
                             . (                             .)                                   
                             A (                             A)                                   
                   Rottingdean (                   Rottingdean)                                   
                         2otli (                          20th)      x      x      x      x       
                          1898 (                              )      x      x      x      x      x
                        Family (                        Family)                                   
                            TA (                            TA)                                   
                      CILLlDzE (                              )      x      x      x      x      x
                             . (                             .)                                   
                         AvShy (                              )      x      x      x      x      x
                             - (                             -)                                   
                       Wagtail (                       Wagtail)                                   
                             . (                             .)                                   
                     Motacilla (                     Motacilla)                                   
                cinereocapilla (                              )      x      x      x      x      x
                             , (                             ,)                                   
                         Sa\'I (                              )      x      x      x      x      x
                             . (                             .)                                   
                           THE (                           THE)                                   
                         /lava (                         flava)      x      x                     
                           but (                           but)                                   
                Ornithologists (                Ornithologists)                                   
                     nowadaj'S (                      nowadays)                                   
                            is (                            is)                                   
                            if (                            if)                                   
                        occurs (                        occurs)                                   
                     Shetlands (                     Shetlands)                                   
                            as (                            as)                                   
                            it (                            it)                                   
                        Scilly (                        Scilly)                                   
                             A (                             A)                                   
                        Achill (                        Achill)                                   
                           co. (                            co)                                   
                             a (                             a)                                   
                           co. (                            co)                                   
                       Donegal (                       Donegal)                                   
                          1898 (                              )      x      x      x      x      x
                             a (                             a)                                   
                      Ninfield (                      Ninfield)                                   
                          1901 (                              )      x      x      x      x      x
                            In (                            In)                                   
                          1903 (                              )      x      x      x      x      x
                          four (                          four)                                   
                         Tawny (                         Tawny)                                   
                       another (                       another)                                   
                       Bexhill (                       Bexhill)                                   
                             a (                             a)                                   
                        Bodmin (                        Bodmin)                                   
                       Richard (                       Richard)                                   
                        Scilly (                        Scilly)                                   
                       Kentish (                       Kentish)                                   
                         Pipit (                         Pipit)                                   
                           one (                           one)                                   
                       Scill3% (                        Scilly)                                   
                           May (                           May)                                   
                           one (                           one)                                   
                       Milcomb (                              )      x      x      x      x      x
                             ( (                             ()                                   
                           one (                           one)                                   
                           one (                           one)                                   
                   Littlestone (                   Littlestone)                                   
                    altogether (                    altogether)                                   
                        Sussex (                        Sussex)                                   

Suggested Candidates Evaluation

We analysis the detected testing errors whether the top 10 suggested candidates include the ground truth correction. There are 67.74% of the corrections are detected.

In [5]:
def detect_rate(dataset):
    corr = 0
    for err in dataset.errors:
        if sum(err.labels) > 0:
            corr += 1
    return corr / len(dataset.errors)
print('train detect rate:', detect_rate(TRAIN_DATASET))
print(' test detect rate:', detect_rate(TEST_DATASET))
train detect rate: 0.7880350696235173
 test detect rate: 0.884625356494685
In [112]:
for err in TEST_DATASET.errors:
    corr = [] 
    for cand, label in zip(err.candidates, err.labels):
        if label is 1:
            corr.append(cand)
    print('%-20s %s' % (err.name, '\t'.join([c.name for c in corr])))
possibility          possibility
niaj                 may
'                    
bv                   by
Mr.                  Mr.	Mr
llarting             Harting
for                  for
my                   my
Oologj               Oology
'                    '
1S64                 1864
a                    a
tame                 tame
Ravens               Ravens
which                which
Winterbottom         Winterbottom
Cheltenham           Cheltenham
built                built
The                  The
fern                 fern
dead                 dead
On                   On
two                  two
tlie                 the
nest                 nest
l)ut                 but
the                  the
l)y                  by
visitors             visitors
hatclied             hatched
Lilford              
last                 last
wliieli              which
,                    ,
liowever             however
considerable         considerable
reared               reared
1894                 
In                   In
Mr.                  Mr.	Mr
Ravens               Ravens
hatched              hatched
five                 five
strong               strong
Mr.                  Mr
Coniyus              
,                    ,
Lyveudeu             
,                    ,
S.                   
forwarded            forwarded
Buzzard              Buzzard
taken                taken
-                    -
"                    "
aggressively         aggressively
tame                 tame
Buzzard              Buzzard
remained             remained
obdurate             obdurate
full}'               fully
three                three
exasperating         exasperating
I                    I
'                    '
Raven                Raven
As                   As
instantly            instantly
dashed               dashed
The                  The
after                after
flying               flying
hotly                hotly
b}'                  by
'                    
'                    
suddenly             suddenly
alighted             alighted
feather              feather
bristling            bristling
.                    .
sable                sable
bird                 bird
Odin                 Odin
was                  was
tempered             tempered
caution              caution
he                   he
ruffled              ruffled
Buzzard              Buzzard
consternation        consternation
sprang               sprang
He                   He
after                after
liis                 his
laurels              laurels
got                  got
The                  The
Buzzard              Buzzard
would                would
stoop                stoop
beak                 beak
as                   as
unearthed            unearthed
'                    '
furtively            furtively
tweaking             tweaking
Buzzard              Buzzard
wings                wings
harrassing           
attacks              attacks
Buzzard              Buzzard
spirit               spirit
evidently            evidently
wretch               wretch
denuded              denuded
both                 both
Hitherto             
Buzzard              Buzzard
might                might
being                being
Comyns               Comyns
'                    '
Mr.                  Mr
Frohawk              Frohawk
saw                  saw
tlie                 the
mouth                mouth
Devon                Devon
1895                 
they                 they
Fa>,iilv-C0RJ7D.-E   
.                    .
The                  The
Carrion              Carrion
.                    .
Corviis              Corvus
iOfoiic              
,                    
Linn                 Linn
.                    .
IN                   IN
Siberia              Siberia
Seebohm              Seebohm
Ijdng                lying
between              between
Yenesay              
northwards           northwards
Westwards            
he                   he
Turkestan            Turkestan
Caspian              Caspian
Hooded               Hooded
Crows                Crows
spread               spread
He                   He
interbreeds          interbreeds
Hooded               Hooded
Crow                 Crow
Yenesay              
(                    (
intergrades          intergrades
these                these
cases                cases
Histor}'             History
branch               branch
Museum               Museum
In                   In
disliked             disliked
both                 both
yet                  yet
England              England
becoming             becoming
decidedly            decidedly
commoner             commoner
in                   in
coast                coast
it                   it
Shetlands            Shetlands
In                   In
The                  The
male                 male
Carrion              Carrion
purplish             purplish
above                above
tints                tints
the                  the
wings                wings
similarly            similarly
tinted               tinted
bill                 bill
iris                 iris
The                  The
plumage              plumage
her                  her
bill                 bill
ajipears             appears
to                   to
Young                Young
gloss                gloss
As                   As
h3-bridize           hybridize
freely               freely
Hooded               Hooded
Herr                 Herr
Gatke                
shrewdly             shrewdly
observes             observes
pairing              pairing
having               having
3'ears               years
forms                forms
for                  for
the}'                they
had                  had
primary              primary
reverted             reverted
present              present
colouration          colouration
but                  but
gradational          gradational
stages               stages
gre}'                grey
and                  and
black                black
Pheasants            Pheasants
-                    -
P.                   
cuIchicKs            
,                    ,
P.                   P.
/oi-qna/us           
and                  and
P.                   P.
vtrsicoloi-          versicolor
,                    ,
interbreed           interbreed
freely               freely
endless              endless
intergrades          intergrades
are                  are
distinct             distinct
sports               sports
intergrades          intergrades
but                  but
reproduce            reproduce
as                   as
Barbaiy              Barbary
Turtle               Turtle
Gouldian             
fertile              fertile
Bengalee             Bengalee
Carrion              Carrion
resembles            resembles
inhabiting           inhabiting
similar              similar
haunts               haunts
coverts              coverts
In                   In
predatory            predatory
cpiite               quite
as                   as
both                 both
shepherd             shepherd
Ever                 Ever
b}'                  by
Tliat                
this                 this
seems                seems
dispute              dispute
Gull                 Gull
Hawk                 Hawk
combiued             combined
attack               attack
would                would
indeed               indeed
fare                 fare
badl3^               badly
Lord                 Lord
Lilford              
observes             observes
saj^                 say
in                   in
.                    .
His                  His
noxious              noxious
captivity            captivity
offers               offers
natixral             natural
evil                 evil
Carriou              Carrion
-                    -
Crow                 Crow
wings                wings
regularly            regularly
when                 when
wheels               wheels
walks                walks
leaps                leaps
wings                wings
The                  The
nidification         nidification
boys                 boys
Iwade                Iwade
near                 near
Sheppy               
consisted            consisted
tliree               three
full                 full
yolkless             yolkless
one                  one
it                   it
-                    
but                  but
J.                   
B.                   B
Pilley               Pilley
Zoologist            Zoologist
"                    "
1891                 
meadows              meadows
The                  The
dead                 dead
-                    -
tussocks             tussocks
neatly               neatly
smoothed             smoothed
The                  The
number               number
clutch               clutch
but                  but
the                  the
consist              consist
some                 some
Crow                 Crow
pairs                pairs
Of                   Of
figured              figured
figs.                figs
233                  
Farn                 Farn
collection           collection
236                  
Frohawk              Frohawk
;                    ;
my                   my
specimens            specimens
characteristic       characteristic
representing         representing
The                  The
but                  but
sheep                sheep
poultry              poultry
but                  but
mollusca             mollusca
Sheppard             Sheppard
Whitear              
)                    )
stale                stale
fish                 fish
cast                 cast
carrion              carrion
devoured             devoured
greedil}'            greedily
,                    ,
as                   as
lie                  he
berries              berries
weakly               weakly
half                 half
-                    -
birds                birds
Mr.                  Mr
O.                   
V.                   
Aplin                Aplin
"                    "
Zoologist            Zoologist
"                    "
-                    -
bridle               bridle
-                    -
gate                 gate
.standing            standing
near                 near
Clattercutt          
Reservoir            Reservoir
has                  has
Carrion              Carrion
-                    -
Crows                Crows
One                  One
strewn               strewn
toads                toads
partly               partly
fledged              fledged
nestling             nestling
finch                finch
also                 also
Partridge            Partridge
showed               showed
perch                perch
wing                 wing
-                    -
even                 even
hurriedly            hurriedly
croaks               croaks
expressed            expressed
banqueting           banqueting
ample                ample
Only                 Only
Crows                Crows
considering          considering
wildfowl             wildfowl
j'oung               young
at                   at
inclined             inclined
Carrion              Carrion
considerable         considerable
numbers              numbers
arrive               arrive
Seebohm              Seebohm
statement            statement
"                    "
hardly               hardly
Lilford              
opinion              opinion
.                    .
Bonhote              
experience           experience
communicated         communicated
November             November
1896                 
-                    -
Carrion              Carrion
-                    -
Crows                Crows
the                  the
when                 when
actions              actions
moves                moves
bird                 bird
(                    (
Grey                 Grey
Crow                 Crow
aviary               aviary
Familx-C0K]'I1K-E    
.                    .
The                  The
Collins              Corvus
comix                comix
LiNN                 
.                    .
"                    
^OUND                
throughout           throughout
Europe               Europe
loug                 long
.                    .
10°                  
,                    ,
and                  and
iu                   in
Asia                 Asia
extends              extends
I                    
'                    
Turkestan            Turkestan
Palestine            Palestine
Examples             Examples
slate                slate
replaced             replaced
C.                   
capcllauns           
;                    ;
but                  but
Siberian             Siberian
birds                birds
birds                birds
-                    -
Sceboli??!           
.                    .
An                   An
England              England
whilst               whilst
Throughout           
interbreeding        interbreeding
occasionally         occasionally
Carrion              Carrion
countr}^             country
and                  and
Wales                Wales
The                  The
Hooded               Hooded
thighs               thighs
black                black
remainder            remainder
plumage              plumage
ashy                 ashy
becoming             becoming
quite                quite
black                black
bill                 bill
iris                 iris
The                  The
browner              browner
on                   on
bill                 bill
broader              broader
lower                lower
The                  The
Hoodies              Hoodies
southwards           southwards
seasonal             seasonal
visitation           visitation
The                  The
Stevenson            Stevenson
"                    "
Royston              Royston
or                   or
Crow                 Crow
as                   as
arriving             arriving
earlier              earlier
and                  and
They                 They
frequent             frequent
broads               broads
collect              collect
spring               spring
Norfolk              Norfolk
leaves               leaves
iu                   in
breeding             breeding
probably             probably
being                being
pr\-ing              prying
e\'es                eyes
and                  and
carnivorons          carnivorous
propensities         propensities
liowever             however
j                    years
-                    -
ears                 ears
vSt                  St
.                    .
John                 John
"                    "
Mora}',"             
p.                   
-                    -
"                    "
newlj'-boru          
lambs                lambs
It                   It
)-oung               young
grouse               grouse
etc.                 etc	etc.
vcr}'                very
destructive          destructive
In                   In
certain              certain
feeding              feeding
eggs                 eggs
variety              variety
No                   No
au}'                 any
bird                 bird
leave                leave
Hooded               Hooded
Crow                 Crow
often                often
iu                   in
All                  All
seem                 seem
Peewits              Peewits
Gulls                Gulls
Redshanks            Redshanks
etc.                 etc.	etc
attack               attack
furiously            furiously
an\'                 any
Crow                 Crow
which                which
hunting              hunting
hoody                hoody
destro3-s            destroys
great                great
osprc}'              osprey
happen               happen
Redcar               Redcar
Zoologist            Zoologist
"                    "
Hoodies              Hoodies
Messrs.              Messrs
T.                   T.
H.                   
Pilling              Pilling
observe              observe
-                    -
"                    "
Hoodies              Hoodies
largest              largest
thick                thick
Seebohm              Seebohm
this                 this
b}'                  by
da\-                 day
,                    
and                  and
Gatke                
says                 says
commences            commences
the                  the
consisting           consisting
continues            continues
We                   We
scarcel}^            scarcely
in                   in
assume               assume
chances              chances
Heligoland           Heligoland
More                 More
migrations           migrations
boats                boats
eight                eight
extend               extend
;                    ;
while                while
simultaneous!}'      simultaneously
and                  and
Weser                Weser
at                   at
Bremerhaven          Bremerhaven
as                   as
plies                plies
We                   We
migration            migration
column               column
Herr                 Herr
Gatke                
proceeds             proceeds
considerable         considerable
nevertheless         nevertheless
important            important
as                   as
"                    "
as                   as
Crows                Crows
econom_v             economy
Evcr\'where          Everywhere
the                  the
creates              creates
Now                  Now
altliough            although
the                  the
destruction          destruction
snuiU                small
species              species
nevertheless         nevertheless
all                  all
Ital}'               Italy
during               during
migration            migration
scarcel}'            scarcely
equal                equal
destroyed            destroyed
b}-                  by
the                  the
Hooded               Hooded
Crows                Crows
during               during
Hooded               Hooded
Crows                Crows
becomes              becomes
nowhere              nowhere
prepondering         
quantity             quantity
Heligoland           Heligoland
but                  but
impedes              impedes
and                  and
remembers            remembers
impudent             impudent
thej^                they
are                  are
da3                  days
earl}^               early
dawn                 dawn
plunder              plunder
Lark                 Lark
Dresser              Dresser
wonder               wonder
Hooded               Hooded
left                 left
By                   By
especially           especially
bj^                  by
abstaining           abstaining
an}-                 any
small                small
shrubbery            shrubbery
or                   or
songster             songster
a                    a
nook                 nook
its                  its
above                above
compassing           compassing
Hooded               Hooded
Crows                Crows
unsparingl}'         unsparingly
,                    ,
3'ear                year
in                   in
b}'                  by
all                  all
nidification         nidification
in                   in
Ireland              Ireland
commences            commences
later                later
the                  the
coroue               corone
and                  and
although             although
according            according
Gray                 Gray
The                  The
precisel}^           precisely
like                 like
The                  The
C.                   
coronc               corone
are                  are
but                  but
Hooded               Hooded
Crow                 Crow
Dixon                Dixon
Ornithologist        Ornithologist
who                  who
saj-                 say
for                  for
Crow                 Crow
he                   he
mode                 mode
Hooded               Hooded
Crow                 Crow
never                never
Mail}-               
readers              readers
held                 held
willi                with
regard               regard
tliere               there
appears              appears
redeeming            redeeming
Hoodie               Hoodie
when                 when
not                  not
Herr                 Herr
Giitke               
tells                tells
Heligolanders        Heligolanders
esteem               esteem
Lord                 Lord
Lilford              
sa3                  
that                 that
abominable           abominable
although             although
Gre}'                Grey
Crow                 Crow
sturdy               sturdy
vagrant              vagrant
We                   We
c\ten)ii}iatc        
any                  any
but                  but
Fawilx-COR]'ID.E     
.                    .
The                  The
Corviis              Corvus
/nigi/i(;i(s         
,                    
Linn                 Linn
.                    .
IN                   IN
Western              Western
Rook                 Rook
breeds               breeds
being                being
migratory            migratory
Southern             Southern
Asia                 Asia
Eastwards            
Turkestan            Turkestan
Persia               Persia
Cashmere             Cashmere
N.                   
W.                   
India                India
In                   In
Rook                 Rook
prett}^              pretty
generally            generally
localities           localities
in                   in
Scotland             Scotland
though               though
rarer                rarer
Orkneys              Orkneys
The                  The
Rook                 Rook
l^are                bare
grey                 grey
warty                warty
patch                patch
extending            extending
Bill                 Bill
iris                 iris
Tlie                 The
female               female
Tlie                 The
young                young
glossy               glossy
Carrion              Carrion
bristly              bristly
feathers             feathers
it                   it
.slender             slender
bill                 bill
tlie                 the
deep                 deep
.slate               slate
-                    -
colour               colour
In                   In
Rook                 Rook
so                   so
larvje               larvae
to                   to
but                  but
protracted           protracted
drought              drought
after                after
In                   In
pastures             pastures
detested             detested
almost               almost
Carrion              Carrion
.                    .
weak                 weak
birds                birds
for                  for
witnessed            witnessed
predatory            predatory
habit                habit
severe               severe
The                  The
haunts               haunts
well                 well
-                    -
cultivated           cultivated
preferabl}^          preferably
where                where
here                 here
busily               busily
leather              leather
grubs                grubs
in                   in
fallows              fallows
swallows             swallows
incalculable         incalculable
wire                 wire
cockchafers          cockchafers
onl}'                only
devours              devours
such                 such
grubs                grubs
considerable         considerable
execution            execution
destructive          destructive
caterpillar          caterpillar
segetuin             segetum
)                    )
.                    .
The                  The
either               either
copses               copses
bounding             bounding
over                 over
but                  but
Stevenson            Stevenson
rightly              rightly
selecting            selecting
nest                 nest
low                  low
Scotch               Scotch
Spixworth            Spixworth
Park                 Park
laurustinus          laurustinus
bushes               bushes
about                about
foiirteen            fourteen
feet                 feet
dwarf                dwarf
ilex                 ilex
close                close
connecting           connecting
fi^om                from
rookery              rookery
moreover             moreover
continual            continual
noises               noises
Rooks                Rooks
still                still
breed                breed
connucuced           
or                   or
repaired             repaired
early                early
iu                   in
March                March
unusualh-            unusually
mild                 mild
building             building
operations           operations
sometimes            sometimes
commence             commence
After                After
winter               winter
1895-6               
I                    I
Rooks                Rooks
sitting              sitting
the}-                they
had                  had
March                March
Rooks                Rooks
rookery              rookery
close                close
repairing            repairing
their                their
January              January
Februar}-            February
a                    a
daily                daily
visited              visited
m^'                  my
garden               garden
Dulwich              Dulwich
first                first
made                 made
assuring             assuring
Rooks                Rooks
carrying             carrying
sticks               sticks
Feathered            Feathered
1896                 1896
Mr.                  Mr.	Mr
W.                   
N.                   
Rushen               Rushen
says                 says
Rooks                Rooks
near                 near
Wanstead             Wanstead
and                  and
the}-                they
must                 must
t                    
formed               formed
sticks               sticks
moss                 moss
dead                 dead
The                  The
number               number
exhibiting           exhibiting
similar              similar
they                 they
.                    .
The                  The
iu                   in
different            different
nests                nests
the                  the
thicklj              thickly
'                    '
deep                 deep
brown                brown
Of                   Of
figured              figured
figs.                figs
241                  
243                  
Farn                 Farn
as                   as
branch               branch
the}-                they
tip                  tip
forwards             forwards
and                  and
but                  but
after                after
the}'                they
gradually            gradually
gather               gather
To                   To
Crows                Crows
accuracv             accuracy
observations         observations
The                  The
authoress            authoress
'                    '
Rook                 Rook
could                could
or                   or
Hooded               Hooded
Crows                Crows
she                  she
parent               parent
Yet                  Yet
creature             creature
hungiy               hungry
and                  and
ever                 ever
clamorous            clamorous
mouths               mouths
Crow                 Crow
depredations         depredations
and                  and
Poor                 Poor
hunted               hunted
Crow                 Crow
against              against
ever}'               every
man                  man
She                  She
thirsting            thirsting
cylinder             cylinder
pointed              pointed
snare                snare
entangle             entangle
-                    -
dear                 dear
clamour              clamour
How                  How
-                    -
or                   or
Robin                Robin
babies               babies
Crow                 Crow
babies               babies
The                  The
ignores              ignores
she                  she
chicken              chicken
carr                 carr
catv                 
and                  and
neighbour            neighbour
rookery              rookery
born                 born
incessant            incessant
ar-cc-o              
.                    .
The                  The
summer               summer
-                    -
arid                 arid
localities           localities
mollusca             mollusca
carrion              carrion
Later                Later
fruits               fruits
beech                beech
but                  but
refuse               refuse
heaps                heaps
cast                 cast
though               though
sparrows             sparrows
The                  The
cage                 cage
ni}-                 
brother              brother
Mr.                  Mr
Bonhote              
writes               writes
but                  but
Carrion              Carrion
scarcely             scarcely
FAMILY               FAMILY
ALAUDIDJ-:           
.                    .
THE                  THE
position             position
vSannders            Saunders
has                  has
phiccd               placed
this                 this
faniil_y             family
does                 does
-                    -
Motaciilidcc         Motacillidae
as                   as
vSeel)ohm            Seebohm
"                    "
evidently            evidently
advocated            advocated
b}'                  by
Dr.                  Dr.	Dr
Sharpc               Sharpe
,                    ,
Larks                Larks
than                 than
Pipits               Pipits
had                  had
borne                borne
vSeebohm             Seebohm
opinion              opinion
appear               appear
Pipits               Pipits
that                 that
Thrushes             Thrushes
do                   do
Warblers             Warblers
"                    "
Jerdon               Jerdon
-                    -
may                  may
P'inchcs             
on                   on
Jloiifijniioi/Ia     
and                  and
PUciropluvics        
;                    ;
and                  and
Pipits               Pipits
through              through
Corydallar           Corydalla
The                  The
familj-              family
is                   is
scutellation         scutellation
at                   at
and                  and
probabl}'            probably
because              because
tliis                this
peculiarity          peculiarity
(                    (
becanse              because
they                 they
Sannders             Saunders
subordinating        subordinating
sa3-s                says
"                    "
majorit}-            majority
O.                   O.
respecting           respecting
Alaiiiiidic          
Coii'ida''           
has                  has
Larks                Larks
Passcrcs             Passeres
all                  all
i'eet                feet
scaled               scaled
The                  The
Larks                Larks
walking              walking
birds                birds
building             building
man}'                many
species              species
roosting             roosting
arboreal             arboreal
the}-                they
rarely               rarely
perch                perch
and                  and
They                 They
dust                 dust
Sparrows             Sparrows
Gallinaceous         Gallinaceous
Their                Their
Larks                Larks
are                  are
the                  the
stronger             stronger
doubtless            doubtless
soaring              soaring
hovering             hovering
-                    -
fulness              fulness
By                   By
bird                 bird
-                    -
Larks                Larks
directly             directly
tells                tells
Lark                 Lark
can                  can
Practically          
Aluudida             Alaudidae
constitute           constitute
fainih               
'                    '
as                   as
Jerdon               Jerdon
observes             observes
sparingly            sparingly
j\Iala3-ana          
and                  and
Familx-              Family
ALAUDID.E            
.                    
The                  The
Alauda               Alauda
iDVCiisis            arvensis
,                    ,
LiNN                 
.                    .
FOUND                
during               during
nesting              nesting
70°                  70.5
,                    ,
breeds               breeds
sparingly            sparingly
Japan                Japan
Amoor                
South                South
IMongolia            Mongolia
,                    ,
Turkestan            Turkestan
In                   In
visits               visits
North                North
Madeira              Madeira
*                    
Throughout           
-                    -
Lark                 Lark
\^excepting          
The                  The
have                 have
A.                   
dulcivox             
A.                   A.	A
A.                   A.	A
caiitarclla          
,                    ,
A.                   A.	A
liopus               
,                    ,
A.                   A.	A
blakistoni           
,                    ,
A.                   A.	A
giilgiila            
,                    ,
A.                   A.	A
A.                   A.	A
axlivox              
,                    ,
A.                   A.	A
ivai/crsi            
,                    ,
arid                 and
A.                   
sala                 sala
but                  but
intergrades          intergrades
exist                exist
Ornithologists       Ornithologists
generally            generally
Our                  Our
Sky                  Sky
-                    -
golden               golden
centres              centres
edges                edges
paler                paler
the                  the
-                    -
-                    -
blackish             blackish
streak               streak
the                  the
sccuiid              
feather              feather
white                white
inider               under
parts                parts
buffish              buffish
witli                with
l:)hickish-br(iwu    
on                   on
tlie                 the
throat               throat
bill                 bill
dark                 dark
feet                 feet
j                    
-                    -
ellowish             
-                    -
brown                brown
iris                 iris
hazel                hazel
.                    .
The                  The
d(jes                does
not                  not
plumage              plumage
:                    :
3-oung               young
birds                birds
broad                broad
buff                 buff
tips                 tips
After                After
moult                moult
both                 both
tawn}^               tawny
in                   in
colouring            colouring
Lark                 Lark
bird                 bird
-                    -
primar}'             primary
touches              touches
-                    -
distinctl}-          distinctly
longer               longer
se.\                 sex
.                    .
thus                 thus
catchers             catchers
forwarded            forwarded
b}-                  by
experienced          experienced
poulterers           poulterers
Although             Although
abundant             abundant
enough               enough
moors                moors
downs                downs
cliffs               cliffs
-                    -
certainly            certainly
prefers              prefers
arable               arable
shuns                shuns
places               places
thickly              thickly
copses               copses
plantatious          plantations
but                  but
country              country
Excepting            
iudividual           individual
of                   of
it                   it
ver3'                very
characteristic       characteristic
.                    .
The                  The
always               always
commences            commences
its                  its
hovering             hovering
action               action
at                   at
obliquel}-           obliquely
and                  and
rapidl}'             rapidly
,                    ,
fitting              fitting
abruptly             abruptly
perhaps              perhaps
perhaps              perhaps
flutters             flutters
each                 each
shrill               shrill
'                    
ivhcc                
,                    ,
tvhee                
,                    ,
w/icc                
of                   of
graceful             graceful
The                  The
generall}-           generally
amongst              amongst
growing              growing
sheltered            sheltered
b}'                  by
an                   an
tuft                 tuft
whatever             whatever
a                    a
nest                 nest
formed               formed
bents                bents
dead                 dead
The                  The
number               number
incubated            incubated
but                  but
ever                 ever
represents           represents
-                    -
they                 they
-                    -
whity                whity
huffish              buffish
clay                 clay
generally            generally
densely              densely
mottled              mottled
smok}'               smoky
grey                 grey
zone                 zone
sometimes            sometimes
streaks              streaks
aberrant             aberrant
egg                  egg
whicli               which
I                    I
lent                 lent
illustration         illustration
.                    .
XI                   XI
fig.                 fig
Bunting              Bunting
it                   it
sieuua               sienna
and                  and
macular              macular
along                along
Although             Although
Sky                  Sky
-                    -
pairs                pairs
nidification         nidification
does                 does
nests                nests
]\Iay                May
;                    ;
two                  two
being                being
eggs                 eggs
Jul                  July
'                    '
Both                 Both
descending           descending
threading            threading
towards              towards
niothcr-l)ird        
wanders              wanders
apparently           apparently
aimless              aimless
but                  but
By                   By
watching             watching
patiently            patiently
The                  The
-                    -
soug                 
is                   is
it                   it
trill                trill
interspersed         interspersed
drawn                drawn
marvellously         marvellously
exhilarating         exhilarating
considering          considering
The                  The
either               either
soaring              soaring
consists             consists
but                  but
frosty               frosty
seeds                seeds
etc.                 etc.	etc
gregarious           gregarious
immense              immense
iisually             usually
realizing            realizing
gd                   
to                   to
apiece               apiece
the                  the
as                   as
In                   In
I                    I
rearing              rearing
Sky                  Sky
-                    -
Larks                Larks
seven                seven
but                  but
opened               opened
these                these
active               active
bounded              bounded
clearing             clearing
alighting            alighting
This                 This
bought               bought
Larkrunuer           
"                    "
cage                 cage
In                   In
Sedge                Sedge
-                    -
nest                 nest
ui}'                 my
birds                birds
cue                  one
]jy                  by
one                  one
keeping              keeping
jumping              jumping
When                 When
off                  off
blanket              blanket
tumbled              tumbled
-                    -
lec                  
-                    -
tcc-u                
,                    ,
and                  and
cage                 cage
wear}-               weary
,                    ,
and                  and
tlien                then
tumbled              tumbled
They                 They
seemed               seemed
the}'                they
got                  got
I                    I
subsequentl}'        subsequently
purchased            purchased
3'oung               young
male                 male
Lark                 Lark
-                    -
continually          continually
fl\ing               flying
,                    ,
when                 when
recklessly           recklessly
consecjuences        consequences
to                   to
The                  The
he                   he
claw                 claw
a                    a
watercress           watercress
asking               asking
In                   In
1                    
I                    I
nestling             nestling
Sky                  Sky
-                    -
Larks                Larks
brought              brought
Nightingale          Nightingale
food                 food
the                  the
singer               singer
Bulbul               Bulbul
into                 into
In                   In
I                    I
Larks                Larks
when                 when
Although             Although
cramp                cramp
I                    I
reared               reared
moult                moult
two                  two
the                  the
tame                 tame
little               little
it                   it
crest                crest
up                   up
although             although
it                   it
sang                 sang
eventually           eventually
This                 This
perching             perching
hanging              hanging
roosted              roosted
*                    *
Judging              Judging
mj^                  my
own                  own
rearing              rearing
Sky                  Sky
-                    -
Larks                Larks
Whitethroat          Whitethroat
nest                 nest
fixed                fixed
the                  the
first                first
the}-                they
crouch               crouch
cramp                cramp
but                  but
containing           containing
moistened            moistened
ants                 ants
'                    '
cocoons              cocoons
When                 When
mealworms            mealworms
canar}'              canary
and                  and
watercress           watercress
when                 when
1891-2               
that                 that
nets                 nets
thirteen             thirteen
Sky                  Sky
Larks                Larks
about                about
one                  one
retained             retained
This                 This
tame                 tame
turfed               turfed
sanded               sanded
he                   he
singer               singer
3'our                your
eyes                 eyes
dropping             dropping
notes                notes
i-eturned            returned
to                   to
Towards              
moult                moult
Mr.                  Mr
Seebohm              Seebohm
account              account
-                    -
Larks                Larks
as                   as
Heligoland           Heligoland
but                  but
Speaking             Speaking
diminution           diminution
Herr                 Herr
Gatke                
saj'S                says
:                    
-                    -
"                    "
passage              passage
autumn               autumn
travel               travel
migration            migration
"                    "
and                  and
Larks                Larks
caught               caught
autumn               autumn
approximately        approximately
express              express
migrant              migrant
figures              figures
245-8                
are                  are
Farn                 Farn
collection           collection
;                    ;
249                  
from                 from
Mr.                  Mr
Frohawk              Frohawk
and                  and
250-4                
from                 from
Family^              Family
ALA                  
UDID                 
.                    .
F                    
.                    .
The                  The
Lark                 Lark
Alaitdn              Alauda
ar/iorca             arborea
,                    
LlNN                 
.                    .
"                    
T                    
N                    
summer               summer
Wood                 Wood
Lark                 Lark
inhabits             inhabits
Scandinavia          Scandinavia
Russia               Russia
below                below
60°                  60
N.                   
,                    ,
as                   as
Southward            Southward
-                    -
-                    -
down                 down
its                  its
accessions           accessions
Northern             Northern
"^                   "
-                    -
Iloivard             
Saunders             Saunders
.                    .
In                   In
Wood                 Wood
-                    -
Lark                 Lark
occurring            occurring
undulating           undulating
dotted               dotted
copses               copses
six                  six
but                  but
In                   In
Stirlingshire        Stirlingshire
In                   In
colouring            colouring
Wood                 Wood
Lark                 Lark
nearly               nearly
Sky                  Sky
-                    -
Lark                 Lark
but                  but
when                 when
perching             perching
the                  the
bastard              bastard
primary              primary
the                  the
blackish             blackish
centres              centres
iipper               upper
surface              surface
-                    -
central              central
reddish              reddish
centres              centres
outermost            outermost
feather              feather
brown                brown
dusky                dusky
remaining            remaining
feathers             feathers
blackish             blackish
triangular           triangular
white                white
a                    a
buffish              buffish
superciliary         superciliary
ear                  ear
-                    -
rufous               rufous
upper                upper
cheeks               cheeks
becoming             becoming
distinctl}'          distinctly
yellowish            yellowish
flanks               flanks
brownish             brownish
throat               throat
narrowly             narrowly
breast               breast
broadly              broadly
streaked             streaked
;                    ;
bill                 bill
dark                 dark
feet                 feet
light                light
horn                 horn
-                    -
iris                 iris
hazel                hazel
.                    .
The                  The
soniewhal            somewhat
as                   as
Sk3'                 Sky
-                    -
Lark                 Lark
the                  the
deeidedly            decidedly
shorter              shorter
Yonng                Young
l:)irds              birds
are                  are
rnfons               rufous
above                above
below                below
3'ellow              yellow
spotted              spotted
On                   On
Dr.                  Dr
vSharpe              Sharpe
and                  and
-                    -
Lullula              Lullula
,                    ,
Kaup                 Kaup
IvU-lu               
"                    "
Col.                 Col
L.                   L.
H.                   
I.                   
Irb}'                Irby
,                    ,
Ornithology          Ornithology
"                    "
sa3'S                says
that                 that
Andalucian           Andalucian
Wood                 Wood
-                    -
Lark                 Lark
frequenting          frequenting
scrub                scrub
not                  not
\&xy                 very
thick                thick
a                    a
favourite            favourite
locality             locality
near                 near
Gibraltar            Gibraltar
Chaparaks            
(                    (
ground               ground
)                    )
Well                 Well
vSpanish             Spanish
bird                 bird
they                 they
Lark                 Lark
never                never
remains              remains
but                  but
arc                  are
Lark                 Lark
onl}'                only
timbered             timbered
not                  not
clearings            clearings
plantations          plantations
although             although
resorts              resorts
for                  for
commons              commons
but                  but
trees                trees
'                    '
Although             Although
Lark                 Lark
feeds                feeds
roosts               roosts
builds               builds
tussock              tussock
it                   it
compactl}'           compactly
built                built
Sk^^                 Sky
-                    -
Lark                 Lark
sometimes            sometimes
couch                couch
grass                grass
sometimes            sometimes
wholly               wholly
grass                grass
bents                bents
The                  The
are                  are
Central              Central
Lilford              
until                until
Secholiin            
huffish-             
or                   or
lilac                lilac
greyer               greyer
spots                spots
species              species
massed               massed
as                   as
confluent            confluent
Lark                 Lark
Lark                 Lark
being                being
generall}'           generally
admitted             admitted
'                    
resemble             resemble
.                    .
The                  The
Lark                 Lark
cjuite               quite
eaidy                early
enough               enough
Lark                 Lark
consisting           consisting
The                  The
-                    -
Lark                 Lark
song                 song
ver^'                very
pnre                 pure
and                  and
melodious            melodious
b}-                  by
man}^                many
it                   it
but                  but
certaiul}'           certainly
is                   is
nevertheless         nevertheless
persevered           persevered
it                   it
commenced            commenced
but                  but
liberty              liberty
Dover                Dover
mj-                  my
old                  old
Grayling             Grayling
Sittiugbourne        Sittingbourne
;                    ;
we                   we
delightful           delightful
Lark                 Lark
looking              looking
espied               espied
promineut            prominent
eye                  eye
-                    -
Presently            
awaj^                away
rising               rising
first                first
obliquely            obliquely
swinging             swinging
aud                  and
rising               rising
spiral               spiral
curves               curves
he                   he
The                  The
Lark                 Lark
certainlj            certainly
?                    ?
does                 does
gloaming             gloaming
rustics              rustics
times                times
Nightingale          Nightingale
but                  but
by                   by
Pipit                Pipit
Although             Although
sometimes            sometimes
soars                soars
quite                quite
this                 this
moreover             moreover
it                   it
flies                flies
obliquely            obliquely
b}'                  by
jerky                jerky
drops                drops
.                    .
Lark                 Lark
On                   On
Kent                 Kent
The                  The
but                  but
fed                  fed
repletion            repletion
cramp                cramp
Later                Later
aud                  and
I                    I
exerted              exerted
hawthorn             hawthorn
About                About
1894                 
I                    I
bird                 bird
Wood                 Wood
Lark                 Lark
which                which
splendidly           splendidly
One                  One
I                    I
;                    ;
it                   it
(                    (
looked               looked
uncann}'             uncanny
;                    ;
however              however
Lark                 Lark
again                again
;                    ;
and                  and
Sky                  Sky
-                    -
whose                whose
-                    -
'                    
The                  The
egg                  egg
figured              figured
Farn                 Farn
collection           collection
Familx-ALA           
UDID                 
.                    .
E                    
.                    .
The                  The
Crested              Crested
Alanda               Alauda
crisfafa             cristata
,                    ,
LiNN                 
.                    .
RESIDENT             
in                   in
Central              Central
Eiirope              Europe
,                    ,
60°                  60
N.                   
in                   in
North                North
Senegambia           Senegambia
Abyssinia            Abyssinia
east                 east
To                   To
straggler            straggler
most                 most
Cornwall             Cornwall
one                  one
Sussex               Sussex
The                  The
statements           statements
*                    *
Macclesfield         Macclesfield
climatic             climatic
modifications        modifications
Lark                 Lark
all                  all
Tlie                 The
typical              typical
watli                with
darker               darker
centres              centres
the                  the
crest                crest
centres              centres
fcatliers            feathers
darker               darker
the                  the
hastard              bastard
primary              primary
the                  the
Ijrown               brown
greyi                greyish
-                    -
sh                   sh
luargius             
,                    ,
feather              feather
whicli               which
outer                outer
and                  and
feather              feather
sandv                sandy
-                    -
buff                 buff
margin               margin
t)uter               outer
web                  web
the                  the
superciliary         superciliary
backwards            backwards
buffish              buffish
the                  the
principall}-         principally
buffish              buffish
deeper               deeper
sides                sides
spotted              spotted
breast               breast
spotted              spotted
flanks               flanks
slightly             slightly
streaked             streaked
;                    ;
bill                 bill
mandible             mandible
paler                paler
feet                 feet
fleshy               fleshy
horn                 horn
brown                brown
iris                 iris
hazel                hazel
.                    .
The                  The
crest                crest
wing                 wing
The                  The
rufescent            rufescent
blackish             blackish
sub                  sub
-                    -
tips                 tips
tlie                 the
After                After
moult                moult
Lark                 Lark
becomes              becomes
centres              centres
less                 less
Col.                 Col
Irb}-                Irby
,                    ,
Ornithology          Ornithology
-                    -
"                    "
Lark                 Lark
Andalucia            Andalucia
They                 They
arc                  are
distributed          distributed
pairs                pairs
-                    -
onl}'                only
some                 some
Excessively          
tame                 tame
Curiiicit            
)                    )
frequenting          frequenting
roads                roads
dung                 dung
at                   at
pecking              pecking
as                   as
dusting              dusting
and                  and
Sauderling           Sanderling
within               within
They                 They
birds                birds
This                 This
migrating            migrating
The                  The
Crested              Crested
Lark                 Lark
usually              usually
tuft                 tuft
eart                 earth
-                    -
constructing         constructing
Larks                Larks
bents                bents
etc.                 etc.	etc
Saunders             Saunders
says:-               says
-                    -
"                    "
commenced            commenced
depression           depression
-                    -
herbage              herbage
but                  but
thatched             thatched
the                  the
being                being
diy                  
grass                grass
The                  The
greyish              greyish
distinctly           distinctly
average              average
measurements         measurements
'95                  
"                    
bS                   
in                   in
.                    .
Incubation           Incubation
wdiich               which
the                  the
The                  The
Crested              Crested
Lark                 Lark
conspicuous          conspicuous
frequenting          frequenting
sandj^               sandy
roads                roads
dusting              dusting
rapidit}'            rapidity
glide                glide
wlien                when
at                   at
Its                  Its
Lark                 Lark
gregarious           gregarious
generall}'           generally
seen                 seen
(U-                  or
iu                   in
pairs                pairs
fauiily              family
parties              parties
liquid               liquid
melodious            melodious
uttered              uttered
duriug               during
a                    a
the                  the
syllabled            syllabled
as                   as
'                    '
.                    .
'                    '
seeds                seeds
snowy                snowy
horse                horse
etc.                 etc.	etc
Dixon                Dixon
sa3                  says
that                 that
xA-lgeria            Algeria
he                   he
soar                 soar
iuto                 into
air                  air
warbling             warbling
simple               simple
Theobald             Theobald
describes            describes
ovato-pyriform       
3                    
-                    -
ellowish             
-                    -
uuiformly            uniformly
freckled             freckled
Jerdon               Jerdon
Chendul              
"                    "
feeds                feeds
chiefly              chiefly
grass                grass
"                    "
II                   II
nor                  nor
iu                   in
Himalayas            Himalayas
iu                   in
It                   It
sandy                sandy
plaius               plains
,                    ,
ploughed             ploughed
It                   It
A.                   
guli^iila*           
nor                  nor
flue                 
In                   In
iu                   in
considerable         considerable
flocks               flocks
barren               barren
"                    "
Jerdon               Jerdon
Chendul              
Hindoos              Hindoos
call                 call
Seebohm              Seebohm
states               states
Bunting              Bunting
caged                caged
the                  the
custom               custom
sings                sings
mewing               mewing
Herr                 Herr
Rausch               Rausch
speaks               speaks
Lark                 Lark
songster             songster
but                  but
wild                 wild
worthless            worthless
singer               singer
Perhaps              Perhaps
Herr                 Herr
Rausch               Rausch
like                 like
Seebohm              Seebohm
-                    -
Bunting              Bunting
aud                  and
considerabl}'        considerably
as                   as
This                 This
tlie                 the
PyauviotKs           
Icucotis             
the                  the
Persian              Persian
specimens            specimens
wliich               which
have                 have
variable             variable
liquid               liquid
song                 song
N.W.                 
India                India
Judging              Judging
b}^                  by
Jerdou               Jerdon
account              account
Crested              Crested
Lark                 Lark
of                   of
India                India
Tientsin             Tientsin
Lark                 Lark
scolding             scolding
My                   My
aviculturists        aviculturists
would                would
Rausch               Rausch
decision             decision
but                  but
the}'                they
desire               desire
Crested              Crested
import               import
Pere                 
(P.Z.S               
.                    .
187                  
In                   In
Jerdon               Jerdon
Cat                  Cat
Birds                Birds
E.                   
Ind                  Ind
.                    .
Comp                 Comp
,                    ,
II                   II
"                    "
chiefly              chiefly
grasshoppers         grasshoppers
and                  and
Seebohm              Seebohm
-                    -
"                    "
Lark                 Lark
In                   In
Canary               Canary
also                 also
insects              insects
mealworms            mealworms
Familx-ALA           
UDID^                
.                    
The                  The
AVinged              
Lark                 Lark
.                    .
ilTclanocorypha      
sidirica             sibirica
,                    
Gmp;l                
.                    .
THIS                 THIS
species              species
list                 list
1869                 
Rowley               Rowley
at                   at
Jan.                 Jan
1870                 
species              species
and                  and
by                   by
Mongolian            Mongolian
Eugland              England
and                  and
(                    (
This                 This
Kent                 Kent
1902                 
in                   in
December             December
January              January
1908                 
Sussex               Sussex
Faunlx-ALAUDID.E     
.                    .
The                  The
Lark                 Lark
Mcla)iOLoyypha       
ycltontemis          
,                    
FoRST                
.                    .
A                    A
FLOCK                
visited              visited
1907                 
About                About
imported             imported
Leadenhall           Leadenhall
Larks                Larks
Ortolans             Ortolans
and                  and
Quails               Quails
"                    "
perhaps              perhaps
almost               almost
bullocks             bullocks
The                  The
jerking              jerking
open                 open
smashing             smashing
of                   of
once                 once
liberate             liberate
enough               enough
form                 form
flock                flock
No                   No
importations         importations
birds                birds
Family               Family
ALAl'DID.-Ji         
.                    .
The                  The
Short                Short
Ciila)idixlla        Calandrella
bnuhydaityla         
,                    
LEISL                
.                    .
HOWARD               
SAUNDERS             
admits               admits
justifiably          justifiably
placed               placed
geuus                genus
Calandrclla          Calandrella
,                    
characterized        characterized
crest                crest
a                    a
stout                stout
conical              conical
hind                 hind
infinitesimal        infinitesimal
bastard              bastard
primary              primary
Alaiida              Alauda
.                    .
Inhabits             
Southern             Southern
in                   in
xAbyssinia           Abyssinia
;                    ;
eastward             eastward
North                North
To                   To
straggler            straggler
about                about
authenticated        authenticated
si.x                 six
of                   of
Hampshire            Hampshire
1890                 
one                  one
caught               caught
near                 near
was                  was
In                   In
The                  The
rufous               rufous
sand3'-browu         
,                    ,
centres              centres
the                  the
-                    -
blackish             blackish
but                  but
have                 have
pale                 pale
huffish              buffish
patches              patches
a                    a
superciliary         superciliary
streak               streak
;                    ;
under                under
a                    a
tlie                 the
neck                 neck
bill                 bill
dark                 dark
feet                 feet
j^ellowish           yellowish
horn                 horn
brown                brown
iris                 iris
hazel                hazel
.                    .
The                  The
The                  The
tipped               tipped
bordered             bordered
buff                 buff
After                After
moult                moult
Colonel              Colonel
Irby                 Irby
(                    (
"                    "
Ornithology          Ornithology
says:-               says
"                    "
Andalucian           Andalucian
of                   of
the                  the
commences            commences
nests                nests
Excessively          
abundant             abundant
as                   as
Cahuidra             Calandra
;                    ;
they                 they
falhnv               
i^round              ground
,                    
clod                 clod
au}'                 any
sliglit              slight
depression           depression
I                    I
l)ird                bird
off                  off
"                    "
Saunders             Saunders
liird                bird
frequents            frequents
dry                  dry
while                while
tameuess             tameness
is                   is
difficult}'          difficulty
in                   in
shooting             shooting
withoiit             without
blowing              blowing
cut                  cut
The                  The
male                 male
utters               utters
song                 song
clod                 clod
jerk}'               jerky
flight               flight
In                   In
nidification         nidification
as                   as
Seebohm              Seebohm
varies               varies
commencing           commencing
climate              climate
in                   in
it                   it
nesting              nesting
operations           operations
The                  The
sheltered            sheltered
Larks                Larks
grass                grass
rootlets             rootlets
down                 down
feathers             feathers
The                  The
eggs                 eggs
-                    -
Lark                 Lark
bird                 bird
but                  but
as                   as
Sky                  Sky
-                    -
Larks                Larks
In                   In
colouring            colouring
-                    -
whitish              whitish
freely               freely
sprinkled            sprinkled
smoky                smoky
greyer               greyer
shell                shell
-                    -
these                these
concealing           concealing
heavier              heavier
marking              marking
but                  but
Larks                Larks
Jerdon               Jerdon
cf                   cf
Cat                  Cat
Birds                Birds
E.                   
I.                   I
,                    ,
II                   II
observes             observes
It                   It
associates           associates
frequenting          frequenting
bare                 bare
grass                grass
-                    -
downs                downs
damp                 damp
as                   as
it                   it
frequents            frequents
grain                grain
retires              retires
from                 from
issue                issue
"                    "
II                   II
both                 both
Lark                 Lark
Towards              
April                April
different            different
flocks               flocks
nnite                unite
into                 into
vast                 vast
troops               troops
containing           containing
man}'                many
tliousand            thousand
birds                birds
qnite                quite
darkening            darkening
flj'ing              flying
.                    .
Great                Great
nnnibers             numbers
are                  are
conntr}-             country
for                  for
On                   On
parade               parade
groiind              ground
,                    ,
at                   at
Kamptee              Kamptee
I                    I
bagged               bagged
twelve               twelve
dozen                dozen
birds                birds
after                after
discharging          discharging
both                 both
wonnded              wounded
birds                birds
escaped              escaped
They                 They
get                  get
alwa3'S              always
called               called
Ortolan              Ortolan
by                   by
They                 They
the}'                they
breed                breed
laying               laying
grey                 grey
rufous               rufous
spots                spots
unspotted            unspotted
yellow               yellow
Larks                Larks
insects              insects
Herr                 Herr
Gatke                
says                 says
Heligoland           Heligoland
"                    "
pp.                  pp
359-360)             
:                    
-                    -
"                    "
hardly               hardly
Lark                 Lark
being                being
ver}-                very
solitar}'            solitary
instances            instances
.                    .
In                   In
During               During
and                  and
besides              besides
I                    I
it                   it
momeutaril}-         momentarily
stunned              stunned
ver\'                very
soon                 soon
extraordinarilj''    extraordinarily
tame                 tame
It                   It
managed              managed
heartily             heartily
but                  but
at                   at
Its                  Its
Bunting              Bunting
than                 than
Sk}--                Sky
Lark                 Lark
.                    .
I                    I
Canary               Canary
-                    -
before               before
consuming            consuming
a                    a
Lark                 Lark
Familx-A             Family
LA                   LA
E                    
.                    .
The                  The
-                    -
Lark                 Lark
Olocurvs             
alpcstris            alpestris
,                    
LiNX                 
.                    .
BREEDS               
within               within
bej'ond              beyond
the                  the
on                   on
hitherto             hitherto
eastward             eastward
Turkestan            Turkestan
S.                   
Siberia              Siberia
To                   To
but                  but
when                 when
according            according
Aplin                Aplin
In                   In
visited              visited
Fair                 Fair
Shetlands            Shetlands
The                  The
Lark                 Lark
a                    a
stripe               stripe
partly               partly
creamy               creamy
the                  the
erectile             erectile
tuft                 tuft
lores                lores
cheeks               cheeks
throat               throat
black                black
ear                  ear
-                    -
creamy               creamy
nape                 nape
,                    ,
vinaceous            vinaceous
wing                 wing
-                    -
quills               quills
smoky                smoky
white                white
externally           externally
ashy                 ashy
-                    -
margins              margins
feathers             feathers
greyish              greyish
centres              centres
two                  two
coloured             coloured
feather              feather
remainder            remainder
under                under
creamy               creamy
becoming             becoming
vinous               vinous
on                   on
flanks               flanks
bill                 bill
iris                 iris
deep                 deep
The                  The
erectile             erectile
tufts                tufts
centres              centres
Young                Young
After                After
moult                moult
adult                adult
In                   In
vShore               Shore
-                    -
Lark                 Lark
inhabits             inhabits
liills               hills
nf                   of
the                  the
tundras              tundras
Seebohm              Seebohm
says                 says
'                    '
Inish                bush
Everyone             Everyone
Lark                 Lark
melod3^              melody
It                   It
Lark                 Lark
At                   At
.Uauda               Alauda
arz'i-fis/s          
does                 does
3'OU                 you
take                 take
The                  The
As                   As
Larks                Larks
stones               stones
sometimes            sometimes
but                  but
rushes               rushes
The                  The
naturally            naturally
differs              differs
Larks                Larks
externally           externally
being                being
dead                 dead
bents                bents
etc.                 etc.	etc
but                  but
reindeer             reindeer
The                  The
number               number
tlieir               their
generally            generally
olive                olive
tint                 tint
To                   To
conspicuous          conspicuous
Mr.                  Mr
Hole                 Hole
Nov.                 Nov
1864                 1864
Sky                  Sky
-                    -
Larks                Larks
He                   He
duck                 duck
such                 such
you                  you
at                   at
my                   my
firstly              firstly
chancing             chancing
and                  and
speciniens           specimens
shot                 shot
Lowestoft            Lowestoft
February             February
Stevenson            Stevenson
Polygonacea          Polygonaceae
and                  and
chrysalis            chrysalis
Lark                 Lark
consists             consists
although             although
doubtless            doubtless
spiders              spiders
it                   it
devours              devours
small                small
mollusca             mollusca
Crustacea            Crustacea
cast                 cast
Being                Being
both                 both
tame                 tame
beautiful            beautiful
Lark                 Lark
caged                caged
and                  and
frequentl}^          frequently
bird                 bird
Herr                 Herr
Gatke                
observes             observes
The                  The
nevertheless         nevertheless
agreeably            agreeably
Lark                 Lark
its                  its
peevish              peevish
captivit}'           captivity
,                    ,
and                  and
impetuously          impetuously
fluttering           fluttering
this                 this
prettily             prettily
marked               marked
old                  old
cage                 cage
My                   My
flies                flies
stroke               stroke
earwigs              earwigs
and                  and
but                  but
rejects              rejects
Small                Small
moths                moths
-                    -
ear                  ear
Its                  Its
staple               staple
Canary               Canary
-                    -
procurable           procurable
Sustained            Sustained
keeps                keeps
plumage              plumage
every                every
Larks                Larks
-                    -
eat                  eat
Canar3^              Canary
-                    -
millet               millet
Canar}'              Canary
,                    ,
iu                   in
one                  one
millet               millet
Lark                 Lark
husk                 husk
ever}'               every
seed                 seed
this                 this
crevice              crevice
but                  but
Lark                 Lark
swallows             swallows
ejects               ejects
later                later
insectivorous        insectivorous
.                    .
When                 When
Larks                Larks
would                would
insects              insects
and                  and
consequently         consequently
subsist              subsist
seeds                seeds
it                   it
-                    
solely               solely
soaked               soaked
ants                 ants
'                    '
cocoons              cocoons
unnatural            unnatural
To                   To
Larks                Larks
you                  you
recently             recently
branchers            branchers
term                 term
Larks                Larks
it                   it
branchers            branchers
will                 will
tamer                tamer
first                first
perfectly            perfectly
tame                 tame
Appendix             Appendix
.                    .
WHEN                 WHEN
It                   It
need                 need
particulars          particulars
respecting           respecting
occurrences          occurrences
alreadj              already
'                    
Bird                 Bird
.                    .
Had                  Had
articles             articles
Messrs.              Messrs
F.                   
Witherby             Witherby
N.                   N.
F.                   
Ticehurst            Ticehurst
been                 been
I                    I
inclttde             include
all                  all
vagrants             vagrants
(                    (
accomplished         accomplished
"                    "
As                   As
considered           considered
visitors             visitors
remedv               remedy
deficienc}'          deficiency
here                 here
published            published
Family               Family
TURDID^              
.                    .
Subfamih-            Subfamily
TURDINyF             
.                    
The                  The
Dusky                
Turdiis              Turdus
dubiiis              dubius
,                    
BechsT               
.                    .
NE                   
specimen             specimen
Gunthorpe            Gunthorpe
Notts                Notts
.                    .
,                    ,
1905                 
The                  The
Stornowa}-           Stornoway
,                    ,
Outer                Outer
White                White
Thrush               Thrush
was                  was
December             December
i8th                 18th
1902                 
The                  The
now                  now
breeds               breeds
The                  The
-                    -
Ouzel                Ouzel
Osborne              Osborne
Family               Family
Ti                   
'                    '
RDID                 
.                    .
E.                   
Subfaniily-          Subfamily
TL                   
'                    '
RUIN                 
.                    .
E                    
.                    .
The                  The
Wheatear             Wheatear
Saxicola             Saxicola
shipazina            
,                    ,
LiNN                 
.                    .
A                    A
Polegate             Polegate
1902                 
1905                 
another              another
Hoo                  Hoo
Sussex               Sussex
on                   on
3'ear                year
a                    a
Pett                 Pett
Sussex               Sussex
a                    a
Winchelsea           Winchelsea
1907                 
stapazina            
was                  was
by                   by
species              species
Saxicola             Saxicola
occidoitalis         occidentalis
.                    .
Wheatear             Wheatear
Saxicola             Saxicola
daerti               deserti
was                  was
Pentland             Pentland
Skerries             Skerries
1906                 
Family               Family
TURD                 
ID                   ID
.                    .
E.                   
Subfamily-           Subfamily
TURDIN.E             
.                    
The                  The
Stonechat            Stonechat
.                    .
Pratincola           Pratincola
maura                maura
Paix                 
.                    .
male                 A
Cley                 Cley
1904                 
A                    A
Redstarts            
built                built
Spiggie              
vShetlands           Shetlands
)                    )
Maj                  May
'                    '
1901                 
two                  two
1906                 
Skerry               Skerry
Vore                 Vore
Light                Light
-                    -
Messrs.              Messrs
Witherby             Witherby
Ticehurst            Ticehurst
record               record
Solway               Solway
1899                 
Aberdeen             Aberdeen
]\Iarch              March
20th                 
1900                 
Moray                Moray
1903                 1903
Flannan              Flannan
-                    -
female               female
June                 June
1905                 
7th                  7th
Orkney               Orkney
a                    a
male                 male
November             November
1905                 
Family               Family
TURDID.^             
.                    .
Subfamily-           Subfamily
TURDIN/E             
.                    
The                  The
Spottf:d             
Bluethroat           Bluethroat
.                    .
Cxa)icciila          
u'i>l/l              
,                    
BrEHM                
.                    .
A                    A
Dungeness            Dungeness
1902                 
a                    a
ist                  
1905                 
The                  The
it                   it
visited              visited
Lincolnshire         Lincolnshire
Sussex               Sussex
1903                 
Surrey               Surrey
1904                 
Yorkshire            Yorkshire
1903                 
Shetlands            Shetlands
1905                 
Family               Family
TURDID^              
.                    .
Subfamily-           Subfamily
TURDIN^              
.                    
The                  The
Nightingale          Nightingale
.                    .
Daulias              
fliilomcla           
,                    
Bechst               
A                    A
Smeeth               Smeeth
Kent                 Kent
1904                 
believed             believed
The                  The
Nightingale          Nightingale
nested               nested
A                    A
Orphean              Orphean
was                  was
1903                 
6th                  
1905                 
The                  The
vSeptember           September
1904                 
-                    -
secured              secured
Woodchurch           Woodchurch
24t]i                24th
1907                 
one                  one
September            September
1902                 
one                  one
Fleetwood            Fleetwood
1898                 
a                    a
3'oung               young
female               female
North                North
Cotes                Cotes
Lincolnshire         Lincolnshire
1899                 
a                    a
1902                 
1905                 
a                    a
Barra                Barra
October              October
1900                 
The                  The
Wells                Wells
Norfolk              Norfolk
5th                  
1905                 
two                  two
Li^dlow              Ludlow
Shropshire           Shropshire
1903                 
and                  and
about                about
Fawilx-              Family
TURD                 
ID                   ID
.                    .
-E                   
.                    .
5«//rtw//r-          
5                    
J                    
Z                    
ILY^                 ILY
.                    .
The                  The
Sardinian            Sardinian
Svlviii              Sylvia
viclanoccpliaUx      
,                    
GmEL                 
.                    .
A                    A
1907                 
Parkin               Parkin
Esq                  Esq
,                    ,
F.Z.S                
.                    .
The                  The
-                    -
Wren                 Wren
Breconshire          Breconshire
1899                 
A                    A
Fair                 Fair
1905                 
one                  one
1906                 
Tresco               Tresco
Scilly               Scilly
ist                  
1905                 
Family^              Family
Ti                   
7^                   
DILL                 
-E                   
.                    
SuhJaniiiy-SYL       
J                    
7IA\                 
E.                   E
PallAvS              
'                    
Warbler              Warbler
.                    .
Phy/Iosiopus         Phylloscopus
f^ivrcgit/iis        
.                    
single               A
1896                 
Chiffchaffs          Chiffchaffs
visited              visited
Shetlands            Shetlands
between              between
i5tli                
and                  and
24th                 24th
1904                 
in                   in
3'ear                year
one                  one
Tnlloch              Tulloch
at                   at
Lerwick              Lerwick
Ma}^                 May
27th                 
Family               Family
TURDID.F             
.                    .
Subjaimly            Subfamily
-SYL                 
I                    
IIN.E                IIN
.                    .
The                  The
.                    .
Phy//oscop!is        Phylloscopus
tristis              tristis
BlyTH                
.                    .
N                    AN
example              example
lighthonse           lighthouse
off                  off
1902                 
Family               Family
TURDIL)^             
.                    .
Subfamily-           Subfamily
SYL                  
I                    I
'IIN.E               
.                    .
The                  The
Greenish             Greenish
Willow               Willow
-                    -
Warbler              Warbler
.                    .
Phylloscopiis        Phylloscopus
viridaiius           
,                    
Blvth                
.                    .
1896                 
a                    a
Sule                 Sule
Lighthouse           Lighthouse
Siitherlandshire     Sutherlandshire
1902                 
Two                  Two
couiinou             
Willow               Willow
Warbler              Warbler
fouud                found
Shetlauds            Shetlands
in                   in
1901                 
The                  The
-                    -
Fnmtlx               Family
-                    -
TL                   
^RDID                
.                    .
E.                   
Sii/^/,u>n/\-S       
J                    J.
Z                    
VLV                  VLV
.                    .
E                    
.                    .
The                  The
Rufous               Rufous
Warbler              Warbler
.                    .
Aidon                Aedon
(^alcnimAs           
,                    
Temm                 
THIS                 THIS
rare                 rare
Family               Family
TURDID.E             
.                    .
Siih/auiilySYL       
I                    
IIN^E                IIN
.                    .
The                  The
-                    -
Warbler              Warbler
.                    .
Acdoii               Aedon
fnmiliaris           familiaris
.                    
A                    A
Hythe                Hythe
1907                 
Family               Family
TURD                 
ID                   ID
^                    
.                    .
Subfamily-           Subfamily
SYL                  
I                    I
IIN^                 IIN
.                    .
Radde                Radde
Bush                 Bush
Lusciniola           
sckwarzi             schwarzi
,                    
Radde                Radde
A                    A
1898                 
by                   by
Mr.                  Mr.	Mr
Haigli               Haigh
.                    .
Family               Family
--                   -
Tl                   
'                    '
KDID                 
.                    .
E.                   
Su/ifaniuy-SVL       
I                    
'                    
ILWF                 
.                    .
Cetti'vS             
Warrlkr              
.                    
Cetfin               Cettia
ccttii               
,                    
Marm                 Marm
.                    .
A                    A
Battle               Battle
Ma}'                 May
12th                 
1904                 
One                  One
Icterine             Icterine
Cromer               Cromer
1899                 
one                  one
Blakeney             Blakeney
1903                 
one                  one
September            September
1905                 
one                  one
Cley                 Cley
September            September
Holkham              Holkham
September            September
one                  one
Knock                Knock
Lightship            Lightship
September            September
one                  one
June                 June
one                  one
Lighthouse           Lighthouse
Isle                 Isle
Family               Family
TURDID^              
.                    .
Subfamily-           Subfamily
SYL                  
VIIN^                
.                    .
The                  The
Melodious            
Hypolais             Hypolais
polyglolla           
,                    
ViEILL               
.                    .
AN                   AN
example              example
Burwash              Burwash
a                    a
Ninfield             Ninfield
loth                 
May                  May
1900                 
one                  one
Lighthoi:se          
,                    ,
co.                  co
Cork                 Cork
the                  the
Rev.                 Rev
M.                   
A.                   A	A.
Mathew               Mathew
heard                heard
Warblers             Warblers
near                 near
1897                 
he                   he
Melodious            
Warblers             Warblers
nested               nested
The                  The
Shetlands            Shetlands
1906                 
The                  The
Warbler              Warbler
Kent                 Kent
Surrey               Surrey
Au                   An
example              example
1903                 
a                    a
Bexhill              Bexhill
1905                 
one                  one
Christclinrch        Christchurch
,                    ,
Hants                Hants
1900                 
one                  one
Horning              Horning
1906                 
there                there
Charterhonse         Charterhouse
collection           collection
shot                 shot
Godalming            Godalming
Ornithologists       Ornithologists
believed             believed
Tresco               Tresco
Scilly               Scilly
but                  but
Specimens            Specimens
Norfolk              Norfolk
and                  and
Ireland              Ireland
Additional           Additional
Alpine               Alpine
Accentor             Accentor
Norfolk              Norfolk
Cornwall             Cornwall
The                  The
Reedling             Reedling
has                  has
Januar}'             January
,                    ,
1905                 
and                  and
Godalming            Godalming
1902                 
one                  one
January              January
Norfolk              Norfolk
it                   it
Scill}'              Scilly
.                    .
A                    A
was                  was
1903                 
Lewis                Lewis
The                  The
The                  The
Crested              Crested
Tit                  Tit
Yarmouth             Yarmouth
The                  The
December             December
1906                 
a                    a
Creeper              Creeper
December             December
Alderney             Alderney
December             December
1899                 
Family               Family
MO                   
TA                   TA
CILLID               
.                    .
-E                   
.                    .
The                  The
-                    -
Wagtail              Wagtail
.                    .
j]                   Motacilla
lot                  lot
ac                   ac
ilia                 ilia
60/ra/is             
,                    ,
SuND                 
.                    .
THIS                 THIS
race                 race
near                 near
In                   In
90                   
two                  two
.shot                shot
near                 near
Willingdon           Willingdon
A                    A
nest                 nest
1906                 
Rye                  Rye
Lydd                 Lydd
A                    A
Winchelsea           Winchelsea
1907                 
Family               Family
MO                   
TA                   TA
CIL                  CIL
L                    
ID^                  ID
.                    .
The                  The
Wagtail              Wagtail
Motacilla            Motacilla
vulauoccphala        
,                    ,
LiCHT                
.                    .
A                    A
Willingdon           Willingdon
Ma}-                 May
ijtli                
,                    
1906                 
it                   it
M.                   
flaz'a               flava
,                    ,
as                   as
followiug            following
.                    .
Fa                   
mi                   mi
ly-                  ly
MO                   
TA                   TA
CILL                 CILL
ID                   ID
.                    .
F.                   
SykEvS               
'                    '
Wagtail              Wagtail
.                    .
Motacilla            Motacilla
beema                
SykeS                
.                    .
A                    A
Rottingdean          Rottingdean
2otli                
1898                 
Family               Family
MO                   
TA                   TA
CILLlDzE             
.                    .
The                  The
AvShy                
-                    -
Wagtail              Wagtail
.                    .
Motacilla            Motacilla
cinereocapilla       
,                    ,
Sa\'I                
.                    .
THE                  THE
and                  and
Sheringham           Sheringham
1842                 
M.                   
/lava                flava
,                    ,
but                  but
Ornithologists       Ornithologists
nowadaj'S            nowadays
is                   is
if                   if
The                  The
Pipit                Pipit
occurs               occurs
Fair                 Fair
Shetlands            Shetlands
as                   as
W.                   
E.                   
it                   it
Scilly               Scilly
A                    A
Achill               Achill
co.                  co
Mayo                 Mayo
1895                 
a                    a
co.                  co
Donegal              Donegal
1898                 
a                    a
Ninfield             Ninfield
1901                 
In                   In
1903                 
four                 four
Tawny                Tawny
Pipits               Pipits
another              another
Bexhill              Bexhill
;                    ;
a                    a
Yarmouth             Yarmouth
Bodmin               Bodmin
Richard              Richard
Pipit                Pipit
has                  has
Cornwall             Cornwall
Scilly               Scilly
Kentish              Kentish
Pipit                Pipit
September            September
one                  one
Scill3%              Scilly
May                  May
one                  one
Milcomb              
(                    (
March                March
one                  one
January              January
one                  one
Littlestone          Littlestone
Kent                 Kent
1906                 
and                  and
altogether           altogether

Ranking Evaluation

Baseline: Edit Distance Based Ranking

In [121]:
def ed_based_prediction(name, top_type, test_data):
    """ Use Levenstein distance value as feature confidence. """
    fidx = test_data.feature_registry.get('DistanceFeature$Levenstein')
    for e in test_data.errors:
        for c in e.candidates:
            c.confidence = c.feature_values[fidx]
    print_test_model(name, top_type, test_data)
    
print_test_head()
print_sep('All errors')
ed_based_prediction('ed', 'top1',  TEST_TOP1_DATASET)
ed_based_prediction('ed', 'top3',  TEST_TOP3_DATASET)
ed_based_prediction('ed', 'top5',  TEST_TOP5_DATASET)
ed_based_prediction('ed', 'top10', TEST_TOP10_DATASET)
ed_based_prediction('ed', 'top100', TEST_TOP100_DATASET)
print_sep('TP errors')
ed_based_prediction('ed', 'top1',  TEST_TOP1_TP_DATASET)
ed_based_prediction('ed', 'top3',  TEST_TOP3_TP_DATASET)
ed_based_prediction('ed', 'top5',  TEST_TOP5_TP_DATASET)
ed_based_prediction('ed', 'top10', TEST_TOP10_TP_DATASET)
ed_based_prediction('ed', 'top100', TEST_TOP100_TP_DATASET)
print_sep('FP errors')
ed_based_prediction('ed', 'top1',  TEST_TOP1_FP_DATASET)
ed_based_prediction('ed', 'top3',  TEST_TOP3_FP_DATASET)
ed_based_prediction('ed', 'top5',  TEST_TOP5_FP_DATASET)
ed_based_prediction('ed', 'top10', TEST_TOP10_FP_DATASET)
ed_based_prediction('ed', 'top100', TEST_TOP100_FP_DATASET)
                                           P@1      P@3      P@5     P@10      P@A
--------------------------------------------------------------------------------
All errors
--------------------------------------------------------------------------------
ed                               top1  0.82468  0.83899  0.84265  0.84365  0.84365
ed                               top3  0.83666  0.84897  0.85396  0.86194  0.86593
ed                               top5  0.83832  0.85196  0.85529  0.86128  0.87059
ed                              top10  0.83866  0.85263  0.85629  0.85995  0.87359
ed                             top100  0.83932  0.85429  0.85862  0.86294  0.88024
--------------------------------------------------------------------------------
TP errors
--------------------------------------------------------------------------------
ed                               top1  0.44937  0.51741  0.53481  0.53956  0.53956
ed                               top3  0.50633  0.56487  0.58861  0.62500  0.64241
ed                               top5  0.51424  0.57911  0.59494  0.62342  0.66456
ed                              top10  0.51582  0.58228  0.59968  0.61709  0.67880
ed                             top100  0.51899  0.59019  0.61076  0.63133  0.71044
--------------------------------------------------------------------------------
FP errors
--------------------------------------------------------------------------------
ed                               top1  0.92460  0.92460  0.92460  0.92460  0.92460
ed                               top3  0.92460  0.92460  0.92460  0.92502  0.92544
ed                               top5  0.92460  0.92460  0.92460  0.92460  0.92544
ed                              top10  0.92460  0.92460  0.92460  0.92460  0.92544
ed                             top100  0.92460  0.92460  0.92460  0.92460  0.92544
In [12]:
# Time logging utils

import os

def remove_log_file(path=TRAIN_TIME_LOG_PATH):
    os.remove(path)

def read_train_time(path=TRAIN_TIME_LOG_PATH):
    try:
        return dict(tuple(l.strip().split('\t')) for l in open(TRAIN_TIME_LOG_PATH, 'r'))
    except FileNotFoundError:
        return dict()

def update_train_time(name, time, path=TRAIN_TIME_LOG_PATH, read_func=read_train_time):
    timetable = read_func(path)
    timetable[name] = time
    with open(TRAIN_TIME_LOG_PATH, 'w') as log:
        log.write('\n'.join('%s\t%s' % (k, v) for k, v in timetable.items()))
    return timetable
In [131]:
import time
import os

def get_pkl_path(model_name):
    """ Get the pathname to the serialized model file. """
    return '%s/%s.pkl' % (MODEL_PATH, model_name)

def get_train_data(top_type):
    return {'top1':  TRAIN_TOP1_DATASET,
            'top3':  TRAIN_TOP3_DATASET,
            'top5':  TRAIN_TOP5_DATASET,
            'top10': TRAIN_TOP10_DATASET,
           }.get(top_type, None)

def get_test_data(top_type):
    return {'top1':  [TEST_TOP1_DATASET, TEST_TOP1_TP_DATASET, TEST_TOP1_FP_DATASET],
            'top3':  [TEST_TOP3_DATASET, TEST_TOP3_TP_DATASET, TEST_TOP3_FP_DATASET],
            'top5':  [TEST_TOP5_DATASET, TEST_TOP5_TP_DATASET, TEST_TOP5_FP_DATASET],
            'top10': [TEST_TOP10_DATASET, TEST_TOP10_TP_DATASET, TEST_TOP10_FP_DATASET]
           }.get(top_type, None)

def train(models, prefix=None):
    for name, (md, top_type, balanced, search_grid) in models.items():
        
        # Collect parameters
        kwargs = {'weighted': balanced, 'pkl_path': get_pkl_path(name)}
        if search_grid: kwargs['param_grid'] = search_grid
            
        # Train model
        if not os.path.exists(get_pkl_path(name)):
            t_str = time.time()
            md(get_train_data(top_type), **kwargs)
            t_end = time.time()
            update_train_time(name, '%.2f' % (t_end - t_str))
            
    time_dict = read_train_time()
    for name, sec in sorted(time_dict.items()):
        if not prefix or prefix in name:
            print('%-30s %10s second' % (name, sec))
        
# Debug the precision_at function

def print_test_head(float_len=5):
    head_fmt = '%-37s' + ('  %' + str(float_len + 2) + 's') * 5
    print(head_fmt % ('', 'P@1', 'P@3', 'P@5', 'P@10', 'P@A'))
    
def print_sep(name=''):
    print('-' * 82)
    if len(name) > 0:
        print(name)
        print('-' * 82)
    
def print_test_model(name, top_type, pred_data, float_len=5):
    fmt = '%-30s %6s' + ('  %.' + str(float_len) + 'f') * 5
    print(fmt % (name, top_type, pred_data.precision_at(1), pred_data.precision_at(3),
                 pred_data.precision_at(5), pred_data.precision_at(10), pred_data.precision_at()))
    
def test(models):
    print_test_head()
    for tidx, tname in enumerate(['All errors', 'TP errors', 'FP errors']):
        print_sep(tname)
        ed_based_prediction('ED', 'top1',  get_test_data('top1')[tidx])
        ed_based_prediction('ED', 'top3',  get_test_data('top3')[tidx])
        print_sep()
        for name, (md, top_type, _, _) in models.items():
            lm = md(get_train_data(top_type), pkl_path=get_pkl_path(name))
            test_data = get_test_data(top_type)
            lm.predict(test_data[tidx])
            print_test_model(name, top_type, test_data[tidx])
        
def report_pred(predicted_data):
    for e in predicted_data.errors:
        print('%15s %8d %3s (%d)' % (e.name, e.position,  str(e.rank), len(e.candidates)))
        for c in sorted(e.candidates, key=lambda c: c.confidence, reverse=True):
            print('\t%15s %.4f' % (c.name, c.confidence))
        print()
        
def report(models, name):
    """ Report the TP error correction states. """
    md, top_type, balanced, search_grid = models[name]
    dataset = get_test_data(top_type)[1]
    lm = md(dataset, pkl_path=get_pkl_path(name))
    lm.predict(dataset)
    report_pred(dataset)
In [16]:
report_pred(TEST_TOP1_DATASET)
    possibility   407374   1 (8)
	    possibility 1.0000
	            the 0.0000
	              a 0.0000
	          <UNK> 0.0000
	         policy 0.0000
	              , 0.0000
	    application 0.0000
	           </S> 0.0000

           niaj   407429 inf (9)
	           niaj 1.0000
	           name 0.0000
	             'm 0.0000
	          began 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	              \ 0.0000
	            cia 0.0000

              '   407433 inf (7)
	              a 1.0000
	              ± 1.0000
	              , 1.0000
	             us 0.8889
	           </S> 0.0000
	            not 0.0000
	            the 0.0000

             bv   407472   2 (8)
	             bv 1.0000
	             by 0.9167
	              , 0.8333
	              a 0.8333
	              . 0.8333
	            the 0.0000
	             us 0.0000
	           </S> 0.0000

            Mr.   407475   1 (7)
	            Mr. 1.0000
	             My 0.8462
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	         Andrew 0.0000
	            arz 0.0000

       llarting   407485 inf (9)
	       clarting 1.0000
	       learning 0.9167
	              : 0.0000
	      latrating 0.0000
	           </S> 0.0000
	              A 0.0000
	              , 0.0000
	          llarg 0.0000
	              s 0.0000

            for   407494   1 (5)
	            for 1.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	            arz 0.0000

         Oologj   407522   1 (11)
	         Oology 1.0000
	        Beatles 0.0000
	         Objlog 0.0000
	     Chronology 0.0000
	              , 0.0000
	         Online 0.0000
	        Bankers 0.0000
	           </S> 0.0000
	              a 0.0000
	              . 0.0000
	       Columbia 0.0000

              '   407528   1 (7)
	              ' 1.0000
	              . 0.9167
	              ( 0.9167
	              , 0.9167
	             us 0.8333
	            the 0.0000
	           </S> 0.0000

           1S64   407547   1 (10)
	           1864 1.0000
	             US 0.8462
	           2004 0.8462
	      therefore 0.0000
	              a 0.0000
	          April 0.0000
	              , 0.0000
	           </S> 0.0000
	            the 0.0000
	        however 0.0000

              a   407553   1 (7)
	              a 1.0000
	              ( 0.9167
	             us 0.0000
	             of 0.0000
	            the 0.0000
	           </S> 0.0000
	            May 0.0000

         Ravens   407568   1 (9)
	         Ravens 1.0000
	              . 0.0000
	              a 0.0000
	           have 0.0000
	          Pales 0.0000
	           </S> 0.0000
	            and 0.0000
	            the 0.0000
	              , 0.0000

          which   407575   1 (8)
	          which 1.0000
	           have 0.0000
	              ' 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	        Buffalo 0.0000
	           Pica 0.0000

          built   407651   1 (8)
	          built 1.0000
	            but 0.8182
	            and 0.0000
	              a 0.0000
	              ( 0.0000
	           </S> 0.0000
	            the 0.0000
	           with 0.0000

           fern   407749   1 (7)
	           fern 1.0000
	           </S> 0.0000
	           free 0.0000
	              , 0.0000
	              a 0.0000
	            3.2 0.0000
	            arz 0.0000

           dead   407780   1 (7)
	           dead 1.0000
	              a 0.0000
	              , 0.0000
	            cia 0.0000
	            the 0.0000
	           </S> 0.0000
	           data 0.0000

             On   407850   1 (8)
	             On 1.0000
	             in 0.8889
	              , 0.0000
	           </S> 0.0000
	              " 0.0000
	              a 0.0000
	            and 0.0000
	             us 0.0000

            two   407863   1 (5)
	            two 1.0000
	              a 0.0000
	           </S> 0.0000
	             us 0.0000
	              , 0.0000

           tlie   407886   3 (9)
	           trie 1.0000
	          tliet 1.0000
	           this 0.9412
	            the 0.9412
	           tile 0.9412
	           alba 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000

           nest   407891   1 (9)
	           nest 1.0000
	            new 0.8182
	           </S> 0.0000
	              a 0.0000
	          <UNK> 0.0000
	              , 0.0000
	           Code 0.0000
	             us 0.0000
	          world 0.0000

           l)ut   407938 inf (10)
	           lout 1.0000
	            lut 1.0000
	             ut 0.8889
	           last 0.8889
	              , 0.0000
	           </S> 0.0000
	              } 0.0000
	           lutu 0.0000
	           lava 0.0000
	              a 0.0000

            the   407943   1 (3)
	            the 1.0000
	             us 0.0000
	           </S> 0.0000

            l)y   408009   3 (9)
	             ly 1.0000
	            lay 1.0000
	             by 0.9000
	            may 0.9000
	           </S> 0.0000
	              , 0.0000
	           lava 0.0000
	              a 0.0000
	              . 0.0000

       visitors   408013   1 (7)
	       visitors 1.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	          fists 0.0000
	             it 0.0000
	     viscivorus 0.0000

       hatclied   408045   1 (14)
	        hatched 1.0000
	          clied 0.9000
	        latched 0.9000
	             to 0.0000
	      disclosed 0.0000
	      hatchlike 0.0000
	           have 0.0000
	             be 0.0000
	           know 0.0000
	              a 0.0000
	          there 0.0000
	            for 0.0000
	              , 0.0000
	           </S> 0.0000

        wliieli   408093 inf (14)
	          lieli 1.0000
	         glieli 1.0000
	          wiele 0.9231
	          wlite 0.9231
	           </S> 0.0000
	      therefore 0.0000
	              x 0.0000
	            the 0.0000
	            and 0.0000
	              a 0.0000
	           ieli 0.0000
	           will 0.0000
	              ( 0.0000
	            DEF 0.0000

       liowever   408102 inf (9)
	         liever 1.0000
	        However 1.0000
	        lowlier 0.9444
	      therefore 0.0000
	          <UNK> 0.0000
	           like 0.0000
	            the 0.0000
	              i 0.0000
	              , 0.0000

   considerable   408116   1 (9)
	   considerable 1.0000
	             my 0.0000
	        contact 0.0000
	             he 0.0000
	            the 0.0000
	              , 0.0000
	           been 0.0000
	           </S> 0.0000
	              a 0.0000

           1894   408190 inf (9)
	           1994 1.0000
	           1984 0.9444
	              a 0.8333
	              , 0.8333
	             us 0.8333
	           </S> 0.8333
	            the 0.8333
	        poverty 0.0000
	          stock 0.0000

             In   408196   1 (6)
	             In 1.0000
	              " 0.0000
	             us 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000

         Ravens   408222   1 (8)
	         Ravens 1.0000
	              , 0.0000
	          Pales 0.0000
	           </S> 0.0000
	              a 0.0000
	         Family 0.0000
	         Rating 0.0000
	            Day 0.0000

        hatched   408229   1 (7)
	        hatched 1.0000
	        Watches 0.8000
	        Buffalo 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	        History 0.0000

           five   408241   1 (8)
	           five 1.0000
	           find 0.8182
	             to 0.0000
	              , 0.0000
	           </S> 0.0000
	             of 0.0000
	           lava 0.0000
	              a 0.0000

            Mr.   408266   1 (8)
	            Mrs 1.0000
	             Mr 1.0000
	             My 0.9000
	           </S> 0.0000
	              " 0.0000
	              , 0.0000
	              a 0.0000
	            arz 0.0000

        Coniyus   408276 inf (12)
	        Congius 1.0000
	         Conics 1.0000
	        Conifur 1.0000
	         Comics 0.8889
	              , 0.0000
	       Cydonius 0.0000
	           Coni 0.0000
	              A 0.0000
	           </S> 0.0000
	          <UNK> 0.0000
	         Corvus 0.0000
	             22 0.0000

       Lyveudeu   408288 inf (13)
	       Lieudieu 1.0000
	       Lavender 1.0000
	          Lyude 1.0000
	           need 0.6250
	          Rhode 0.6250
	             us 0.5000
	            the 0.5000
	         course 0.5000
	           them 0.5000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	      precursor 0.0000

             S.   408298 inf (9)
	             SS 1.0000
	             So 1.0000
	             US 0.9091
	              ( 0.9091
	             us 0.9091
	              a 0.9091
	           </S> 0.0000
	            and 0.0000
	            the 0.0000

        Buzzard   408354   1 (8)
	        Buzzard 1.0000
	            has 0.0000
	              a 0.0000
	        support 0.0000
	            was 0.0000
	              , 0.0000
	            the 0.0000
	           </S> 0.0000

          taken   408362   1 (9)
	          taken 1.0000
	           take 0.9167
	      submitted 0.0000
	              , 0.0000
	          Pales 0.0000
	              . 0.0000
	           </S> 0.0000
	              a 0.0000
	         Father 0.0000

   aggressively   408442   1 (9)
	   aggressively 1.0000
	             us 0.0000
	             so 0.0000
	           that 0.0000
	              , 0.0000
	             be 0.0000
	      available 0.0000
	           </S> 0.0000
	              I 0.0000

           tame   408456   1 (9)
	           tame 1.0000
	           time 0.9091
	            the 0.8182
	              a 0.0000
	             or 0.0000
	            but 0.0000
	            who 0.0000
	           lava 0.0000
	           </S> 0.0000

        Buzzard   408484   1 (10)
	        Buzzard 1.0000
	           auto 0.0000
	              , 0.0000
	           most 0.0000
	           with 0.0000
	              a 0.0000
	           </S> 0.0000
	           same 0.0000
	           fact 0.0000
	            are 0.0000

       remained   408492   1 (6)
	       remained 1.0000
	       required 0.7000
	             of 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000

       obdurate   408501   1 (8)
	       obdurate 1.0000
	        operate 0.7273
	           that 0.0000
	              a 0.0000
	             in 0.0000
	          there 0.0000
	              , 0.0000
	           </S> 0.0000

         full}'   408514   1 (9)
	           full 1.0000
	          fully 1.0000
	            the 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	         credit 0.0000
	             as 0.0000
	             us 0.0000

      instantly   408819   1 (7)
	      instantly 1.0000
	        instant 0.8333
	              , 0.0000
	              N 0.0000
	              s 0.0000
	              a 0.0000
	           </S> 0.0000

         dashed   408829   1 (9)
	         dashed 1.0000
	          based 0.8182
	              . 0.0000
	              s 0.0000
	         online 0.0000
	           </S> 0.0000
	              ' 0.0000
	              , 0.0000
	              a 0.0000

          after   408928   1 (8)
	          after 1.0000
	            The 0.0000
	           with 0.0000
	              I 0.0000
	           </S> 0.0000
	            the 0.0000
	              ( 0.0000
	         Passer 0.0000

         flying   408934   1 (8)
	         flying 1.0000
	           find 0.0000
	            the 0.0000
	              a 0.0000
	           </S> 0.0000
	            all 0.0000
	              , 0.0000
	           only 0.0000

          hotly   408978   1 (7)
	          hotly 1.0000
	            how 0.0000
	            and 0.0000
	            the 0.0000
	           </S> 0.0000
	              a 0.0000
	              - 0.0000

            b}'   408992   1 (6)
	             bb 1.0000
	             by 1.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	             us 0.0000

              '   408996 inf (4)
	              , 1.0000
	             us 0.9231
	           </S> 0.0000
	            the 0.0000

              '   409003 inf (8)
	              ( 1.0000
	             of 0.9091
	             us 0.9091
	            the 0.0000
	           Grin 0.0000
	           </S> 0.0000
	           when 0.0000
	             Th 0.0000

       alighted   409014   1 (9)
	       alighted 1.0000
	              ' 0.0000
	              s 0.0000
	              , 0.0000
	           </S> 0.0000
	       appeared 0.0000
	         dawned 0.0000
	              I 0.0000
	          after 0.0000

      bristling   409074   1 (9)
	      bristling 1.0000
	        Listing 0.7273
	              a 0.0000
	            bed 0.0000
	              , 0.0000
	           </S> 0.0000
	          years 0.0000
	              . 0.0000
	             of 0.0000

           bird   409109   1 (10)
	           bird 1.0000
	              , 0.0000
	              . 0.0000
	            cia 0.0000
	      draperies 0.0000
	             of 0.0000
	              a 0.0000
	           </S> 0.0000
	    Association 0.0000
	             by 0.0000

            was   409122   1 (8)
	            was 1.0000
	             's 0.0000
	              a 0.0000
	           </S> 0.0000
	             us 0.0000
	           same 0.0000
	              . 0.0000
	              , 0.0000

       tempered   409136   1 (8)
	       tempered 1.0000
	             to 0.0000
	              a 0.0000
	           </S> 0.0000
	        pleased 0.0000
	              , 0.0000
	          there 0.0000
	     experience 0.0000

        caution   409162   1 (7)
	        caution 1.0000
	             of 0.0000
	       Location 0.0000
	              , 0.0000
	     discretion 0.0000
	              a 0.0000
	           </S> 0.0000

             he   409172   1 (6)
	             he 1.0000
	              a 0.0000
	           </S> 0.0000
	              } 0.0000
	              , 0.0000
	             us 0.0000

        Buzzard   409271   1 (10)
	        Buzzard 1.0000
	        buzzard 0.9286
	          Board 0.7857
	           </S> 0.0000
	           time 0.0000
	            way 0.0000
	          right 0.0000
	              - 0.0000
	           same 0.0000
	        ability 0.0000

  consternation   409303   1 (9)
	  consternation 1.0000
	             he 0.0000
	        delight 0.0000
	            the 0.0000
	              a 0.0000
	            she 0.0000
	           </S> 0.0000
	              , 0.0000
	    information 0.0000

         sprang   409317   1 (10)
	         sprang 1.0000
	              , 0.0000
	              a 0.0000
	             of 0.0000
	            and 0.0000
	         looked 0.0000
	           </S> 0.0000
	             us 0.0000
	              . 0.0000
	          items 0.0000

             He   409332   1 (7)
	             He 1.0000
	             be 0.9091
	           </S> 0.0000
	             us 0.0000
	              " 0.0000
	              a 0.0000
	              , 0.0000

           liis   409453 inf (12)
	          liisi 1.0000
	           liin 1.0000
	            lis 1.0000
	            lii 1.0000
	            its 0.8889
	           list 0.8889
	           </S> 0.0000
	            the 0.0000
	              , 0.0000
	           lisi 0.0000
	           lava 0.0000
	              a 0.0000

        laurels   409458   1 (8)
	        laurels 1.0000
	           site 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	         levels 0.0000
	        aureola 0.0000
	        seventh 0.0000

          would   409640   1 (8)
	          would 1.0000
	             of 0.0000
	           </S> 0.0000
	          wolfi 0.0000
	              I 0.0000
	             DT 0.0000
	              , 0.0000
	           Song 0.0000

           beak   409695   1 (10)
	           beak 1.0000
	           been 0.8182
	           good 0.0000
	           </S> 0.0000
	              , 0.0000
	      important 0.0000
	           well 0.0000
	              . 0.0000
	              a 0.0000
	            cia 0.0000

              '   409753   1 (6)
	              ' 1.0000
	              " 0.9286
	              , 0.9286
	             us 0.8571
	            the 0.0000
	           </S> 0.0000

      furtively   409822   1 (9)
	      furtively 1.0000
	       Services 0.5714
	            the 0.5000
	              a 0.0000
	              , 0.0000
	              . 0.0000
	           then 0.0000
	             to 0.0000
	           </S> 0.0000

       tweaking   409832   1 (10)
	       tweaking 1.0000
	              , 0.0000
	          their 0.0000
	              . 0.0000
	             of 0.0000
	              a 0.0000
	             to 0.0000
	           </S> 0.0000
	             us 0.0000
	             at 0.0000

        Buzzard   409845   1 (9)
	        Buzzard 1.0000
	        buzzard 0.9167
	          Board 0.7500
	          world 0.0000
	        swallow 0.0000
	        student 0.0000
	           </S> 0.0000
	              - 0.0000
	           same 0.0000

             's   409852   1 (7)
	             's 1.0000
	             is 0.9091
	              s 0.9091
	              , 0.8182
	             of 0.8182
	              a 0.8182
	           </S> 0.0000

        attacks   409930   1 (8)
	        attacks 1.0000
	           post 0.0000
	           </S> 0.0000
	             us 0.0000
	              I 0.0000
	              . 0.0000
	              , 0.0000
	         States 0.0000

        Buzzard   409968   1 (9)
	        Buzzard 1.0000
	        buzzard 0.9167
	          Board 0.7500
	          world 0.0000
	           team 0.0000
	           same 0.0000
	              - 0.0000
	           </S> 0.0000
	        country 0.0000

             's   409975   1 (7)
	             's 1.0000
	             is 0.9333
	             us 0.9333
	              , 0.8667
	             of 0.8667
	              a 0.8667
	           </S> 0.0000

         wretch   410108   1 (9)
	         wretch 1.0000
	              a 0.0000
	           </S> 0.0000
	          which 0.0000
	              - 0.0000
	              , 0.0000
	           face 0.0000
	    elsewhither 0.0000
	        sources 0.0000

        denuded   410116   1 (8)
	        denuded 1.0000
	            one 0.0000
	           they 0.0000
	              a 0.0000
	          Grace 0.0000
	            the 0.0000
	         winner 0.0000
	          under 0.0000

       Hitherto   410161 inf (6)
	       hitherto 1.0000
	        Hittero 0.8889
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	              " 0.0000

          might   410230   1 (8)
	          might 1.0000
	          right 0.9091
	           will 0.0000
	             of 0.0000
	          minor 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000

          being   410334   1 (7)
	          being 1.0000
	              , 0.0000
	           </S> 0.0000
	            bad 0.0000
	             of 0.0000
	              . 0.0000
	              a 0.0000

         Comyns   410383   1 (10)
	         Comyns 1.0000
	        Company 0.7500
	       Chairman 0.0000
	              , 0.0000
	              . 0.0000
	         Corvus 0.0000
	          paper 0.0000
	           </S> 0.0000
	              a 0.0000
	         Rogers 0.0000

              '   410389   1 (6)
	              ' 1.0000
	              , 0.8889
	             's 0.8889
	             us 0.7778
	           </S> 0.0000
	            the 0.0000

            Mr.   410481   1 (8)
	            Mrs 1.0000
	             Mr 1.0000
	             My 0.9091
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	              " 0.0000
	            arz 0.0000

        Frohawk   410485   1 (8)
	        Frohawk 1.0000
	         Mohawk 0.8333
	              , 0.0000
	          <UNK> 0.0000
	              B 0.0000
	             J. 0.0000
	           </S> 0.0000
	       Chairman 0.0000

            saw   410493   1 (7)
	            saw 1.0000
	             so 0.8000
	              , 0.0000
	              I 0.0000
	           </S> 0.0000
	           1898 0.0000
	           sala 0.0000

           tlie   410531   3 (10)
	           trie 1.0000
	          tliet 1.0000
	           this 0.9565
	           tile 0.9565
	            the 0.9565
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	           your 0.0000
	           alba 0.0000

          mouth   410536   1 (8)
	          mouth 1.0000
	          South 0.9091
	          <UNK> 0.0000
	              , 0.0000
	            end 0.0000
	           </S> 0.0000
	              a 0.0000
	          maura 0.0000

          Devon   410558   1 (8)
	          Devon 1.0000
	            Dec 0.0000
	              , 0.0000
	              " 0.0000
	              s 0.0000
	              a 0.0000
	           </S> 0.0000
	              T 0.0000

           they   410597   1 (5)
	           they 1.0000
	              } 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000

Fa>,iilv-C0RJ7D.-E   410685 inf (11)
	          alive 1.0000
	      available 1.0000
	       FileName 1.0000
	           will 0.6667
	             -- 0.6667
	              , 0.3333
	        friends 0.3333
	              a 0.3333
	           </S> 0.0000
	              " 0.0000
	              / 0.0000

              .   410703   1 (5)
	              . 1.0000
	              , 0.9286
	             us 0.8571
	            the 0.0000
	           </S> 0.0000

        Corviis   410725 inf (8)
	        Corvids 1.0000
	        Corvida 0.9091
	          Corvi 0.9091
	         Comics 0.8182
	           </S> 0.0000
	              " 0.0000
	              , 0.0000
	              a 0.0000

        iOfoiic   410733 inf (9)
	         infonc 1.0000
	        infoibi 1.0000
	          folic 1.0000
	          Ofori 1.0000
	         ironic 1.0000
	           </S> 0.6364
	              a 0.6364
	              , 0.6364
	      configure 0.0000

              ,   410740 inf (3)
	             of 1.0000
	             us 1.0000
	            the 0.0000

           Linn   410742   1 (6)
	           Linn 1.0000
	           List 0.8667
	              i 0.0000
	             pp 0.0000
	            the 0.0000
	          minor 0.0000

             IN   410749   1 (8)
	             IN 1.0000
	             In 0.9091
	             us 0.0000
	              , 0.0000
	              / 0.0000
	           </S> 0.0000
	              " 0.0000
	              a 0.0000

        Siberia   410752   1 (9)
	        Siberia 1.0000
	        Liberia 0.9231
	              A 0.0000
	            THE 0.0000
	        service 0.0000
	           </S> 0.0000
	              ) 0.0000
	              , 0.0000
	        cinerea 0.0000

        Seebohm   410774   1 (9)
	        Seebohm 1.0000
	              a 0.0000
	            the 0.0000
	           cars 0.0000
	           </S> 0.0000
	           need 0.0000
	           plan 0.0000
	            say 0.0000
	             us 0.0000

          Ijdng   410824 inf (8)
	          Ijdan 1.0000
	          Index 0.9167
	representatives 0.0000
	              , 0.0000
	             Ij 0.0000
	           </S> 0.0000
	              a 0.0000
	              . 0.0000

        between   410830   1 (5)
	        between 1.0000
	              , 0.0000
	            the 0.0000
	              a 0.0000
	           </S> 0.0000

        Yenesay   410838 inf (12)
	        Yenesis 1.0000
	         Benesa 1.0000
	        General 0.8889
	              a 0.0000
	          Yenya 0.0000
	           </S> 0.0000
	             us 0.0000
	            the 0.0000
	            you 0.0000
	              , 0.0000
	         Yenets 0.0000
	           Asia 0.0000

      Westwards   410968 inf (7)
	       Westward 1.0000
	              a 0.0000
	              , 0.0000
	          where 0.0000
	           </S> 0.0000
	      Australia 0.0000
	              " 0.0000

             he   410978   1 (5)
	             he 1.0000
	              , 0.0000
	           </S> 0.0000
	             us 0.0000
	              a 0.0000

        Caspian   411082   1 (10)
	        Caspian 1.0000
	           </S> 0.0000
	          world 0.0000
	           City 0.0000
	              - 0.0000
	        Capital 0.0000
	         cassia 0.0000
	           line 0.0000
	           same 0.0000
	           time 0.0000

         Hooded   411133   1 (8)
	         Hooded 1.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	            the 0.0000
	             us 0.0000
	          Hotel 0.0000
	            sea 0.0000

         spread   411273   1 (9)
	         spread 1.0000
	         Flying 0.0000
	             of 0.0000
	           </S> 0.0000
	              , 0.0000
	          great 0.0000
	              . 0.0000
	         spinas 0.0000
	              a 0.0000

    interbreeds   411392   1 (8)
	    interbreeds 1.0000
	           into 0.2727
	              . 0.0000
	              a 0.0000
	             us 0.0000
	             is 0.0000
	              , 0.0000
	           </S> 0.0000

         Hooded   411413   1 (8)
	         Hooded 1.0000
	              - 0.0000
	          Hotel 0.0000
	            top 0.0000
	           </S> 0.0000
	          first 0.0000
	           same 0.0000
	            Jim 0.0000

        Yenesay   411456 inf (11)
	        Yenesis 1.0000
	         Benesa 1.0000
	         Yenets 0.0000
	          Yenya 0.0000
	     procedures 0.0000
	            the 0.0000
	         others 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	           best 0.0000

              (   411464   1 (6)
	              ( 1.0000
	              . 0.9167
	              , 0.9167
	             us 0.8333
	           </S> 0.0000
	            the 0.0000

    intergrades   411514   1 (10)
	    intergrades 1.0000
	           </S> 0.0000
	    interesting 0.0000
	      offspring 0.0000
	             of 0.0000
	         people 0.0000
	              a 0.0000
	   similarities 0.0000
	              , 0.0000
	    differences 0.0000

          these   411622   1 (6)
	          these 1.0000
	              } 0.0000
	            Art 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000

       Histor}'   411751   1 (9)
	        History 1.0000
	       Historis 1.0000
	             of 0.0000
	          Hotel 0.0000
	              . 0.0000
	      Resources 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000

         branch   411760   1 (6)
	         branch 1.0000
	         France 0.8182
	              A 0.0000
	           </S> 0.0000
	              , 0.0000
	         Museum 0.0000

         Museum   411775   1 (7)
	         Museum 1.0000
	              . 0.0000
	          Music 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	            the 0.0000

             In   411803   1 (7)
	             In 1.0000
	              , 0.0000
	           </S> 0.0000
	            and 0.0000
	              " 0.0000
	              a 0.0000
	             us 0.0000

       disliked   411843   1 (8)
	       disliked 1.0000
	             to 0.0000
	              , 0.0000
	           </S> 0.0000
	         online 0.0000
	              a 0.0000
	         famous 0.0000
	          major 0.0000

           both   411868   1 (8)
	           both 1.0000
	            but 0.8333
	           </S> 0.0000
	             or 0.0000
	            the 0.0000
	              ( 0.0000
	              a 0.0000
	            and 0.0000

            yet   411905   1 (7)
	            yet 1.0000
	            you 0.8000
	              , 0.0000
	           </S> 0.0000
	              } 0.0000
	              a 0.0000
	            Pyi 0.0000

       becoming   411990   1 (10)
	       becoming 1.0000
	            the 0.0000
	              a 0.0000
	    Aberystwyth 0.0000
	            and 0.0000
	              x 0.0000
	      therefore 0.0000
	           </S> 0.0000
	              , 0.0000
	        because 0.0000

      decidedly   412009   1 (6)
	      decidedly 1.0000
	            who 0.0000
	           does 0.0000
	              a 0.0000
	            the 0.0000
	           </S> 0.0000

       commoner   412019   1 (10)
	       commoner 1.0000
	            not 0.0000
	              a 0.0000
	           </S> 0.0000
	           more 0.0000
	            was 0.0000
	              , 0.0000
	         corone 0.0000
	        lacking 0.0000
	            the 0.0000

             in   412090   1 (6)
	             in 1.0000
	              , 0.0000
	           </S> 0.0000
	              } 0.0000
	              a 0.0000
	             iu 0.0000

      Shetlands   412212   1 (8)
	      Shetlands 1.0000
	              a 0.0000
	           </S> 0.0000
	         Canada 0.0000
	            not 0.0000
	            the 0.0000
	              , 0.0000
	           some 0.0000

             In   412223   1 (6)
	             In 1.0000
	              , 0.0000
	              " 0.0000
	           </S> 0.0000
	              A 0.0000
	             us 0.0000

        Carrion   412270   1 (10)
	        Carrion 1.0000
	      Education 0.0000
	              I 0.0000
	         secret 0.0000
	             of 0.0000
	            and 0.0000
	        version 0.0000
	          Ahead 0.0000
	              , 0.0000
	           </S> 0.0000

       purplish   412301   1 (6)
	       purplish 1.0000
	        publish 0.7778
	              } 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000

          above   412310   1 (7)
	          above 1.0000
	          alone 0.8333
	           </S> 0.0000
	              - 0.0000
	            red 0.0000
	              , 0.0000
	        arborea 0.0000

            the   412361   1 (6)
	            the 1.0000
	           </S> 0.0000
	              } 0.0000
	              , 0.0000
	              . 0.0000
	             us 0.0000

      similarly   412371   1 (6)
	      similarly 1.0000
	             of 0.0000
	           </S> 0.0000
	           site 0.0000
	              a 0.0000
	              , 0.0000

         tinted   412381   1 (9)
	         tinted 1.0000
	         United 0.0000
	             to 0.0000
	              , 0.0000
	       situated 0.0000
	              a 0.0000
	           </S> 0.0000
	            the 0.0000
	   grasshoppers 0.0000

           bill   412390   1 (7)
	           bill 1.0000
	           will 0.9000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	              } 0.0000
	            cia 0.0000

           iris   412412   1 (8)
	           iris 1.0000
	             is 0.7778
	           </S> 0.0000
	              } 0.0000
	              a 0.0000
	              , 0.0000
	           dark 0.0000
	             iu 0.0000

            her   412525   1 (6)
	            her 1.0000
	              a 0.0000
	              } 0.0000
	              , 0.0000
	           </S> 0.0000
	            arz 0.0000

       ajipears   412534   1 (11)
	        appears 1.0000
	          ajars 0.9000
	         piears 0.9000
	          pears 0.9000
	           </S> 0.0000
	              , 0.0000
	             us 0.0000
	             is 0.0000
	              . 0.0000
	              I 0.0000
	          years 0.0000

             to   412543   1 (5)
	             to 1.0000
	            not 0.0000
	              , 0.0000
	             us 0.0000
	           </S> 0.0000

          Young   412627   1 (6)
	          Young 1.0000
	           Your 0.8182
	           </S> 0.0000
	              " 0.0000
	              a 0.0000
	              , 0.0000

          gloss   412651   1 (10)
	          gloss 1.0000
	           </S> 0.0000
	         notice 0.0000
	          merit 0.0000
	             to 0.0000
	           good 0.0000
	             us 0.0000
	              , 0.0000
	              a 0.0000
	            the 0.0000

             As   412713   1 (7)
	             As 1.0000
	             us 0.9231
	             AM 0.9231
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	              " 0.0000

     h3-bridize   412784   1 (10)
	      hybridize 1.0000
	      hibridize 1.0000
	        provide 0.5000
	          trade 0.5000
	             be 0.4000
	            the 0.3000
	           </S> 0.0000
	              a 0.0000
	             us 0.0000
	              , 0.0000

         freely   412795   1 (8)
	         freely 1.0000
	           free 0.8333
	              , 0.0000
	            the 0.0000
	            you 0.0000
	              a 0.0000
	             us 0.0000
	           </S> 0.0000

         Hooded   412811   1 (8)
	         Hooded 1.0000
	         Holder 0.8333
	          first 0.0000
	              - 0.0000
	           </S> 0.0000
	            Jim 0.0000
	           same 0.0000
	          Hotel 0.0000

           Herr   412887   1 (8)
	           Herr 1.0000
	           Help 0.8182
	            the 0.0000
	           </S> 0.0000
	            and 0.0000
	              a 0.0000
	              ( 0.0000
	            arz 0.0000

          Gatke   412892 inf (9)
	          Gatka 1.0000
	           Gate 1.0000
	           take 0.9167
	              a 0.0000
	        Gataket 0.0000
	             M. 0.0000
	              , 0.0000
	           </S> 0.0000
	            the 0.0000

       shrewdly   412898   1 (6)
	       shrewdly 1.0000
	             J. 0.0000
	              a 0.0000
	              , 0.0000
	          Ringe 0.0000
	           </S> 0.0000

        pairing   412967   1 (8)
	        pairing 1.0000
	              , 0.0000
	            the 0.0000
	             us 0.0000
	              a 0.0000
	           </S> 0.0000
	          first 0.0000
	            not 0.0000

         having   412975   1 (8)
	         having 1.0000
	              a 0.0000
	              , 0.0000
	           have 0.0000
	             of 0.0000
	          items 0.0000
	           fact 0.0000
	           </S> 0.0000

         3'ears   413019   1 (11)
	           ears 1.0000
	          years 1.0000
	          sears 1.0000
	           them 0.0000
	              , 0.0000
	            the 0.0000
	             us 0.0000
	           </S> 0.0000
	              a 0.0000
	             it 0.0000
	           this 0.0000

            for   413174   1 (6)
	            for 1.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	              } 0.0000
	            arz 0.0000

          the}'   413182 inf (10)
	           thee 1.0000
	          their 1.0000
	            the 1.0000
	             he 0.9000
	             us 0.0000
	              I 0.0000
	           </S> 0.0000
	              , 0.0000
	            you 0.0000
	              a 0.0000

       reverted   413274   1 (7)
	       reverted 1.0000
	       reserved 0.8462
	              . 0.0000
	            mp3 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000

    colouration   413429   1 (7)
	    colouration 1.0000
	       colorati 0.7500
	           plan 0.0000
	              , 0.0000
	       solution 0.0000
	         enough 0.0000
	           </S> 0.0000

    gradational   413478   1 (10)
	    gradational 1.0000
	    information 0.3333
	          early 0.0000
	           </S> 0.0000
	              a 0.0000
	             of 0.0000
	              , 0.0000
	           free 0.0000
	         access 0.0000
	              . 0.0000

         stages   413490   1 (10)
	         stages 1.0000
	          state 0.8182
	              a 0.0000
	           </S> 0.0000
	              . 0.0000
	              , 0.0000
	         levels 0.0000
	       contacts 0.0000
	             of 0.0000
	          Pales 0.0000

          gre}'   413512 inf (11)
	            gre 1.0000
	          great 1.0000
	           greg 1.0000
	          white 0.0000
	           </S> 0.0000
	             us 0.0000
	              a 0.0000
	              , 0.0000
	            the 0.0000
	           time 0.0000
	        medical 0.0000

            and   413518   1 (5)
	            and 1.0000
	              , 0.0000
	              . 0.0000
	           </S> 0.0000
	            arz 0.0000

      Pheasants   413618   1 (9)
	      Pheasants 1.0000
	          years 0.5000
	             of 0.0000
	           </S> 0.0000
	              , 0.0000
	              - 0.0000
	            non 0.0000
	              a 0.0000
	          major 0.0000

              -   413628   1 (8)
	              - 1.0000
	              . 0.9091
	              , 0.9091
	             us 0.8182
	             of 0.8182
	            the 0.0000
	        Forever 0.0000
	           </S> 0.0000

      cuIchicKs   413633 inf (9)
	       culchies 1.0000
	       services 0.7000
	        sources 0.6000
	       vulgaris 0.6000
	          <UNK> 0.5000
	           </S> 0.0000
	              - 0.0000
	              a 0.0000
	              , 0.0000

             P.   413644   1 (7)
	             P. 1.0000
	             PM 0.9167
	              a 0.8333
	           </S> 0.0000
	            and 0.0000
	            the 0.0000
	           your 0.0000

     /oi-qna/us   413647 inf (13)
	           Moin 1.0000
	        Journal 1.0000
	       Domingos 1.0000
	             in 0.8000
	        contact 0.8000
	           </S> 0.6000
	              a 0.6000
	     aeruginosa 0.0000
	            use 0.0000
	           know 0.0000
	          <UNK> 0.0000
	              , 0.0000
	             J. 0.0000

    vtrsicoloi-   413666   1 (11)
	     versicolor 1.0000
	    versicolori 1.0000
	        service 0.3750
	           </S> 0.0000
	             us 0.0000
	              ) 0.0000
	              , 0.0000
	          <UNK> 0.0000
	              a 0.0000
	             on 0.0000
	              . 0.0000

     interbreed   413690   1 (9)
	     interbreed 1.0000
	            the 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	             be 0.0000
	           into 0.0000
	       includes 0.0000
	             us 0.0000

         freely   413701   1 (9)
	         freely 1.0000
	           free 0.8000
	           </S> 0.0000
	           with 0.0000
	              , 0.0000
	            the 0.0000
	             us 0.0000
	              a 0.0000
	     abundantly 0.0000

    intergrades   413728   1 (8)
	    intergrades 1.0000
	              . 0.0000
	              , 0.0000
	           that 0.0000
	            and 0.0000
	              a 0.0000
	           </S> 0.0000
	    information 0.0000

            are   413740   1 (8)
	            are 1.0000
	              , 0.0000
	            arz 0.0000
	             of 0.0000
	        torture 0.0000
	           with 0.0000
	              I 0.0000
	           </S> 0.0000

       distinct   413760   1 (9)
	       distinct 1.0000
	            the 0.0000
	         within 0.0000
	             be 0.0000
	           </S> 0.0000
	              a 0.0000
	           only 0.0000
	            yet 0.0000
	              , 0.0000

         sports   413840   1 (10)
	         sports 1.0000
	              , 0.0000
	        receipt 0.0000
	              a 0.0000
	           </S> 0.0000
	           that 0.0000
	            the 0.0000
	         review 0.0000
	         should 0.0000
	         spinas 0.0000

    intergrades   413895   1 (10)
	    intergrades 1.0000
	             to 0.0000
	           </S> 0.0000
	    information 0.0000
	              a 0.0000
	              , 0.0000
	             us 0.0000
	            any 0.0000
	             it 0.0000
	         copies 0.0000

      reproduce   413936   1 (8)
	      reproduce 1.0000
	        product 0.7000
	              , 0.0000
	              . 0.0000
	          major 0.0000
	           </S> 0.0000
	              a 0.0000
	           best 0.0000

        Barbaiy   414010 inf (10)
	        Barbair 1.0000
	      Barbarity 0.9000
	           page 0.0000
	           </S> 0.0000
	         public 0.0000
	           most 0.0000
	              . 0.0000
	              , 0.0000
	          major 0.0000
	              a 0.0000

         Turtle   414018   1 (9)
	         Turtle 1.0000
	              , 0.0000
	             of 0.0000
	            non 0.0000
	           </S> 0.0000
	              . 0.0000
	         Turdus 0.0000
	              a 0.0000
	         little 0.0000

        fertile   414068   1 (8)
	        fertile 1.0000
	              " 0.0000
	        service 0.0000
	           </S> 0.0000
	             to 0.0000
	             of 0.0000
	              a 0.0000
	              , 0.0000

       Bengalee   414096   1 (9)
	       Bengalee 1.0000
	         Bengal 0.8462
	          <UNK> 0.0000
	              " 0.0000
	             as 0.0000
	          world 0.0000
	              , 0.0000
	           </S> 0.0000
	         people 0.0000

        Carrion   414128   1 (11)
	        Carrion 1.0000
	           most 0.0000
	           City 0.0000
	            non 0.0000
	            the 0.0000
	           same 0.0000
	          major 0.0000
	              a 0.0000
	           </S> 0.0000
	            two 0.0000
	              - 0.0000

      resembles   414141   1 (9)
	      resembles 1.0000
	             us 0.0000
	            and 0.0000
	           </S> 0.0000
	              a 0.0000
	        between 0.0000
	              - 0.0000
	              , 0.0000
	             of 0.0000

     inhabiting   414162   1 (10)
	     inhabiting 1.0000
	            and 0.0000
	             J. 0.0000
	      including 0.0000
	            the 0.0000
	              a 0.0000
	             or 0.0000
	           with 0.0000
	              ( 0.0000
	           </S> 0.0000

        similar   414173   1 (7)
	        similar 1.0000
	              a 0.0000
	           </S> 0.0000
	          corax 0.0000
	           some 0.0000
	              , 0.0000
	            the 0.0000

         haunts   414181   1 (9)
	         haunts 1.0000
	         Counts 0.8333
	       articles 0.0000
	              , 0.0000
	          means 0.0000
	           </S> 0.0000
	             to 0.0000
	         County 0.0000
	        results 0.0000

             In   414252   1 (6)
	             In 1.0000
	           </S> 0.0000
	              , 0.0000
	              " 0.0000
	              a 0.0000
	             us 0.0000

      predatory   414259   1 (7)
	      predatory 1.0000
	           </S> 0.0000
	            own 0.0000
	       products 0.0000
	          first 0.0000
	              , 0.0000
	              a 0.0000

         cpiite   414297   6 (13)
	         chiite 1.0000
	           cite 0.8750
	        kopiite 0.8750
	           pite 0.8750
	           piit 0.8750
	             be 0.0000
	           </S> 0.0000
	           city 0.0000
	          quite 0.0000
	         cepiti 0.0000
	              a 0.0000
	           have 0.0000
	              , 0.0000

           both   414321   1 (9)
	           both 1.0000
	            but 0.8182
	            and 0.0000
	     especially 0.0000
	              ( 0.0000
	           </S> 0.0000
	             or 0.0000
	            the 0.0000
	              a 0.0000

       shepherd   414329   1 (10)
	       shepherd 1.0000
	           </S> 0.0000
	             us 0.0000
	          small 0.0000
	            day 0.0000
	        members 0.0000
	            the 0.0000
	              , 0.0000
	              a 0.0000
	          <UNK> 0.0000

           Ever   414355   1 (6)
	           Ever 1.0000
	           over 0.8889
	              " 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000

            b}'   414416   1 (9)
	              ' 1.0000
	             by 1.0000
	             us 0.0000
	             in 0.0000
	           </S> 0.0000
	              . 0.0000
	              a 0.0000
	           with 0.0000
	              , 0.0000

          Tliat   414480 inf (9)
	          Triat 1.0000
	           Tlia 1.0000
	              " 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	          Talit 0.0000
	           alba 0.0000
	           This 0.0000

           this   414486   1 (5)
	           this 1.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	            cia 0.0000

          seems   414513   1 (8)
	          seems 1.0000
	            see 0.8462
	            the 0.0000
	              a 0.0000
	           </S> 0.0000
	             us 0.0000
	             to 0.0000
	              , 0.0000

        dispute   414565   1 (10)
	        dispute 1.0000
	             us 0.0000
	             be 0.0000
	            the 0.0000
	     associated 0.0000
	           </S> 0.0000
	           does 0.0000
	              , 0.0000
	            you 0.0000
	              a 0.0000

           Gull   414580   1 (10)
	           Gull 1.0000
	           Full 0.9231
	           full 0.9231
	         friend 0.0000
	           week 0.0000
	           sala 0.0000
	              , 0.0000
	            new 0.0000
	          video 0.0000
	           </S> 0.0000

           Hawk   414601   1 (11)
	           Hawk 1.0000
	            How 0.8333
	         number 0.0000
	          thing 0.0000
	       business 0.0000
	           lava 0.0000
	           </S> 0.0000
	           time 0.0000
	              , 0.0000
	             of 0.0000
	              a 0.0000

       combiued   414651   1 (12)
	       combined 1.0000
	     uncombined 0.8182
	          combi 0.8182
	              - 0.0000
	       complete 0.0000
	          major 0.0000
	         single 0.0000
	      terrorist 0.0000
	        cymbium 0.0000
	           </S> 0.0000
	          heart 0.0000
	            new 0.0000

         attack   414660   1 (8)
	         attack 1.0000
	           back 0.0000
	          basis 0.0000
	              , 0.0000
	             of 0.0000
	        account 0.0000
	              I 0.0000
	           </S> 0.0000

           fare   414736   1 (8)
	           fare 1.0000
	              , 0.0000
	              a 0.0000
	           free 0.0000
	           </S> 0.0000
	             to 0.0000
	             be 0.0000
	            arz 0.0000

         badl3^   414741   1 (7)
	          badly 1.0000
	              . 0.0000
	           back 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	         badala 0.0000

           Lord   414748   1 (6)
	           Lord 1.0000
	           more 0.8000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	          Loxia 0.0000

        Lilford   414753 inf (8)
	        Linford 1.0000
	        Lifford 1.0000
	        Milford 1.0000
	              I 0.0000
	             of 0.0000
	             Of 0.0000
	           </S> 0.0000
	              , 0.0000

       observes   414761   1 (11)
	       observes 1.0000
	       reserved 0.6667
	              , 0.0000
	             us 0.0000
	           </S> 0.0000
	            the 0.0000
	            War 0.0000
	              - 0.0000
	              V 0.0000
	             's 0.0000
	              a 0.0000

           saj^   414798   3 (11)
	            saj 1.0000
	           saja 1.0000
	           said 0.9000
	            say 0.9000
	           sala 0.9000
	           </S> 0.0000
	              a 0.0000
	            the 0.0000
	              , 0.0000
	             be 0.0000
	           play 0.0000

             in   414803   1 (8)
	             in 1.0000
	            the 0.0000
	              a 0.0000
	              . 0.0000
	              , 0.0000
	             iu 0.0000
	           </S> 0.0000
	              : 0.0000

            His   414835   1 (7)
	            His 1.0000
	            his 0.9231
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	              " 0.0000
	            cia 0.0000

        noxious   414872   1 (11)
	        noxious 1.0000
	      voluntary 0.0000
	           </S> 0.0000
	   coincidental 0.0000
	      dispensed 0.0000
	            not 0.0000
	            for 0.0000
	              , 0.0000
	             to 0.0000
	              a 0.0000
	        nubicus 0.0000

      captivity   414939   1 (7)
	      captivity 1.0000
	              a 0.0000
	             us 0.0000
	        private 0.0000
	            the 0.0000
	           </S> 0.0000
	              , 0.0000

         offers   414949   1 (6)
	         offers 1.0000
	              . 0.0000
	           </S> 0.0000
	          other 0.0000
	              , 0.0000
	              a 0.0000

       natixral   414987 inf (14)
	       national 1.0000
	         natira 1.0000
	          natia 0.8889
	       National 0.8889
	       naitural 0.8889
	       rational 0.8889
	           </S> 0.0000
	        conduct 0.0000
	              . 0.0000
	            own 0.0000
	              , 0.0000
	             or 0.0000
	              a 0.0000
	            and 0.0000

           evil   414996   1 (7)
	           evil 1.0000
	           even 0.7500
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	              . 0.0000
	            cia 0.0000

        Carriou   415035   1 (12)
	        Carrion 1.0000
	         Cariou 1.0000
	         Carrio 1.0000
	            non 0.0000
	           </S> 0.0000
	              , 0.0000
	              . 0.0000
	              X 0.0000
	              a 0.0000
	          major 0.0000
	           most 0.0000
	           City 0.0000

              -   415042   1 (7)
	              - 1.0000
	              . 0.9167
	              , 0.9167
	             us 0.8333
	             of 0.8333
	            the 0.0000
	           </S> 0.0000

           Crow   415043   1 (9)
	           Crow 1.0000
	           from 0.8182
	              . 0.0000
	              a 0.0000
	           </S> 0.0000
	       wrapping 0.0000
	              s 0.0000
	           this 0.0000
	             to 0.0000

          wings   415102   1 (10)
	          wings 1.0000
	           next 0.0000
	              a 0.0000
	           with 0.0000
	            own 0.0000
	           </S> 0.0000
	          minor 0.0000
	              , 0.0000
	           loan 0.0000
	        absence 0.0000

      regularly   415108   1 (7)
	      regularly 1.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	              . 0.0000
	         report 0.0000
	          banks 0.0000

           when   415136   1 (5)
	           when 1.0000
	           </S> 0.0000
	              } 0.0000
	              , 0.0000
	              a 0.0000

         wheels   415174   1 (9)
	         wheels 1.0000
	             us 0.0000
	          takes 0.0000
	          where 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	             be 0.0000
	     dispatched 0.0000

          walks   415222   1 (11)
	          walks 1.0000
	            was 0.8462
	         minors 0.0000
	             me 0.0000
	            the 0.0000
	              , 0.0000
	           </S> 0.0000
	         broken 0.0000
	           case 0.0000
	          Pales 0.0000
	              a 0.0000

          leaps   415248   1 (9)
	          leaps 1.0000
	          years 0.8182
	           lava 0.0000
	         please 0.0000
	              a 0.0000
	            the 0.0000
	            and 0.0000
	           </S> 0.0000
	       straight 0.0000

          wings   415279   1 (10)
	          wings 1.0000
	           hour 0.0000
	             up 0.0000
	            the 0.0000
	              a 0.0000
	           with 0.0000
	           </S> 0.0000
	          until 0.0000
	              , 0.0000
	          minor 0.0000

   nidification   415329   1 (10)
	   nidification 1.0000
	     submission 0.0000
	           some 0.0000
	             us 0.0000
	              a 0.0000
	            one 0.0000
	      Education 0.0000
	            the 0.0000
	              , 0.0000
	           </S> 0.0000

          Iwade   415539   1 (9)
	          Iwade 1.0000
	           made 0.9167
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	            the 0.0000
	             us 0.0000
	             or 0.0000
	           your 0.0000

           near   415545   1 (8)
	           near 1.0000
	            new 0.8182
	           </S> 0.0000
	              , 0.0000
	              . 0.0000
	              3 0.0000
	              a 0.0000
	            arz 0.0000

         Sheppy   415550 inf (10)
	        Sheppey 1.0000
	         Sheepy 1.0000
	         Cheppy 1.0000
	              , 0.0000
	             us 0.0000
	           </S> 0.0000
	           Shop 0.0000
	         future 0.0000
	            the 0.0000
	              a 0.0000

      consisted   415558   1 (8)
	      consisted 1.0000
	           </S> 0.0000
	              a 0.0000
	            one 0.0000
	            and 0.0000
	            the 0.0000
	          north 0.0000
	         system 0.0000

         tliree   415571   1 (12)
	         twires 1.0000
	          Tiree 1.0000
	           lire 1.0000
	          three 1.0000
	           tree 1.0000
	              , 0.0000
	           </S> 0.0000
	             us 0.0000
	            the 0.0000
	          tiler 0.0000
	       filliree 0.0000
	              a 0.0000

           full   415578   1 (8)
	           full 1.0000
	              , 0.0000
	           sala 0.0000
	              a 0.0000
	              . 0.0000
	            non 0.0000
	           </S> 0.0000
	         medium 0.0000

       yolkless   415608   1 (8)
	       yolkless 1.0000
	            the 0.0000
	           this 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	            you 0.0000
	             us 0.0000

            one   415617   1 (9)
	            one 1.0000
	         breeds 0.0000
	              a 0.0000
	             us 0.0000
	             of 0.0000
	           eggs 0.0000
	           </S> 0.0000
	              , 0.0000
	        hunting 0.0000

             it   415761   1 (5)
	             it 1.0000
	              a 0.0000
	              s 0.0000
	              , 0.0000
	           </S> 0.0000

              -   415835 inf (6)
	              ( 1.0000
	             of 0.9333
	             us 0.9333
	           </S> 0.0000
	            the 0.0000
	            and 0.0000

            but   415857   1 (6)
	            but 1.0000
	              } 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	             us 0.0000

             J.   415912 inf (8)
	             JR 1.0000
	              . 1.0000
	              " 0.9091
	              a 0.9091
	              , 0.9091
	            Jan 0.0000
	             us 0.0000
	           </S> 0.0000

         Pilley   415918   1 (8)
	         Pilley 1.0000
	         Miller 0.8182
	             22 0.0000
	          <UNK> 0.0000
	              , 0.0000
	           </S> 0.0000
	          Pales 0.0000
	              I 0.0000

      Zoologist   415940   1 (8)
	      Zoologist 1.0000
	              , 0.0000
	           </S> 0.0000
	          <UNK> 0.0000
	              ) 0.0000
	              s 0.0000
	              a 0.0000
	          could 0.0000

              "   415950   1 (6)
	              " 1.0000
	              , 0.9167
	              § 0.9167
	             us 0.8333
	           </S> 0.0000
	            the 0.0000

        meadows   416056   1 (11)
	        meadows 1.0000
	        Windows 0.7000
	      locations 0.0000
	          parts 0.0000
	          cases 0.0000
	           </S> 0.0000
	          major 0.0000
	              a 0.0000
	              , 0.0000
	             of 0.0000
	           time 0.0000

           dead   416119   1 (8)
	           dead 1.0000
	            the 0.0000
	           data 0.0000
	              a 0.0000
	            cia 0.0000
	              , 0.0000
	           </S> 0.0000
	      unsecured 0.0000

              -   416144   1 (5)
	              - 1.0000
	              , 0.9091
	             us 0.8182
	           </S> 0.0000
	            the 0.0000

       tussocks   416145   1 (10)
	       tussocks 1.0000
	           </S> 0.0000
	        through 0.0000
	          roots 0.0000
	              a 0.0000
	             to 0.0000
	              , 0.0000
	             up 0.0000
	    medications 0.0000
	              s 0.0000

         neatly   416226   1 (7)
	         neatly 1.0000
	         really 0.8000
	           </S> 0.0000
	              , 0.0000
	           that 0.0000
	              . 0.0000
	              a 0.0000

       smoothed   416233   1 (9)
	       smoothed 1.0000
	           </S> 0.0000
	              a 0.0000
	         broken 0.0000
	              , 0.0000
	           into 0.0000
	          other 0.0000
	          twice 0.0000
	            and 0.0000

         number   416257   1 (7)
	         number 1.0000
	             of 0.0000
	              , 0.0000
	            are 0.0000
	           </S> 0.0000
	              a 0.0000
	          price 0.0000

         clutch   416304   1 (11)
	         clutch 1.0000
	             of 0.0000
	              , 0.0000
	              a 0.0000
	            and 0.0000
	           time 0.0000
	           </S> 0.0000
	      travelers 0.0000
	    contributor 0.0000
	         change 0.0000
	          click 0.0000

            the   416412   1 (5)
	            the 1.0000
	              } 0.0000
	              , 0.0000
	             us 0.0000
	           </S> 0.0000

        consist   416499   1 (10)
	        consist 1.0000
	             of 0.0000
	        contact 0.0000
	       function 0.0000
	           form 0.0000
	      gradients 0.0000
	              a 0.0000
	            and 0.0000
	              , 0.0000
	           </S> 0.0000

           some   416578   1 (6)
	           some 1.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	              } 0.0000
	           sala 0.0000

           Crow   416676   1 (8)
	           Crow 1.0000
	           from 0.8333
	             is 0.0000
	              a 0.0000
	           </S> 0.0000
	            was 0.0000
	              , 0.0000
	            arz 0.0000

          pairs   416681   1 (8)
	          pairs 1.0000
	           part 0.8000
	              , 0.0000
	              a 0.0000
	             is 0.0000
	              . 0.0000
	           </S> 0.0000
	          parva 0.0000

        figured   416726   1 (8)
	        figured 1.0000
	              . 0.0000
	            are 0.0000
	              a 0.0000
	             is 0.0000
	              , 0.0000
	           </S> 0.0000
	          found 0.0000

          figs.   416748   1 (7)
	           figs 1.0000
	          first 0.9167
	              a 0.0000
	           </S> 0.0000
	              ( 0.0000
	            the 0.0000
	            and 0.0000

            233   416754 inf (8)
	             23 1.0000
	            the 0.8182
	              , 0.8182
	              a 0.8182
	              1 0.8182
	          plate 0.0000
	           </S> 0.0000
	             us 0.0000

           Farn   416784   1 (9)
	           Farn 1.0000
	            For 0.8000
	              , 0.0000
	         seller 0.0000
	              a 0.0000
	       Chairman 0.0000
	           Bush 0.0000
	           </S> 0.0000
	            arz 0.0000

             's   416788   1 (5)
	             's 1.0000
	             us 0.9091
	             is 0.9091
	              , 0.8182
	           </S> 0.0000

            236   416807 inf (7)
	              2 1.0000
	              , 0.9231
	             us 0.9231
	              a 0.9231
	            the 0.9231
	           </S> 0.0000
	       shipping 0.0000

        Frohawk   416828   1 (12)
	        Frohawk 1.0000
	          other 0.0000
	        program 0.0000
	             A. 0.0000
	              . 0.0000
	          world 0.0000
	           Bush 0.0000
	              a 0.0000
	       Basefsky 0.0000
	              , 0.0000
	           </S> 0.0000
	       Chairman 0.0000

             my   416840   1 (5)
	             my 1.0000
	              , 0.0000
	             us 0.0000
	           </S> 0.0000
	              a 0.0000

 characteristic   416876   1 (11)
	 characteristic 1.0000
	        warrant 0.2857
	        contact 0.2857
	          large 0.2143
	          lucky 0.0000
	            the 0.0000
	              , 0.0000
	             is 0.0000
	            not 0.0000
	           </S> 0.0000
	              a 0.0000

   representing   416910   1 (10)
	   representing 1.0000
	              , 0.0000
	             us 0.0000
	           here 0.0000
	              a 0.0000
	             to 0.0000
	            the 0.0000
	           </S> 0.0000
	      different 0.0000
	             it 0.0000

            but   417255   1 (6)
	            but 1.0000
	              a 0.0000
	              , 0.0000
	              } 0.0000
	           </S> 0.0000
	             us 0.0000

       mollusca   417327   1 (9)
	       mollusca 1.0000
	          music 0.0000
	              , 0.0000
	             it 0.0000
	             us 0.0000
	            the 0.0000
	         Monday 0.0000
	              a 0.0000
	           </S> 0.0000

       Sheppard   417411   1 (8)
	       Sheppard 1.0000
	          <UNK> 0.0000
	              a 0.0000
	           </S> 0.0000
	       Software 0.0000
	              , 0.0000
	             A. 0.0000
	       national 0.0000

        Whitear   417424 inf (13)
	        Whitean 1.0000
	         Whiter 1.0000
	      Whitetara 0.9167
	            the 0.0000
	            was 0.0000
	              , 0.0000
	        vMentor 0.0000
	              a 0.0000
	           pans 0.0000
	          woman 0.0000
	             us 0.0000
	           </S> 0.0000
	           year 0.0000

              )   417431   1 (8)
	              ) 1.0000
	              , 0.9286
	              . 0.9286
	             us 0.8571
	            and 0.0000
	            the 0.0000
	           </S> 0.0000
	      submitted 0.0000

          stale   417511   1 (7)
	          stale 1.0000
	          state 0.9231
	              a 0.0000
	              s 0.0000
	              , 0.0000
	              } 0.0000
	           </S> 0.0000

           fish   417517   1 (6)
	           fish 1.0000
	           find 0.8000
	              , 0.0000
	           </S> 0.0000
	              . 0.0000
	            cia 0.0000

        carrion   417548   1 (8)
	        carrion 1.0000
	            one 0.0000
	            can 0.0000
	            the 0.0000
	           most 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000

       devoured   417573   1 (8)
	       devoured 1.0000
	      available 0.0000
	       required 0.0000
	          items 0.0000
	              a 0.0000
	            not 0.0000
	              , 0.0000
	           </S> 0.0000

      greedil}'   417582   1 (10)
	       greedily 1.0000
	          great 0.5556
	           </S> 0.0000
	              a 0.0000
	             us 0.0000
	      available 0.0000
	             by 0.0000
	             to 0.0000
	         winner 0.0000
	              , 0.0000

              ,   417591   1 (4)
	              , 1.0000
	             us 0.8182
	           </S> 0.0000
	            the 0.0000

             as   417593   1 (8)
	             as 1.0000
	             us 0.9167
	            and 0.0000
	            the 0.0000
	              I 0.0000
	           very 0.0000
	          works 0.0000
	              " 0.0000

            lie   417652 inf (10)
	            lie 1.0000
	           like 0.9167
	          there 0.0000
	             of 0.0000
	             it 0.0000
	              , 0.0000
	            cia 0.0000
	              . 0.0000
	              a 0.0000
	           </S> 0.0000

         weakly   417729   1 (10)
	         weakly 1.0000
	              - 0.0000
	             us 0.0000
	              . 0.0000
	              , 0.0000
	           well 0.0000
	             as 0.0000
	           </S> 0.0000
	          short 0.0000
	              a 0.0000

           half   417736   1 (11)
	           half 1.0000
	           have 0.8182
	           hill 0.8182
	          shall 0.8182
	              a 0.0000
	            the 0.0000
	            non 0.0000
	        similar 0.0000
	              , 0.0000
	              s 0.0000
	           </S> 0.0000

              -   417740   1 (6)
	              - 1.0000
	              , 0.9000
	             of 0.8000
	             us 0.8000
	           </S> 0.0000
	            the 0.0000

            Mr.   417792   1 (8)
	             Mr 1.0000
	            Mrs 1.0000
	             My 0.8889
	              " 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	            arz 0.0000

             V.   417799 inf (9)
	             A. 1.0000
	              . 1.0000
	             VA 1.0000
	             .. 1.0000
	             of 0.9286
	              I 0.9286
	              , 0.9286
	           </S> 0.0000
	       Flanagan 0.0000

          Aplin   417802   1 (8)
	          Aplin 1.0000
	          April 0.8571
	              , 0.0000
	              I 0.0000
	           </S> 0.0000
	          <UNK> 0.0000
	        ROBERTS 0.0000
	          Aedon 0.0000

      Zoologist   417810   1 (8)
	      Zoologist 1.0000
	              s 0.0000
	           </S> 0.0000
	              , 0.0000
	              ) 0.0000
	          could 0.0000
	          <UNK> 0.0000
	              a 0.0000

              "   417820   1 (7)
	              " 1.0000
	              , 0.9167
	              § 0.9167
	             us 0.8333
	           </S> 0.0000
	            the 0.0000
	          <UNK> 0.0000

         bridle   417914   1 (9)
	         bridle 1.0000
	            ... 0.0000
	           fish 0.0000
	             of 0.0000
	          Price 0.0000
	           </S> 0.0000
	        railway 0.0000
	              , 0.0000
	              a 0.0000

      .standing   417926   1 (6)
	       standing 1.0000
	              a 0.0000
	           </S> 0.0000
	       training 0.0000
	              , 0.0000
	              - 0.0000

           near   417936   1 (7)
	           near 1.0000
	            new 0.7500
	             of 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	            arz 0.0000

    Clattercutt   417955 inf (8)
	     Clattercot 1.0000
	    Clattercote 1.0000
	          water 0.5000
	            the 0.3000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	             us 0.0000

      Reservoir   417967   1 (8)
	      Reservoir 1.0000
	       research 0.4000
	           room 0.3000
	           </S> 0.0000
	              , 0.0000
	              . 0.0000
	            and 0.0000
	              a 0.0000

            has   417977   1 (7)
	            has 1.0000
	           Dogs 0.0000
	             us 0.0000
	              , 0.0000
	              . 0.0000
	           </S> 0.0000
	              A 0.0000

        Carrion   418032   1 (10)
	        Carrion 1.0000
	              3 0.0000
	            non 0.0000
	              a 0.0000
	        service 0.0000
	            two 0.0000
	            the 0.0000
	          minor 0.0000
	              , 0.0000
	           </S> 0.0000

              -   418039   1 (6)
	              - 1.0000
	              . 0.9091
	              , 0.9091
	             us 0.8182
	           </S> 0.0000
	            the 0.0000

          Crows   418040   1 (8)
	          Crows 1.0000
	             up 0.0000
	             to 0.0000
	              . 0.0000
	           </S> 0.0000
	           from 0.0000
	              s 0.0000
	              a 0.0000

            One   418111   1 (7)
	            One 1.0000
	            one 0.9000
	              , 0.0000
	           </S> 0.0000
	             us 0.0000
	              " 0.0000
	              a 0.0000

          toads   418205   1 (10)
	          toads 1.0000
	              . 0.0000
	           that 0.0000
	              , 0.0000
	              a 0.0000
	        reasons 0.0000
	          books 0.0000
	           </S> 0.0000
	          years 0.0000
	          torax 0.0000

         partly   418233   1 (9)
	         partly 1.0000
	           part 0.8333
	              a 0.0000
	              , 0.0000
	              . 0.0000
	             of 0.0000
	           </S> 0.0000
	             's 0.0000
	          parva 0.0000

        fledged   418240   1 (8)
	        fledged 1.0000
	              , 0.0000
	           </S> 0.0000
	              s 0.0000
	           free 0.0000
	              a 0.0000
	        because 0.0000
	            the 0.0000

       nestling   418248   1 (7)
	       nestling 1.0000
	              , 0.0000
	           </S> 0.0000
	            the 0.0000
	              a 0.0000
	           Unix 0.0000
	        Listing 0.0000

          finch   418257   1 (9)
	          finch 1.0000
	           find 0.8333
	             in 0.0000
	              a 0.0000
	           </S> 0.0000
	         kernel 0.0000
	              , 0.0000
	         period 0.0000
	          minor 0.0000

           also   418264   1 (7)
	           also 1.0000
	            the 0.0000
	           </S> 0.0000
	           with 0.0000
	           alba 0.0000
	           from 0.0000
	              , 0.0000

      Partridge   418328   1 (9)
	      Partridge 1.0000
	              , 0.0000
	          Flora 0.0000
	           </S> 0.0000
	              a 0.0000
	            the 0.0000
	           more 0.0000
	          Cover 0.0000
	       Services 0.0000

         showed   418365   1 (8)
	         showed 1.0000
	         should 0.8333
	           mind 0.0000
	            the 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	        writing 0.0000

          perch   418402   1 (10)
	          perch 1.0000
	             by 0.0000
	              , 0.0000
	       possible 0.0000
	           </S> 0.0000
	        kitchen 0.0000
	              . 0.0000
	              a 0.0000
	          parva 0.0000
	           part 0.0000

           wing   418425   1 (11)
	           wing 1.0000
	           with 0.8571
	          minor 0.0000
	             of 0.0000
	              a 0.0000
	          signs 0.0000
	           </S> 0.0000
	              , 0.0000
	              - 0.0000
	           sign 0.0000
	          <UNK> 0.0000

      hurriedly   418485   1 (8)
	      hurriedly 1.0000
	           have 0.3000
	           </S> 0.0000
	       provided 0.0000
	             be 0.0000
	           been 0.0000
	              , 0.0000
	              a 0.0000

         croaks   418547   1 (8)
	         croaks 1.0000
	           </S> 0.0000
	              . 0.0000
	          Books 0.0000
	              , 0.0000
	          cries 0.0000
	              a 0.0000
	             he 0.0000

      expressed   418554   1 (7)
	      expressed 1.0000
	       expected 0.6667
	           </S> 0.0000
	              a 0.0000
	              . 0.0000
	              , 0.0000
	            and 0.0000

     banqueting   418603   1 (7)
	     banqueting 1.0000
	        January 0.3000
	              , 0.0000
	            own 0.0000
	              a 0.0000
	           </S> 0.0000
	      residence 0.0000

          ample   418693   1 (8)
	          ample 1.0000
	              a 0.0000
	              , 0.0000
	              I 0.0000
	             as 0.0000
	           </S> 0.0000
	          other 0.0000
	            are 0.0000

           Only   418732   1 (8)
	           Only 1.0000
	           only 0.9000
	              , 0.0000
	              / 0.0000
	           </S> 0.0000
	              a 0.0000
	              " 0.0000
	           sala 0.0000

          Crows   418788   1 (8)
	          Crows 1.0000
	              - 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	           from 0.0000
	          years 0.0000
	         Corvus 0.0000

    considering   418840   1 (9)
	    considering 1.0000
	            the 0.0000
	              , 0.0000
	           </S> 0.0000
	         within 0.0000
	             by 0.0000
	              a 0.0000
	             in 0.0000
	           that 0.0000

       wildfowl   418923   1 (8)
	       wildfowl 1.0000
	           will 0.7500
	            you 0.5625
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	            the 0.0000
	            DVD 0.0000

         j'oung   418947   1 (12)
	          young 1.0000
	          Young 1.0000
	         jagung 1.0000
	           jung 1.0000
	            own 0.0000
	           </S> 0.0000
	        posters 0.0000
	      customers 0.0000
	         jugong 0.0000
	          lives 0.0000
	              , 0.0000
	        website 0.0000

        Carrion   419033   1 (9)
	        Carrion 1.0000
	            sub 0.0000
	           same 0.0000
	              , 0.0000
	              A 0.0000
	           </S> 0.0000
	           City 0.0000
	            two 0.0000
	            non 0.0000

   considerable   419114   1 (7)
	   considerable 1.0000
	              , 0.0000
	        General 0.0000
	              . 0.0000
	              a 0.0000
	           </S> 0.0000
	            The 0.0000

        numbers   419129   1 (10)
	        numbers 1.0000
	         number 0.9231
	              a 0.0000
	         amount 0.0000
	           </S> 0.0000
	           will 0.0000
	        further 0.0000
	              , 0.0000
	            you 0.0000
	              : 0.0000

         arrive   419137   1 (9)
	         arrive 1.0000
	           </S> 0.0000
	              , 0.0000
	          above 0.0000
	          based 0.0000
	         listed 0.0000
	            are 0.0000
	              I 0.0000
	             of 0.0000

        Seebohm   419178   1 (6)
	        Seebohm 1.0000
	              , 0.0000
	            See 0.0000
	              " 0.0000
	           </S> 0.0000
	              a 0.0000

             's   419185   1 (6)
	             's 1.0000
	             is 0.9286
	             us 0.9286
	              , 0.8571
	              a 0.8571
	           </S> 0.0000

        Bonhote   419344 inf (14)
	        Benhote 1.0000
	         nonhot 0.9000
	       nonhotel 0.9000
	       Bonhomme 0.9000
	           list 0.0000
	              , 0.0000
	           </S> 0.0000
	           Bush 0.0000
	              a 0.0000
	            not 0.0000
	             J. 0.0000
	          world 0.0000
	             to 0.0000
	       Chairman 0.0000

             's   419351   1 (6)
	             's 1.0000
	             is 0.9167
	             us 0.9167
	              , 0.8333
	              a 0.8333
	           </S> 0.0000

   communicated   419366   1 (7)
	   communicated 1.0000
	           </S> 0.0000
	              a 0.0000
	             it 0.0000
	            and 0.0000
	            can 0.0000
	            the 0.0000

       November   419379   1 (6)
	       November 1.0000
	              , 0.0000
	             to 0.0000
	           over 0.0000
	              a 0.0000
	           </S> 0.0000

           1896   419393 inf (11)
	           1996 1.0000
	           1986 0.9444
	            the 0.8333
	              , 0.8333
	           2005 0.8333
	           </S> 0.8333
	              a 0.8333
	         writes 0.0000
	              s 0.0000
	          after 0.0000
	           said 0.0000

        Carrion   419418   1 (8)
	        Carrion 1.0000
	              , 0.0000
	              a 0.0000
	        service 0.0000
	            the 0.0000
	            non 0.0000
	          White 0.0000
	           </S> 0.0000

              -   419425   1 (7)
	              - 1.0000
	              . 0.9091
	              , 0.9091
	             us 0.8182
	           </S> 0.0000
	            the 0.0000
	       Counting 0.0000

          Crows   419426   1 (10)
	          Crows 1.0000
	             is 0.0000
	              . 0.0000
	           </S> 0.0000
	           site 0.0000
	              s 0.0000
	             to 0.0000
	              a 0.0000
	           they 0.0000
	           from 0.0000

            the   419461   1 (5)
	            the 1.0000
	             us 0.0000
	              , 0.0000
	              } 0.0000
	           </S> 0.0000

           when   419477   1 (7)
	           when 1.0000
	            flu 0.0000
	              - 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	             in 0.0000

        actions   419562   1 (7)
	        actions 1.0000
	              I 0.0000
	        against 0.0000
	              , 0.0000
	            for 0.0000
	             to 0.0000
	           </S> 0.0000

          moves   419593   1 (10)
	          moves 1.0000
	           more 0.8571
	             of 0.0000
	           </S> 0.0000
	              . 0.0000
	             be 0.0000
	              , 0.0000
	          Pales 0.0000
	              a 0.0000
	            had 0.0000

           bird   419625   1 (11)
	           bird 1.0000
	              " 0.0000
	              I 0.0000
	              , 0.0000
	         Soviet 0.0000
	             is 0.0000
	             of 0.0000
	           </S> 0.0000
	         attack 0.0000
	             by 0.0000
	            cia 0.0000

           Grey   419631   1 (10)
	           Grey 1.0000
	           free 0.8000
	          <UNK> 0.0000
	              - 0.0000
	              a 0.0000
	         Sheryl 0.0000
	           </S> 0.0000
	              s 0.0000
	           ICTY 0.0000
	             or 0.0000

           Crow   419636   1 (8)
	           Crow 1.0000
	           from 0.8182
	              ) 0.0000
	              , 0.0000
	              a 0.0000
	          Suede 0.0000
	           </S> 0.0000
	            arz 0.0000

         aviary   419722   1 (9)
	         aviary 1.0000
	             to 0.0000
	            are 0.0000
	             or 0.0000
	             of 0.0000
	              I 0.0000
	           </S> 0.0000
	          world 0.0000
	              , 0.0000

Familx-C0K]'I1K-E   419777 inf (8)
	           will 1.0000
	             -- 1.0000
	              - 0.5000
	         normal 0.5000
	              a 0.5000
	              , 0.0000
	              ) 0.0000
	           </S> 0.0000

              .   419794   1 (6)
	              . 1.0000
	              " 0.8889
	              , 0.8889
	             us 0.7778
	            the 0.0000
	           </S> 0.0000

        Collins   419815   2 (8)
	        Collins 1.0000
	           </S> 0.0000
	              " 0.0000
	              a 0.0000
	        College 0.0000
	              , 0.0000
	              / 0.0000
	         Corvus 0.0000

          comix   419823   1 (7)
	          comix 1.0000
	           come 0.8667
	              a 0.0000
	              , 0.0000
	         Street 0.0000
	           </S> 0.0000
	     Publishers 0.0000

           LiNN   419830 inf (13)
	            LNN 1.0000
	           LiNK 1.0000
	           List 0.9286
	           </S> 0.0000
	            yes 0.0000
	             pp 0.0000
	            the 0.0000
	              , 0.0000
	      Melbourne 0.0000
	            NiL 0.0000
	            cia 0.0000
	              a 0.0000
	          beast 0.0000

              .   419834   1 (6)
	              . 1.0000
	              , 0.9091
	             us 0.8182
	            the 0.0000
	           </S> 0.0000
	         stoich 0.0000

              "   419837 inf (6)
	              " 1.0000
	              - 0.9167
	              , 0.9167
	             us 0.8333
	            the 0.0000
	           </S> 0.0000

          ^OUND   419841 inf (10)
	            UND 1.0000
	            OUN 1.0000
	          COUNT 1.0000
	           YOUR 0.9091
	              a 0.0000
	           </S> 0.0000
	              " 0.0000
	              , 0.0000
	        popular 0.0000
	           UODN 0.0000

     throughout   419847   1 (5)
	     throughout 1.0000
	              , 0.0909
	           </S> 0.0909
	              a 0.0909
	              s 0.0000

         Europe   419858   1 (6)
	         Europe 1.0000
	           </S> 0.0000
	              a 0.0000
	            the 0.0000
	              , 0.0000
	         corone 0.0000

           loug   419879 inf (14)
	           loud 1.0000
	          lough 1.0000
	            lou 1.0000
	           your 0.9091
	             it 0.0000
	              , 0.0000
	           logu 0.0000
	          world 0.0000
	              a 0.0000
	           </S> 0.0000
	        country 0.0000
	            the 0.0000
	              . 0.0000
	           lava 0.0000

              .   419883   1 (6)
	              . 1.0000
	              , 0.9000
	             us 0.8000
	            the 0.0000
	          <UNK> 0.0000
	           </S> 0.0000

            10°   419885 inf (8)
	              1 1.0000
	              " 0.9091
	            the 0.9091
	              , 0.9091
	             us 0.9091
	              I 0.9091
	      ChangeLog 0.0000
	           </S> 0.0000

              ,   419888   1 (5)
	              , 1.0000
	             us 0.8667
	      configure 0.0000
	            the 0.0000
	           </S> 0.0000

            and   419890   1 (7)
	            and 1.0000
	              s 0.0000
	            the 0.0000
	           </S> 0.0000
	              , 0.0000
	           tako 0.0000
	        drepper 0.0000

             iu   419894   2 (6)
	             iu 1.0000
	             in 0.9231
	              , 0.0000
	           </S> 0.0000
	            the 0.0000
	              a 0.0000

           Asia   419897   1 (9)
	           Asia 1.0000
	             As 0.8333
	              s 0.0000
	              - 0.0000
	             it 0.0000
	              a 0.0000
	           </S> 0.0000
	              . 0.0000
	              , 0.0000

        extends   419902   1 (6)
	        extends 1.0000
	        extensa 0.8182
	         extent 0.8182
	           </S> 0.0000
	              , 0.0000
	              - 0.0000

              I   419910 inf (10)
	              : 1.0000
	             II 1.0000
	              , 1.0000
	             In 1.0000
	             MI 1.0000
	             to 0.0000
	             us 0.0000
	            the 0.0000
	           </S> 0.0000
	       students 0.0000

              '   419912 inf (7)
	             'm 1.0000
	              , 1.0000
	             us 0.8889
	           </S> 0.0000
	         headed 0.0000
	            the 0.0000
	           live 0.0000

      Turkestan   419923   1 (10)
	      Turkestan 1.0000
	              a 0.0000
	             it 0.0000
	             us 0.0000
	        Baghdad 0.0000
	              , 0.0000
	            the 0.0000
	           </S> 0.0000
	          great 0.0000
	           them 0.0000

      Palestine   419997   1 (10)
	      Palestine 1.0000
	         online 0.0000
	             it 0.0000
	           </S> 0.0000
	            the 0.0000
	              . 0.0000
	              a 0.0000
	             us 0.0000
	              , 0.0000
	          Laden 0.0000

       Examples   420019   1 (8)
	       Examples 1.0000
	        example 0.8000
	              , 0.0000
	              a 0.0000
	             us 0.0000
	           </S> 0.0000
	              " 0.0000
	      Treasures 0.0000

       replaced   420075   1 (9)
	       replaced 1.0000
	        related 0.8182
	              - 0.0000
	             us 0.0000
	           mare 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	       declined 0.0000

     capcllauns   420125 inf (14)
	     cabillauds 1.0000
	        callans 1.0000
	      calculans 1.0000
	       capellas 1.0000
	       capelans 1.0000
	     capillatus 1.0000
	        account 0.5714
	        elegans 0.4286
	              a 0.1429
	           </S> 0.0000
	            the 0.0000
	          <UNK> 0.0000
	              , 0.0000
	             to 0.0000

              ;   420136   1 (5)
	              ; 1.0000
	              , 0.9000
	             us 0.8000
	           </S> 0.0000
	            the 0.0000

            but   420138   1 (6)
	            but 1.0000
	             by 0.6000
	              ) 0.0000
	              } 0.0000
	             us 0.0000
	           </S> 0.0000

       Siberian   420142   1 (7)
	       Siberian 1.0000
	              a 0.0000
	              I 0.0000
	          their 0.0000
	            the 0.0000
	              , 0.0000
	           </S> 0.0000

          birds   420151   1 (10)
	          birds 1.0000
	        Huskies 0.0000
	          Husky 0.0000
	              a 0.0000
	           they 0.0000
	          first 0.0000
	              , 0.0000
	           </S> 0.0000
	            the 0.0000
	          Parus 0.0000

          birds   420201   1 (10)
	          birds 1.0000
	             of 0.0000
	            you 0.0000
	              , 0.0000
	           Gulf 0.0000
	          Parus 0.0000
	              a 0.0000
	          first 0.0000
	            rug 0.0000
	           </S> 0.0000

              -   420249   1 (6)
	              - 1.0000
	              , 0.9091
	             us 0.8182
	             he 0.8182
	           </S> 0.0000
	            the 0.0000

     Sceboli??!   420251 inf (14)
	        replied 1.0000
	          Click 0.8333
	             el 0.8333
	            old 0.8333
	          below 0.8333
	           said 0.6667
	              , 0.0000
	              a 0.0000
	  Subordination 0.0000
	              I 0.0000
	              " 0.0000
	              s 0.0000
	           </S> 0.0000
	           side 0.0000

              .   420261   1 (7)
	              . 1.0000
	              " 0.9333
	              , 0.9333
	              - 0.9333
	             us 0.8667
	            the 0.0000
	           </S> 0.0000

             An   420264   1 (7)
	             An 1.0000
	             AM 0.9091
	              " 0.0000
	              , 0.0000
	              I 0.0000
	           </S> 0.0000
	             us 0.0000

        England   420297   1 (7)
	        England 1.0000
	              a 0.0000
	        English 0.0000
	            the 0.0000
	            try 0.0000
	             us 0.0000
	    programmers 0.0000

         whilst   420379   1 (7)
	         whilst 1.0000
	          while 0.8462
	            dog 0.0000
	              , 0.0000
	              } 0.0000
	           </S> 0.0000
	              a 0.0000

     Throughout   420440 inf (8)
	     throughout 1.0000
	     Throughput 1.0000
	          There 0.2222
	              , 0.0000
	              " 0.0000
	              a 0.0000
	           </S> 0.0000
	              / 0.0000

  interbreeding   420529   1 (8)
	  interbreeding 1.0000
	          there 0.2308
	            the 0.1538
	            and 0.1538
	              ( 0.0000
	              a 0.0000
	            who 0.0000
	           </S> 0.0000

   occasionally   420543   1 (8)
	   occasionally 1.0000
	           only 0.3846
	        closely 0.3846
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	         freely 0.0000
	           with 0.0000

        Carrion   420565   1 (7)
	        Carrion 1.0000
	           same 0.0000
	              - 0.0000
	           </S> 0.0000
	            non 0.0000
	           City 0.0000
	              I 0.0000

       countr}^   420592   1 (8)
	        country 1.0000
	        countor 0.9000
	          South 0.7000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	             of 0.0000
	         Soviet 0.0000

            and   420601   1 (6)
	            and 1.0000
	              - 0.0000
	           </S> 0.0000
	              , 0.0000
	             of 0.0000
	            arz 0.0000

         Hooded   420628   1 (8)
	         Hooded 1.0000
	           </S> 0.0000
	             of 0.0000
	              , 0.0000
	              I 0.0000
	          Hotel 0.0000
	             DT 0.0000
	     homeowners 0.0000

      remainder   420744   1 (5)
	      remainder 1.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	              } 0.0000

        plumage   420757   1 (7)
	        plumage 1.0000
	         please 0.7500
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	            the 0.0000
	             us 0.0000

           ashy   420765   1 (9)
	           ashy 1.0000
	             as 0.8462
	           </S> 0.0000
	            non 0.0000
	              I 0.0000
	              . 0.0000
	           alba 0.0000
	              , 0.0000
	   professional 0.0000

       becoming   420855   1 (9)
	       becoming 1.0000
	          being 0.7273
	           </S> 0.0000
	              a 0.0000
	              ( 0.0000
	            was 0.0000
	            and 0.0000
	            the 0.0000
	            but 0.0000

           bill   420895   1 (7)
	           bill 1.0000
	           will 0.9000
	              } 0.0000
	              , 0.0000
	           </S> 0.0000
	            cia 0.0000
	              a 0.0000

           iris   420916   1 (8)
	           iris 1.0000
	             is 0.7778
	              } 0.0000
	           </S> 0.0000
	            and 0.0000
	              , 0.0000
	              a 0.0000
	             iu 0.0000

        browner   420971   1 (8)
	        browner 1.0000
	              , 0.0000
	           also 0.0000
	           </S> 0.0000
	              a 0.0000
	         before 0.0000
	            the 0.0000
	              I 0.0000

           bill   421015   1 (9)
	           bill 1.0000
	           will 0.9091
	          world 0.0000
	         system 0.0000
	            cia 0.0000
	           user 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000

        broader   421035   1 (8)
	        broader 1.0000
	              I 0.0000
	          order 0.0000
	            the 0.0000
	           only 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000

          lower   421082   1 (7)
	          lower 1.0000
	           than 0.0000
	              . 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	           long 0.0000

        Hoodies   421174   1 (8)
	        Hoodies 1.0000
	         Movies 0.0000
	              a 0.0000
	              - 0.0000
	           </S> 0.0000
	              , 0.0000
	              . 0.0000
	         Donors 0.0000

     southwards   421182   1 (6)
	     southwards 1.0000
	          South 0.5385
	         design 0.0000
	           </S> 0.0000
	              , 0.0000
	              T 0.0000

     visitation   421254   1 (11)
	     visitation 1.0000
	            and 0.0000
	     newsletter 0.0000
	     department 0.0000
	             to 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	              . 0.0000
	        version 0.0000
	          basis 0.0000

        Royston   421332   1 (8)
	        Royston 1.0000
	              , 0.0000
	            New 0.0000
	              " 0.0000
	         system 0.0000
	           </S> 0.0000
	              a 0.0000
	         Legend 0.0000

           Crow   421355   1 (13)
	           Crow 1.0000
	           from 0.8462
	    Camaroptera 0.0000
	              , 0.0000
	          Storm 0.0000
	              a 0.0000
	            arz 0.0000
	             by 0.0000
	              - 0.0000
	             is 0.0000
	           </S> 0.0000
	        sources 0.0000
	             up 0.0000

       arriving   421431   1 (10)
	       arriving 1.0000
	            and 0.0000
	            who 0.0000
	    information 0.0000
	             or 0.0000
	              I 0.0000
	            are 0.0000
	            the 0.0000
	              " 0.0000
	           </S> 0.0000

           They   421562   1 (6)
	           They 1.0000
	            The 0.8889
	              " 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000

       frequent   421567   1 (6)
	       frequent 1.0000
	       frequens 0.9000
	        request 0.8000
	              , 0.0000
	           </S> 0.0000
	            are 0.0000

         broads   421598   1 (10)
	         broads 1.0000
	          broad 0.9167
	           </S> 0.0000
	           same 0.0000
	              , 0.0000
	          story 0.0000
	           time 0.0000
	          major 0.0000
	           book 0.0000
	            hip 0.0000

        Norfolk   421831   1 (9)
	        Norfolk 1.0000
	           more 0.0000
	              a 0.0000
	            the 0.0000
	       ensuring 0.0000
	             us 0.0000
	              , 0.0000
	          those 0.0000
	           </S> 0.0000

         leaves   421869   1 (8)
	         leaves 1.0000
	          level 0.8333
	              . 0.0000
	           </S> 0.0000
	         around 0.0000
	             of 0.0000
	              , 0.0000
	           lava 0.0000

             iu   421892   2 (6)
	             iu 1.0000
	             in 0.9000
	              . 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000

       probably   421955   1 (6)
	       probably 1.0000
	              - 0.0000
	              , 0.0000
	        program 0.0000
	           </S> 0.0000
	              a 0.0000

        pr\-ing   422066   1 (13)
	         prying 1.0000
	        pricing 1.0000
	           ping 0.9000
	              , 0.0000
	              a 0.0000
	         piring 0.0000
	          point 0.0000
	        enemies 0.0000
	        display 0.0000
	        mailing 0.0000
	            own 0.0000
	           </S> 0.0000
	           prin 0.0000

          e\'es   422074   1 (11)
	           eses 1.0000
	           eyes 1.0000
	            ees 1.0000
	          esses 1.0000
	           even 0.9000
	              . 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	             es 0.0000
	          Pales 0.0000

            and   422080   1 (3)
	            and 1.0000
	            the 0.0000
	            arz 0.0000

    carnivorons   422084   1 (10)
	    carnivorous 1.0000
	    carnivorans 1.0000
	     carnivoros 1.0000
	      carnivoro 0.9000
	            can 0.3000
	           </S> 0.0000
	            the 0.0000
	              , 0.0000
	  materialistic 0.0000
	              a 0.0000

   propensities   422096   1 (8)
	   propensities 1.0000
	        process 0.5000
	           more 0.1667
	           </S> 0.0000
	              , 0.0000
	             us 0.0000
	              a 0.0000
	              . 0.0000

       liowever   422121   1 (12)
	        however 1.0000
	        However 1.0000
	         liever 1.0000
	        lowlier 0.9167
	             of 0.0000
	           </S> 0.0000
	            the 0.0000
	           like 0.0000
	          major 0.0000
	      therefore 0.0000
	              , 0.0000
	              a 0.0000

              j   422232 inf (9)
	              . 1.0000
	              , 1.0000
	             ja 1.0000
	             dj 1.0000
	           </S> 0.0000
	           been 0.0000
	             us 0.0000
	           fees 0.0000
	            the 0.0000

              -   422233   1 (8)
	              - 1.0000
	              . 0.9167
	              = 0.9167
	              , 0.9167
	             us 0.0000
	            the 0.0000
	           </S> 0.0000
	       behaving 0.0000

           ears   422234   1 (10)
	           ears 1.0000
	          years 0.9231
	              a 0.0000
	              . 0.0000
	           side 0.0000
	              s 0.0000
	           </S> 0.0000
	             up 0.0000
	             to 0.0000
	        sending 0.0000

            vSt   422287   1 (14)
	            vat 1.0000
	             vt 1.0000
	             St 1.0000
	           Svet 0.0000
	             me 0.0000
	              a 0.0000
	           </S> 0.0000
	             Eq 0.0000
	              , 0.0000
	            Svt 0.0000
	            the 0.0000
	           CliC 0.0000
	             to 0.0000
	             us 0.0000

              .   422290   1 (7)
	              . 1.0000
	              - 0.9333
	              , 0.9333
	             us 0.8667
	            St. 0.8667
	            the 0.0000
	           </S> 0.0000

           John   422292   1 (6)
	           John 1.0000
	              I 0.0000
	              , 0.0000
	              " 0.0000
	             It 0.0000
	           </S> 0.0000

       Mora}',"   422329 inf (9)
	             or 1.0000
	         Modern 1.0000
	          March 1.0000
	              a 0.8750
	              , 0.8750
	           </S> 0.0000
	       Colorado 0.0000
	            the 0.0000
	             us 0.0000

             p.   422338 inf (7)
	             pm 1.0000
	              . 1.0000
	             us 0.9167
	              a 0.9167
	             up 0.9167
	              , 0.9167
	           </S> 0.0000

    newlj'-boru   422359 inf (12)
	          never 1.0000
	            now 0.8000
	             or 0.8000
	          about 0.8000
	             no 0.8000
	            you 0.8000
	             me 0.6000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	      wonderful 0.0000
	              s 0.0000

          lambs   422371   1 (7)
	          lambs 1.0000
	              a 0.0000
	           </S> 0.0000
	             to 0.0000
	           last 0.0000
	              , 0.0000
	           lava 0.0000

             It   422450   1 (6)
	             It 1.0000
	             us 0.0000
	           </S> 0.0000
	              " 0.0000
	              a 0.0000
	              , 0.0000

         )-oung   422462   1 (9)
	          goung 1.0000
	          young 1.0000
	          found 0.9167
	              , 0.0000
	            the 0.0000
	            oun 0.0000
	              a 0.0000
	           </S> 0.0000
	             us 0.0000

         grouse   422469   1 (7)
	         grouse 1.0000
	         groups 0.8000
	              , 0.0000
	              a 0.0000
	           site 0.0000
	           </S> 0.0000
	        animals 0.0000

          vcr}'   422509   1 (9)
	            crv 1.0000
	            vcs 1.0000
	             vc 1.0000
	           very 1.0000
	              a 0.0000
	            not 0.0000
	           </S> 0.0000
	            the 0.0000
	              , 0.0000

    destructive   422515   1 (7)
	    destructive 1.0000
	              , 0.0000
	          going 0.0000
	       designed 0.0000
	             to 0.0000
	           </S> 0.0000
	              a 0.0000

             In   422549   1 (6)
	             In 1.0000
	              " 0.0000
	             us 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000

        certain   422552   1 (7)
	        certain 1.0000
	            the 0.0000
	              / 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	        Certhia 0.0000

        feeding   422560   1 (8)
	        feeding 1.0000
	              , 0.0000
	          being 0.0000
	        natural 0.0000
	           that 0.0000
	           </S> 0.0000
	          cases 0.0000
	              a 0.0000

             No   422667   1 (7)
	             No 1.0000
	              ) 0.0000
	              , 0.0000
	              s 0.0000
	              " 0.0000
	           </S> 0.0000
	              a 0.0000

           au}'   422708 inf (12)
	             au 1.0000
	           auto 1.0000
	            aua 1.0000
	            and 0.9600
	              a 0.9600
	          other 0.0000
	              , 0.0000
	           alba 0.0000
	              I 0.0000
	            the 0.0000
	            you 0.0000
	           </S> 0.0000

           bird   422713   1 (8)
	           bird 1.0000
	              . 0.0000
	           </S> 0.0000
	              , 0.0000
	             to 0.0000
	            cia 0.0000
	              a 0.0000
	             by 0.0000

          leave   422718   1 (11)
	          leave 1.0000
	          level 0.8333
	             in 0.0000
	         builds 0.0000
	          flaps 0.0000
	            flu 0.0000
	           </S> 0.0000
	             to 0.0000
	              , 0.0000
	              a 0.0000
	           lava 0.0000

         Hooded   422743   1 (9)
	         Hooded 1.0000
	         Holder 0.8000
	              . 0.0000
	           </S> 0.0000
	           same 0.0000
	          Hotel 0.0000
	          other 0.0000
	            way 0.0000
	       intended 0.0000

          often   422814   1 (7)
	          often 1.0000
	              . 0.0000
	          other 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	             of 0.0000

             iu   422847   2 (6)
	             iu 1.0000
	             in 0.9000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	             of 0.0000

            All   422874   1 (6)
	            All 1.0000
	              , 0.0000
	             us 0.0000
	              a 0.0000
	              " 0.0000
	           </S> 0.0000

           seem   422884   1 (8)
	           seem 1.0000
	            see 0.9000
	              a 0.0000
	       reserved 0.0000
	              , 0.0000
	            are 0.0000
	           </S> 0.0000
	           sala 0.0000

        Peewits   422908   1 (8)
	        Peewits 1.0000
	           with 0.0000
	    destination 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	            the 0.0000
	              I 0.0000

          Gulls   422917   1 (10)
	          Gulls 1.0000
	              x 0.0000
	              ( 0.0000
	           will 0.0000
	            the 0.0000
	            and 0.0000
	           </S> 0.0000
	      therefore 0.0000
	          rufus 0.0000
	              a 0.0000

      Redshanks   422924   1 (9)
	      Redshanks 1.0000
	          Terns 0.5385
	           that 0.4615
	              x 0.0000
	      workshops 0.0000
	              a 0.0000
	            the 0.0000
	              , 0.0000
	      therefore 0.0000

           etc.   422935   1 (9)
	           etc. 1.0000
	           each 0.9048
	          <UNK> 0.0000
	      therefore 0.0000
	            the 0.0000
	              , 0.0000
	              i 0.0000
	            Jen 0.0000
	           Pica 0.0000

         attack   422941   1 (8)
	         attack 1.0000
	            and 0.0000
	           back 0.0000
	           </S> 0.0000
	              , 0.0000
	              I 0.0000
	            but 0.0000
	            the 0.0000

      furiously   422953   1 (7)
	      furiously 1.0000
	      seriously 0.8182
	              a 0.0000
	           </S> 0.0000
	             of 0.0000
	          major 0.0000
	              , 0.0000

           an\'   422963 inf (9)
	            and 1.0000
	             an 1.0000
	           anna 1.0000
	              , 0.0000
	           </S> 0.0000
	              . 0.0000
	            the 0.0000
	           alba 0.0000
	              I 0.0000

           Crow   422968   1 (6)
	           Crow 1.0000
	           from 0.8182
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	            arz 0.0000

          which   422973   1 (6)
	          which 1.0000
	          white 0.8182
	          South 0.0000
	              , 0.0000
	           </S> 0.0000
	           Pica 0.0000

        hunting   422988   1 (9)
	        hunting 1.0000
	            the 0.0000
	              . 0.0000
	             us 0.0000
	         during 0.0000
	             as 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000

      destro3-s   423066   1 (11)
	       destroys 1.0000
	         destro 0.8889
	      destrosso 0.8889
	           </S> 0.0000
	           more 0.0000
	          minor 0.0000
	          geese 0.0000
	           from 0.0000
	            the 0.0000
	              a 0.0000
	              , 0.0000

          great   423076   1 (8)
	          great 1.0000
	           </S> 0.0000
	       security 0.0000
	              . 0.0000
	              , 0.0000
	             us 0.0000
	              a 0.0000
	          phone 0.0000

        osprc}'   423187   1 (9)
	         osprey 1.0000
	          other 0.7000
	              , 0.6000
	            the 0.6000
	           </S> 0.6000
	              a 0.6000
	            not 0.0000
	           both 0.0000
	      otherwise 0.0000

         happen   423216   1 (9)
	         happen 1.0000
	              a 0.0000
	           have 0.0000
	            are 0.0000
	              , 0.0000
	            not 0.0000
	       guardian 0.0000
	              s 0.0000
	           </S> 0.0000

         Redcar   423276   1 (9)
	         Redcar 1.0000
	    Underground 0.0000
	              , 0.0000
	             us 0.0000
	              a 0.0000
	            the 0.0000
	           Read 0.0000
	              $ 0.0000
	           </S> 0.0000

      Zoologist   423286   1 (8)
	      Zoologist 1.0000
	          could 0.0000
	              ) 0.0000
	           </S> 0.0000
	              , 0.0000
	          <UNK> 0.0000
	              s 0.0000
	              a 0.0000

              "   423296   1 (7)
	              " 1.0000
	              , 0.9167
	              § 0.9167
	             us 0.8333
	           </S> 0.0000
	            the 0.0000
	            pub 0.0000

        Hoodies   423344   1 (10)
	        Hoodies 1.0000
	            the 0.0000
	   publications 0.0000
	           Jews 0.0000
	              , 0.0000
	              a 0.0000
	         photos 0.0000
	           good 0.0000
	             us 0.0000
	           </S> 0.0000

        Messrs.   423390   1 (8)
	         Messrs 1.0000
	            the 0.0000
	              , 0.0000
	              a 0.0000
	           2005 0.0000
	            and 0.0000
	         search 0.0000
	           </S> 0.0000

             T.   423398   1 (7)
	             T. 1.0000
	             A. 0.9167
	             To 0.9167
	              , 0.8333
	              a 0.8333
	         Robert 0.0000
	           </S> 0.0000

        Pilling   423419   1 (8)
	        Pilling 1.0000
	           will 0.0000
	              , 0.0000
	              . 0.0000
	              a 0.0000
	             P. 0.0000
	           Last 0.0000
	           </S> 0.0000

        observe   423427   1 (8)
	        observe 1.0000
	       observed 0.9167
	              a 0.0000
	        Subject 0.0000
	              , 0.0000
	             A. 0.0000
	           </S> 0.0000
	        Updated 0.0000

        Hoodies   423443   1 (10)
	        Hoodies 1.0000
	        changes 0.0000
	              a 0.0000
	           book 0.0000
	           </S> 0.0000
	         people 0.0000
	              , 0.0000
	      following 0.0000
	              " 0.0000
	         stakes 0.0000

        largest   423476   1 (7)
	        largest 1.0000
	          large 0.8333
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	             us 0.0000
	            the 0.0000

          thick   423499   1 (9)
	          thick 1.0000
	          think 0.9286
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	            the 0.0000
	         chilly 0.0000
	      inclement 0.0000
	           Pica 0.0000

        Seebohm   423552   1 (6)
	        Seebohm 1.0000
	            the 0.0000
	           </S> 0.0000
	              a 0.0000
	           both 0.0000
	             us 0.0000

           this   423560   1 (6)
	           this 1.0000
	            the 0.8462
	            cia 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000

            b}'   423582   1 (8)
	             bb 1.0000
	             by 1.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	            the 0.0000
	             to 0.0000
	             us 0.0000

           da\-   423586   1 (9)
	             da 1.0000
	            day 1.0000
	            dad 1.0000
	              , 0.0000
	              a 0.0000
	            the 0.0000
	           </S> 0.0000
	          blogs 0.0000
	           lava 0.0000

              ,   423590 inf (3)
	             of 1.0000
	             us 1.0000
	            the 0.0000

            and   423592   1 (4)
	            and 1.0000
	           your 0.0000
	            the 0.0000
	            arz 0.0000

          Gatke   423596 inf (11)
	          Gatka 1.0000
	           Gate 1.0000
	           make 0.9231
	              , 0.0000
	            the 0.0000
	           </S> 0.0000
	             he 0.0000
	              a 0.0000
	        Gataket 0.0000
	            she 0.0000
	     warranties 0.0000

           says   423602   1 (9)
	           says 1.0000
	           said 0.8182
	        include 0.0000
	              , 0.0000
	              . 0.0000
	           </S> 0.0000
	           sala 0.0000
	           ASIN 0.0000
	              a 0.0000

      commences   423671   1 (6)
	      commences 1.0000
	       comments 0.8333
	           </S> 0.0000
	              a 0.0000
	             of 0.0000
	              , 0.0000

            the   423775   1 (5)
	            the 1.0000
	           </S> 0.0000
	             us 0.0000
	              , 0.0000
	              } 0.0000

     consisting   423825   1 (8)
	     consisting 1.0000
	            one 0.0000
	              ( 0.0000
	              a 0.0000
	            the 0.0000
	            and 0.0000
	           </S> 0.0000
	         online 0.0000

      continues   423893   1 (8)
	      continues 1.0000
	     trademarks 0.0000
	            the 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	        contact 0.0000
	           that 0.0000

      scarcel}^   423988   1 (10)
	       scarcely 1.0000
	      scarselle 0.8889
	         search 0.6667
	              a 0.0000
	             be 0.0000
	           </S> 0.0000
	         result 0.0000
	           live 0.0000
	              , 0.0000
	            not 0.0000

         assume   424022   1 (9)
	         assume 1.0000
	       provided 0.0000
	            the 0.0000
	              - 0.0000
	           same 0.0000
	           </S> 0.0000
	              I 0.0000
	             so 0.0000
	            and 0.0000

     Heligoland   424113   1 (11)
	     Heligoland 1.0000
	        section 0.4167
	         people 0.3333
	              - 0.0000
	        changes 0.0000
	           that 0.0000
	             us 0.0000
	              a 0.0000
	           </S> 0.0000
	            the 0.0000
	              , 0.0000

     migrations   424255   1 (10)
	     migrations 1.0000
	              a 0.0000
	            set 0.0000
	          think 0.0000
	           many 0.0000
	        options 0.0000
	              ) 0.0000
	            was 0.0000
	           </S> 0.0000
	              , 0.0000

          eight   424346   1 (7)
	          eight 1.0000
	          right 0.9000
	           </S> 0.0000
	              . 0.0000
	              , 0.0000
	              a 0.0000
	       neighbor 0.0000

         extend   424442   1 (10)
	         extend 1.0000
	             of 0.0000
	           </S> 0.0000
	              . 0.0000
	              , 0.0000
	            Act 0.0000
	           city 0.0000
	           even 0.0000
	              ) 0.0000
	              a 0.0000

          while   424450   1 (6)
	          while 1.0000
	              , 0.0000
	     moratorium 0.0000
	           </S> 0.0000
	              } 0.0000
	              a 0.0000

simultaneous!}'   424481   1 (10)
	 simultaneously 1.0000
	   simultaneous 1.0000
	         photos 0.2500
	         should 0.2500
	            the 0.1667
	            and 0.1667
	              " 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000

            and   424497   1 (6)
	            and 1.0000
	              , 0.0000
	           </S> 0.0000
	             it 0.0000
	            the 0.0000
	            arz 0.0000

    Bremerhaven   424554   1 (9)
	    Bremerhaven 1.0000
	        America 0.2727
	            the 0.1818
	       possible 0.0000
	           </S> 0.0000
	           well 0.0000
	              , 0.0000
	              a 0.0000
	              I 0.0000

             as   424567   1 (8)
	             as 1.0000
	             us 0.9231
	              ( 0.0000
	          which 0.0000
	           </S> 0.0000
	              I 0.0000
	            and 0.0000
	            the 0.0000

          plies   424618   1 (11)
	          plies 1.0000
	           </S> 0.0000
	            the 0.0000
	              , 0.0000
	              a 0.0000
	          place 0.0000
	              . 0.0000
	           like 0.0000
	       features 0.0000
	             to 0.0000
	          Pales 0.0000

             We   424666   1 (6)
	             We 1.0000
	             us 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	              " 0.0000

      migration   424680   1 (11)
	      migration 1.0000
	           free 0.0000
	           wide 0.0000
	              , 0.0000
	      migratory 0.0000
	        million 0.0000
	         screen 0.0000
	          major 0.0000
	            new 0.0000
	         single 0.0000
	           </S> 0.0000

         column   424690   1 (9)
	         column 1.0000
	          could 0.0000
	           path 0.0000
	          range 0.0000
	            res 0.0000
	             of 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000

           Herr   424753   1 (7)
	           Herr 1.0000
	           Help 0.8333
	              a 0.0000
	           </S> 0.0000
	              ) 0.0000
	              , 0.0000
	            arz 0.0000

          Gatke   424758 inf (10)
	          Gatka 1.0000
	           Gate 1.0000
	              " 0.0000
	          Games 0.0000
	        Gataket 0.0000
	              , 0.0000
	              a 0.0000
	           then 0.0000
	             M. 0.0000
	           </S> 0.0000

       proceeds   424764   1 (6)
	       proceeds 1.0000
	             J. 0.0000
	           </S> 0.0000
	              , 0.0000
	          Ringe 0.0000
	              a 0.0000

   nevertheless   424932   1 (6)
	   nevertheless 1.0000
	          there 0.3333
	             us 0.0833
	              , 0.0000
	           </S> 0.0000
	              a 0.0000

      important   424990   1 (10)
	      important 1.0000
	            and 0.0000
	            the 0.0000
	             as 0.0000
	           more 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	   respectively 0.0000
	              s 0.0000

             as   425002   1 (6)
	             as 1.0000
	             us 0.9091
	              } 0.0000
	           </S> 0.0000
	              , 0.0000
	              I 0.0000

          Crows   425227   1 (11)
	          Crows 1.0000
	              a 0.0000
	         Corvus 0.0000
	       variable 0.0000
	            are 0.0000
	         people 0.0000
	           from 0.0000
	           </S> 0.0000
	         issues 0.0000
	              . 0.0000
	              , 0.0000

       econom_v   425240   1 (12)
	       economic 1.0000
	        economy 1.0000
	        econome 1.0000
	      oeconomus 0.9167
	            end 0.6667
	         School 0.6667
	           </S> 0.0000
	            use 0.0000
	              , 0.0000
	           case 0.0000
	           same 0.0000
	          state 0.0000

    Evcr\'where   425260   1 (8)
	     Everywhere 1.0000
	          where 0.6250
	            and 0.0000
	              " 0.0000
	           </S> 0.0000
	              , 0.0000
	             us 0.0000
	              a 0.0000

            the   425272   1 (4)
	            the 1.0000
	             us 0.0000
	              , 0.0000
	           </S> 0.0000

        creates   425296   1 (9)
	        creates 1.0000
	             of 0.0000
	              a 0.0000
	          after 0.0000
	           </S> 0.0000
	              , 0.0000
	             in 0.0000
	              . 0.0000
	            and 0.0000

      altliough   425421   1 (8)
	       although 1.0000
	         though 0.8000
	        through 0.8000
	           with 0.5000
	            the 0.4000
	              I 0.0000
	           </S> 0.0000
	              , 0.0000

          snuiU   425471 inf (11)
	          snuif 1.0000
	           </S> 0.0000
	              , 0.0000
	           said 0.0000
	           than 0.0000
	        product 0.0000
	              . 0.0000
	       wildlife 0.0000
	          major 0.0000
	              a 0.0000
	          Unsui 0.0000

        species   425477   1 (7)
	        species 1.0000
	        special 0.8182
	           </S> 0.0000
	              , 0.0000
	              . 0.0000
	              a 0.0000
	        suecica 0.0000

   nevertheless   425572   1 (7)
	   nevertheless 1.0000
	          these 0.3846
	           </S> 0.0000
	             us 0.0000
	              , 0.0000
	              } 0.0000
	              a 0.0000

            all   425585   1 (5)
	            all 1.0000
	           </S> 0.0000
	              I 0.0000
	           alba 0.0000
	              , 0.0000

         Ital}'   425654   1 (11)
	          Italy 1.0000
	          Itala 1.0000
	           Ital 1.0000
	           more 0.0000
	              , 0.0000
	            the 0.0000
	            use 0.0000
	           </S> 0.0000
	           that 0.0000
	             us 0.0000
	              a 0.0000

         during   425661   1 (7)
	         during 1.0000
	           than 0.0000
	             to 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	         dubius 0.0000

      migration   425681   1 (10)
	      migration 1.0000
	           </S> 0.0000
	              , 0.0000
	    information 0.0000
	              a 0.0000
	            the 0.0000
	        package 0.0000
	           year 0.0000
	             us 0.0000
	          cycle 0.0000

      scarcel}'   425705   1 (8)
	       scarcely 1.0000
	      scarselle 0.8889
	         should 0.4444
	           have 0.4444
	             be 0.3333
	              a 0.3333
	              , 0.0000
	           </S> 0.0000

          equal   425715   1 (9)
	          equal 1.0000
	           that 0.0000
	             to 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	             in 0.0000
	           eBay 0.0000
	             us 0.0000

      destroyed   425756   1 (8)
	      destroyed 1.0000
	           </S> 0.0000
	             of 0.0000
	             us 0.0000
	              . 0.0000
	        through 0.0000
	              , 0.0000
	              a 0.0000

            b}-   425766   1 (7)
	             by 1.0000
	              - 1.0000
	             us 0.0000
	              a 0.0000
	           </S> 0.0000
	              . 0.0000
	              , 0.0000

            the   425770   1 (4)
	            the 1.0000
	             us 0.0000
	              , 0.0000
	           </S> 0.0000

         Hooded   425774   1 (7)
	         Hooded 1.0000
	           </S> 0.0000
	          world 0.0000
	          Hotel 0.0000
	              - 0.0000
	           same 0.0000
	           time 0.0000

         during   425787   1 (6)
	         during 1.0000
	              , 0.0000
	            are 0.0000
	           </S> 0.0000
	              a 0.0000
	         dubius 0.0000

         Hooded   425872   1 (8)
	         Hooded 1.0000
	           each 0.0000
	           </S> 0.0000
	            the 0.0000
	              a 0.0000
	              , 0.0000
	             us 0.0000
	          Hotel 0.0000

        becomes   425885   1 (4)
	        becomes 1.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000

        nowhere   425893   1 (6)
	        nowhere 1.0000
	          where 0.8462
	           </S> 0.0000
	           more 0.0000
	              , 0.0000
	              a 0.0000

   prepondering   425918 inf (10)
	    preordering 1.0000
	   preponderant 1.0000
	 preponderating 1.0000
	      pondering 0.9000
	       property 0.5000
	          major 0.0000
	              , 0.0000
	              a 0.0000
	             as 0.0000
	           </S> 0.0000

       quantity   425931   1 (7)
	       quantity 1.0000
	        quality 0.8182
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	            the 0.0000
	            way 0.0000

     Heligoland   425946   1 (10)
	     Heligoland 1.0000
	            and 0.4167
	           </S> 0.0000
	              , 0.0000
	            the 0.0000
	              a 0.0000
	           part 0.0000
	          Sinai 0.0000
	             us 0.0000
	         France 0.0000

            but   426031   1 (6)
	            but 1.0000
	             us 0.0000
	              a 0.0000
	           </S> 0.0000
	              } 0.0000
	              , 0.0000

         during   426110   1 (8)
	         during 1.0000
	              , 0.0000
	         couple 0.0000
	            the 0.0000
	           </S> 0.0000
	              a 0.0000
	              : 0.0000
	         dubius 0.0000

        impedes   426243   1 (9)
	        impedes 1.0000
	           with 0.0000
	            and 0.0000
	            its 0.0000
	             or 0.0000
	            the 0.0000
	              ( 0.0000
	              a 0.0000
	           </S> 0.0000

            and   426262   1 (5)
	            and 1.0000
	              , 0.0000
	              } 0.0000
	           </S> 0.0000
	            arz 0.0000

       impudent   426324   1 (9)
	       impudent 1.0000
	            the 0.0000
	          under 0.0000
	            and 0.0000
	         please 0.0000
	           </S> 0.0000
	              a 0.0000
	           such 0.0000
	              ( 0.0000

          thej^   426336   1 (8)
	          thyej 1.0000
	            the 1.0000
	          kthej 1.0000
	          their 1.0000
	           they 1.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000

            are   426342   1 (8)
	            are 1.0000
	             as 0.0000
	            arz 0.0000
	            and 0.0000
	              I 0.0000
	             is 0.0000
	           </S> 0.0000
	              , 0.0000

            da3   426394   4 (14)
	             da 1.0000
	            day 1.0000
	            dad 1.0000
	              a 0.9091
	           days 0.9091
	             do 0.9091
	            BBQ 0.0000
	         months 0.0000
	              , 0.0000
	              . 0.0000
	           term 0.0000
	           </S> 0.0000
	            cia 0.0000
	             of 0.0000

             's   426397   1 (9)
	             's 1.0000
	             us 0.9000
	             is 0.9000
	              : 0.8000
	              , 0.8000
	              a 0.8000
	            day 0.0000
	         winter 0.0000
	           </S> 0.0000

         earl}^   426406   1 (10)
	          earle 1.0000
	          early 1.0000
	           earl 1.0000
	         before 0.0000
	            the 0.0000
	             us 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	           each 0.0000

           dawn   426413   1 (7)
	           dawn 1.0000
	            day 0.8000
	             am 0.0000
	              a 0.0000
	           lava 0.0000
	              , 0.0000
	           </S> 0.0000

        plunder   426433   1 (8)
	        plunder 1.0000
	          under 0.8000
	             in 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	              I 0.0000
	            the 0.0000

           Lark   426476   1 (11)
	           Lark 1.0000
	           Last 0.8182
	           part 0.8182
	           </S> 0.0000
	              , 0.0000
	            way 0.0000
	            top 0.0000
	      beginning 0.0000
	           same 0.0000
	          right 0.0000
	            arz 0.0000

        Dresser   426495   1 (8)
	        Dresser 1.0000
	           </S> 0.0000
	          <UNK> 0.0000
	          Press 0.0000
	              . 0.0000
	              s 0.0000
	              a 0.0000
	              3 0.0000

         wonder   426522   1 (8)
	         wonder 1.0000
	          under 0.8000
	             to 0.0000
	           </S> 0.0000
	              a 0.0000
	        thought 0.0000
	             us 0.0000
	              , 0.0000

         Hooded   426572   1 (8)
	         Hooded 1.0000
	              , 0.0000
	           </S> 0.0000
	              . 0.0000
	            the 0.0000
	              a 0.0000
	          Hotel 0.0000
	             us 0.0000

           left   426586   1 (10)
	           left 1.0000
	              A 0.0000
	             or 0.0000
	           lava 0.0000
	            the 0.0000
	              , 0.0000
	            why 0.0000
	           like 0.0000
	          while 0.0000
	            The 0.0000

             By   426605   1 (7)
	             By 1.0000
	             by 0.9000
	           </S> 0.0000
	              s 0.0000
	              " 0.0000
	              , 0.0000
	              a 0.0000

            bj^   426711   3 (10)
	             bj 1.0000
	            bja 1.0000
	             by 0.9000
	         simply 0.0000
	           </S> 0.0000
	              , 0.0000
	             us 0.0000
	          those 0.0000
	              a 0.0000
	             in 0.0000

     abstaining   426715   1 (7)
	     abstaining 1.0000
	        against 0.4000
	              I 0.0000
	           </S> 0.0000
	             us 0.0000
	            the 0.0000
	              , 0.0000

           an}-   426742 inf (9)
	            and 1.0000
	             an 1.0000
	           anna 1.0000
	           very 0.0000
	            the 0.0000
	              , 0.0000
	           alba 0.0000
	              I 0.0000
	           </S> 0.0000

          small   426747   1 (6)
	          small 1.0000
	           sala 0.8462
	              , 0.0000
	              . 0.0000
	              a 0.0000
	           </S> 0.0000

      shrubbery   426753   1 (7)
	      shrubbery 1.0000
	        numbers 0.6154
	              , 0.0000
	              a 0.0000
	         groups 0.0000
	       business 0.0000
	           </S> 0.0000

       songster   426838   1 (10)
	       songster 1.0000
	             as 0.0000
	              , 0.0000
	             us 0.0000
	             of 0.0000
	          after 0.0000
	            the 0.0000
	              a 0.0000
	           </S> 0.0000
	            way 0.0000

              a   426847   1 (6)
	              a 1.0000
	              , 0.9091
	             us 0.0000
	             of 0.0000
	           </S> 0.0000
	            the 0.0000

           nook   426856   1 (10)
	           nook 1.0000
	            not 0.8462
	          point 0.0000
	          known 0.0000
	              . 0.0000
	             of 0.0000
	           list 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000

          above   426875   1 (6)
	          above 1.0000
	              , 0.0000
	           </S> 0.0000
	              I 0.0000
	              } 0.0000
	        arborea 0.0000

     compassing   426916   1 (10)
	     compassing 1.0000
	           your 0.0000
	          using 0.0000
	          least 0.0000
	           </S> 0.0000
	              , 0.0000
	      improving 0.0000
	             us 0.0000
	            the 0.0000
	              a 0.0000

         Hooded   426946   1 (8)
	         Hooded 1.0000
	             us 0.0000
	              a 0.0000
	          Hotel 0.0000
	              , 0.0000
	           </S> 0.0000
	            the 0.0000
	            Two 0.0000

   unsparingl}'   426959   1 (7)
	    unsparingly 1.0000
	         during 0.5000
	              a 0.2500
	              s 0.2500
	           Nest 0.0000
	           </S> 0.0000
	              , 0.0000

              ,   426971   1 (4)
	              , 1.0000
	             us 0.8333
	            the 0.0000
	           </S> 0.0000

          3'ear   426973   1 (9)
	            ear 1.0000
	           rear 1.0000
	           year 1.0000
	           </S> 0.0000
	             or 0.0000
	            the 0.0000
	              a 0.0000
	            NSW 0.0000
	           zoom 0.0000

             in   426979   1 (5)
	             in 1.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	             iu 0.0000

            b}'   426992   1 (9)
	             by 1.0000
	              ' 1.0000
	             us 0.0000
	           </S> 0.0000
	            and 0.0000
	            the 0.0000
	           with 0.0000
	              a 0.0000
	              , 0.0000

            all   426996   1 (7)
	            all 1.0000
	            the 0.0000
	              I 0.0000
	           alba 0.0000
	             of 0.0000
	              , 0.0000
	           </S> 0.0000

   nidification   427039   1 (8)
	   nidification 1.0000
	           </S> 0.0000
	        purpose 0.0000
	    information 0.0000
	     University 0.0000
	              , 0.0000
	              " 0.0000
	              a 0.0000

             in   427108   1 (6)
	             in 1.0000
	           </S> 0.0000
	             iu 0.0000
	              a 0.0000
	              , 0.0000
	              } 0.0000

        Ireland   427111   1 (9)
	        Ireland 1.0000
	            and 0.0000
	              , 0.0000
	            the 0.0000
	             us 0.0000
	          which 0.0000
	           </S> 0.0000
	           what 0.0000
	              a 0.0000

            the   427182   1 (5)
	            the 1.0000
	              , 0.0000
	           </S> 0.0000
	             us 0.0000
	              } 0.0000

         coroue   427223   1 (13)
	         corone 1.0000
	         coroun 1.0000
	         corrue 1.0000
	          corou 1.0000
	        elegans 0.0000
	          <UNK> 0.0000
	              , 0.0000
	              a 0.0000
	        Sassoon 0.0000
	           </S> 0.0000
	              . 0.0000
	          Group 0.0000
	    information 0.0000

            and   427231   1 (7)
	            and 1.0000
	          which 0.0000
	             S. 0.0000
	              s 0.0000
	           </S> 0.0000
	             it 0.0000
	            the 0.0000

      according   427313   1 (8)
	      according 1.0000
	              I 0.0000
	              ( 0.0000
	            the 0.0000
	             or 0.0000
	           </S> 0.0000
	         online 0.0000
	            and 0.0000

     precisel}^   427345   1 (8)
	      precisely 1.0000
	       provided 0.6923
	              a 0.0000
	              , 0.0000
	           just 0.0000
	           much 0.0000
	           </S> 0.0000
	            not 0.0000

           like   427356   1 (7)
	           like 1.0000
	           </S> 0.0000
	             to 0.0000
	           lava 0.0000
	              , 0.0000
	              a 0.0000
	    necessarily 0.0000

         coronc   427448   1 (12)
	         corona 1.0000
	         corono 1.0000
	         corone 1.0000
	          coron 1.0000
	              , 0.0000
	        company 0.0000
	              a 0.0000
	          There 0.0000
	              . 0.0000
	        Koronco 0.0000
	           </S> 0.0000
	            who 0.0000

            are   427455   1 (5)
	            are 1.0000
	              , 0.0000
	           </S> 0.0000
	              s 0.0000
	              I 0.0000

            but   427505   1 (7)
	            but 1.0000
	              , 0.0000
	              a 0.0000
	              } 0.0000
	           </S> 0.0000
	             us 0.0000
	            the 0.0000

         Hooded   427513   1 (9)
	         Hooded 1.0000
	            way 0.0000
	              a 0.0000
	           same 0.0000
	              - 0.0000
	          major 0.0000
	           real 0.0000
	          Hotel 0.0000
	           </S> 0.0000

          Dixon   427563   1 (8)
	          Dixon 1.0000
	           Sign 0.0000
	              , 0.0000
	              " 0.0000
	              a 0.0000
	           </S> 0.0000
	           This 0.0000
	          minor 0.0000

  Ornithologist   427581   1 (9)
	  Ornithologist 1.0000
	        through 0.2308
	            way 0.0000
	            one 0.0000
	             of 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	          major 0.0000

           saj-   427628   3 (10)
	           saja 1.0000
	            saj 1.0000
	            say 0.9000
	           sala 0.9000
	           said 0.9000
	            pay 0.0000
	              a 0.0000
	         search 0.0000
	           </S> 0.0000
	            the 0.0000

           Crow   427642   1 (11)
	           Crow 1.0000
	           from 0.8182
	             is 0.0000
	              , 0.0000
	           book 0.0000
	        purpose 0.0000
	           </S> 0.0000
	              a 0.0000
	           item 0.0000
	              . 0.0000
	            arz 0.0000

             he   427648   1 (6)
	             he 1.0000
	           </S> 0.0000
	              a 0.0000
	              } 0.0000
	              , 0.0000
	             us 0.0000

          never   427852   1 (8)
	          never 1.0000
	           need 0.8000
	             of 0.0000
	              . 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	       activity 0.0000

         Mail}-   427880 inf (9)
	          Maili 1.0000
	           Mail 1.0000
	         Mailer 1.0000
	           mail 0.9000
	              a 0.0000
	            The 0.0000
	              , 0.0000
	           </S> 0.0000
	             he 0.0000

        readers   427887   1 (7)
	        readers 1.0000
	           </S> 0.0000
	              " 0.0000
	              , 0.0000
	            one 0.0000
	           read 0.0000
	              a 0.0000

           held   427924   1 (10)
	           held 1.0000
	           here 0.8333
	            the 0.0000
	             or 0.0000
	            and 0.0000
	           sala 0.0000
	              a 0.0000
	        excited 0.0000
	           been 0.0000
	           </S> 0.0000

          willi   427943   4 (12)
	          wills 1.0000
	           will 1.0000
	         willis 1.0000
	             of 0.0000
	              a 0.0000
	              . 0.0000
	             by 0.0000
	             on 0.0000
	           </S> 0.0000
	              , 0.0000
	           with 0.0000
	          wolfi 0.0000

         regard   427949   1 (9)
	         regard 1.0000
	            ... 0.0000
	            how 0.0000
	              , 0.0000
	            the 0.0000
	              a 0.0000
	         report 0.0000
	             ng 0.0000
	           </S> 0.0000

         tliere   427995   4 (9)
	          tiere 1.0000
	         teiere 1.0000
	         Gliere 1.0000
	          there 0.8889
	              a 0.0000
	           that 0.0000
	           </S> 0.0000
	              , 0.0000
	         tiller 0.0000

        appears   428002   1 (9)
	        appears 1.0000
	              , 0.0000
	          years 0.0000
	             is 0.0000
	recommendations 0.0000
	             us 0.0000
	              I 0.0000
	           </S> 0.0000
	            the 0.0000

      redeeming   428019   1 (12)
	      redeeming 1.0000
	          major 0.0000
	         longer 0.0000
	         during 0.0000
	           real 0.0000
	              a 0.0000
	           more 0.0000
	            way 0.0000
	           </S> 0.0000
	              , 0.0000
	              . 0.0000
	             to 0.0000

         Hoodie   428059   1 (9)
	         Hoodie 1.0000
	          world 0.0000
	              . 0.0000
	           Home 0.0000
	           </S> 0.0000
	           page 0.0000
	          major 0.0000
	              , 0.0000
	              a 0.0000

           when   428083   1 (7)
	           when 1.0000
	              a 0.0000
	              , 0.0000
	             of 0.0000
	           </S> 0.0000
	             us 0.0000
	             on 0.0000

            not   428118   1 (6)
	            not 1.0000
	              a 0.0000
	              } 0.0000
	              , 0.0000
	           </S> 0.0000
	              s 0.0000

         Giitke   428200 inf (11)
	           Gite 1.0000
	         Gietki 1.0000
	           itke 1.0000
	          Giitu 1.0000
	              , 0.0000
	             M. 0.0000
	           with 0.0000
	           </S> 0.0000
	            the 0.0000
	             he 0.0000
	              a 0.0000

          tells   428207   1 (7)
	          tells 1.0000
	           tell 0.9000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	          Ringe 0.0000
	          Pales 0.0000

  Heligolanders   428225   1 (8)
	  Heligolanders 1.0000
	      following 0.2308
	             is 0.1538
	           same 0.1538
	           </S> 0.0000
	              " 0.0000
	              , 0.0000
	              a 0.0000

         esteem   428239   1 (6)
	         esteem 1.0000
	             of 0.0000
	              a 0.0000
	              , 0.0000
	         system 0.0000
	           </S> 0.0000

           Lord   428273   1 (8)
	           Lord 1.0000
	           more 0.8333
	            the 0.0000
	              a 0.0000
	              " 0.0000
	           </S> 0.0000
	              , 0.0000
	          Loxia 0.0000

        Lilford   428278 inf (8)
	        Linford 1.0000
	        Milford 1.0000
	        Lifford 1.0000
	           Lord 0.8182
	              I 0.0000
	           </S> 0.0000
	             of 0.0000
	              , 0.0000

            sa3   428286 inf (12)
	            say 1.0000
	            sas 1.0000
	             sa 1.0000
	              a 0.8889
	             so 0.8889
	             it 0.0000
	              , 0.0000
	             's 0.0000
	              V 0.0000
	            the 0.0000
	           </S> 0.0000
	           sala 0.0000

             's   428289 inf (7)
	             us 1.0000
	             ss 1.0000
	             as 1.0000
	             is 1.0000
	              , 0.8571
	              - 0.8571
	           </S> 0.0000

     abominable   428333   1 (12)
	     abominable 1.0000
	             us 0.0000
	         winner 0.0000
	      available 0.0000
	           been 0.0000
	        welcome 0.0000
	             to 0.0000
	              a 0.0000
	           </S> 0.0000
	        private 0.0000
	              , 0.0000
	       striving 0.0000

       although   428349   1 (10)
	       although 1.0000
	        through 0.8000
	            the 0.6000
	    destination 0.0000
	          users 0.0000
	           </S> 0.0000
	              , 0.0000
	              I 0.0000
	           more 0.0000
	        product 0.0000

          Gre}'   428573 inf (12)
	            Gre 1.0000
	          Great 1.0000
	          Greer 1.0000
	          Group 0.9000
	         United 0.0000
	              a 0.0000
	              , 0.0000
	          major 0.0000
	        country 0.0000
	              . 0.0000
	           most 0.0000
	           </S> 0.0000

           Crow   428579   1 (9)
	           Crow 1.0000
	           from 0.8333
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	         States 0.0000
	              . 0.0000
	             of 0.0000
	            arz 0.0000

        vagrant   428610   1 (7)
	        vagrant 1.0000
	         enough 0.0000
	             of 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	        against 0.0000

             We   428677   1 (7)
	             We 1.0000
	           </S> 0.0000
	             us 0.0000
	              , 0.0000
	            you 0.0000
	              " 0.0000
	              a 0.0000

  c\ten)ii}iatc   428699 inf (15)
	      eliminate 1.0000
	       indicate 1.0000
	    participate 0.7500
	        contact 0.7500
	            eat 0.7500
	         attend 0.7500
	          match 0.5000
	            the 0.2500
	           have 0.2500
	              a 0.2500
	           </S> 0.0000
	            see 0.0000
	           make 0.0000
	             us 0.0000
	              , 0.0000

            any   428713   1 (8)
	            any 1.0000
	            the 0.0000
	              I 0.0000
	              , 0.0000
	            you 0.0000
	           </S> 0.0000
	           that 0.0000
	            arz 0.0000

            but   428723   1 (6)
	            but 1.0000
	              } 0.0000
	             us 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000

Fawilx-COR]'ID.E   428806 inf (6)
	           will 1.0000
	              - 0.3333
	              a 0.3333
	              ) 0.0000
	           </S> 0.0000
	              , 0.0000

              .   428822   1 (6)
	              . 1.0000
	              " 0.8889
	              , 0.8889
	             us 0.7778
	            the 0.0000
	           </S> 0.0000

        Corviis   428836 inf (8)
	        Corvids 1.0000
	          Corvi 0.8750
	        Corvida 0.8750
	         Comics 0.7500
	              a 0.0000
	              , 0.0000
	              " 0.0000
	           </S> 0.0000

   /nigi/i(;i(s   428844 inf (10)
	        million 1.0000
	   configure.in 1.0000
	             is 1.0000
	  config.status 1.0000
	              n 0.8000
	      configure 0.8000
	           </S> 0.8000
	         config 0.8000
	              , 0.6000
	              a 0.6000

              ,   428856 inf (3)
	             of 1.0000
	             us 1.0000
	            the 0.0000

           Linn   428858   1 (6)
	           Linn 1.0000
	           List 0.8667
	              i 0.0000
	             pp 0.0000
	            the 0.0000
	          minor 0.0000

             IN   428865   1 (8)
	             IN 1.0000
	             In 0.9091
	             us 0.0000
	              " 0.0000
	              ) 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000

        Western   428868   1 (7)
	        Western 1.0000
	              , 0.0000
	            THE 0.0000
	              : 0.0000
	           </S> 0.0000
	              A 0.0000
	        WITNESS 0.0000

           Rook   428887   1 (9)
	           Rook 1.0000
	           good 0.8333
	           same 0.0000
	            dog 0.0000
	              , 0.0000
	           </S> 0.0000
	          major 0.0000
	              a 0.0000
	          world 0.0000

         breeds   428892   1 (8)
	         breeds 1.0000
	           </S> 0.0000
	           been 0.0000
	             's 0.0000
	         Corvus 0.0000
	              a 0.0000
	              , 0.0000
	             of 0.0000

      migratory   429102   1 (9)
	      migratory 1.0000
	    migratorius 0.7000
	           also 0.0000
	            not 0.0000
	              I 0.0000
	           </S> 0.0000
	           more 0.0000
	              , 0.0000
	              a 0.0000

       Southern   429191   1 (7)
	       Southern 1.0000
	          South 0.7000
	            see 0.0000
	             us 0.0000
	              a 0.0000
	            the 0.0000
	           more 0.0000

           Asia   429258   1 (7)
	           Asia 1.0000
	              , 0.0000
	            cia 0.0000
	            the 0.0000
	              a 0.0000
	            All 0.0000
	           </S> 0.0000

      Eastwards   429270 inf (8)
	       Eastward 1.0000
	           Last 0.0000
	              " 0.0000
	           </S> 0.0000
	              a 0.0000
	              s 0.0000
	              , 0.0000
	            the 0.0000

      Turkestan   429313   1 (10)
	      Turkestan 1.0000
	              , 0.0000
	         Alaska 0.0000
	    destination 0.0000
	            The 0.0000
	            the 0.0000
	           </S> 0.0000
	              a 0.0000
	           said 0.0000
	           tone 0.0000

       Cashmere   429364   1 (10)
	       Cashmere 1.0000
	          <UNK> 0.0000
	          there 0.0000
	      therefore 0.0000
	            and 0.0000
	              a 0.0000
	         Kuwait 0.0000
	            the 0.0000
	              , 0.0000
	           Iraq 0.0000

             In   429392   1 (6)
	             In 1.0000
	           </S> 0.0000
	              " 0.0000
	             us 0.0000
	              , 0.0000
	              a 0.0000

           Rook   429427   1 (9)
	           Rook 1.0000
	           Road 0.8333
	           good 0.8333
	      Institute 0.0000
	           </S> 0.0000
	           same 0.0000
	        problem 0.0000
	              - 0.0000
	   prescription 0.0000

        prett}^   429435   1 (9)
	         pretty 1.0000
	         prette 1.0000
	          prett 1.0000
	            not 0.0000
	              , 0.0000
	             A. 0.0000
	              a 0.0000
	         better 0.0000
	           </S> 0.0000

      generally   429443   1 (7)
	      generally 1.0000
	        general 0.8182
	              a 0.0000
	              , 0.0000
	             to 0.0000
	            and 0.0000
	           </S> 0.0000

     localities   429481   1 (10)
	     localities 1.0000
	         states 0.0000
	          major 0.0000
	        quality 0.0000
	            for 0.0000
	          cases 0.0000
	              a 0.0000
	             of 0.0000
	              , 0.0000
	           </S> 0.0000

             in   429494   1 (6)
	             in 1.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	             iu 0.0000
	              } 0.0000

         though   429506   1 (5)
	         though 1.0000
	        through 0.9167
	           </S> 0.0000
	              , 0.0000
	              a 0.0000

          rarer   429513   1 (7)
	          rarer 1.0000
	           more 0.0000
	           </S> 0.0000
	          order 0.0000
	              , 0.0000
	              a 0.0000
	          Parus 0.0000

           Rook   429676   1 (11)
	           Rook 1.0000
	           good 0.8667
	         condom 0.0000
	             of 0.0000
	           </S> 0.0000
	            now 0.0000
	            who 0.0000
	          color 0.0000
	              I 0.0000
	              , 0.0000
	            and 0.0000

          l^are   429777 inf (11)
	          laare 1.0000
	           lare 1.0000
	            are 0.9167
	           </S> 0.0000
	     registered 0.0000
	              , 0.0000
	              a 0.0000
	             to 0.0000
	    legislative 0.0000
	            bit 0.0000
	           lava 0.0000

           grey   429783   1 (8)
	           grey 1.0000
	           free 0.8182
	             of 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	       proposal 0.0000
	            arz 0.0000

          warty   429788   1 (7)
	          warty 1.0000
	          party 0.9091
	              , 0.0000
	           </S> 0.0000
	              t 0.0000
	           area 0.0000
	          Parus 0.0000

          patch   429794   1 (9)
	          patch 1.0000
	              - 0.0000
	           </S> 0.0000
	              , 0.0000
	           part 0.0000
	              " 0.0000
	              a 0.0000
	              ) 0.0000
	          parva 0.0000

           Bill   429855   1 (7)
	           Bill 1.0000
	           will 0.9091
	           </S> 0.0000
	              , 0.0000
	              " 0.0000
	              a 0.0000
	           Baya 0.0000

           iris   429876   1 (8)
	           iris 1.0000
	             is 0.7778
	           </S> 0.0000
	              } 0.0000
	              a 0.0000
	              , 0.0000
	           dark 0.0000
	             iu 0.0000

           Tlie   429888 inf (9)
	            Tli 1.0000
	           Tlia 1.0000
	           This 0.8571
	           Tile 0.8571
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	              " 0.0000
	           alba 0.0000

         female   429893   1 (5)
	         female 1.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	          <UNK> 0.0000

           Tlie   429951 inf (9)
	            Tli 1.0000
	           Tlia 1.0000
	           This 0.9000
	           Tile 0.9000
	              a 0.0000
	              s 0.0000
	           </S> 0.0000
	              , 0.0000
	              " 0.0000

          young   429956   1 (5)
	          young 1.0000
	           </S> 0.0000
	              a 0.0000
	          <UNK> 0.0000
	              , 0.0000

        Carrion   430036   1 (10)
	        Carrion 1.0000
	            mid 0.0000
	              , 0.0000
	           </S> 0.0000
	           case 0.0000
	           City 0.0000
	              A 0.0000
	           same 0.0000
	            non 0.0000
	          world 0.0000

             it   430073   1 (7)
	             it 1.0000
	             iu 0.9286
	          which 0.0000
	              , 0.0000
	              a 0.0000
	              } 0.0000
	           </S> 0.0000

       .slender   430109   1 (8)
	        slender 1.0000
	       Calendar 0.8000
	           than 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	              . 0.0000
	       literacy 0.0000

           bill   430118   1 (7)
	           bill 1.0000
	           will 0.9167
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	      judgments 0.0000
	            cia 0.0000

           tlie   430127   3 (9)
	          tliet 1.0000
	           trie 1.0000
	           tile 0.9000
	           this 0.9000
	            the 0.9000
	           alba 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000

           deep   430132   1 (9)
	           deep 1.0000
	           does 0.8333
	            the 0.0000
	           </S> 0.0000
	          <UNK> 0.0000
	              a 0.0000
	             us 0.0000
	              . 0.0000
	              , 0.0000

         .slate   430205   1 (11)
	          slate 1.0000
	         Islate 1.0000
	          state 0.8571
	             us 0.0000
	              a 0.0000
	              : 0.0000
	             re 0.0000
	            non 0.0000
	         enable 0.0000
	            the 0.0000
	           </S> 0.0000

              -   430211   1 (6)
	              - 1.0000
	              , 0.9231
	             us 0.8462
	            the 0.0000
	           </S> 0.0000
	            you 0.0000

         colour   430212   1 (9)
	         colour 1.0000
	           </S> 0.0000
	           your 0.0000
	             to 0.0000
	   authenticate 0.0000
	              s 0.0000
	             up 0.0000
	              a 0.0000
	              . 0.0000

             In   430230   1 (6)
	             In 1.0000
	              , 0.0000
	           </S> 0.0000
	             us 0.0000
	              a 0.0000
	              " 0.0000

           Rook   430245   1 (9)
	           Rook 1.0000
	           good 0.8182
	           Road 0.8182
	              - 0.0000
	        website 0.0000
	          world 0.0000
	        problem 0.0000
	           </S> 0.0000
	           same 0.0000

             so   430267   1 (8)
	             so 1.0000
	            for 0.0000
	           with 0.0000
	            flu 0.0000
	             us 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000

         larvje   430335   1 (12)
	          larve 1.0000
	         larvae 1.0000
	           larv 0.9231
	            own 0.0000
	           lava 0.0000
	       families 0.0000
	        ability 0.0000
	           last 0.0000
	              , 0.0000
	              . 0.0000
	           </S> 0.0000
	              a 0.0000

            but   430376   1 (6)
	            but 1.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	             us 0.0000
	              } 0.0000

        drought   430406   1 (10)
	        drought 1.0000
	        through 0.7273
	             if 0.0000
	              a 0.0000
	              , 0.0000
	           that 0.0000
	            and 0.0000
	            the 0.0000
	             us 0.0000
	           </S> 0.0000

          after   430470   1 (8)
	          after 1.0000
	              . 0.0000
	             to 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	              I 0.0000
	         Passer 0.0000

             In   430506   1 (6)
	             In 1.0000
	           </S> 0.0000
	              , 0.0000
	              " 0.0000
	              a 0.0000
	             us 0.0000

         almost   430583   1 (10)
	         almost 1.0000
	            the 0.0000
	             by 0.0000
	           also 0.0000
	              , 0.0000
	          times 0.0000
	             us 0.0000
	           </S> 0.0000
	              I 0.0000
	              . 0.0000

        Carrion   430605   1 (9)
	        Carrion 1.0000
	            non 0.0000
	              , 0.0000
	           City 0.0000
	           </S> 0.0000
	              " 0.0000
	             as 0.0000
	              A 0.0000
	           next 0.0000

           weak   430679   1 (9)
	           weak 1.0000
	           were 0.8333
	           </S> 0.0000
	              , 0.0000
	       economic 0.0000
	              a 0.0000
	            the 0.0000
	             be 0.0000
	            cia 0.0000

          birds   430684   1 (9)
	          birds 1.0000
	     similarity 0.0000
	              . 0.0000
	          first 0.0000
	           </S> 0.0000
	              , 0.0000
	           life 0.0000
	              a 0.0000
	          Parus 0.0000

            for   430724   1 (7)
	            for 1.0000
	           </S> 0.0000
	              , 0.0000
	              } 0.0000
	              a 0.0000
	       clothing 0.0000
	            arz 0.0000

      witnessed   430785   1 (7)
	      witnessed 1.0000
	           with 0.5000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	             in 0.0000
	              . 0.0000

      predatory   430800   1 (9)
	      predatory 1.0000
	             is 0.0000
	              , 0.0000
	            may 0.0000
	        product 0.0000
	           page 0.0000
	           </S> 0.0000
	              a 0.0000
	            bad 0.0000

         severe   430819   1 (7)
	         severe 1.0000
	          every 0.8182
	              , 0.0000
	           </S> 0.0000
	            the 0.0000
	              a 0.0000
	             us 0.0000

         haunts   430889   1 (8)
	         haunts 1.0000
	           have 0.0000
	            the 0.0000
	             is 0.0000
	           </S> 0.0000
	           stay 0.0000
	              a 0.0000
	              , 0.0000

           well   430896   1 (9)
	           well 1.0000
	              , 0.0000
	              a 0.0000
	              . 0.0000
	           life 0.0000
	           </S> 0.0000
	       informed 0.0000
	             of 0.0000
	          wolfi 0.0000

              -   430900   1 (6)
	              - 1.0000
	              , 0.9091
	             as 0.8182
	             us 0.8182
	           </S> 0.0000
	            the 0.0000

    preferabl}^   430923   1 (9)
	     preferably 1.0000
	     preferable 1.0000
	         public 0.4545
	            and 0.2727
	            the 0.2727
	             or 0.2727
	              a 0.2727
	          which 0.0000
	           </S> 0.0000

          where   430935   1 (6)
	          where 1.0000
	            its 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	         cities 0.0000

           here   430990   1 (6)
	           here 1.0000
	              } 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	            arz 0.0000

         busily   431024   1 (7)
	         busily 1.0000
	              a 0.0000
	           </S> 0.0000
	        pusilla 0.0000
	              , 0.0000
	              . 0.0000
	          Music 0.0000

          grubs   431105   1 (9)
	          grubs 1.0000
	              . 0.0000
	          weeds 0.0000
	              , 0.0000
	              a 0.0000
	          group 0.0000
	           </S> 0.0000
	    merchandise 0.0000
	          rufus 0.0000

             in   431113   1 (6)
	             in 1.0000
	             iu 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	              } 0.0000

       swallows   431149   1 (9)
	       swallows 1.0000
	             be 0.0000
	             in 0.0000
	          still 0.0000
	              . 0.0000
	             us 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000

   incalculable   431182   1 (7)
	   incalculable 1.0000
	        include 0.5000
	              a 0.0833
	            not 0.0833
	           </S> 0.0000
	              , 0.0000
	             us 0.0000

           wire   431214   1 (9)
	           wire 1.0000
	           were 0.9091
	            the 0.0000
	              , 0.0000
	            non 0.0000
	   Productivity 0.0000
	           </S> 0.0000
	            cia 0.0000
	              a 0.0000

    cockchafers   431239   1 (10)
	    cockchafers 1.0000
	         course 0.3333
	            the 0.2500
	           them 0.2500
	           </S> 0.0000
	              a 0.0000
	             it 0.0000
	             us 0.0000
	              , 0.0000
	         speech 0.0000

          onl}'   431289   1 (9)
	           only 1.0000
	              a 0.0000
	           have 0.0000
	             be 0.0000
	              , 0.0000
	           </S> 0.0000
	             to 0.0000
	           been 0.0000
	          ollon 0.0000

        devours   431295   1 (9)
	        devours 1.0000
	          hours 0.7000
	              , 0.0000
	             at 0.0000
	             to 0.0000
	              a 0.0000
	           </S> 0.0000
	             us 0.0000
	            any 0.0000

           such   431303   1 (6)
	           such 1.0000
	              a 0.0000
	              , 0.0000
	            the 0.0000
	           </S> 0.0000
	           sala 0.0000

          grubs   431331   1 (9)
	          grubs 1.0000
	          great 0.0000
	           </S> 0.0000
	              , 0.0000
	             of 0.0000
	              a 0.0000
	              . 0.0000
	             is 0.0000
	          rufus 0.0000

   considerable   431362   1 (6)
	   considerable 1.0000
	              , 0.0000
	          could 0.0000
	           </S> 0.0000
	            not 0.0000
	              a 0.0000

    destructive   431406   1 (6)
	    destructive 1.0000
	              , 0.0000
	        service 0.0000
	            the 0.0000
	           </S> 0.0000
	              a 0.0000

    caterpillar   431418   1 (10)
	    caterpillar 1.0000
	       services 0.3846
	              . 0.0000
	             us 0.0000
	         number 0.0000
	    development 0.0000
	              , 0.0000
	        effects 0.0000
	           </S> 0.0000
	              a 0.0000

       segetuin   431456   1 (11)
	         seguin 1.0000
	         segeti 1.0000
	        segetum 1.0000
	        seguint 0.9091
	        ipsilon 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	              ) 0.0000
	       shipping 0.0000
	        cinerea 0.0000

              )   431464   1 (5)
	              ) 1.0000
	              , 0.9167
	             us 0.8333
	            the 0.0000
	           </S> 0.0000

              .   431466   1 (7)
	              . 1.0000
	              · 0.9000
	              , 0.9000
	              - 0.9000
	             us 0.8000
	            the 0.0000
	           </S> 0.0000

         either   431538   1 (6)
	         either 1.0000
	           </S> 0.0000
	         shrubs 0.0000
	              a 0.0000
	              } 0.0000
	              , 0.0000

         copses   431548   1 (11)
	         copses 1.0000
	             us 0.0000
	           fact 0.0000
	           </S> 0.0000
	           turn 0.0000
	           case 0.0000
	        writing 0.0000
	         person 0.0000
	            the 0.0000
	              , 0.0000
	              a 0.0000

       bounding   431618   1 (8)
	       bounding 1.0000
	              a 0.0000
	             of 0.0000
	             on 0.0000
	              , 0.0000
	           </S> 0.0000
	             in 0.0000
	          being 0.0000

            but   431695   1 (6)
	            but 1.0000
	           </S> 0.0000
	              a 0.0000
	              } 0.0000
	              , 0.0000
	             us 0.0000

      Stevenson   431699   1 (8)
	      Stevenson 1.0000
	              I 0.0000
	           even 0.0000
	             as 0.0000
	           </S> 0.0000
	              a 0.0000
	            the 0.0000
	              , 0.0000

        rightly   431709   1 (9)
	        rightly 1.0000
	         rights 0.8182
	              , 0.0000
	            the 0.0000
	              a 0.0000
	        Courier 0.0000
	           </S> 0.0000
	             's 0.0000
	             he 0.0000

      selecting   431751   1 (7)
	      selecting 1.0000
	             us 0.0000
	             of 0.0000
	              a 0.0000
	              , 0.0000
	          being 0.0000
	           </S> 0.0000

         Scotch   431856   1 (6)
	         Scotch 1.0000
	              a 0.0000
	          Stock 0.0000
	              , 0.0000
	              - 0.0000
	           </S> 0.0000

      Spixworth   431983   1 (9)
	      Spixworth 1.0000
	          South 0.7826
	             us 0.0000
	              a 0.0000
	            the 0.0000
	              , 0.0000
	        College 0.0000
	        Harding 0.0000
	           your 0.0000

           Park   431993   1 (8)
	           Park 1.0000
	           Page 0.8182
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	     University 0.0000
	           time 0.0000
	          Parus 0.0000

    laurustinus   432082   1 (10)
	    laurustinus 1.0000
	        looking 0.3333
	             us 0.2500
	              - 0.0000
	           rose 0.0000
	              . 0.0000
	              a 0.0000
	              , 0.0000
	            the 0.0000
	           </S> 0.0000

         bushes   432094   1 (8)
	         bushes 1.0000
	             us 0.0000
	              a 0.0000
	              , 0.0000
	       business 0.0000
	         prints 0.0000
	           </S> 0.0000
	         tuning 0.0000

      foiirteen   432118   1 (13)
	       flirteen 1.0000
	       fourteen 1.0000
	        fifteen 0.8750
	       forinten 0.8750
	        hirteen 0.8750
	         forten 0.8750
	        further 0.6250
	           more 0.5000
	            the 0.3750
	        damages 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000

           feet   432128   1 (8)
	           feet 1.0000
	           free 0.8462
	        arising 0.0000
	             us 0.0000
	              . 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000

           ilex   432172   1 (9)
	           ilex 1.0000
	             in 0.0000
	         galaxy 0.0000
	             of 0.0000
	              , 0.0000
	             iu 0.0000
	          novae 0.0000
	           </S> 0.0000
	              a 0.0000

          close   432178   1 (8)
	          close 1.0000
	          those 0.8000
	            the 0.0000
	             up 0.0000
	           </S> 0.0000
	              a 0.0000
	             or 0.0000
	         corone 0.0000

     connecting   432212   1 (9)
	     connecting 1.0000
	           </S> 0.0000
	              a 0.0000
	            and 0.0000
	              , 0.0000
	           with 0.0000
	            who 0.0000
	         online 0.0000
	            the 0.0000

          fi^om   432328   2 (10)
	          finom 1.0000
	           fimo 0.9000
	           from 0.9000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	             in 0.0000
	          minor 0.0000
	             fi 0.0000
	             to 0.0000

        rookery   432367   1 (10)
	        rookery 1.0000
	         Booker 0.8182
	         person 0.0000
	          major 0.0000
	         report 0.0000
	              , 0.0000
	          child 0.0000
	           </S> 0.0000
	            new 0.0000
	              " 0.0000

       moreover   432491   1 (7)
	       moreover 1.0000
	           </S> 0.0000
	              } 0.0000
	           over 0.0000
	              . 0.0000
	              , 0.0000
	              a 0.0000

      continual   432504   1 (10)
	      continual 1.0000
	       continua 0.9091
	           ugly 0.0000
	       National 0.0000
	           same 0.0000
	          right 0.0000
	          total 0.0000
	              - 0.0000
	           </S> 0.0000
	     subjective 0.0000

         noises   432514   1 (10)
	         noises 1.0000
	         number 0.0000
	              a 0.0000
	           need 0.0000
	              , 0.0000
	             of 0.0000
	    development 0.0000
	    improvement 0.0000
	           </S> 0.0000
	        opinion 0.0000

          Rooks   432606   1 (7)
	          Rooks 1.0000
	          Books 0.9000
	           </S> 0.0000
	            the 0.0000
	              I 0.0000
	              a 0.0000
	              , 0.0000

          still   432612   1 (8)
	          still 1.0000
	          shall 0.8182
	              , 0.0000
	            can 0.0000
	           </S> 0.0000
	              a 0.0000
	             is 0.0000
	           sala 0.0000

          breed   432628   1 (11)
	          breed 1.0000
	           been 0.8571
	              , 0.0000
	    participate 0.0000
	             to 0.0000
	         invest 0.0000
	              a 0.0000
	     trademarks 0.0000
	       services 0.0000
	            the 0.0000
	           </S> 0.0000

     connucuced   432735 inf (11)
	      connected 1.0000
	       conduced 1.0000
	        reduced 0.6667
	        include 0.5556
	     dispatched 0.0000
	              , 0.0000
	        between 0.0000
	              a 0.0000
	           </S> 0.0000
	             to 0.0000
	             13 0.0000

             or   432746   1 (8)
	             or 1.0000
	         within 0.0000
	             to 0.0000
	             in 0.0000
	              a 0.0000
	              , 0.0000
	             us 0.0000
	           </S> 0.0000

       repaired   432749   1 (8)
	       repaired 1.0000
	       required 0.8182
	              , 0.0000
	            two 0.0000
	            the 0.0000
	           </S> 0.0000
	             26 0.0000
	              a 0.0000

             iu   432764   2 (6)
	             iu 1.0000
	             in 0.9167
	              I 0.0000
	              , 0.0000
	             as 0.0000
	           </S> 0.0000

          March   432767   1 (7)
	          March 1.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	              s 0.0000
	          <UNK> 0.0000
	             's 0.0000

      unusualh-   432784   1 (9)
	       unusuall 1.0000
	      unusually 1.0000
	        unusual 1.0000
	        January 0.3750
	            not 0.2500
	            the 0.2500
	              a 0.2500
	           </S> 0.0000
	              , 0.0000

           mild   432794   1 (8)
	           mild 1.0000
	           mail 0.7500
	              a 0.0000
	          minor 0.0000
	              , 0.0000
	           </S> 0.0000
	            the 0.0000
	              . 0.0000

       building   432807   1 (6)
	       building 1.0000
	              . 0.0000
	           </S> 0.0000
	              a 0.0000
	            and 0.0000
	              , 0.0000

     operations   432816   1 (7)
	     operations 1.0000
	        options 0.7000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	              . 0.0000
	           cool 0.0000

      sometimes   432827   1 (6)
	      sometimes 1.0000
	              , 0.0000
	              . 0.0000
	              a 0.0000
	           </S> 0.0000
	        systems 0.0000

       commence   432837   1 (7)
	       commence 1.0000
	       comments 0.8000
	            too 0.0000
	              , 0.0000
	              a 0.0000
	             as 0.0000
	           </S> 0.0000

         1895-6   432899 inf (8)
	           1995 1.0000
	           1996 1.0000
	             us 0.7000
	           what 0.7000
	              , 0.7000
	            the 0.7000
	           </S> 0.7000
	              a 0.7000

              I   432906   1 (6)
	              I 1.0000
	              . 0.9167
	              , 0.9167
	             us 0.0000
	            the 0.0000
	           </S> 0.0000

          Rooks   432926   1 (9)
	          Rooks 1.0000
	          Books 0.9167
	            men 0.0000
	             us 0.0000
	         people 0.0000
	            man 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000

        sitting   432932   1 (5)
	        sitting 1.0000
	        Listing 0.8000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000

          the}-   432972 inf (8)
	           thee 1.0000
	            the 1.0000
	          their 1.0000
	             he 0.9000
	              , 0.0000
	             is 0.0000
	           </S> 0.0000
	              a 0.0000

            had   432978   1 (8)
	            had 1.0000
	            the 0.0000
	           </S> 0.0000
	           have 0.0000
	            are 0.0000
	              , 0.0000
	              a 0.0000
	            cia 0.0000

          Rooks   433047   1 (8)
	          Rooks 1.0000
	          Books 0.9091
	           Rock 0.8182
	           same 0.0000
	          world 0.0000
	           </S> 0.0000
	            way 0.0000
	              - 0.0000

        rookery   433058   1 (11)
	        rookery 1.0000
	         source 0.0000
	              , 0.0000
	         report 0.0000
	         series 0.0000
	              a 0.0000
	           very 0.0000
	            new 0.0000
	           </S> 0.0000
	        subject 0.0000
	          major 0.0000

          close   433066   1 (10)
	          close 1.0000
	           case 0.8182
	              . 0.0000
	             of 0.0000
	      connected 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	       addition 0.0000
	         corone 0.0000

      repairing   433084   1 (7)
	      repairing 1.0000
	              a 0.0000
	              , 0.0000
	         during 0.0000
	           </S> 0.0000
	              . 0.0000
	            New 0.0000

          their   433094   1 (7)
	          their 1.0000
	            the 0.8462
	              , 0.0000
	            car 0.0000
	           </S> 0.0000
	              a 0.0000
	          minor 0.0000

        January   433109   1 (9)
	        January 1.0000
	           </S> 0.0000
	              a 0.0000
	            the 0.0000
	             us 0.0000
	           turn 0.0000
	        general 0.0000
	        writing 0.0000
	              , 0.0000

      Februar}-   433125   1 (12)
	       Februare 1.0000
	       February 1.0000
	        Februar 1.0000
	          about 0.4444
	              a 0.3333
	             is 0.0000
	            the 0.0000
	              , 0.0000
	           such 0.0000
	           </S> 0.0000
	          which 0.0000
	             us 0.0000

              a   433135   1 (5)
	              a 1.0000
	              , 0.9167
	            the 0.0000
	             us 0.0000
	           </S> 0.0000

          daily   433142   1 (8)
	          daily 1.0000
	              , 0.0000
	            has 0.0000
	             of 0.0000
	              a 0.0000
	           sala 0.0000
	           days 0.0000
	           </S> 0.0000

        visited   433148   1 (7)
	        visited 1.0000
	          visit 0.8182
	              . 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	           dose 0.0000

            m^'   433156   1 (7)
	             mm 1.0000
	             my 1.0000
	              a 0.0000
	             us 0.0000
	           </S> 0.0000
	            the 0.0000
	              , 0.0000

         garden   433160   1 (7)
	         garden 1.0000
	         Garden 0.9545
	           site 0.0000
	             us 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000

        Dulwich   433206   1 (8)
	        Dulwich 1.0000
	           your 0.0000
	              a 0.0000
	          which 0.0000
	             us 0.0000
	              , 0.0000
	           </S> 0.0000
	            the 0.0000

          first   433214   1 (6)
	          first 1.0000
	           </S> 0.0000
	              . 0.0000
	              a 0.0000
	              , 0.0000
	        College 0.0000

           made   433282   1 (9)
	           made 1.0000
	       articles 0.0000
	              , 0.0000
	          major 0.0000
	           </S> 0.0000
	              a 0.0000
	          sites 0.0000
	          items 0.0000
	              . 0.0000

       assuring   433303   1 (11)
	       assuring 1.0000
	            and 0.0000
	            the 0.0000
	          using 0.0000
	           </S> 0.0000
	         please 0.0000
	     conditions 0.0000
	              I 0.0000
	             to 0.0000
	              " 0.0000
	      Passerine 0.0000

          Rooks   433353   1 (9)
	          Rooks 1.0000
	          Books 0.9167
	              , 0.0000
	              a 0.0000
	          shoes 0.0000
	           eyes 0.0000
	            the 0.0000
	           </S> 0.0000
	             us 0.0000

       carrying   433359   1 (7)
	       carrying 1.0000
	              , 0.0000
	        current 0.0000
	              . 0.0000
	           </S> 0.0000
	              a 0.0000
	              - 0.0000

      Feathered   433401   1 (9)
	      Feathered 1.0000
	             of 0.0000
	             as 0.0000
	          other 0.0000
	          Hello 0.0000
	            The 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000

            Mr.   433440   1 (9)
	            Mr. 1.0000
	             My 0.8333
	             d. 0.8333
	              s 0.0000
	              a 0.0000
	            the 0.0000
	           </S> 0.0000
	              @ 0.0000
	              , 0.0000

             W.   433444 inf (9)
	              . 1.0000
	             J. 1.0000
	             We 1.0000
	              a 0.9286
	              , 0.9286
	           </S> 0.0000
	       Chairman 0.0000
	         Robert 0.0000
	      Spielberg 0.0000

             N.   433447 inf (8)
	              . 1.0000
	             A. 1.0000
	             No 1.0000
	              , 0.8889
	              I 0.8889
	           Ryan 0.0000
	           Bush 0.0000
	           </S> 0.0000

         Rushen   433450   1 (9)
	         Rushen 1.0000
	          Korea 0.0000
	              a 0.0000
	           </S> 0.0000
	              s 0.0000
	        America 0.0000
	          Rules 0.0000
	              , 0.0000
	           User 0.0000

           says   433457   1 (8)
	           says 1.0000
	           said 0.8667
	            TEL 0.0000
	              , 0.0000
	              a 0.0000
	           From 0.0000
	           </S> 0.0000
	           sala 0.0000

          Rooks   433482   1 (11)
	          Rooks 1.0000
	          Books 0.9231
	           </S> 0.0000
	             us 0.0000
	            men 0.0000
	         people 0.0000
	       children 0.0000
	              a 0.0000
	              , 0.0000
	              . 0.0000
	            man 0.0000

           near   433488   1 (6)
	           near 1.0000
	            new 0.8182
	           </S> 0.0000
	              , 0.0000
	            arz 0.0000
	              a 0.0000

       Wanstead   433493   1 (8)
	       Wanstead 1.0000
	        instead 0.8333
	              a 0.0000
	            the 0.0000
	           </S> 0.0000
	           Hyde 0.0000
	          major 0.0000
	              , 0.0000

            and   433573   1 (5)
	            and 1.0000
	              , 0.0000
	              } 0.0000
	           </S> 0.0000
	            arz 0.0000

          the}-   433604 inf (8)
	            the 1.0000
	          their 1.0000
	           thee 1.0000
	              , 0.0000
	           </S> 0.0000
	            and 0.0000
	              a 0.0000
	            you 0.0000

           must   433610   1 (6)
	           must 1.0000
	             us 0.8182
	              a 0.0000
	           </S> 0.0000
	              I 0.0000
	              , 0.0000

              t   433651 inf (8)
	             tt 1.0000
	              ) 1.0000
	             at 1.0000
	              , 1.0000
	             to 1.0000
	             of 0.0000
	           </S> 0.0000
	             us 0.0000

         formed   433693   1 (7)
	         formed 1.0000
	              a 0.0000
	            for 0.0000
	            one 0.0000
	           </S> 0.0000
	            and 0.0000
	            the 0.0000

         sticks   433710   1 (9)
	         sticks 1.0000
	              . 0.0000
	              a 0.0000
	          still 0.0000
	          bones 0.0000
	       language 0.0000
	              , 0.0000
	           </S> 0.0000
	         spinas 0.0000

           moss   433793   1 (10)
	           moss 1.0000
	           most 0.9167
	              , 0.0000
	           </S> 0.0000
	             us 0.0000
	           even 0.0000
	              ) 0.0000
	              a 0.0000
	              . 0.0000
	            not 0.0000

           dead   433799   1 (11)
	           dead 1.0000
	           year 0.8182
	            dry 0.0000
	          young 0.0000
	              a 0.0000
	      sometimes 0.0000
	            the 0.0000
	           your 0.0000
	           </S> 0.0000
	          which 0.0000
	            cia 0.0000

         number   433835   1 (8)
	         number 1.0000
	              , 0.0000
	           </S> 0.0000
	             of 0.0000
	              a 0.0000
	            are 0.0000
	       benefits 0.0000
	          price 0.0000

        similar   433922   1 (7)
	        similar 1.0000
	           </S> 0.0000
	        various 0.0000
	           some 0.0000
	              a 0.0000
	             no 0.0000
	              , 0.0000

           they   433968   1 (6)
	           they 1.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	         Corvus 0.0000
	              } 0.0000

             iu   434083   2 (8)
	             iu 1.0000
	             in 0.9167
	              , 0.0000
	              . 0.0000
	           </S> 0.0000
	           than 0.0000
	           when 0.0000
	              a 0.0000

      different   434086   1 (7)
	      different 1.0000
	              , 0.0000
	            the 0.0000
	              s 0.0000
	              a 0.0000
	             of 0.0000
	           </S> 0.0000

          nests   434096   1 (8)
	          nests 1.0000
	           next 0.8182
	           </S> 0.0000
	            new 0.0000
	          parts 0.0000
	              , 0.0000
	           from 0.0000
	           ways 0.0000

            the   434104   1 (5)
	            the 1.0000
	              , 0.0000
	           </S> 0.0000
	             us 0.0000
	              } 0.0000

        thicklj   434165   1 (7)
	        thickly 1.0000
	          think 0.8182
	              , 0.0000
	          click 0.0000
	           </S> 0.0000
	              a 0.0000
	            the 0.0000

              '   434172   1 (7)
	              ' 1.0000
	              . 0.9231
	              , 0.9231
	             be 0.8462
	             us 0.8462
	           </S> 0.0000
	            the 0.0000

           deep   434242   1 (10)
	           deep 1.0000
	           does 0.8462
	           webs 0.0000
	             us 0.0000
	           </S> 0.0000
	            for 0.0000
	              , 0.0000
	          image 0.0000
	              . 0.0000
	              a 0.0000

        figured   434287   1 (8)
	        figured 1.0000
	           </S> 0.0000
	              , 0.0000
	             of 0.0000
	           that 0.0000
	              a 0.0000
	            for 0.0000
	       products 0.0000

          figs.   434309   1 (7)
	           figs 1.0000
	          first 0.9167
	              ( 0.0000
	              a 0.0000
	            the 0.0000
	           </S> 0.0000
	            and 0.0000

            241   434315 inf (7)
	             24 1.0000
	              1 0.8750
	            the 0.7500
	              , 0.7500
	              a 0.7500
	             us 0.0000
	           </S> 0.0000

            243   434359 inf (8)
	              2 1.0000
	             us 0.9500
	             on 0.9500
	            the 0.9500
	              , 0.9500
	              a 0.9500
	           </S> 0.0000
	       analysis 0.0000

           Farn   434394   1 (8)
	           Farn 1.0000
	            For 0.8333
	           </S> 0.0000
	              a 0.0000
	             C. 0.0000
	         Dalton 0.0000
	              , 0.0000
	            arz 0.0000

             's   434398   1 (8)
	             's 1.0000
	              s 0.9167
	             is 0.9167
	              , 0.8333
	              a 0.8333
	           </S> 0.0000
	           Wang 0.0000
	         MATTER 0.0000

              .   434400   1 (9)
	              . 1.0000
	              " 0.9286
	              , 0.9286
	              a 0.9286
	             us 0.8571
	           page 0.0000
	            the 0.0000
	           </S> 0.0000
	          words 0.0000

             as   434561   1 (6)
	             as 1.0000
	             us 0.8750
	              I 0.0000
	           </S> 0.0000
	              , 0.0000
	              } 0.0000

         branch   434583   1 (8)
	         branch 1.0000
	         Branch 0.9091
	         future 0.0000
	         Search 0.0000
	           same 0.0000
	           </S> 0.0000
	              - 0.0000
	           rain 0.0000

          the}-   434590 inf (8)
	          their 1.0000
	           thee 1.0000
	            the 1.0000
	             of 0.0000
	              , 0.0000
	              - 0.0000
	           </S> 0.0000
	              a 0.0000

            tip   434596   1 (6)
	            tip 1.0000
	            the 0.8333
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	            cia 0.0000

       forwards   434600   1 (9)
	       forwards 1.0000
	        forward 0.9091
	          drill 0.0000
	              a 0.0000
	              s 0.0000
	         sheets 0.0000
	              , 0.0000
	           </S> 0.0000
	             of 0.0000

            but   434672   1 (6)
	            but 1.0000
	              } 0.0000
	             us 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000

          the}'   434729 inf (7)
	            the 1.0000
	           thee 1.0000
	          their 1.0000
	              a 0.0000
	            and 0.0000
	              - 0.0000
	           </S> 0.0000

      gradually   434735   1 (6)
	      gradually 1.0000
	           </S> 0.0000
	              , 0.0000
	        details 0.0000
	              a 0.0000
	             us 0.0000

             To   434906   1 (6)
	             To 1.0000
	             us 0.0000
	              a 0.0000
	              " 0.0000
	           </S> 0.0000
	              , 0.0000

       accuracv   435173   1 (11)
	       accuracy 1.0000
	         accura 0.9167
	       accuravi 0.9167
	     University 0.0000
	              * 0.0000
	        purpose 0.0000
	              a 0.0000
	       contents 0.0000
	              , 0.0000
	        address 0.0000
	           </S> 0.0000

      authoress   435296   1 (7)
	      authoress 1.0000
	         author 0.7692
	           </S> 0.0000
	              F 0.0000
	           term 0.0000
	              - 0.0000
	      directors 0.0000

              '   435305   1 (7)
	              ' 1.0000
	              , 0.9286
	             us 0.8571
	             of 0.8571
	           </S> 0.0000
	             DT 0.0000
	            the 0.0000

           Rook   435398   1 (9)
	           Rook 1.0000
	           good 0.8462
	           site 0.0000
	        success 0.0000
	           </S> 0.0000
	              , 0.0000
	       coverage 0.0000
	              . 0.0000
	              a 0.0000

          could   435404   1 (8)
	          could 1.0000
	            the 0.0000
	            why 0.0000
	              s 0.0000
	           will 0.0000
	            and 0.0000
	           </S> 0.0000
	              a 0.0000

         Hooded   435451   1 (7)
	         Hooded 1.0000
	            the 0.0000
	              a 0.0000
	          Hotel 0.0000
	       Counting 0.0000
	           </S> 0.0000
	              , 0.0000

            she   435465   1 (7)
	            she 1.0000
	            see 0.9091
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	             us 0.0000
	              } 0.0000

         parent   435485   1 (9)
	         parent 1.0000
	           part 0.8000
	             of 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	          tries 0.0000
	          based 0.0000
	          parva 0.0000

            Yet   435637   1 (7)
	            Yet 1.0000
	            You 0.8182
	              " 0.0000
	              , 0.0000
	             us 0.0000
	           </S> 0.0000
	              a 0.0000

       creature   435667   1 (10)
	       creature 1.0000
	        because 0.0000
	             us 0.0000
	              , 0.0000
	              a 0.0000
	             by 0.0000
	           </S> 0.0000
	     Christians 0.0000
	             of 0.0000
	         church 0.0000

         hungiy   435714   1 (13)
	         hungry 1.0000
	       hungrily 0.9091
	           hung 0.9091
	              - 0.0000
	              , 0.0000
	              a 0.0000
	          hours 0.0000
	         Dhungi 0.0000
	        hinugay 0.0000
	          Munia 0.0000
	           </S> 0.0000
	          years 0.0000
	              . 0.0000

            and   435721   1 (5)
	            and 1.0000
	           </S> 0.0000
	              . 0.0000
	              , 0.0000
	            arz 0.0000

      clamorous   435730   1 (9)
	      clamorous 1.0000
	             us 0.0000
	           more 0.0000
	              , 0.0000
	              - 0.0000
	              . 0.0000
	              a 0.0000
	             so 0.0000
	           </S> 0.0000

         mouths   435740   1 (10)
	         mouths 1.0000
	          South 0.8000
	         people 0.0000
	              . 0.0000
	             be 0.0000
	              a 0.0000
	           </S> 0.0000
	             us 0.0000
	              , 0.0000
	         before 0.0000

   depredations   435843   1 (9)
	   depredations 1.0000
	         Corvus 0.0000
	    information 0.0000
	              , 0.0000
	         Agency 0.0000
	              . 0.0000
	           laws 0.0000
	           </S> 0.0000
	              a 0.0000

           Poor   435960   1 (7)
	           Poor 1.0000
	           good 0.7500
	              " 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	           Pica 0.0000

         hunted   435965   1 (5)
	         hunted 1.0000
	           </S> 0.0000
	              a 0.0000
	          hotel 0.0000
	              , 0.0000

           Crow   435972   1 (8)
	           Crow 1.0000
	           from 0.8333
	              s 0.0000
	         Stupid 0.0000
	           down 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000

        against   435978   1 (9)
	        against 1.0000
	            the 0.0000
	              " 0.0000
	              I 0.0000
	             to 0.0000
	            The 0.0000
	         Corvus 0.0000
	            and 0.0000
	           </S> 0.0000

         ever}'   435991   1 (9)
	          every 1.0000
	           ever 1.0000
	         everre 1.0000
	            the 0.0000
	              . 0.0000
	          other 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000

            man   435998   1 (8)
	            man 1.0000
	            may 0.9091
	          major 0.0000
	             is 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	           have 0.0000

            She   436021   1 (7)
	            She 1.0000
	            the 0.9167
	              ) 0.0000
	              a 0.0000
	             us 0.0000
	           </S> 0.0000
	              , 0.0000

      thirsting   436086   1 (7)
	      thirsting 1.0000
	        Listing 0.7000
	             of 0.0000
	              a 0.0000
	           </S> 0.0000
	              . 0.0000
	              , 0.0000

       cylinder   436121   1 (11)
	       cylinder 1.0000
	            may 0.0000
	              a 0.0000
	             is 0.0000
	           </S> 0.0000
	          major 0.0000
	         online 0.0000
	            day 0.0000
	              , 0.0000
	           sign 0.0000
	           time 0.0000

        pointed   436130   1 (7)
	        pointed 1.0000
	          point 0.8000
	              a 0.0000
	              . 0.0000
	              , 0.0000
	           </S> 0.0000
	             of 0.0000

          snare   436197   1 (10)
	          snare 1.0000
	          state 0.8333
	            way 0.0000
	              , 0.0000
	              a 0.0000
	          thing 0.0000
	             of 0.0000
	            and 0.0000
	           </S> 0.0000
	           sala 0.0000

       entangle   436206   1 (7)
	       entangle 1.0000
	         change 0.0000
	            the 0.0000
	         murder 0.0000
	            try 0.0000
	              a 0.0000
	             us 0.0000

           dear   436251   1 (8)
	           dear 1.0000
	           year 0.9091
	           such 0.0000
	            the 0.0000
	           </S> 0.0000
	              a 0.0000
	            and 0.0000
	            arz 0.0000

        clamour   436271   1 (8)
	        clamour 1.0000
	            the 0.0000
	            and 0.0000
	           your 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	             or 0.0000

            How   436289   1 (7)
	            How 1.0000
	           Home 0.8571
	             us 0.0000
	              " 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000

              -   436292   1 (7)
	              - 1.0000
	              , 0.9167
	             to 0.8333
	             us 0.8333
	           much 0.0000
	            the 0.0000
	           </S> 0.0000

             or   436345   1 (6)
	             or 1.0000
	              } 0.0000
	             us 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000

          Robin   436353   1 (7)
	          Robin 1.0000
	            the 0.0000
	           </S> 0.0000
	           down 0.0000
	          comix 0.0000
	              a 0.0000
	              , 0.0000

         babies   436359   1 (11)
	         babies 1.0000
	       Williams 0.0000
	              a 0.0000
	              , 0.0000
	             is 0.0000
	           they 0.0000
	          based 0.0000
	           </S> 0.0000
	     statements 0.0000
	           Hood 0.0000
	         Lanius 0.0000

         babies   436406   1 (9)
	         babies 1.0000
	              . 0.0000
	           </S> 0.0000
	              , 0.0000
	           been 0.0000
	            the 0.0000
	              a 0.0000
	           like 0.0000
	         Lanius 0.0000

            The   436436   1 (6)
	            The 1.0000
	              a 0.0000
	           </S> 0.0000
	              " 0.0000
	              , 0.0000
	             us 0.0000

        ignores   436447   1 (8)
	        ignores 1.0000
	              , 0.0000
	            and 0.0000
	              a 0.0000
	           </S> 0.0000
	           into 0.0000
	             in 0.0000
	             of 0.0000

            she   436479   1 (7)
	            she 1.0000
	            the 0.9091
	              a 0.0000
	              . 0.0000
	              , 0.0000
	           </S> 0.0000
	             us 0.0000

           carr   436647   1 (11)
	           carr 1.0000
	            can 0.8333
	             to 0.0000
	              a 0.0000
	     dispatched 0.0000
	             do 0.0000
	            cia 0.0000
	           </S> 0.0000
	           good 0.0000
	              , 0.0000
	           free 0.0000

           catv   436667 inf (14)
	           cats 1.0000
	            cat 1.0000
	            can 0.9000
	              , 0.0000
	         appear 0.0000
	             it 0.0000
	        catvine 0.0000
	            cia 0.0000
	              a 0.0000
	           cvat 0.0000
	           </S> 0.0000
	          least 0.0000
	            not 0.0000
	            the 0.0000

            and   436673   1 (6)
	            and 1.0000
	           </S> 0.0000
	            the 0.0000
	           with 0.0000
	      sometimes 0.0000
	            arz 0.0000

        rookery   436711   1 (10)
	        rookery 1.0000
	              a 0.0000
	          house 0.0000
	           wife 0.0000
	          worth 0.0000
	          Books 0.0000
	           name 0.0000
	           fast 0.0000
	           </S> 0.0000
	              , 0.0000

           born   436720   1 (9)
	           born 1.0000
	           more 0.8462
	            the 0.0000
	           free 0.0000
	         photos 0.0000
	              i 0.0000
	              " 0.0000
	       Coronado 0.0000
	          corax 0.0000

      incessant   436743   1 (7)
	      incessant 1.0000
	          heavy 0.0000
	              , 0.0000
	            the 0.0000
	              a 0.0000
	        Germany 0.0000
	           </S> 0.0000

        ar-cc-o   436848 inf (11)
	         arccos 1.0000
	        arrocco 1.0000
	            and 0.7273
	           </S> 0.0000
	         Golden 0.0000
	              , 0.0000
	            The 0.0000
	            the 0.0000
	             pp 0.0000
	            Vol 0.0000
	              I 0.0000

              .   436855   1 (6)
	              . 1.0000
	              , 0.9231
	             us 0.8462
	           </S> 0.0000
	           Gate 0.0000
	            the 0.0000

           arid   436959   1 (11)
	           arid 1.0000
	            are 0.8333
	              e 0.0000
	            the 0.0000
	          other 0.0000
	              , 0.0000
	           </S> 0.0000
	            any 0.0000
	            all 0.0000
	           more 0.0000
	            arz 0.0000

     localities   436964   1 (11)
	     localities 1.0000
	             us 0.0000
	        regions 0.0000
	              , 0.0000
	           </S> 0.0000
	           like 0.0000
	            and 0.0000
	         images 0.0000
	              a 0.0000
	              ) 0.0000
	              . 0.0000

       mollusca   436991   1 (9)
	       mollusca 1.0000
	       wildlife 0.0000
	          <UNK> 0.0000
	      therefore 0.0000
	           most 0.0000
	            the 0.0000
	              , 0.0000
	            and 0.0000
	              a 0.0000

        carrion   437035   1 (10)
	        carrion 1.0000
	              a 0.0000
	           case 0.0000
	           </S> 0.0000
	             us 0.0000
	            the 0.0000
	unconsciousness 0.0000
	        writing 0.0000
	           Iraq 0.0000
	              , 0.0000

          Later   437074   1 (8)
	          Later 1.0000
	           Date 0.8182
	           </S> 0.0000
	              , 0.0000
	            but 0.0000
	              " 0.0000
	              a 0.0000
	          Pales 0.0000

         fruits   437092   1 (9)
	         fruits 1.0000
	              , 0.0000
	             of 0.0000
	              a 0.0000
	           </S> 0.0000
	           2000 0.0000
	              . 0.0000
	           from 0.0000
	          rufus 0.0000

          beech   437100   1 (10)
	          beech 1.0000
	           been 0.8462
	           </S> 0.0000
	              ( 0.0000
	             xf 0.0000
	              s 0.0000
	            the 0.0000
	           self 0.0000
	              a 0.0000
	       desserts 0.0000

            but   437134   1 (6)
	            but 1.0000
	           </S> 0.0000
	              } 0.0000
	              , 0.0000
	              a 0.0000
	             us 0.0000

         refuse   437205   1 (7)
	         refuse 1.0000
	          rufus 0.8333
	              , 0.0000
	         before 0.0000
	            the 0.0000
	           </S> 0.0000
	              a 0.0000

          heaps   437212   1 (7)
	          heaps 1.0000
	           help 0.8333
	              , 0.0000
	           </S> 0.0000
	             to 0.0000
	              a 0.0000
	        display 0.0000

           cast   437237   1 (7)
	           cast 1.0000
	            can 0.8182
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	             of 0.0000
	            cia 0.0000

         though   437260   1 (5)
	         though 1.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	              } 0.0000

       sparrows   437324   1 (9)
	       sparrows 1.0000
	            the 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	             us 0.0000
	       bacteria 0.0000
	        support 0.0000
	         editor 0.0000

           cage   437393   1 (10)
	           cage 1.0000
	            can 0.8462
	            the 0.0000
	           free 0.0000
	       yourself 0.0000
	           </S> 0.0000
	           sale 0.0000
	              a 0.0000
	              , 0.0000
	            cia 0.0000

           ni}-   437410 inf (9)
	            nin 1.0000
	             ni 1.0000
	           nice 1.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	              } 0.0000
	            cia 0.0000
	            not 0.0000

        brother   437415   1 (4)
	        brother 1.0000
	       Brothers 0.7143
	              ) 0.0000
	           </S> 0.0000

            Mr.   437490   1 (8)
	             Mr 1.0000
	            Mrs 1.0000
	             My 0.9231
	              , 0.0000
	           </S> 0.0000
	              s 0.0000
	              a 0.0000
	              " 0.0000

        Bonhote   437503 inf (10)
	        Benhote 1.0000
	         nonhot 0.8889
	       nonhotel 0.8889
	       Bonhomme 0.8889
	              : 0.0000
	           Book 0.0000
	          <UNK> 0.0000
	              s 0.0000
	           </S> 0.0000
	              , 0.0000

         writes   437511   1 (7)
	         writes 1.0000
	          write 0.9231
	          Clark 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	        tristis 0.0000

            but   437544   1 (7)
	            but 1.0000
	             us 0.0000
	              , 0.0000
	         humans 0.0000
	              } 0.0000
	              a 0.0000
	           </S> 0.0000

        Carrion   437558   1 (11)
	        Carrion 1.0000
	           same 0.0000
	              , 0.0000
	            non 0.0000
	           rest 0.0000
	           </S> 0.0000
	            two 0.0000
	            sub 0.0000
	              I 0.0000
	           City 0.0000
	       Sarbanes 0.0000

       scarcely   437605   1 (6)
	       scarcely 1.0000
	       securely 0.7500
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	              } 0.0000

         FAMILY   437721   1 (5)
	         FAMILY 1.0000
	           </S> 0.0000
	              a 0.0000
	              " 0.0000
	              , 0.0000

     ALAUDIDJ-:   437728 inf (13)
	           LAND 1.0000
	        STUDIES 1.0000
	          ALBUM 1.0000
	        MEDICAL 0.8000
	            AND 0.8000
	              D 0.6000
	      FILTERING 0.6000
	              : 0.6000
	           </S> 0.4000
	              ) 0.4000
	              , 0.4000
	              a 0.0000
	              s 0.0000

              .   437738   1 (6)
	              . 1.0000
	              , 0.9231
	             us 0.8462
	             OF 0.8462
	            the 0.0000
	           </S> 0.0000

            THE   437741   1 (7)
	            THE 1.0000
	              / 0.0000
	              I 0.0000
	              " 0.0000
	             us 0.0000
	              , 0.0000
	           </S> 0.0000

       position   437745   1 (7)
	       position 1.0000
	       positive 0.8462
	           BEST 0.0000
	              , 0.0000
	      configure 0.0000
	  JURISIDICTION 0.0000
	           </S> 0.0000

      vSannders   437770 inf (13)
	       vianders 1.0000
	        vanders 1.0000
	        Sanders 1.0000
	         anders 0.9000
	            the 0.0000
	           </S> 0.0000
	            are 0.0000
	           Dean 0.0000
	              a 0.0000
	           very 0.0000
	             us 0.0000
	         person 0.0000
	              , 0.0000

            has   437780   1 (6)
	            has 1.0000
	             us 0.0000
	              , 0.0000
	           </S> 0.0000
	   accidentally 0.0000
	              a 0.0000

         phiccd   437784 inf (15)
	         phocid 1.0000
	          piccy 1.0000
	         priced 1.0000
	          price 0.8889
	            phi 0.8889
	          ophic 0.0000
	        phichqa 0.0000
	           </S> 0.0000
	        chicchi 0.0000
	           been 0.0000
	              , 0.0000
	       informed 0.0000
	              a 0.0000
	           made 0.0000
	           done 0.0000

           this   437791   1 (5)
	           this 1.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	            cia 0.0000

       faniil_y   437796   2 (14)
	        fancily 1.0000
	         family 0.8889
	         fanihy 0.8889
	       fanmilyi 0.8889
	         fanilo 0.8889
	         fainly 0.8889
	         Daniil 0.8889
	             is 0.4444
	            one 0.4444
	           page 0.4444
	           site 0.4444
	              a 0.4444
	           </S> 0.0000
	              , 0.0000

              -   437856   1 (8)
	              - 1.0000
	              , 0.9231
	             to 0.8462
	             us 0.8462
	             be 0.8462
	           </S> 0.0000
	            not 0.0000
	            the 0.0000

   Motaciilidcc   437952   1 (9)
	   Motacillidae 1.0000
	          local 0.3333
	         public 0.3333
	              a 0.1111
	            the 0.1111
	             us 0.0000
	           </S> 0.0000
	              , 0.0000
	            top 0.0000

             as   437966   1 (8)
	             as 1.0000
	             us 0.9167
	           </S> 0.0000
	            the 0.0000
	              ( 0.0000
	            and 0.0000
	              I 0.0000
	             or 0.0000

      vSeel)ohm   437972   1 (9)
	        Seebohm 1.0000
	           very 0.5556
	            the 0.4444
	           Enya 0.0000
	              " 0.0000
	           </S> 0.0000
	          today 0.0000
	              , 0.0000
	              a 0.0000

             's   437981   1 (7)
	             's 1.0000
	             us 0.9167
	             is 0.9167
	              , 0.8333
	              a 0.8333
	           </S> 0.0000
	          <UNK> 0.0000

      evidently   438020   1 (8)
	      evidently 1.0000
	            the 0.0000
	          those 0.0000
	              " 0.0000
	           </S> 0.0000
	      available 0.0000
	              , 0.0000
	              a 0.0000

      advocated   438030   1 (7)
	      advocated 1.0000
	          about 0.0000
	           </S> 0.0000
	              , 0.0000
	              I 0.0000
	             as 0.0000
	              a 0.0000

            b}'   438040   1 (6)
	              ' 1.0000
	             by 1.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	             us 0.0000

            Dr.   438044   1 (7)
	            Dr. 1.0000
	            are 0.8462
	              , 0.0000
	              a 0.0000
	            the 0.0000
	           </S> 0.0000
	            arz 0.0000

         Sharpc   438048   1 (10)
	         Sharpe 1.0000
	          Sharp 1.0000
	          Share 0.9091
	              , 0.0000
	         Martin 0.0000
	              A 0.0000
	           </S> 0.0000
	             A. 0.0000
	          <UNK> 0.0000
	        Sarpech 0.0000

          Larks   438161   1 (10)
	          Larks 1.0000
	          Links 0.8182
	          world 0.0000
	              a 0.0000
	         system 0.0000
	           same 0.0000
	          Parus 0.0000
	    information 0.0000
	           </S> 0.0000
	              , 0.0000

           than   438207   1 (7)
	           than 1.0000
	              a 0.0000
	           </S> 0.0000
	            fly 0.0000
	             of 0.0000
	              , 0.0000
	          torax 0.0000

         Pipits   438219   1 (10)
	         Pipits 1.0000
	              a 0.0000
	            top 0.0000
	             us 0.0000
	         rights 0.0000
	            the 0.0000
	         public 0.0000
	          world 0.0000
	           </S> 0.0000
	              , 0.0000

            had   438272   1 (8)
	            had 1.0000
	              . 0.0000
	             of 0.0000
	              ) 0.0000
	              , 0.0000
	           </S> 0.0000
	            cia 0.0000
	              a 0.0000

          borne   438295   1 (8)
	          borne 1.0000
	             of 0.0000
	              a 0.0000
	           been 0.0000
	              , 0.0000
	              . 0.0000
	           </S> 0.0000
	          corax 0.0000

       vSeebohm   438305   1 (9)
	        Seebohm 1.0000
	          about 0.6429
	             of 0.5714
	          Delta 0.5714
	              , 0.0000
	        Hewllet 0.0000
	           </S> 0.0000
	           what 0.0000
	              a 0.0000

             's   438313   1 (7)
	             's 1.0000
	             us 0.9167
	             is 0.9167
	              , 0.8333
	              a 0.8333
	           </S> 0.0000
	            the 0.0000

         appear   438337   1 (8)
	         appear 1.0000
	           </S> 0.0000
	              ' 0.0000
	              , 0.0000
	             of 0.0000
	              I 0.0000
	          areas 0.0000
	             is 0.0000

         Pipits   438377   1 (9)
	         Pipits 1.0000
	           </S> 0.0000
	            the 0.0000
	         rights 0.0000
	           fact 0.0000
	             us 0.0000
	            top 0.0000
	              , 0.0000
	              a 0.0000

       Thrushes   438393   1 (9)
	       Thrushes 1.0000
	          world 0.0000
	              , 0.0000
	           </S> 0.0000
	           same 0.0000
	            way 0.0000
	           bill 0.0000
	          three 0.0000
	              a 0.0000

             do   438402   1 (7)
	             do 1.0000
	             us 0.0000
	              a 0.0000
	              , 0.0000
	             of 0.0000
	            way 0.0000
	           </S> 0.0000

       Warblers   438412   1 (11)
	       Warblers 1.0000
	       question 0.0000
	              , 0.0000
	              " 0.0000
	         public 0.0000
	              a 0.0000
	           </S> 0.0000
	            the 0.0000
	            top 0.0000
	          World 0.0000
	        cablets 0.0000

         Jerdon   438426   1 (9)
	         Jerdon 1.0000
	         person 0.8333
	             it 0.0000
	              a 0.0000
	           </S> 0.0000
	            the 0.0000
	              " 0.0000
	              , 0.0000
	          Aedon 0.0000

             's   438432   1 (10)
	             's 1.0000
	             us 0.9091
	             is 0.9091
	              , 0.8182
	              a 0.8182
	              . 0.8182
	              " 0.8182
	           </S> 0.0000
	            non 0.0000
	            JVC 0.0000

              -   438435   1 (8)
	              - 1.0000
	              a 0.9286
	              , 0.9286
	             us 0.8571
	           </S> 0.0000
	           book 0.0000
	            the 0.0000
	          Draft 0.0000

            may   438448   1 (8)
	            may 1.0000
	          major 0.0000
	              , 0.0000
	            can 0.0000
	              I 0.0000
	              ' 0.0000
	           </S> 0.0000
	             of 0.0000

       P'inchcs   438476 inf (10)
	        Pinchas 1.0000
	          Pinch 0.9091
	          right 0.6364
	            the 0.5455
	             us 0.0000
	              a 0.0000
	              , 0.0000
	      Committee 0.0000
	            top 0.0000
	           </S> 0.0000

             on   438485   1 (6)
	             on 1.0000
	             of 0.9091
	             us 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000

Jloiifijniioi/Ia   438510 inf (11)
	     individual 1.0000
	    information 0.7500
	           find 0.7500
	             in 0.5000
	             if 0.5000
	       national 0.5000
	           </S> 0.2500
	              a 0.2500
	              , 0.0000
	            the 0.0000
	             us 0.0000

            and   438527   1 (5)
	            and 1.0000
	              , 0.0000
	            the 0.0000
	           </S> 0.0000
	            arz 0.0000

  PUciropluvics   438531 inf (12)
	     facilities 1.0000
	        service 0.8000
	       services 0.8000
	       products 0.8000
	          click 0.8000
	        Privacy 0.8000
	              i 0.0000
	    scholarship 0.0000
	              , 0.0000
	              a 0.0000
	            the 0.0000
	           </S> 0.0000

              ;   438545   1 (6)
	              ; 1.0000
	              , 0.9231
	              . 0.9231
	             us 0.8462
	           </S> 0.0000
	            the 0.0000

            and   438547   1 (4)
	            and 1.0000
	              } 0.0000
	           </S> 0.0000
	            arz 0.0000

         Pipits   438575   1 (9)
	         Pipits 1.0000
	          Pipes 0.8000
	          world 0.0000
	              . 0.0000
	           body 0.0000
	          Posts 0.0000
	           </S> 0.0000
	           same 0.0000
	       emotions 0.0000

        through   438582   1 (6)
	        through 1.0000
	           </S> 0.0000
	              , 0.0000
	             of 0.0000
	         Anthus 0.0000
	              a 0.0000

     Corydallar   438590   1 (8)
	      Corydalla 1.0000
	         Canada 0.4545
	              a 0.2727
	              , 0.0000
	           </S> 0.0000
	            RSS 0.0000
	            the 0.0000
	             C. 0.0000

            The   438602   1 (6)
	            The 1.0000
	            the 0.9091
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	             us 0.0000

        familj-   438634   3 (12)
	        familja 1.0000
	         familj 1.0000
	         family 0.9000
	           </S> 0.0000
	              , 0.0000
	           book 0.0000
	              . 0.0000
	        project 0.0000
	           best 0.0000
	              a 0.0000
	          world 0.0000
	          major 0.0000

             is   438642   1 (6)
	             is 1.0000
	             iu 0.9000
	           </S> 0.0000
	             of 0.0000
	              , 0.0000
	              a 0.0000

   scutellation   438649   1 (12)
	   scutellation 1.0000
	    information 0.4167
	           </S> 0.0000
	             to 0.0000
	          major 0.0000
	          world 0.0000
	           most 0.0000
	 responsibility 0.0000
	            top 0.0000
	              a 0.0000
	              , 0.0000
	           case 0.0000

             at   438662   1 (6)
	             at 1.0000
	              I 0.0000
	              , 0.0000
	             of 0.0000
	           </S> 0.0000
	            arz 0.0000

            and   438689   1 (5)
	            and 1.0000
	           </S> 0.0000
	              , 0.0000
	              } 0.0000
	            arz 0.0000

      probabl}'   438699   1 (9)
	       probabla 1.0000
	       probably 1.0000
	        probabl 1.0000
	       possible 0.5556
	              a 0.3333
	            not 0.3333
	           </S> 0.0000
	              , 0.0000
	            the 0.0000

          tliis   438720   5 (10)
	          tsiis 1.0000
	          aliis 1.0000
	           tiis 1.0000
	         tiliis 1.0000
	           this 0.9000
	           </S> 0.0000
	            the 0.0000
	              a 0.0000
	              , 0.0000
	              s 0.0000

    peculiarity   438726   1 (8)
	    peculiarity 1.0000
	         public 0.3333
	           best 0.2500
	              , 0.0000
	          <UNK> 0.0000
	              . 0.0000
	              a 0.0000
	           </S> 0.0000

              (   438738   1 (6)
	              ( 1.0000
	              , 0.9000
	             us 0.8000
	             of 0.8000
	           </S> 0.0000
	            the 0.0000

        becanse   438747   1 (14)
	        because 1.0000
	         becase 1.0000
	         secans 0.9000
	          becan 0.9000
	              . 0.0000
	            the 0.0000
	           </S> 0.0000
	             of 0.0000
	             be 0.0000
	           that 0.0000
	              , 0.0000
	          think 0.0000
	        bacanes 0.0000
	              a 0.0000

           they   438755   1 (9)
	           they 1.0000
	            the 0.9231
	        support 0.0000
	             us 0.0000
	             to 0.0000
	              a 0.0000
	           </S> 0.0000
	             of 0.0000
	              , 0.0000

       Sannders   438798 inf (9)
	        Sanders 1.0000
	         anders 0.9000
	           </S> 0.0000
	         Server 0.0000
	              , 0.0000
	           Dean 0.0000
	             A. 0.0000
	              a 0.0000
	             is 0.0000

  subordinating   438807   1 (6)
	  subordinating 1.0000
	         during 0.3846
	            and 0.1538
	              , 0.0000
	           </S> 0.0000
	              a 0.0000

          sa3-s   438842   1 (11)
	           says 1.0000
	            sas 1.0000
	           sass 1.0000
	           sala 0.0000
	           </S> 0.0000
	             sa 0.0000
	             as 0.0000
	            was 0.0000
	              a 0.0000
	              , 0.0000
	           said 0.0000

      majorit}-   438867   1 (10)
	       majority 1.0000
	       majorait 0.9091
	           more 0.6364
	            use 0.0000
	              a 0.0000
	        members 0.0000
	              , 0.0000
	              . 0.0000
	            top 0.0000
	           </S> 0.0000

             O.   438887   1 (8)
	             O. 1.0000
	              . 0.9444
	             A. 0.9444
	             .. 0.9444
	             of 0.8889
	              a 0.8889
	              , 0.8889
	           </S> 0.0000

    Alaiiiiidic   438937 inf (13)
	        listing 1.0000
	           land 1.0000
	       American 0.7500
	    medications 0.7500
	          child 0.7500
	     individual 0.7500
	           page 0.5000
	              a 0.5000
	          major 0.5000
	          world 0.5000
	              , 0.0000
	              . 0.0000
	           </S> 0.0000

     Coii'ida''   438957 inf (12)
	       original 1.0000
	        Company 0.8333
	        company 0.6667
	          Board 0.6667
	            day 0.6667
	              a 0.5000
	              ' 0.5000
	          other 0.5000
	              , 0.0000
	           user 0.0000
	           </S> 0.0000
	              . 0.0000

            has   438968   1 (7)
	            has 1.0000
	             of 0.0000
	              a 0.0000
	           </S> 0.0000
	             is 0.0000
	             us 0.0000
	              , 0.0000

          Larks   438983   1 (12)
	          Larks 1.0000
	          Large 0.8333
	          Links 0.8333
	              - 0.0000
	          table 0.0000
	           form 0.0000
	          terms 0.0000
	           same 0.0000
	            top 0.0000
	          world 0.0000
	          Parus 0.0000
	           </S> 0.0000

       Passcrcs   439007   1 (13)
	       Passeres 1.0000
	      asscracks 0.9000
	         Passca 0.9000
	       Passirac 0.9000
	           </S> 0.0000
	              a 0.0000
	          world 0.0000
	              . 0.0000
	           page 0.0000
	              , 0.0000
	            day 0.0000
	           last 0.0000
	           year 0.0000

            all   439017   1 (9)
	            all 1.0000
	            the 0.0000
	            and 0.0000
	           </S> 0.0000
	              I 0.0000
	           with 0.0000
	              ( 0.0000
	           alba 0.0000
	          while 0.0000

          i'eet   439049 inf (8)
	          ikeet 1.0000
	            eet 0.9167
	           idea 0.0000
	           </S> 0.0000
	           same 0.0000
	            ite 0.0000
	          items 0.0000
	              - 0.0000

         scaled   439055   1 (8)
	         scaled 1.0000
	              , 0.0000
	           sala 0.0000
	          shall 0.0000
	            not 0.0000
	              a 0.0000
	             of 0.0000
	           </S> 0.0000

          Larks   439082   1 (9)
	          Larks 1.0000
	          Links 0.8333
	          Large 0.8333
	      following 0.0000
	       comments 0.0000
	           </S> 0.0000
	           dead 0.0000
	              - 0.0000
	          Parus 0.0000

        walking   439092   1 (7)
	        walking 1.0000
	        working 0.8182
	           </S> 0.0000
	            not 0.0000
	              , 0.0000
	              a 0.0000
	            the 0.0000

          birds   439100   1 (11)
	          birds 1.0000
	         around 0.0000
	         trails 0.0000
	           </S> 0.0000
	              , 0.0000
	          first 0.0000
	       distance 0.0000
	             to 0.0000
	         winner 0.0000
	              a 0.0000
	          Parus 0.0000

       building   439107   1 (9)
	       building 1.0000
	           fish 0.0000
	            the 0.0000
	              , 0.0000
	            and 0.0000
	              a 0.0000
	           </S> 0.0000
	       business 0.0000
	         photos 0.0000

          man}'   439123   1 (9)
	            man 1.0000
	           mana 1.0000
	           many 1.0000
	            the 0.0000
	           </S> 0.0000
	          major 0.0000
	              - 0.0000
	              , 0.0000
	              a 0.0000

        species   439129   1 (6)
	        species 1.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	           with 0.0000
	        suecica 0.0000

       roosting   439137   1 (9)
	       roosting 1.0000
	        Hosting 0.8333
	        Oosting 0.8333
	           nest 0.0000
	          based 0.0000
	           name 0.0000
	              . 0.0000
	           </S> 0.0000
	              , 0.0000

       arboreal   439193   1 (11)
	       arboreal 1.0000
	        arborea 0.9167
	              . 0.0000
	           </S> 0.0000
	           than 0.0000
	              , 0.0000
	           area 0.0000
	            you 0.0000
	         common 0.0000
	              I 0.0000
	             of 0.0000

          the}-   439209 inf (8)
	            the 1.0000
	          their 1.0000
	           thee 1.0000
	           </S> 0.0000
	              ( 0.0000
	             by 0.0000
	            and 0.0000
	              a 0.0000

         rarely   439215   1 (5)
	         rarely 1.0000
	              , 0.0000
	              a 0.0000
	         really 0.0000
	           </S> 0.0000

          perch   439222   1 (8)
	          perch 1.0000
	            per 0.7778
	          agree 0.0000
	           seen 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	          parva 0.0000

            and   439239   1 (5)
	            and 1.0000
	              , 0.0000
	           </S> 0.0000
	              } 0.0000
	            arz 0.0000

           dust   439313   1 (10)
	           dust 1.0000
	           just 0.9091
	             us 0.8182
	           </S> 0.0000
	              a 0.0000
	            dry 0.0000
	              I 0.0000
	              , 0.0000
	             it 0.0000
	           they 0.0000

       Sparrows   439349   1 (9)
	       Sparrows 1.0000
	        Service 0.0000
	           </S> 0.0000
	            the 0.0000
	            use 0.0000
	              a 0.0000
	              , 0.0000
	            one 0.0000
	             us 0.0000

   Gallinaceous   439361   1 (8)
	   Gallinaceous 1.0000
	    application 0.3846
	              a 0.0000
	           dead 0.0000
	           </S> 0.0000
	          other 0.0000
	              , 0.0000
	            the 0.0000

          Their   439381   1 (6)
	          Their 1.0000
	          There 0.7778
	              a 0.0000
	              " 0.0000
	           </S> 0.0000
	              , 0.0000

          Larks   439463   1 (7)
	          Larks 1.0000
	          Links 0.8182
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	              " 0.0000
	          Parus 0.0000

            are   439469   1 (6)
	            are 1.0000
	              ' 0.0000
	            arz 0.0000
	              , 0.0000
	           </S> 0.0000
	              n 0.0000

            the   439528   1 (5)
	            the 1.0000
	              } 0.0000
	           </S> 0.0000
	             us 0.0000
	              , 0.0000

       stronger   439570   1 (6)
	       stronger 1.0000
	              a 0.0000
	             of 0.0000
	              , 0.0000
	           </S> 0.0000
	        service 0.0000

      doubtless   439625   1 (9)
	      doubtless 1.0000
	              a 0.0000
	          would 0.0000
	            and 0.0000
	             or 0.0000
	      according 0.0000
	            the 0.0000
	              ( 0.0000
	           </S> 0.0000

        soaring   439668   1 (7)
	        soaring 1.0000
	         spring 0.8462
	   independence 0.0000
	              " 0.0000
	            own 0.0000
	           </S> 0.0000
	        working 0.0000

       hovering   439676   1 (7)
	       hovering 1.0000
	         having 0.0000
	        profits 0.0000
	              . 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000

              -   439750   1 (8)
	              - 1.0000
	              , 0.9231
	              . 0.9231
	              % 0.9231
	             us 0.8462
	            the 0.0000
	           that 0.0000
	           </S> 0.0000

        fulness   439814   1 (8)
	        fulness 1.0000
	       Business 0.7692
	           than 0.0000
	         access 0.0000
	              a 0.0000
	           </S> 0.0000
	         weight 0.0000
	              , 0.0000

             By   439836   1 (7)
	             By 1.0000
	             by 0.9167
	           </S> 0.0000
	              " 0.0000
	              , 0.0000
	             us 0.0000
	              a 0.0000

           bird   439860   1 (11)
	           bird 1.0000
	            cia 0.0000
	              i 0.0000
	              - 0.0000
	           </S> 0.0000
	            non 0.0000
	           same 0.0000
	            two 0.0000
	            way 0.0000
	            sub 0.0000
	             by 0.0000

          Larks   439905   1 (7)
	          Larks 1.0000
	          Links 0.8462
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	            the 0.0000
	          Parus 0.0000

       directly   439911   1 (8)
	       directly 1.0000
	      Directory 0.7273
	              ' 0.0000
	         person 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	              . 0.0000

          tells   440011   1 (7)
	          tells 1.0000
	           tell 0.9000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	        greeted 0.0000
	          Pales 0.0000

           Lark   440038   1 (12)
	           Lark 1.0000
	           part 0.8333
	           word 0.0000
	              , 0.0000
	           that 0.0000
	            new 0.0000
	              a 0.0000
	           </S> 0.0000
	              . 0.0000
	          child 0.0000
	         person 0.0000
	            arz 0.0000

    Practically   440155 inf (8)
	    practically 1.0000
	   Practicality 0.9000
	      Practical 0.9000
	         Please 0.2000
	              " 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000

       Aluudida   440171   1 (11)
	        aludida 1.0000
	      Alaudidae 1.0000
	          udida 0.9091
	      Alluaudia 0.9091
	         Alauda 0.9091
	            use 0.0000
	           </S> 0.0000
	       American 0.0000
	              - 0.0000
	           same 0.0000
	          style 0.0000

     constitute   440180   1 (6)
	     constitute 1.0000
	      community 0.0000
	              a 0.0000
	             of 0.0000
	           </S> 0.0000
	              , 0.0000

         fainih   440204 inf (7)
	          faini 1.0000
	           </S> 0.0000
	            War 0.0000
	           find 0.0000
	              , 0.0000
	        fininha 0.0000
	              O 0.0000

              '   440210   1 (6)
	              ' 1.0000
	              , 0.9231
	             us 0.8462
	             II 0.8462
	           </S> 0.0000
	            the 0.0000

         Jerdon   440269   1 (8)
	         Jerdon 1.0000
	              " 0.0000
	              a 0.0000
	          Aedon 0.0000
	              , 0.0000
	           </S> 0.0000
	             he 0.0000
	           John 0.0000

       observes   440276   1 (10)
	       observes 1.0000
	       reserved 0.7000
	           </S> 0.0000
	          whole 0.0000
	              a 0.0000
	           said 0.0000
	              , 0.0000
	            JVC 0.0000
	             as 0.0000
	     Enterprise 0.0000

    j\Iala3-ana   440326 inf (13)
	       Malaysia 1.0000
	         Canada 0.8889
	        vanilla 0.7778
	             an 0.7778
	     managerial 0.7778
	              a 0.6667
	              , 0.0000
	      corporate 0.0000
	            the 0.0000
	           time 0.0000
	           </S> 0.0000
	             us 0.0000
	        writing 0.0000

            and   440338   1 (5)
	            and 1.0000
	             in 0.8182
	           </S> 0.0000
	              , 0.0000
	            arz 0.0000

        Familx-   440355   1 (7)
	         Family 1.0000
	              a 0.0000
	              s 0.0000
	              , 0.0000
	             he 0.0000
	           </S> 0.0000
	        Femilax 0.0000

      ALAUDID.E   440363 inf (8)
	              A 1.0000
	              . 1.0000
	            the 0.0000
	           said 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	              " 0.0000

              .   440372 inf (3)
	             of 1.0000
	             us 1.0000
	            the 0.0000

         Alauda   440390   1 (6)
	         Alauda 1.0000
	         Alaska 0.7778
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	              " 0.0000

      iDVCiisis   440397   1 (9)
	          Virus 1.0000
	       arvensis 1.0000
	          dists 1.0000
	             is 0.8750
	           this 0.8750
	      configure 0.7500
	           </S> 0.6250
	              , 0.6250
	              a 0.6250

              ,   440406   1 (4)
	              , 1.0000
	             us 0.7500
	            the 0.0000
	           </S> 0.0000

           LiNN   440408 inf (8)
	            LNN 1.0000
	           LiNK 1.0000
	           List 0.9286
	             pp 0.0000
	              i 0.0000
	            the 0.0000
	            NiL 0.0000
	            cia 0.0000

              .   440412   1 (5)
	              . 1.0000
	              , 0.8571
	             us 0.7143
	           </S> 0.0000
	            the 0.0000

          FOUND   440415 inf (10)
	           FUND 1.0000
	            UND 0.9091
	            FOR 0.8182
	       FOXHOUND 0.0000
	              / 0.0000
	       ZFOUNDRY 0.0000
	              , 0.0000
	              I 0.0000
	              " 0.0000
	           </S> 0.0000

         during   440421   1 (8)
	         during 1.0000
	              a 0.0000
	              - 0.0000
	           </S> 0.0000
	              , 0.0000
	             on 0.0000
	             of 0.0000
	         dubius 0.0000

        nesting   440478   1 (7)
	        nesting 1.0000
	        Listing 0.8182
	              a 0.0000
	              } 0.0000
	       Swingers 0.0000
	           </S> 0.0000
	              , 0.0000

            70°   440522   1 (9)
	           70.5 1.0000
	              0 1.0000
	            270 1.0000
	              , 0.9091
	             us 0.9091
	              I 0.9091
	            the 0.9091
	              " 0.9091
	           </S> 0.0000

              ,   440525   1 (4)
	              , 1.0000
	             us 0.8667
	            the 0.0000
	           </S> 0.0000

      sparingly   440560   1 (9)
	      sparingly 1.0000
	           such 0.0000
	             be 0.0000
	             us 0.0000
	              . 0.0000
	              a 0.0000
	          still 0.0000
	           </S> 0.0000
	              , 0.0000

          South   440719   1 (9)
	          South 1.0000
	              s 0.0000
	            the 0.0000
	           </S> 0.0000
	              a 0.0000
	            and 0.0000
	              ( 0.0000
	           self 0.0000
	           Site 0.0000

      IMongolia   440730   1 (10)
	       Mongolia 1.0000
	              , 0.0000
	         London 0.0000
	              - 0.0000
	           Asia 0.0000
	             of 0.0000
	           </S> 0.0000
	              a 0.0000
	        sources 0.0000
	          coast 0.0000

      Turkestan   440741   1 (8)
	      Turkestan 1.0000
	              a 0.0000
	            and 0.0000
	            the 0.0000
	          women 0.0000
	         photos 0.0000
	           </S> 0.0000
	          these 0.0000

             In   440763   1 (6)
	             In 1.0000
	           </S> 0.0000
	              , 0.0000
	             us 0.0000
	              " 0.0000
	              a 0.0000

     Throughout   441022 inf (9)
	     throughout 1.0000
	     Throughput 1.0000
	          There 0.3636
	            get 0.3636
	              a 0.0000
	           </S> 0.0000
	              " 0.0000
	              , 0.0000
	              s 0.0000

              -   441067   1 (6)
	              - 1.0000
	              , 0.9231
	             us 0.8462
	             of 0.8462
	           </S> 0.0000
	            the 0.0000

    \^excepting   441110 inf (12)
	      excepting 1.0000
	    unexcepting 1.0000
	    information 0.4167
	       services 0.0000
	       terrible 0.0000
	    participate 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	            the 0.0000
	     trademarks 0.0000
	             to 0.0000

           have   441195   1 (8)
	           have 1.0000
	            has 0.8333
	           lava 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	              - 0.0000
	              " 0.0000

             A.   441256 inf (9)
	              . 1.0000
	             AM 1.0000
	              , 0.9333
	             us 0.9333
	              " 0.9333
	              a 0.9333
	            All 0.9333
	            the 0.0000
	           </S> 0.0000

       dulcivox   441259 inf (12)
	       dulcitol 1.0000
	        mulcivo 1.0000
	         dulcio 1.0000
	       dulciolo 0.8889
	           </S> 0.0000
	           name 0.0000
	          whole 0.0000
	          <UNK> 0.0000
	             as 0.0000
	              a 0.0000
	           does 0.0000
	              , 0.0000

             A.   441269   1 (7)
	             A. 1.0000
	              a 0.8333
	            All 0.8333
	            and 0.0000
	            the 0.0000
	           </S> 0.0000
	           took 0.0000

    caiitarclla   441285 inf (12)
	        Maritan 1.0000
	        contact 1.0000
	    Paccagnella 1.0000
	         Stella 1.0000
	            all 0.7500
	          alert 0.5000
	             it 0.5000
	             at 0.5000
	           </S> 0.0000
	          <UNK> 0.0000
	              , 0.0000
	              a 0.0000

             A.   441298   1 (6)
	             A. 1.0000
	              a 0.8333
	            All 0.8333
	            and 0.0000
	            the 0.0000
	           </S> 0.0000

         liopus   441301 inf (12)
	          lopus 1.0000
	         lippus 1.0000
	           opus 0.9000
	              , 0.0000
	      Scoliopus 0.0000
	           your 0.0000
	           </S> 0.0000
	              a 0.0000
	          <UNK> 0.0000
	            Yes 0.0000
	         pilous 0.0000
	        Oriolus 0.0000

             A.   441309   1 (6)
	             A. 1.0000
	              a 0.8333
	            All 0.8333
	            and 0.0000
	            the 0.0000
	           </S> 0.0000

     blakistoni   441312 inf (11)
	     Blakistons 1.0000
	    Blakistonia 1.0000
	      Blakiston 1.0000
	   blacklistons 0.8889
	        listoni 0.8889
	           also 0.4444
	            Yes 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	          <UNK> 0.0000

             A.   441326   1 (6)
	             A. 1.0000
	              a 0.8333
	            All 0.8333
	            and 0.0000
	            the 0.0000
	           </S> 0.0000

      giilgiila   441329 inf (7)
	       gingilla 1.0000
	           will 0.6250
	              a 0.3750
	              , 0.0000
	            Yes 0.0000
	           </S> 0.0000
	          <UNK> 0.0000

             A.   441340   1 (6)
	             A. 1.0000
	              a 0.8333
	            All 0.8333
	            and 0.0000
	            the 0.0000
	           </S> 0.0000

        axlivox   441357 inf (10)
	        altivos 1.0000
	         axlike 1.0000
	           livo 1.0000
	         alivio 1.0000
	          axlir 1.0000
	              I 0.0000
	           also 0.0000
	          <UNK> 0.0000
	           </S> 0.0000
	              , 0.0000

             A.   441366   1 (6)
	             A. 1.0000
	              a 0.8333
	            All 0.8333
	            and 0.0000
	            the 0.0000
	           </S> 0.0000

      ivai/crsi   441369 inf (8)
	       vaincrai 1.0000
	       vaikersi 1.0000
	          first 0.6250
	           </S> 0.3750
	              a 0.3750
	          <UNK> 0.0000
	            Yes 0.0000
	              , 0.0000

           arid   441380   2 (9)
	           arid 1.0000
	            and 0.8182
	            are 0.8182
	           </S> 0.0000
	              " 0.0000
	           with 0.0000
	              I 0.0000
	            the 0.0000
	            arz 0.0000

             A.   441385 inf (9)
	              . 1.0000
	             AM 1.0000
	             to 0.9167
	            All 0.9167
	              a 0.9167
	              , 0.9167
	             us 0.9167
	            and 0.0000
	           </S> 0.0000

           sala   441388   1 (6)
	           sala 1.0000
	              , 0.0000
	           </S> 0.0000
	            Yes 0.0000
	              I 0.0000
	           said 0.0000

            but   441395   1 (6)
	            but 1.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	             us 0.0000
	              } 0.0000

    intergrades   441407   1 (7)
	    intergrades 1.0000
	              a 0.0000
	              , 0.0000
	         people 0.0000
	             of 0.0000
	           </S> 0.0000
	    information 0.0000

          exist   441419   1 (7)
	          exist 1.0000
	           list 0.8182
	              , 0.0000
	             us 0.0000
	              a 0.0000
	           </S> 0.0000
	           with 0.0000

 Ornithologists   441430   1 (8)
	 Ornithologists 1.0000
	          those 0.2857
	             is 0.1429
	           they 0.1429
	            the 0.1429
	              , 0.0000
	           </S> 0.0000
	              a 0.0000

      generally   441445   1 (9)
	      generally 1.0000
	        General 0.7273
	              a 0.0000
	            you 0.0000
	             is 0.0000
	              , 0.0000
	              ' 0.0000
	         manual 0.0000
	           </S> 0.0000

            Our   441512   1 (8)
	            Our 1.0000
	            our 0.9091
	             us 0.8182
	              " 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	              / 0.0000

            Sky   441516   1 (9)
	            Sky 1.0000
	            See 0.8462
	           know 0.0000
	              E 0.0000
	          Price 0.0000
	           </S> 0.0000
	              e 0.0000
	              . 0.0000
	            Pyi 0.0000

              -   441519   1 (7)
	              - 1.0000
	              : 0.9231
	              , 0.9231
	             us 0.8462
	            the 0.0000
	           </S> 0.0000
	           Fire 0.0000

         golden   441565   1 (6)
	         golden 1.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	             of 0.0000
	           good 0.0000

        centres   441593   1 (10)
	        centres 1.0000
	           </S> 0.0000
	              . 0.0000
	           Back 0.0000
	              - 0.0000
	              a 0.0000
	              , 0.0000
	        control 0.0000
	           view 0.0000
	        cinerea 0.0000

          edges   441619   1 (7)
	          edges 1.0000
	              } 0.0000
	           even 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	          Pales 0.0000

          paler   441649   1 (10)
	          paler 1.0000
	           page 0.8333
	              ) 0.0000
	           </S> 0.0000
	              - 0.0000
	              , 0.0000
	              . 0.0000
	          white 0.0000
	          Pales 0.0000
	              a 0.0000

            the   441657   1 (5)
	            the 1.0000
	             us 0.0000
	              } 0.0000
	              , 0.0000
	           </S> 0.0000

              -   441666   1 (9)
	              - 1.0000
	              , 0.9231
	             of 0.8462
	             us 0.8462
	             's 0.8462
	           </S> 0.0000
	            the 0.0000
	           edge 0.0000
	          space 0.0000

              -   441677   1 (8)
	              - 1.0000
	              . 0.9167
	              , 0.9167
	             us 0.8333
	             of 0.8333
	           </S> 0.0000
	            all 0.0000
	            the 0.0000

       blackish   441717   1 (12)
	       blackish 1.0000
	              , 0.0000
	    significant 0.0000
	            few 0.0000
	           </S> 0.0000
	            new 0.0000
	          major 0.0000
	        winning 0.0000
	            red 0.0000
	          place 0.0000
	              . 0.0000
	              a 0.0000

         streak   441726   1 (8)
	         streak 1.0000
	              a 0.0000
	              - 0.0000
	           </S> 0.0000
	             of 0.0000
	          store 0.0000
	              , 0.0000
	         impact 0.0000

            the   441751   1 (5)
	            the 1.0000
	              , 0.0000
	             us 0.0000
	           </S> 0.0000
	              } 0.0000

        sccuiid   441755 inf (12)
	        sciurid 1.0000
	          scuid 1.0000
	        scuirid 1.0000
	        securis 0.8889
	          white 0.0000
	        process 0.0000
	           cuii 0.0000
	              - 0.0000
	         school 0.0000
	           </S> 0.0000
	           same 0.0000
	           text 0.0000

        feather   441763   1 (7)
	        feather 1.0000
	              , 0.0000
	           </S> 0.0000
	             of 0.0000
	            and 0.0000
	              a 0.0000
	          other 0.0000

          white   441771   1 (8)
	          white 1.0000
	          while 0.8889
	              . 0.0000
	           </S> 0.0000
	              , 0.0000
	            boa 0.0000
	           sits 0.0000
	              a 0.0000

         inider   441801 inf (11)
	        insider 1.0000
	         Snider 1.0000
	         United 0.0000
	       Miniderm 0.0000
	          <UNK> 0.0000
	         indier 0.0000
	            QML 0.0000
	           </S> 0.0000
	              , 0.0000
	            The 0.0000
	              a 0.0000

          parts   441808   1 (7)
	          parts 1.0000
	          party 0.8750
	              a 0.0000
	              : 0.0000
	          parva 0.0000
	              , 0.0000
	           </S> 0.0000

        buffish   441814   1 (9)
	        buffish 1.0000
	           </S> 0.0000
	             of 0.0000
	              a 0.0000
	            but 0.0000
	              : 0.0000
	              , 0.0000
	            RHA 0.0000
	            off 0.0000

          witli   441850   5 (12)
	         witali 1.0000
	          Titli 1.0000
	          witai 1.0000
	           wili 1.0000
	           with 0.8889
	           wilt 0.8889
	              a 0.0000
	        witling 0.0000
	              . 0.0000
	              , 0.0000
	           </S> 0.0000
	          wolfi 0.0000

l:)hickish-br(iwu   441856 inf (7)
	          which 1.0000
	            his 0.7500
	       brownish 0.7500
	            the 0.2500
	              , 0.0000
	              a 0.0000
	           </S> 0.0000

             on   441874   1 (3)
	             on 1.0000
	             us 0.0000
	            the 0.0000

           tlie   441877   3 (10)
	          tliet 1.0000
	           trie 1.0000
	           tile 0.9091
	           this 0.9091
	            the 0.9091
	              a 0.0000
	           alba 0.0000
	           </S> 0.0000
	              , 0.0000
	         breast 0.0000

         throat   441882   1 (9)
	         throat 1.0000
	           that 0.8000
	          <UNK> 0.0000
	           </S> 0.0000
	           site 0.0000
	              a 0.0000
	              , 0.0000
	   augmentation 0.0000
	          torax 0.0000

           bill   441909   1 (8)
	           bill 1.0000
	           will 0.9000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	              } 0.0000
	            and 0.0000
	            cia 0.0000

           dark   441914   1 (8)
	           dark 1.0000
	            day 0.8182
	           </S> 0.0000
	              . 0.0000
	              a 0.0000
	              , 0.0000
	            and 0.0000
	            arz 0.0000

           feet   441946   1 (7)
	           feet 1.0000
	           free 0.8182
	              a 0.0000
	              ) 0.0000
	           </S> 0.0000
	              } 0.0000
	              , 0.0000

              j   441951 inf (9)
	              . 1.0000
	             dj 1.0000
	              , 1.0000
	             ja 1.0000
	          water 0.0000
	             us 0.0000
	          state 0.0000
	            the 0.0000
	           </S> 0.0000

              -   441952   1 (6)
	              - 1.0000
	              ) 0.9091
	              , 0.9091
	            the 0.0000
	             us 0.0000
	           </S> 0.0000

       ellowish   441953 inf (9)
	      yellowish 1.0000
	           with 0.0000
	              . 0.0000
	              s 0.0000
	           LECT 0.0000
	             of 0.0000
	           </S> 0.0000
	             to 0.0000
	              a 0.0000

              -   441961   1 (5)
	              - 1.0000
	              , 0.9333
	             us 0.8667
	           </S> 0.0000
	            the 0.0000

           iris   441970   1 (7)
	           iris 1.0000
	             is 0.7143
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	              } 0.0000
	             iu 0.0000

          hazel   441975   1 (7)
	          hazel 1.0000
	           have 0.9130
	              ) 0.0000
	              , 0.0000
	           </S> 0.0000
	           here 0.0000
	          Pales 0.0000

              .   441980   1 (6)
	              . 1.0000
	              , 0.9286
	             us 0.8571
	            the 0.0000
	           </S> 0.0000
	           eyes 0.0000

          d(jes   442053   2 (11)
	          dejes 1.0000
	            jes 0.9091
	           does 0.9091
	            can 0.0000
	              a 0.0000
	              , 0.0000
	          Pales 0.0000
	            did 0.0000
	           </S> 0.0000
	             do 0.0000
	              I 0.0000

        plumage   442073   1 (9)
	        plumage 1.0000
	         please 0.7692
	             us 0.0000
	           </S> 0.0000
	         thread 0.0000
	              a 0.0000
	              , 0.0000
	           this 0.0000
	            the 0.0000

              :   442081   1 (6)
	              : 1.0000
	              , 0.9333
	             of 0.8667
	             us 0.8667
	           </S> 0.0000
	            the 0.0000

         3-oung   442083   1 (8)
	          goung 1.0000
	          young 1.0000
	          found 0.9167
	              . 0.0000
	           </S> 0.0000
	            The 0.0000
	            oun 0.0000
	              a 0.0000

          birds   442090   1 (8)
	          birds 1.0000
	              , 0.0000
	          first 0.0000
	           </S> 0.0000
	              a 0.0000
	            you 0.0000
	              : 0.0000
	          Parus 0.0000

           buff   442107   1 (9)
	           buff 1.0000
	            but 0.8824
	              , 0.0000
	           </S> 0.0000
	          range 0.0000
	             to 0.0000
	              a 0.0000
	     discretion 0.0000
	          rufus 0.0000

           tips   442112   1 (11)
	           tips 1.0000
	           this 0.8333
	             of 0.0000
	           </S> 0.0000
	             as 0.0000
	          icons 0.0000
	             to 0.0000
	          cover 0.0000
	              a 0.0000
	              , 0.0000
	            cia 0.0000

          moult   442151   1 (8)
	          moult 1.0000
	          would 0.8000
	              , 0.0000
	           </S> 0.0000
	              . 0.0000
	             of 0.0000
	          maura 0.0000
	              a 0.0000

           both   442157   1 (6)
	           both 1.0000
	            but 0.8182
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	              . 0.0000

         tawn}^   442177   1 (10)
	          tawny 1.0000
	           tawn 1.0000
	           than 0.0000
	             to 0.0000
	         likely 0.0000
	     interested 0.0000
	              a 0.0000
	              , 0.0000
	        results 0.0000
	           </S> 0.0000

      colouring   442187   1 (9)
	      colouring 1.0000
	            the 0.0000
	              , 0.0000
	           </S> 0.0000
	          other 0.0000
	             us 0.0000
	       children 0.0000
	          stock 0.0000
	              a 0.0000

           bird   442253   1 (9)
	           bird 1.0000
	              a 0.0000
	              , 0.0000
	            cia 0.0000
	           </S> 0.0000
	             by 0.0000
	             of 0.0000
	       Websites 0.0000
	          right 0.0000

       primar}'   442402   1 (11)
	         primar 1.0000
	        primary 1.0000
	       primaria 1.0000
	        primari 1.0000
	              - 0.0000
	              a 0.0000
	        process 0.0000
	           </S> 0.0000
	              , 0.0000
	           time 0.0000
	             of 0.0000

        touches   442411   1 (8)
	        touches 1.0000
	             of 0.0000
	           term 0.0000
	           they 0.0000
	             in 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000

    distinctl}-   442488   1 (8)
	     distinctly 1.0000
	         little 0.4444
	              , 0.0000
	           more 0.0000
	              a 0.0000
	           </S> 0.0000
	             no 0.0000
	           much 0.0000

         longer   442500   1 (8)
	         longer 1.0000
	           long 0.8000
	              a 0.0000
	         higher 0.0000
	           more 0.0000
	              , 0.0000
	             to 0.0000
	           </S> 0.0000

           se.\   442627 inf (11)
	             se 1.0000
	            see 1.0000
	      direction 0.0000
	           part 0.0000
	              , 0.0000
	           sala 0.0000
	             is 0.0000
	             of 0.0000
	              . 0.0000
	              a 0.0000
	           </S> 0.0000

              .   442631   1 (6)
	              . 1.0000
	              , 0.9167
	             us 0.8333
	            but 0.0000
	            the 0.0000
	           </S> 0.0000

           thus   442675   1 (9)
	           thus 1.0000
	           this 0.9231
	              , 0.0000
	           </S> 0.0000
	         Anthus 0.0000
	              . 0.0000
	            and 0.0000
	           have 0.0000
	              a 0.0000

       catchers   442742   1 (10)
	       catchers 1.0000
	             us 0.0000
	              , 0.0000
	            top 0.0000
	          world 0.0000
	           </S> 0.0000
	            the 0.0000
	         public 0.0000
	          other 0.0000
	              a 0.0000

      forwarded   442811   1 (7)
	      forwarded 1.0000
	           used 0.0000
	             to 0.0000
	              , 0.0000
	       provided 0.0000
	              a 0.0000
	           </S> 0.0000

            b}-   442821   1 (8)
	             by 1.0000
	              - 1.0000
	              . 0.0000
	           </S> 0.0000
	              a 0.0000
	             to 0.0000
	              , 0.0000
	             us 0.0000

    experienced   442825   1 (6)
	    experienced 1.0000
	             us 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	            the 0.0000

     poulterers   442907   1 (10)
	     poulterers 1.0000
	            the 0.0000
	          world 0.0000
	             us 0.0000
	           </S> 0.0000
	            top 0.0000
	         public 0.0000
	              , 0.0000
	              a 0.0000
	       Internet 0.0000

       Although   442920   1 (5)
	       Although 1.0000
	              I 0.0000
	           </S> 0.0000
	              " 0.0000
	              , 0.0000

       abundant   442929   1 (7)
	       abundant 1.0000
	            any 0.0000
	              , 0.0000
	              I 0.0000
	            not 0.0000
	            the 0.0000
	           </S> 0.0000

         enough   442938   1 (8)
	         enough 1.0000
	        through 0.7273
	             in 0.0000
	    information 0.0000
	              , 0.0000
	             is 0.0000
	           </S> 0.0000
	              a 0.0000

          downs   442967   1 (10)
	          downs 1.0000
	           does 0.8667
	           </S> 0.0000
	      therefore 0.0000
	          <UNK> 0.0000
	   honeymooners 0.0000
	              - 0.0000
	            the 0.0000
	              a 0.0000
	            and 0.0000

      certainly   443022   1 (8)
	      certainly 1.0000
	        certain 0.8182
	              " 0.0000
	              - 0.0000
	    Calandrella 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000

        prefers   443032   1 (7)
	        prefers 1.0000
	              , 0.0000
	             do 0.0000
	            not 0.0000
	           </S> 0.0000
	              a 0.0000
	        present 0.0000

         arable   443040   1 (9)
	         arable 1.0000
	              , 0.0000
	             to 0.0000
	              a 0.0000
	           </S> 0.0000
	             us 0.0000
	            are 0.0000
	              I 0.0000
	         PayPal 0.0000

          shuns   443131   1 (10)
	          shuns 1.0000
	             is 0.0000
	              : 0.0000
	           </S> 0.0000
	            was 0.0000
	              s 0.0000
	              , 0.0000
	              a 0.0000
	            she 0.0000
	             's 0.0000

        thickly   443148   1 (7)
	        thickly 1.0000
	          think 0.7273
	             us 0.0000
	             to 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000

    plantatious   443203   1 (13)
	    plantations 1.0000
	      plantatio 0.9167
	 plantationibus 0.8333
	    destination 0.0000
	           </S> 0.0000
	              , 0.0000
	           said 0.0000
	       children 0.0000
	            the 0.0000
	              a 0.0000
	    information 0.0000
	        servile 0.0000
	          there 0.0000

            but   443216   1 (9)
	            but 1.0000
	          which 0.0000
	              a 0.0000
	            and 0.0000
	             it 0.0000
	            the 0.0000
	              ( 0.0000
	           </S> 0.0000
	              s 0.0000

        country   443255   1 (7)
	        country 1.0000
	         County 0.8333
	              a 0.0000
	              , 0.0000
	             us 0.0000
	           </S> 0.0000
	            the 0.0000

      Excepting   443276 inf (7)
	      excepting 1.0000
	      Expecting 0.8889
	      Exception 0.8889
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	              " 0.0000

     iudividual   443313   1 (12)
	     individual 1.0000
	       dividual 0.9231
	       National 0.5385
	        edition 0.5385
	     University 0.0000
	          first 0.0000
	          major 0.0000
	              . 0.0000
	            one 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000

             of   443324   1 (7)
	             of 1.0000
	           with 0.0000
	              . 0.0000
	           </S> 0.0000
	             us 0.0000
	              , 0.0000
	           pass 0.0000

             it   443421   1 (6)
	             it 1.0000
	             iu 0.9231
	              , 0.0000
	              } 0.0000
	              a 0.0000
	           </S> 0.0000

          ver3'   443525   1 (9)
	            ver 1.0000
	           very 1.0000
	          verve 1.0000
	              , 0.0000
	            why 0.0000
	            not 0.0000
	              a 0.0000
	            the 0.0000
	           </S> 0.0000

 characteristic   443531   1 (7)
	 characteristic 1.0000
	           case 0.2143
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	             we 0.0000
	             to 0.0000

              .   443545   1 (6)
	              . 1.0000
	              , 0.9167
	             of 0.8333
	             us 0.8333
	           </S> 0.0000
	            the 0.0000

         always   443571   1 (9)
	         always 1.0000
	            all 0.0000
	            and 0.0000
	           </S> 0.0000
	              I 0.0000
	            the 0.0000
	              ( 0.0000
	           alba 0.0000
	        finding 0.0000

      commences   443578   1 (9)
	      commences 1.0000
	           been 0.0000
	            the 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	        contact 0.0000
	        returns 0.0000
	            had 0.0000

       hovering   443631   1 (11)
	       hovering 1.0000
	            the 0.0000
	             us 0.0000
	             to 0.0000
	              - 0.0000
	           </S> 0.0000
	           live 0.0000
	          shape 0.0000
	           have 0.0000
	              a 0.0000
	              , 0.0000

         action   443640   1 (10)
	         action 1.0000
	              , 0.0000
	           </S> 0.0000
	              I 0.0000
	          about 0.0000
	              . 0.0000
	            and 0.0000
	              ) 0.0000
	           over 0.0000
	       overhead 0.0000

             at   443719   1 (6)
	             at 1.0000
	             as 0.9167
	           </S> 0.0000
	              , 0.0000
	              } 0.0000
	            arz 0.0000

     obliquel}-   443743   1 (9)
	      obliquely 1.0000
	        oblique 0.9000
	           only 0.4000
	              a 0.0000
	           </S> 0.0000
	            not 0.0000
	             us 0.0000
	             to 0.0000
	              , 0.0000

            and   443754   1 (5)
	            and 1.0000
	              , 0.0000
	           </S> 0.0000
	            the 0.0000
	            arz 0.0000

       rapidl}'   443758   1 (8)
	        rapidly 1.0000
	           said 0.7273
	              a 0.5455
	    destination 0.0000
	           </S> 0.0000
	            the 0.0000
	   subsidiaries 0.0000
	              , 0.0000

       abruptly   443850   1 (8)
	       abruptly 1.0000
	          about 0.6000
	           </S> 0.0000
	             of 0.0000
	             to 0.0000
	             us 0.0000
	              I 0.0000
	              , 0.0000

        perhaps   443859   1 (7)
	        perhaps 1.0000
	              . 0.0000
	             BP 0.0000
	              a 0.0000
	              , 0.0000
	          place 0.0000
	           </S> 0.0000

       flutters   444008   1 (9)
	       flutters 1.0000
	             us 0.0000
	             is 0.0000
	           </S> 0.0000
	          other 0.0000
	              a 0.0000
	             's 0.0000
	              , 0.0000
	            was 0.0000

           each   444055   1 (6)
	           each 1.0000
	              , 0.0000
	              } 0.0000
	           </S> 0.0000
	           lava 0.0000
	              a 0.0000

         shrill   444100   1 (10)
	         shrill 1.0000
	          shall 0.8462
	           </S> 0.0000
	              a 0.0000
	             of 0.0000
	              s 0.0000
	        touches 0.0000
	            the 0.0000
	          order 0.0000
	              , 0.0000

              '   444107 inf (6)
	              ' 1.0000
	              , 0.9231
	              . 0.9231
	             us 0.8462
	            the 0.0000
	           </S> 0.0000

          ivhcc   444108 inf (13)
	            icc 1.0000
	           vicc 1.0000
	           Ahcc 1.0000
	          ivica 1.0000
	           </S> 0.0000
	              , 0.0000
	              ) 0.0000
	          voice 0.0000
	          <UNK> 0.0000
	          Avich 0.0000
	              s 0.0000
	              a 0.0000
	             in 0.0000

              ,   444113   1 (6)
	              , 1.0000
	              ' 0.8889
	             us 0.7778
	           </S> 0.0000
	            the 0.0000
	          Night 0.0000

          tvhee   444115 inf (11)
	           thee 1.0000
	          tehee 1.0000
	            tvh 0.9375
	            the 0.9375
	           they 0.9375
	              , 0.0000
	              i 0.0000
	          <UNK> 0.0000
	      therefore 0.0000
	          vehet 0.0000
	             L. 0.0000

          w/icc   444122 inf (9)
	          wicca 1.0000
	           wici 1.0000
	            icc 1.0000
	          which 1.0000
	            the 0.0000
	              i 0.0000
	            one 0.0000
	          <UNK> 0.0000
	           Pica 0.0000

             of   444128   1 (4)
	             of 1.0000
	              , 0.0000
	           </S> 0.0000
	             us 0.0000

     generall}-   444240   1 (8)
	      generally 1.0000
	       generall 1.0000
	            all 0.4444
	              a 0.0000
	              ( 0.0000
	            and 0.0000
	            the 0.0000
	           </S> 0.0000

        amongst   444251   1 (4)
	        amongst 1.0000
	              I 0.0000
	              , 0.0000
	           </S> 0.0000

        growing   444259   1 (8)
	        growing 1.0000
	         growth 0.0000
	            the 0.0000
	           </S> 0.0000
	          other 0.0000
	             us 0.0000
	              a 0.0000
	              , 0.0000

      sheltered   444287   1 (9)
	      sheltered 1.0000
	             us 0.0000
	          state 0.0000
	             to 0.0000
	           </S> 0.0000
	              a 0.0000
	           work 0.0000
	          based 0.0000
	              , 0.0000

            b}'   444309   1 (9)
	              ' 1.0000
	             by 1.0000
	            and 0.0000
	             us 0.0000
	           </S> 0.0000
	              a 0.0000
	             of 0.0000
	              , 0.0000
	            the 0.0000

             an   444313   1 (6)
	             an 1.0000
	           </S> 0.0000
	              , 0.0000
	              I 0.0000
	            the 0.0000
	            arz 0.0000

           tuft   444328   1 (12)
	           tuft 1.0000
	           that 0.8462
	          ledge 0.0000
	         source 0.0000
	           </S> 0.0000
	           rock 0.0000
	              a 0.0000
	              , 0.0000
	           part 0.0000
	            the 0.0000
	             of 0.0000
	          rufus 0.0000

       whatever   444404   1 (8)
	       whatever 1.0000
	     whatsoever 0.8333
	          water 0.7500
	              . 0.0000
	             us 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000

              a   444415   1 (6)
	              a 1.0000
	              , 0.9167
	              } 0.9167
	           </S> 0.0000
	             us 0.0000
	            the 0.0000

           nest   444426   1 (11)
	           nest 1.0000
	            new 0.8182
	           verb 0.0000
	             us 0.0000
	            and 0.0000
	           </S> 0.0000
	         vision 0.0000
	        pronoun 0.0000
	             of 0.0000
	              , 0.0000
	              a 0.0000

         formed   444450   1 (10)
	         formed 1.0000
	            off 0.0000
	              , 0.0000
	     University 0.0000
	           </S> 0.0000
	              a 0.0000
	             us 0.0000
	              . 0.0000
	             me 0.0000
	            for 0.0000

          bents   444630   1 (8)
	          bents 1.0000
	           best 0.8182
	              a 0.0000
	              , 0.0000
	              . 0.0000
	           </S> 0.0000
	             up 0.0000
	          steel 0.0000

           dead   444640   1 (7)
	           dead 1.0000
	           year 0.8462
	            the 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	            cia 0.0000

         number   444696   1 (7)
	         number 1.0000
	             of 0.0000
	              , 0.0000
	            are 0.0000
	           </S> 0.0000
	              a 0.0000
	          price 0.0000

      incubated   444755   1 (9)
	      incubated 1.0000
	             us 0.0000
	        include 0.0000
	              , 0.0000
	           here 0.0000
	           </S> 0.0000
	              a 0.0000
	             in 0.0000
	             to 0.0000

     represents   444816   1 (9)
	     represents 1.0000
	           </S> 0.0000
	             by 0.0000
	              , 0.0000
	      different 0.0000
	              a 0.0000
	              . 0.0000
	              s 0.0000
	            had 0.0000

        huffish   444904 inf (9)
	        huffish 1.0000
	              - 0.0000
	          silty 0.0000
	           </S> 0.0000
	             or 0.0000
	            his 0.0000
	              a 0.0000
	            and 0.0000
	            the 0.0000

           clay   444912   1 (7)
	           clay 1.0000
	            can 0.7778
	              , 0.0000
	           </S> 0.0000
	            red 0.0000
	              a 0.0000
	            cia 0.0000

      generally   444949   1 (5)
	      generally 1.0000
	              a 0.0000
	              , 0.0000
	              } 0.0000
	           </S> 0.0000

        densely   444959   1 (6)
	        densely 1.0000
	          sense 0.7000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	             in 0.0000

        mottled   444967   1 (8)
	        mottled 1.0000
	      populated 0.0000
	         packed 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	             to 0.0000
	         little 0.0000

         smok}'   444989 inf (11)
	           smok 1.0000
	          smoke 1.0000
	          smoko 1.0000
	          until 0.0000
	           some 0.0000
	         canola 0.0000
	              a 0.0000
	            the 0.0000
	              , 0.0000
	      vegetable 0.0000
	           </S> 0.0000

           grey   444996   1 (9)
	           grey 1.0000
	           free 0.8333
	              , 0.0000
	           </S> 0.0000
	              . 0.0000
	              a 0.0000
	              e 0.0000
	         golden 0.0000
	            arz 0.0000

           zone   445061   1 (9)
	           zone 1.0000
	            one 0.9167
	             of 0.0000
	           look 0.0000
	           than 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	         corone 0.0000

      sometimes   445118   1 (6)
	      sometimes 1.0000
	              } 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	       November 0.0000

        streaks   445154   1 (11)
	        streaks 1.0000
	           </S> 0.0000
	          sites 0.0000
	     throughout 0.0000
	              a 0.0000
	           here 0.0000
	              . 0.0000
	         around 0.0000
	              , 0.0000
	             us 0.0000
	           that 0.0000

            egg   445207   1 (10)
	            egg 1.0000
	           </S> 0.0000
	             us 0.0000
	            the 0.0000
	              , 0.0000
	      criminals 0.0000
	              a 0.0000
	          thing 0.0000
	       behavior 0.0000
	            get 0.0000

         whicli   445211   1 (7)
	        Chiclid 1.0000
	         whilie 1.0000
	          which 1.0000
	              , 0.0000
	           </S> 0.0000
	         chwili 0.0000
	              a 0.0000

              I   445218   1 (6)
	              I 1.0000
	              , 0.9000
	            the 0.0000
	            you 0.0000
	             us 0.0000
	           </S> 0.0000

           lent   445238   1 (10)
	           lent 1.0000
	              ) 0.0000
	           lava 0.0000
	           next 0.0000
	              a 0.0000
	              , 0.0000
	             of 0.0000
	           </S> 0.0000
	          thing 0.0000
	           been 0.0000

             XI   445288   1 (9)
	             XI 1.0000
	              , 0.0000
	              a 0.0000
	              " 0.0000
	              s 0.0000
	              ) 0.0000
	             In 0.0000
	            rho 0.0000
	           </S> 0.0000

           fig.   445292   1 (14)
	           figi 1.0000
	            fig 1.0000
	           figs 1.0000
	           find 0.9375
	              s 0.0000
	              , 0.0000
	            the 0.0000
	              a 0.0000
	             p. 0.0000
	        section 0.0000
	            XII 0.0000
	              y 0.0000
	              § 0.0000
	           </S> 0.0000

        Bunting   445363   1 (10)
	        Bunting 1.0000
	              . 0.0000
	             of 0.0000
	              a 0.0000
	           Lisp 0.0000
	           </S> 0.0000
	              , 0.0000
	          Stock 0.0000
	         States 0.0000
	         during 0.0000

             it   445373   1 (6)
	             it 1.0000
	             iu 0.9167
	              } 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000

         sieuua   445441 inf (10)
	          sieur 1.0000
	           seua 1.0000
	              , 0.0000
	           </S> 0.0000
	            the 0.0000
	             it 0.0000
	            six 0.0000
	              a 0.0000
	         images 0.0000
	         seguia 0.0000

            and   445448   1 (6)
	            and 1.0000
	              , 0.0000
	           body 0.0000
	              . 0.0000
	           </S> 0.0000
	            arz 0.0000

        macular   445461   1 (10)
	        macular 1.0000
	           </S> 0.0000
	           east 0.0000
	            out 0.0000
	           more 0.0000
	              , 0.0000
	              a 0.0000
	              . 0.0000
	            may 0.0000
	          maura 0.0000

          along   445469   1 (9)
	          along 1.0000
	             of 0.0000
	           also 0.0000
	              I 0.0000
	              . 0.0000
	              , 0.0000
	           </S> 0.0000
	   degeneration 0.0000
	           alba 0.0000

              -   445513   1 (6)
	              - 1.0000
	              , 0.9286
	             us 0.8571
	             of 0.8571
	           </S> 0.0000
	            the 0.0000

          pairs   445519   1 (10)
	          pairs 1.0000
	           part 0.8182
	           </S> 0.0000
	     Distillery 0.0000
	              " 0.0000
	              - 0.0000
	              , 0.0000
	          parva 0.0000
	              a 0.0000
	       invasion 0.0000

   nidification   445535   1 (10)
	   nidification 1.0000
	           2005 0.0000
	            and 0.0000
	              , 0.0000
	              a 0.0000
	            but 0.0000
	           </S> 0.0000
	            not 0.0000
	            the 0.0000
	            who 0.0000

           does   445548   1 (7)
	           does 1.0000
	             do 0.8333
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	             us 0.0000
	             of 0.0000

          nests   445587   1 (10)
	          nests 1.0000
	           2005 0.0000
	            the 0.0000
	              a 0.0000
	             is 0.0000
	            and 0.0000
	              , 0.0000
	            new 0.0000
	         mental 0.0000
	           </S> 0.0000

          ]\Iay   445632 inf (9)
	             ay 1.0000
	            may 1.0000
	              , 0.0000
	            the 0.0000
	              a 0.0000
	             it 0.0000
	           Itay 0.0000
	             us 0.0000
	           </S> 0.0000

              ;   445638   1 (7)
	              ; 1.0000
	              , 0.9091
	              . 0.9091
	             us 0.8182
	            the 0.0000
	          first 0.0000
	           </S> 0.0000

            two   445640   1 (6)
	            two 1.0000
	            top 0.6000
	              ) 0.0000
	              } 0.0000
	             us 0.0000
	           </S> 0.0000

           eggs   445712   1 (8)
	           eggs 1.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	           each 0.0000
	            the 0.0000
	           your 0.0000
	             us 0.0000

            Jul   445742 inf (7)
	            Jul 1.0000
	             us 0.9130
	            Jan 0.9130
	              , 0.0000
	              a 0.0000
	            the 0.0000
	           </S> 0.0000

              '   445746   1 (7)
	              ' 1.0000
	              ) 0.9444
	              . 0.9444
	              , 0.9444
	             us 0.8889
	           </S> 0.0000
	            the 0.0000

           Both   445749   1 (9)
	           Both 1.0000
	           with 0.8000
	              , 0.0000
	              / 0.0000
	              a 0.0000
	           </S> 0.0000
	              s 0.0000
	              " 0.0000
	           them 0.0000

     descending   445817   1 (10)
	     descending 1.0000
	            get 0.0000
	             be 0.0000
	            got 0.0000
	           been 0.0000
	           </S> 0.0000
	              a 0.0000
	        details 0.0000
	           come 0.0000
	              , 0.0000

        towards   445963   1 (7)
	        towards 1.0000
	              . 0.0000
	              a 0.0000
	              , 0.0000
	           that 0.0000
	             of 0.0000
	           </S> 0.0000

  niothcr-l)ird   446052 inf (10)
	          third 1.0000
	          ninth 0.8000
	           word 0.6000
	    information 0.6000
	         better 0.4000
	           </S> 0.0000
	    traditional 0.0000
	              , 0.0000
	          flock 0.0000
	              a 0.0000

        wanders   446066   1 (8)
	        wanders 1.0000
	          under 0.0000
	             of 0.0000
	           </S> 0.0000
	             is 0.0000
	              , 0.0000
	              a 0.0000
	          water 0.0000

             By   446233   1 (7)
	             By 1.0000
	             by 0.9091
	              , 0.0000
	             us 0.0000
	           </S> 0.0000
	              a 0.0000
	              " 0.0000

       watching   446236   1 (7)
	       watching 1.0000
	       matching 0.9000
	              / 0.0000
	              . 0.0000
	              : 0.0000
	           </S> 0.0000
	              a 0.0000

      patiently   446245   1 (9)
	      patiently 1.0000
	            and 0.0000
	            the 0.0000
	         people 0.0000
	             us 0.0000
	           them 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000

             's   446326   1 (8)
	             's 1.0000
	             us 0.9231
	             is 0.9231
	              a 0.8462
	              - 0.8462
	              , 0.8462
	              " 0.8462
	           </S> 0.0000

           soug   446329 inf (13)
	            sou 1.0000
	           soul 1.0000
	          sough 1.0000
	           some 0.8889
	            the 0.0000
	     Zappos.com 0.0000
	           </S> 0.0000
	              , 0.0000
	           head 0.0000
	        mission 0.0000
	           sala 0.0000
	              a 0.0000
	           sugo 0.0000

             is   446334   1 (7)
	             is 1.0000
	             iu 0.9000
	            ... 0.0000
	             me 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000

             it   446416   1 (5)
	             it 1.0000
	             iu 0.8889
	              a 0.0000
	              , 0.0000
	           </S> 0.0000

          trill   446461   1 (10)
	          trill 1.0000
	          still 0.8182
	           </S> 0.0000
	              . 0.0000
	          butts 0.0000
	        sources 0.0000
	              , 0.0000
	              a 0.0000
	              - 0.0000
	       diseases 0.0000

   interspersed   446468   1 (8)
	   interspersed 1.0000
	          there 0.3846
	       together 0.3077
	           </S> 0.0000
	            and 0.0000
	           work 0.0000
	              a 0.0000
	            the 0.0000

          drawn   446493   1 (9)
	          drawn 1.0000
	           down 0.8333
	              , 0.0000
	              - 0.0000
	        periods 0.0000
	           term 0.0000
	           </S> 0.0000
	           time 0.0000
	              a 0.0000

   marvellously   446513   1 (9)
	   marvellously 1.0000
	         really 0.4167
	              . 0.0000
	    recommended 0.0000
	              a 0.0000
	             an 0.0000
	           </S> 0.0000
	              , 0.0000
	            not 0.0000

   exhilarating   446526   1 (11)
	   exhilarating 1.0000
	     surprising 0.3846
	      available 0.3077
	              . 0.0000
	             to 0.0000
	           free 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	             us 0.0000
	           well 0.0000

    considering   446540   1 (8)
	    considering 1.0000
	           with 0.0000
	      including 0.0000
	            the 0.0000
	             or 0.0000
	              " 0.0000
	            and 0.0000
	              i 0.0000

         either   446602   1 (8)
	         either 1.0000
	          other 0.7778
	              , 0.0000
	              . 0.0000
	              a 0.0000
	           when 0.0000
	             us 0.0000
	           </S> 0.0000

        soaring   446609   1 (9)
	        soaring 1.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	            the 0.0000
	         during 0.0000
	           case 0.0000
	         minors 0.0000
	              . 0.0000

       consists   446699   1 (10)
	       consists 1.0000
	           </S> 0.0000
	              - 0.0000
	              , 0.0000
	    Calandrella 0.0000
	        control 0.0000
	              a 0.0000
	              " 0.0000
	        version 0.0000
	        Ranches 0.0000

            but   446755   1 (7)
	            but 1.0000
	           </S> 0.0000
	     documented 0.0000
	              } 0.0000
	              , 0.0000
	             us 0.0000
	              a 0.0000

     gregarious   446916   1 (9)
	     gregarious 1.0000
	              , 0.0000
	          great 0.0000
	           good 0.0000
	      important 0.0000
	           much 0.0000
	             to 0.0000
	              a 0.0000
	           </S> 0.0000

        immense   446959   1 (10)
	        immense 1.0000
	             us 0.0000
	              a 0.0000
	           time 0.0000
	          phone 0.0000
	           </S> 0.0000
	              , 0.0000
	            the 0.0000
	             of 0.0000
	              . 0.0000

       iisually   447002 inf (7)
	       visually 1.0000
	              s 0.0000
	            and 0.0000
	           </S> 0.0000
	          shall 0.0000
	              a 0.0000
	              , 0.0000

      realizing   447011   1 (6)
	      realizing 1.0000
	        reading 0.7000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	        animals 0.0000

           from   447021   1 (7)
	           from 1.0000
	          their 0.0000
	              , 0.0000
	           that 0.0000
	           </S> 0.0000
	            arz 0.0000
	              a 0.0000

             gd   447026 inf (8)
	             gd 1.0000
	              , 0.9000
	             us 0.0000
	            the 0.0000
	              a 0.0000
	             do 0.0000
	           </S> 0.0000
	           CliC 0.0000

             to   447030   1 (5)
	             to 1.0000
	             us 0.0000
	              , 0.0000
	              " 0.0000
	           </S> 0.0000

         apiece   447037   1 (9)
	         apiece 1.0000
	              , 0.0000
	            are 0.0000
	           </S> 0.0000
	             to 0.0000
	              " 0.0000
	           that 0.0000
	             us 0.0000
	              I 0.0000

            the   447119   1 (5)
	            the 1.0000
	             us 0.0000
	              } 0.0000
	              , 0.0000
	           </S> 0.0000

             In   447188   1 (6)
	             In 1.0000
	              a 0.0000
	              " 0.0000
	              , 0.0000
	              s 0.0000
	           </S> 0.0000

        rearing   447224   1 (8)
	        rearing 1.0000
	            the 0.0000
	         during 0.0000
	           your 0.0000
	             us 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000

            Sky   447232   1 (8)
	            Sky 1.0000
	            See 0.8750
	           drop 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	              e 0.0000
	            Pyi 0.0000

              -   447235   1 (7)
	              - 1.0000
	              , 0.9231
	             us 0.8462
	         Harbor 0.0000
	     Soundtrack 0.0000
	           </S> 0.0000
	            the 0.0000

          Larks   447236   1 (10)
	          Larks 1.0000
	          Links 0.8000
	           mail 0.0000
	              a 0.0000
	           </S> 0.0000
	             of 0.0000
	              s 0.0000
	             up 0.0000
	             to 0.0000
	              . 0.0000

          seven   447268   1 (8)
	          seven 1.0000
	            see 0.8000
	              a 0.0000
	           from 0.0000
	            not 0.0000
	              , 0.0000
	           </S> 0.0000
	          Aedon 0.0000

            but   447352   1 (6)
	            but 1.0000
	              } 0.0000
	              , 0.0000
	             us 0.0000
	           </S> 0.0000
	              a 0.0000

        bounded   447414   1 (8)
	        bounded 1.0000
	          under 0.0000
	              , 0.0000
	              a 0.0000
	           that 0.0000
	           work 0.0000
	           </S> 0.0000
	              . 0.0000

      alighting   447477   1 (11)
	      alighting 1.0000
	              , 0.0000
	            not 0.0000
	           </S> 0.0000
	            the 0.0000
	            sat 0.0000
	             to 0.0000
	          right 0.0000
	             so 0.0000
	         report 0.0000
	              I 0.0000

         bought   447556   1 (8)
	         bought 1.0000
	            the 0.0000
	             is 0.0000
	           with 0.0000
	           </S> 0.0000
	              a 0.0000
	              ( 0.0000
	           your 0.0000

     Larkrunuer   447571 inf (11)
	        Warrior 1.0000
	            are 0.8571
	          value 0.8571
	         broker 0.8571
	              a 0.5714
	          <UNK> 0.0000
	              , 0.0000
	        neutral 0.0000
	              ) 0.0000
	              s 0.0000
	           </S> 0.0000

           cage   447599   1 (7)
	           cage 1.0000
	            can 0.8182
	              I 0.0000
	           </S> 0.0000
	            cia 0.0000
	              , 0.0000
	             of 0.0000

             In   447672   1 (7)
	             In 1.0000
	              " 0.0000
	              , 0.0000
	          where 0.0000
	           </S> 0.0000
	             us 0.0000
	              a 0.0000

          Sedge   447696   1 (10)
	          Sedge 1.0000
	            bug 0.0000
	            two 0.0000
	              C 0.0000
	              - 0.0000
	            non 0.0000
	           </S> 0.0000
	            new 0.0000
	          Aedon 0.0000
	           Send 0.0000

           ui}'   447722 inf (10)
	           uiui 1.0000
	             ui 1.0000
	            uit 1.0000
	             it 0.8750
	             us 0.8750
	             up 0.8750
	              a 0.0000
	            the 0.0000
	           </S> 0.0000
	              , 0.0000

          birds   447727   1 (8)
	          birds 1.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	             in 0.0000
	           back 0.0000
	          first 0.0000
	          Parus 0.0000

            cue   447736 inf (8)
	            cue 1.0000
	           </S> 0.0000
	            the 0.0000
	            cia 0.0000
	            can 0.0000
	              , 0.0000
	              a 0.0000
	           more 0.0000

            ]jy   447740   3 (10)
	            ajy 1.0000
	             jy 1.0000
	             by 0.9000
	              , 0.0000
	           from 0.0000
	              a 0.0000
	           than 0.0000
	         second 0.0000
	           </S> 0.0000
	            Pyi 0.0000

            one   447744   1 (6)
	            one 1.0000
	              , 0.0000
	             us 0.0000
	              a 0.0000
	              ) 0.0000
	           </S> 0.0000

        jumping   447787   1 (8)
	        jumping 1.0000
	        Cumming 0.8462
	         during 0.0000
	            own 0.0000
	            way 0.0000
	           </S> 0.0000
	              , 0.0000
	          being 0.0000

           When   447863   1 (6)
	           When 1.0000
	           when 0.8889
	              " 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000

            off   447893   1 (8)
	            off 1.0000
	             of 0.9091
	              a 0.0000
	              , 0.0000
	             us 0.0000
	              . 0.0000
	             to 0.0000
	           </S> 0.0000

        blanket   447906   1 (10)
	        blanket 1.0000
	              , 0.0000
	            hip 0.0000
	            top 0.0000
	          truth 0.0000
	          world 0.0000
	           </S> 0.0000
	        blanche 0.0000
	           best 0.0000
	           same 0.0000

        tumbled   447935   1 (7)
	        tumbled 1.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	              . 0.0000
	         number 0.0000
	             of 0.0000

              -   448003   1 (5)
	              - 1.0000
	              , 0.9231
	             us 0.8462
	           </S> 0.0000
	            the 0.0000

            lec   448005 inf (9)
	            lec 1.0000
	            New 0.8667
	              a 0.0000
	           </S> 0.0000
	              . 0.0000
	          linux 0.0000
	             to 0.0000
	           name 0.0000
	              s 0.0000

              -   448008   1 (6)
	              - 1.0000
	              , 0.9167
	             us 0.8333
	           </S> 0.0000
	            the 0.0000
	           name 0.0000

          tcc-u   448013 inf (13)
	           tchu 1.0000
	            tcu 1.0000
	             tc 0.9167
	          Ntccc 0.0000
	            the 0.0000
	           Atcc 0.0000
	     Scotchgard 0.0000
	              a 0.0000
	          <UNK> 0.0000
	            and 0.0000
	           </S> 0.0000
	             us 0.0000
	              , 0.0000

            and   448029   1 (5)
	            and 1.0000
	           </S> 0.0000
	              , 0.0000
	              } 0.0000
	            arz 0.0000

         wear}-   448090 inf (9)
	           wear 1.0000
	         wearer 1.0000
	          wears 1.0000
	         Search 0.8571
	            now 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	            the 0.0000

            and   448098   1 (5)
	            and 1.0000
	            the 0.0000
	           </S> 0.0000
	           when 0.0000
	            arz 0.0000

          tlien   448102   6 (12)
	         tolien 1.0000
	           lien 1.0000
	           tien 1.0000
	          tliet 1.0000
	         tilien 1.0000
	           then 0.8889
	           </S> 0.0000
	              a 0.0000
	             he 0.0000
	            the 0.0000
	              , 0.0000
	        Atliens 0.0000

        tumbled   448108   1 (8)
	        tumbled 1.0000
	           </S> 0.0000
	              . 0.0000
	              a 0.0000
	             us 0.0000
	              , 0.0000
	         number 0.0000
	             it 0.0000

           They   448159   1 (6)
	           They 1.0000
	            The 0.8889
	              " 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000

         seemed   448164   1 (6)
	         seemed 1.0000
	          semen 0.8000
	           </S> 0.0000
	         server 0.0000
	              , 0.0000
	            are 0.0000

          the}'   448204   1 (8)
	            the 1.0000
	           they 1.0000
	           thee 1.0000
	          their 1.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	             of 0.0000

            got   448210   1 (7)
	            got 1.0000
	            get 0.9000
	              , 0.0000
	           </S> 0.0000
	            the 0.0000
	             us 0.0000
	              a 0.0000

  subsequentl}'   448259   1 (8)
	   subsequently 1.0000
	      currently 0.4545
	       recently 0.4545
	           </S> 0.0000
	             'm 0.0000
	              , 0.0000
	              I 0.0000
	           have 0.0000

      purchased   448273   1 (7)
	      purchased 1.0000
	           </S> 0.0000
	              , 0.0000
	         posted 0.0000
	           have 0.0000
	            not 0.0000
	              a 0.0000

         3'oung   448285   1 (11)
	          young 1.0000
	          goung 1.0000
	          Young 1.0000
	          found 0.9000
	           </S> 0.0000
	         single 0.0000
	          major 0.0000
	            new 0.0000
	              - 0.0000
	           very 0.0000
	            oun 0.0000

           male   448292   1 (7)
	           male 1.0000
	           make 0.9091
	              , 0.0000
	           sala 0.0000
	             of 0.0000
	              a 0.0000
	           </S> 0.0000

              -   448459   1 (7)
	              - 1.0000
	              , 0.9231
	             us 0.8462
	            the 0.0000
	            man 0.0000
	           </S> 0.0000
	          drive 0.0000

    continually   448557   1 (9)
	    continually 1.0000
	             us 0.0000
	              , 0.0000
	              a 0.0000
	            the 0.0000
	              . 0.0000
	            and 0.0000
	           only 0.0000
	           </S> 0.0000

         fl\ing   448604   1 (11)
	         flying 1.0000
	          fling 1.0000
	         filing 0.9000
	         closes 0.0000
	           </S> 0.0000
	           been 0.0000
	              , 0.0000
	            ing 0.0000
	           find 0.0000
	              a 0.0000
	      Northeast 0.0000

              ,   448610   1 (6)
	              , 1.0000
	             us 0.7500
	             be 0.7500
	             to 0.7500
	            the 0.0000
	           </S> 0.0000

           when   448622   1 (5)
	           when 1.0000
	            the 0.8333
	              , 0.0000
	           </S> 0.0000
	              a 0.0000

     recklessly   448654   1 (6)
	     recklessly 1.0000
	        process 0.4545
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	             to 0.0000

  consecjuences   448693   1 (11)
	   consequences 1.0000
	   consecuentes 1.0000
	       services 0.4545
	        service 0.3636
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	            the 0.0000
	             us 0.0000
	             up 0.0000
	       anything 0.0000

             to   448707   1 (6)
	             to 1.0000
	             in 0.0000
	              . 0.0000
	              , 0.0000
	           </S> 0.0000
	             us 0.0000

             he   448867   1 (6)
	             he 1.0000
	              a 0.0000
	             us 0.0000
	              , 0.0000
	           </S> 0.0000
	              } 0.0000

           claw   448906   1 (9)
	           claw 1.0000
	            can 0.8000
	           </S> 0.0000
	            cia 0.0000
	              . 0.0000
	              a 0.0000
	             of 0.0000
	              , 0.0000
	             be 0.0000

     watercress   448959   1 (8)
	     watercress 1.0000
	          water 0.6154
	            the 0.3846
	              a 0.0000
	     TWikiUsers 0.0000
	           </S> 0.0000
	              , 0.0000
	           milk 0.0000

             In   449037   1 (7)
	             In 1.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	             us 0.0000
	              " 0.0000
	              . 0.0000

              I   449054   1 (8)
	              I 1.0000
	              8 0.9286
	              , 0.9286
	           2005 0.0000
	             us 0.0000
	            the 0.0000
	           </S> 0.0000
	             we 0.0000

       nestling   449069   1 (8)
	       nestling 1.0000
	          years 0.0000
	              - 0.0000
	        nothing 0.0000
	              , 0.0000
	          major 0.0000
	           </S> 0.0000
	              a 0.0000

            Sky   449078   1 (10)
	            Sky 1.0000
	            See 0.8333
	              . 0.0000
	           Bare 0.0000
	           year 0.0000
	             in 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	            Pyi 0.0000

          Larks   449082   1 (10)
	          Larks 1.0000
	          Links 0.8182
	             up 0.0000
	           High 0.0000
	              . 0.0000
	             to 0.0000
	              s 0.0000
	           </S> 0.0000
	           term 0.0000
	              a 0.0000

        brought   449092   1 (9)
	        brought 1.0000
	        through 0.7273
	              , 0.0000
	           pick 0.0000
	              a 0.0000
	            let 0.0000
	           </S> 0.0000
	            the 0.0000
	            set 0.0000

    Nightingale   449116   1 (9)
	    Nightingale 1.0000
	       original 0.4545
	         little 0.3636
	       products 0.0000
	           work 0.0000
	           </S> 0.0000
	           land 0.0000
	            own 0.0000
	              , 0.0000

           food   449128   1 (9)
	           food 1.0000
	            for 0.8182
	              . 0.0000
	           </S> 0.0000
	              , 0.0000
	              " 0.0000
	          House 0.0000
	              a 0.0000
	              ) 0.0000

            the   449216   1 (4)
	            the 1.0000
	              , 0.0000
	              s 0.0000
	           </S> 0.0000

         Bulbul   449293   1 (10)
	         Bulbul 1.0000
	           Gulf 0.0000
	         number 0.0000
	           </S> 0.0000
	              , 0.0000
	        galbula 0.0000
	            and 0.0000
	              . 0.0000
	              a 0.0000
	             of 0.0000

           into   449300   1 (9)
	           into 1.0000
	             in 0.8333
	            War 0.0000
	            and 0.0000
	         Sharma 0.0000
	              , 0.0000
	           </S> 0.0000
	          minor 0.0000
	              a 0.0000

          Larks   449409   1 (10)
	          Larks 1.0000
	          Links 0.8333
	           </S> 0.0000
	       children 0.0000
	            age 0.0000
	         people 0.0000
	              , 0.0000
	              . 0.0000
	              a 0.0000
	          Parus 0.0000

           when   449415   1 (5)
	           when 1.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	              ' 0.0000

       Although   449546   1 (7)
	       Although 1.0000
	        through 0.6667
	              a 0.0000
	              " 0.0000
	              , 0.0000
	             us 0.0000
	           </S> 0.0000

          cramp   449579   1 (11)
	          cramp 1.0000
	           this 0.0000
	          class 0.0000
	           fact 0.0000
	             it 0.0000
	              a 0.0000
	           </S> 0.0000
	            can 0.0000
	            the 0.0000
	              , 0.0000
	          corax 0.0000

         reared   449603   1 (8)
	         reared 1.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	              - 0.0000
	         review 0.0000
	     understand 0.0000
	             of 0.0000

          moult   449640   1 (8)
	          moult 1.0000
	          would 0.8333
	              a 0.0000
	          years 0.0000
	           </S> 0.0000
	              , 0.0000
	              . 0.0000
	          maura 0.0000

            two   449646   1 (9)
	            two 1.0000
	              . 0.0000
	          cycle 0.0000
	         winter 0.0000
	           </S> 0.0000
	              , 0.0000
	         mosaic 0.0000
	             us 0.0000
	              a 0.0000

            the   449665   1 (5)
	            the 1.0000
	             us 0.0000
	           </S> 0.0000
	              } 0.0000
	              , 0.0000

           tame   449700   1 (10)
	           tame 1.0000
	           time 0.9167
	      beautiful 0.0000
	           </S> 0.0000
	             of 0.0000
	              . 0.0000
	              , 0.0000
	           lava 0.0000
	           rich 0.0000
	              a 0.0000

         little   449705   1 (7)
	         little 1.0000
	           </S> 0.0000
	              , 0.0000
	            the 0.0000
	              a 0.0000
	            and 0.0000
	          Sitta 0.0000

             it   449773   1 (6)
	             it 1.0000
	             iu 0.8750
	              , 0.0000
	              a 0.0000
	              } 0.0000
	           </S> 0.0000

          crest   449831   1 (8)
	          crest 1.0000
	           best 0.8333
	            own 0.0000
	            way 0.0000
	              , 0.0000
	          major 0.0000
	           </S> 0.0000
	              a 0.0000

             it   449874   1 (7)
	             it 1.0000
	             iu 0.9167
	             of 0.0000
	            flu 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000

     eventually   449952   1 (6)
	     eventually 1.0000
	         really 0.5000
	              a 0.1000
	           </S> 0.0000
	             us 0.0000
	              , 0.0000

           This   450002   1 (6)
	           This 1.0000
	           </S> 0.0000
	              , 0.0000
	              " 0.0000
	              a 0.0000
	            cia 0.0000

       perching   450029   1 (7)
	       perching 1.0000
	             us 0.0000
	            the 0.0000
	        service 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000

        hanging   450084   1 (10)
	        hanging 1.0000
	              . 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	             do 0.0000
	             us 0.0000
	             it 0.0000
	              - 0.0000
	         Rating 0.0000

        roosted   450141   1 (12)
	        roosted 1.0000
	              a 0.0000
	          based 0.0000
	           been 0.0000
	           used 0.0000
	             be 0.0000
	           </S> 0.0000
	            not 0.0000
	              - 0.0000
	             us 0.0000
	        depends 0.0000
	              , 0.0000

        Judging   450197   1 (7)
	        Judging 1.0000
	           Sort 0.0000
	              , 0.0000
	              a 0.0000
	              s 0.0000
	        funding 0.0000
	           </S> 0.0000

            mj^   450208   3 (10)
	             mj 1.0000
	            mjw 1.0000
	             my 0.9231
	          their 0.0000
	             us 0.0000
	            his 0.0000
	              a 0.0000
	           </S> 0.0000
	            the 0.0000
	              , 0.0000

            own   450212   1 (8)
	            own 1.0000
	            one 0.8182
	             of 0.8182
	           </S> 0.0000
	             us 0.0000
	            the 0.0000
	              , 0.0000
	              a 0.0000

        rearing   450230   1 (7)
	        rearing 1.0000
	             us 0.0000
	         during 0.0000
	            the 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000

            Sky   450238   1 (10)
	            Sky 1.0000
	             by 0.8750
	              , 0.0000
	       children 0.0000
	           </S> 0.0000
	              . 0.0000
	           with 0.0000
	            non 0.0000
	            Pyi 0.0000
	              a 0.0000

          Larks   450242   1 (8)
	          Larks 1.0000
	          Links 0.8333
	             to 0.0000
	             so 0.0000
	              s 0.0000
	           </S> 0.0000
	              . 0.0000
	              a 0.0000

    Whitethroat   450325   1 (11)
	    Whitethroat 1.0000
	     University 0.3333
	            rat 0.3333
	             it 0.2500
	         person 0.2500
	          major 0.0000
	              . 0.0000
	         moment 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000

             's   450336   1 (7)
	             's 1.0000
	             is 0.9091
	             us 0.9091
	              , 0.8182
	              a 0.8182
	             of 0.8182
	           </S> 0.0000

          fixed   450344   1 (7)
	          fixed 1.0000
	           find 0.8333
	              . 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	             of 0.0000

            the   450376   1 (5)
	            the 1.0000
	           </S> 0.0000
	              , 0.0000
	              } 0.0000
	             us 0.0000

          the}-   450442 inf (7)
	            the 1.0000
	           thee 1.0000
	          their 1.0000
	              a 0.0000
	           </S> 0.0000
	              . 0.0000
	              , 0.0000

         crouch   450448   1 (7)
	         crouch 1.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	              . 0.0000
	          could 0.0000
	        curruca 0.0000

            but   450534   1 (6)
	            but 1.0000
	              a 0.0000
	           </S> 0.0000
	             us 0.0000
	              , 0.0000
	              } 0.0000

      moistened   450638   1 (6)
	      moistened 1.0000
	           </S> 0.0000
	              a 0.0000
	           most 0.0000
	              , 0.0000
	            the 0.0000

           ants   450648   1 (8)
	           ants 1.0000
	            and 0.8000
	           with 0.0000
	              , 0.0000
	              . 0.0000
	           alba 0.0000
	              I 0.0000
	           </S> 0.0000

              '   450652   1 (6)
	              ' 1.0000
	              , 0.9565
	             us 0.9130
	            the 0.0000
	            and 0.0000
	           </S> 0.0000

        cocoons   450654   1 (9)
	        cocoons 1.0000
	        contact 0.0000
	              , 0.0000
	              s 0.0000
	              ) 0.0000
	           nest 0.0000
	           </S> 0.0000
	       termites 0.0000
	              a 0.0000

           When   450663   1 (7)
	           When 1.0000
	           when 0.9091
	              " 0.0000
	           </S> 0.0000
	              / 0.0000
	              , 0.0000
	              a 0.0000

      mealworms   450688   1 (10)
	      mealworms 1.0000
	        members 0.5455
	          major 0.5455
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	             of 0.0000
	              . 0.0000
	          times 0.0000
	              - 0.0000

        canar}'   450718   1 (10)
	          canar 1.0000
	         canary 1.0000
	            ink 0.0000
	         Canada 0.0000
	              a 0.0000
	           time 0.0000
	             us 0.0000
	            the 0.0000
	           </S> 0.0000
	              , 0.0000

            and   450726   1 (5)
	            and 1.0000
	           </S> 0.0000
	              , 0.0000
	              . 0.0000
	            arz 0.0000

     watercress   450759   1 (8)
	     watercress 1.0000
	           were 0.4545
	           then 0.2727
	            the 0.2727
	           </S> 0.0000
	              I 0.0000
	              a 0.0000
	              , 0.0000

           when   450770   1 (7)
	           when 1.0000
	            the 0.8000
	           </S> 0.0000
	              , 0.0000
	             us 0.0000
	              a 0.0000
	              . 0.0000

         1891-2   450872 inf (13)
	           1982 1.0000
	           1991 1.0000
	        1971-72 1.0000
	           1862 1.0000
	           1918 1.0000
	              , 0.7000
	           </S> 0.7000
	            the 0.7000
	              a 0.7000
	         things 0.0000
	      2001-2002 0.0000
	             us 0.0000
	           2003 0.0000

           that   450879   1 (7)
	           that 1.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	              . 0.0000
	             in 0.0000
	          torax 0.0000

           nets   450927   1 (11)
	           nets 1.0000
	           next 0.8000
	         tongue 0.0000
	       products 0.0000
	            way 0.0000
	           cock 0.0000
	              , 0.0000
	              a 0.0000
	           hand 0.0000
	             us 0.0000
	           </S> 0.0000

       thirteen   450956   1 (8)
	       thirteen 1.0000
	          three 0.7273
	              . 0.0000
	              - 0.0000
	           page 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000

            Sky   450965   1 (10)
	            Sky 1.0000
	            See 0.8462
	           year 0.0000
	              a 0.0000
	            the 0.0000
	          years 0.0000
	              , 0.0000
	           </S> 0.0000
	          tacho 0.0000
	            Pyi 0.0000

          Larks   450969   1 (10)
	          Larks 1.0000
	          Links 0.8571
	           </S> 0.0000
	             up 0.0000
	             to 0.0000
	              s 0.0000
	           step 0.0000
	              a 0.0000
	              . 0.0000
	           mail 0.0000

          about   451011   1 (5)
	          about 1.0000
	           </S> 0.0000
	              , 0.0000
	              } 0.0000
	              I 0.0000

            one   451111   1 (6)
	            one 1.0000
	           </S> 0.0000
	             us 0.0000
	              , 0.0000
	              } 0.0000
	              a 0.0000

       retained   451134   1 (9)
	       retained 1.0000
	       required 0.6667
	              , 0.0000
	            got 0.0000
	              a 0.0000
	            not 0.0000
	             it 0.0000
	           said 0.0000
	           </S> 0.0000

           This   451183   1 (6)
	           This 1.0000
	              " 0.0000
	           </S> 0.0000
	              , 0.0000
	            cia 0.0000
	              a 0.0000

           tame   451204   1 (10)
	           tame 1.0000
	           time 0.9091
	              a 0.0000
	       athletic 0.0000
	             to 0.0000
	           </S> 0.0000
	          there 0.0000
	           been 0.0000
	           lava 0.0000
	              , 0.0000

         turfed   451261   1 (9)
	         turfed 1.0000
	             in 0.0000
	          slave 0.0000
	          three 0.0000
	              , 0.0000
	             of 0.0000
	              " 0.0000
	           </S> 0.0000
	              a 0.0000

         sanded   451277   1 (11)
	         sanded 1.0000
	           said 0.0000
	              . 0.0000
	              a 0.0000
	             of 0.0000
	              , 0.0000
	              - 0.0000
	           </S> 0.0000
	              ) 0.0000
	             us 0.0000
	            out 0.0000

             he   451285   1 (6)
	             he 1.0000
	             us 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	              } 0.0000

          3'our   451363   1 (9)
	           your 1.0000
	            our 1.0000
	             us 0.0000
	              a 0.0000
	           </S> 0.0000
	           down 0.0000
	              , 0.0000
	             to 0.0000
	            not 0.0000

           eyes   451369   1 (7)
	           eyes 1.0000
	           been 0.0000
	           </S> 0.0000
	            the 0.0000
	              a 0.0000
	              , 0.0000
	            Pyi 0.0000

       dropping   451427   1 (8)
	       dropping 1.0000
	       Shopping 0.8462
	           last 0.0000
	            own 0.0000
	           </S> 0.0000
	          liner 0.0000
	              , 0.0000
	              a 0.0000

      i-eturned   451448   1 (12)
	       returned 1.0000
	       inturned 1.0000
	          tried 0.6250
	        whether 0.5000
	          wants 0.0000
	            was 0.0000
	              a 0.0000
	           </S> 0.0000
	             as 0.0000
	            had 0.0000
	           came 0.0000
	              , 0.0000

             to   451458   1 (7)
	             to 1.0000
	           </S> 0.0000
	              . 0.0000
	              , 0.0000
	             us 0.0000
	            the 0.0000
	             on 0.0000

        Towards   451468 inf (8)
	         Toward 1.0000
	             to 0.0000
	          There 0.0000
	           </S> 0.0000
	              , 0.0000
	              " 0.0000
	       Tawadros 0.0000
	              a 0.0000

          moult   451526   1 (9)
	          moult 1.0000
	          would 0.7778
	           head 0.0000
	           wife 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	            own 0.0000
	          maura 0.0000

            Mr.   451597   1 (8)
	            Mrs 1.0000
	             Mr 1.0000
	             My 0.8750
	              a 0.0000
	              " 0.0000
	           </S> 0.0000
	              , 0.0000
	            arz 0.0000

            Sky   451639   1 (9)
	            Sky 1.0000
	            See 0.8667
	          mixed 0.0000
	            non 0.0000
	           </S> 0.0000
	            Pyi 0.0000
	            the 0.0000
	              a 0.0000
	              , 0.0000

              -   451642   1 (6)
	              - 1.0000
	              , 0.9231
	              . 0.9231
	             us 0.8462
	            the 0.0000
	           </S> 0.0000

          Larks   451643   1 (9)
	          Larks 1.0000
	          Links 0.8462
	              s 0.0000
	           </S> 0.0000
	           such 0.0000
	             to 0.0000
	              . 0.0000
	         signal 0.0000
	              a 0.0000

     Heligoland   451671   1 (7)
	     Heligoland 1.0000
	            and 0.4615
	            the 0.0000
	           </S> 0.0000
	              a 0.0000
	             us 0.0000
	              , 0.0000

            but   451711   1 (6)
	            but 1.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	             us 0.0000
	              } 0.0000

       Speaking   451764   1 (8)
	       Speaking 1.0000
	              a 0.0000
	          State 0.0000
	           part 0.0000
	           </S> 0.0000
	              , 0.0000
	            One 0.0000
	              " 0.0000

     diminution   451806   1 (11)
	     diminution 1.0000
	     diminutiva 0.8333
	         rights 0.0000
	            end 0.0000
	    information 0.0000
	            use 0.0000
	              - 0.0000
	          world 0.0000
	           </S> 0.0000
	           same 0.0000
	           time 0.0000

           Herr   451827   1 (9)
	           Herr 1.0000
	           Help 0.8182
	            and 0.0000
	              ( 0.0000
	          every 0.0000
	           </S> 0.0000
	            the 0.0000
	              a 0.0000
	            arz 0.0000

          Gatke   451832 inf (8)
	          Gatka 1.0000
	           Gate 1.0000
	              a 0.0000
	           </S> 0.0000
	          Games 0.0000
	        Gataket 0.0000
	              , 0.0000
	             M. 0.0000

          saj'S   451838 inf (9)
	           saja 1.0000
	            saj 1.0000
	           said 0.8889
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	          Ringe 0.0000
	          Sajas 0.0000
	           sala 0.0000

              :   451844 inf (3)
	             of 1.0000
	             us 1.0000
	            the 0.0000

              "   451848   1 (8)
	              " 1.0000
	              : 0.9583
	              , 0.9583
	             up 0.9167
	             us 0.9167
	           mail 0.0000
	            the 0.0000
	           </S> 0.0000

        passage   451889   1 (9)
	        passage 1.0000
	        message 0.8462
	              , 0.0000
	              a 0.0000
	         amount 0.0000
	    Association 0.0000
	           </S> 0.0000
	             of 0.0000
	              . 0.0000

         travel   451963   1 (7)
	         travel 1.0000
	              . 0.0000
	           </S> 0.0000
	              ; 0.0000
	              a 0.0000
	              , 0.0000
	           this 0.0000

      migration   452254   1 (9)
	      migration 1.0000
	        amounts 0.0000
	              a 0.0000
	            the 0.0000
	           </S> 0.0000
	             as 0.0000
	              , 0.0000
	         amount 0.0000
	    information 0.0000

            and   452274   1 (6)
	            and 1.0000
	              " 0.0000
	              , 0.0000
	           </S> 0.0000
	              } 0.0000
	            arz 0.0000

          Larks   452312   1 (8)
	          Larks 1.0000
	          Links 0.8182
	              . 0.0000
	           </S> 0.0000
	              , 0.0000
	          Parus 0.0000
	           fish 0.0000
	              a 0.0000

         caught   452318   1 (10)
	         caught 1.0000
	        Tongues 0.0000
	           more 0.0000
	          cause 0.0000
	              , 0.0000
	              ' 0.0000
	              $ 0.0000
	           </S> 0.0000
	        caudata 0.0000
	              a 0.0000

         autumn   452332   1 (7)
	         autumn 1.0000
	            and 0.0000
	           more 0.0000
	              , 0.0000
	             of 0.0000
	           </S> 0.0000
	              I 0.0000

  approximately   452354   1 (10)
	  approximately 1.0000
	          apply 0.3846
	      available 0.3077
	         simply 0.3077
	    necessarily 0.0000
	              a 0.0000
	             be 0.0000
	           have 0.0000
	           </S> 0.0000
	              , 0.0000

        express   452368   1 (9)
	        express 1.0000
	           half 0.0000
	              $ 0.0000
	              a 0.0000
	           even 0.0000
	             us 0.0000
	              , 0.0000
	             to 0.0000
	           </S> 0.0000

        migrant   452434   1 (11)
	        migrant 1.0000
	        migrans 0.9091
	          valid 0.0000
	           </S> 0.0000
	         system 0.0000
	          might 0.0000
	          great 0.0000
	              , 0.0000
	          major 0.0000
	     serialized 0.0000
	            new 0.0000

          245-8   452471 inf (10)
	              - 1.0000
	              2 1.0000
	              . 0.8750
	           </S> 0.8750
	           that 0.8750
	            who 0.8750
	              , 0.8750
	            the 0.8750
	              a 0.8750
	           code 0.0000

            are   452477   1 (7)
	            are 1.0000
	            arz 0.0000
	              I 0.0000
	           </S> 0.0000
	              , 0.0000
	              . 0.0000
	      collected 0.0000

           Farn   452496   1 (9)
	           Farn 1.0000
	            For 0.8333
	             C. 0.0000
	           Bock 0.0000
	         Schott 0.0000
	           </S> 0.0000
	              a 0.0000
	              s 0.0000
	              , 0.0000

             's   452500   1 (7)
	             's 1.0000
	             is 0.9091
	              s 0.9091
	              , 0.8182
	              a 0.8182
	           </S> 0.0000
	             D. 0.0000

            249   452516 inf (8)
	             us 1.0000
	              a 1.0000
	            the 1.0000
	              } 1.0000
	              , 1.0000
	       excerpts 0.0000
	           </S> 0.0000
	           data 0.0000

        Frohawk   452529   1 (11)
	        Frohawk 1.0000
	           Food 0.0000
	           Bush 0.0000
	              , 0.0000
	         seller 0.0000
	              a 0.0000
	           </S> 0.0000
	             50 0.0000
	             J. 0.0000
	           Crew 0.0000
	       Chairman 0.0000

             's   452536   1 (8)
	             's 1.0000
	             us 0.9167
	             is 0.9167
	              , 0.8333
	           </S> 0.0000
	          moved 0.0000
	           1898 0.0000
	          <UNK> 0.0000

          250-4   452544 inf (11)
	              2 1.0000
	              - 1.0000
	           more 0.9167
	            the 0.9167
	           </S> 0.9167
	              a 0.9167
	             to 0.9167
	              , 0.9167
	        support 0.0000
	       shipping 0.0000
	          tales 0.0000

           from   452550   1 (8)
	           from 1.0000
	              . 0.0000
	             of 0.0000
	              , 0.0000
	           </S> 0.0000
	             by 0.0000
	              a 0.0000
	            arz 0.0000

        Family^   452576   1 (6)
	         Family 1.0000
	              a 0.0000
	              ) 0.0000
	              , 0.0000
	           </S> 0.0000
	              " 0.0000

            ALA   452584 inf (6)
	            ALA 1.0000
	             us 0.0000
	              a 0.0000
	            All 0.0000
	              , 0.0000
	           </S> 0.0000

           UDID   452588 inf (11)
	            UDI 1.0000
	           UDIG 1.0000
	          GUDID 1.0000
	            USD 0.9231
	              ) 0.0000
	              , 0.0000
	           </S> 0.0000
	         SEQRES 0.0000
	              I 0.0000
	              A 0.0000
	           UDDI 0.0000

              .   452592   1 (6)
	              . 1.0000
	              F 0.9000
	              , 0.9000
	             us 0.8000
	            the 0.0000
	           </S> 0.0000

              F   452594 inf (9)
	              " 1.0000
	              / 1.0000
	              , 1.0000
	             OF 1.0000
	             FL 1.0000
	             FF 1.0000
	            the 0.0000
	           </S> 0.0000
	             us 0.0000

              .   452595   1 (7)
	              . 1.0000
	              ) 0.9167
	              , 0.9167
	              ' 0.9167
	             us 0.0000
	           </S> 0.0000
	            the 0.0000

        Alaitdn   452614   5 (10)
	          Alain 1.0000
	        Alaitoc 1.0000
	         Allied 0.8333
	           Alai 0.8333
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	         Alauda 0.0000
	              " 0.0000
	       Adailton 0.0000

       ar/iorca   452622   2 (11)
	        artiora 1.0000
	          arior 0.9091
	        acriora 0.9091
	        arborea 0.9091
	         siorca 0.9091
	        Maiorca 0.9091
	        authors 0.7273
	              I 0.0000
	              , 0.0000
	      configure 0.0000
	           </S> 0.0000

              ,   452630 inf (3)
	             of 1.0000
	             us 1.0000
	            the 0.0000

           LlNN   452632 inf (10)
	           LMNN 1.0000
	            LNN 1.0000
	           LLNL 0.9286
	             Ll 0.9286
	             pp 0.0000
	              i 0.0000
	            yes 0.0000
	           List 0.0000
	            the 0.0000
	           alba 0.0000

              .   452636   1 (6)
	              . 1.0000
	              , 0.8571
	             us 0.7143
	            CAN 0.0000
	           </S> 0.0000
	            the 0.0000

              "   452639 inf (6)
	              " 1.0000
	              , 0.9167
	              / 0.9167
	             us 0.8333
	            the 0.0000
	           </S> 0.0000

              T   452641 inf (8)
	             TT 1.0000
	              , 1.0000
	             IT 1.0000
	              ) 1.0000
	             To 1.0000
	            the 0.0000
	             us 0.0000
	           </S> 0.0000

              N   452643 inf (8)
	              " 1.0000
	             IN 1.0000
	              , 1.0000
	             No 1.0000
	             us 0.0000
	            the 0.0000
	           </S> 0.0000
	             NN 0.0000

         summer   452645   1 (8)
	         summer 1.0000
	             is 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	              / 0.0000
	              s 0.0000
	             in 0.0000

           Wood   452656   1 (10)
	           Wood 1.0000
	           good 0.9000
	           same 0.0000
	              - 0.0000
	            non 0.0000
	           much 0.0000
	              I 0.0000
	           </S> 0.0000
	            two 0.0000
	            num 0.0000

       inhabits   452666   1 (9)
	       inhabits 1.0000
	              - 0.0000
	              a 0.0000
	           </S> 0.0000
	             in 0.0000
	              , 0.0000
	             of 0.0000
	             us 0.0000
	           into 0.0000

         Russia   452719   1 (11)
	         Russia 1.0000
	         cassia 0.8333
	         posted 0.0000
	           </S> 0.0000
	              a 0.0000
	             'm 0.0000
	              , 0.0000
	          Music 0.0000
	        discuss 0.0000
	              . 0.0000
	         Europe 0.0000

          below   452726   1 (8)
	          below 1.0000
	           </S> 0.0000
	              , 0.0000
	            not 0.0000
	              a 0.0000
	           been 0.0000
	        talking 0.0000
	          Aedon 0.0000

            60°   452738   1 (8)
	             60 1.0000
	            600 1.0000
	              , 0.8333
	            the 0.8333
	             us 0.8333
	              a 0.8333
	           </S> 0.0000
	           this 0.0000

             N.   452742 inf (7)
	              . 1.0000
	             No 1.0000
	              , 0.9167
	              a 0.9167
	           </S> 0.0000
	             us 0.0000
	         parody 0.0000

             as   452751   1 (6)
	             as 1.0000
	             us 0.9167
	             so 0.0000
	            the 0.0000
	           </S> 0.0000
	              " 0.0000

      Southward   452826   1 (7)
	      Southward 1.0000
	       Software 0.7692
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	              " 0.0000
	             us 0.0000

              -   452880   1 (6)
	              - 1.0000
	              , 0.9333
	              . 0.9333
	             us 0.8667
	            the 0.0000
	           </S> 0.0000

           down   452913   1 (10)
	           down 1.0000
	           does 0.8333
	           </S> 0.0000
	           mail 0.0000
	              s 0.0000
	       Bordeaux 0.0000
	              . 0.0000
	             to 0.0000
	             up 0.0000
	              a 0.0000

            its   452965   1 (6)
	            its 1.0000
	              , 0.0000
	           </S> 0.0000
	              } 0.0000
	             iu 0.0000
	              a 0.0000

       Northern   453064   1 (8)
	       Northern 1.0000
	          other 0.7273
	           </S> 0.0000
	              , 0.0000
	          South 0.0000
	             us 0.0000
	             to 0.0000
	              a 0.0000

             "^   453153   1 (6)
	              " 1.0000
	             us 0.9000
	              a 0.9000
	             of 0.9000
	              , 0.9000
	           </S> 0.0000

              -   453156   1 (5)
	              - 1.0000
	              , 0.9333
	             us 0.8667
	            the 0.0000
	           </S> 0.0000

       Iloivard   453158 inf (12)
	          Ilova 1.0000
	        Ilioara 1.0000
	        Ilgvars 1.0000
	         Rivard 1.0000
	          loiva 1.0000
	          world 0.6250
	              s 0.0000
	           mail 0.0000
	              . 0.0000
	           </S> 0.0000
	             to 0.0000
	              a 0.0000

       Saunders   453167   1 (8)
	       Saunders 1.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	          under 0.0000
	              - 0.0000
	             us 0.0000
	              ) 0.0000

              .   453175   1 (7)
	              . 1.0000
	              , 0.9444
	              : 0.9444
	             us 0.8889
	           </S> 0.0000
	            and 0.0000
	            the 0.0000

             In   453178   1 (6)
	             In 1.0000
	              , 0.0000
	              a 0.0000
	              " 0.0000
	           </S> 0.0000
	             us 0.0000

           Wood   453199   1 (11)
	           Wood 1.0000
	           good 0.9231
	            two 0.0000
	      insurance 0.0000
	           same 0.0000
	              a 0.0000
	     Archbishop 0.0000
	              , 0.0000
	           </S> 0.0000
	            non 0.0000
	            sub 0.0000

              -   453203   1 (6)
	              - 1.0000
	              , 0.9091
	             us 0.8182
	             of 0.8182
	            the 0.0000
	           </S> 0.0000

           Lark   453204   1 (11)
	           Lark 1.0000
	            are 0.8182
	              . 0.0000
	              a 0.0000
	           axis 0.0000
	       wrapping 0.0000
	              s 0.0000
	           </S> 0.0000
	             to 0.0000
	           this 0.0000
	          which 0.0000

      occurring   453279   1 (6)
	      occurring 1.0000
	      according 0.7273
	           </S> 0.0000
	              } 0.0000
	              , 0.0000
	              a 0.0000

     undulating   453300   1 (6)
	     undulating 1.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	    information 0.0000
	            the 0.0000

         dotted   453332   1 (6)
	         dotted 1.0000
	         posted 0.8462
	              . 0.0000
	              , 0.0000
	           </S> 0.0000
	              C 0.0000

            six   453495   1 (7)
	            six 1.0000
	             so 0.8462
	           </S> 0.0000
	              a 0.0000
	              } 0.0000
	              , 0.0000
	            cia 0.0000

            but   453552   1 (7)
	            but 1.0000
	             us 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	              } 0.0000
	     Consulting 0.0000

             In   453623   1 (6)
	             In 1.0000
	           </S> 0.0000
	              a 0.0000
	             us 0.0000
	              " 0.0000
	              , 0.0000

  Stirlingshire   453695   1 (10)
	  Stirlingshire 1.0000
	       business 0.2308
	            the 0.2308
	           </S> 0.0000
	             us 0.0000
	          stock 0.0000
	              a 0.0000
	              , 0.0000
	         common 0.0000
	      captivity 0.0000

             In   453804   1 (6)
	             In 1.0000
	             us 0.0000
	           </S> 0.0000
	              , 0.0000
	              " 0.0000
	              a 0.0000

      colouring   453877   1 (5)
	      colouring 1.0000
	      following 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000

           Wood   453891   1 (9)
	           Wood 1.0000
	           good 0.9000
	          major 0.0000
	           same 0.0000
	           </S> 0.0000
	            two 0.0000
	              - 0.0000
	            non 0.0000
	              i 0.0000

         nearly   453901   1 (8)
	         nearly 1.0000
	          early 0.9091
	              - 0.0000
	              a 0.0000
	    Calandrella 0.0000
	           that 0.0000
	           </S> 0.0000
	              , 0.0000

            Sky   453922   1 (11)
	            Sky 1.0000
	            See 0.8182
	            sub 0.0000
	           </S> 0.0000
	           same 0.0000
	            Pyi 0.0000
	              C 0.0000
	           well 0.0000
	            two 0.0000
	            non 0.0000
	              - 0.0000

              -   453925   1 (6)
	              - 1.0000
	              , 0.9167
	             of 0.8333
	             us 0.8333
	            the 0.0000
	           </S> 0.0000

       perching   453974   1 (8)
	       perching 1.0000
	           </S> 0.0000
	             us 0.0000
	              , 0.0000
	              a 0.0000
	            you 0.0000
	          being 0.0000
	            the 0.0000

            the   454067   1 (5)
	            the 1.0000
	              } 0.0000
	           </S> 0.0000
	             us 0.0000
	              , 0.0000

        bastard   454071   1 (11)
	        bastard 1.0000
	        Bastard 0.9167
	          based 0.0000
	           same 0.0000
	          whole 0.0000
	           term 0.0000
	            two 0.0000
	           </S> 0.0000
	              - 0.0000
	          major 0.0000
	            way 0.0000

        primary   454079   1 (10)
	        primary 1.0000
	              . 0.0000
	             it 0.0000
	              , 0.0000
	              a 0.0000
	        Privacy 0.0000
	             he 0.0000
	             of 0.0000
	           </S> 0.0000
	          shoes 0.0000

            the   454104   1 (5)
	            the 1.0000
	             us 0.0000
	              , 0.0000
	           </S> 0.0000
	              } 0.0000

       blackish   454108   1 (10)
	       blackish 1.0000
	          urban 0.0000
	              - 0.0000
	           best 0.0000
	            way 0.0000
	         blacky 0.0000
	           same 0.0000
	          world 0.0000
	           </S> 0.0000
	          major 0.0000

        centres   454117   1 (9)
	        centres 1.0000
	              - 0.0000
	           back 0.0000
	              , 0.0000
	             of 0.0000
	              a 0.0000
	           </S> 0.0000
	        cinerea 0.0000
	        control 0.0000

         iipper   454148 inf (13)
	         ripper 1.0000
	         Ripper 1.0000
	          Earth 0.0000
	              , 0.0000
	           </S> 0.0000
	         pipier 0.0000
	          major 0.0000
	              a 0.0000
	           item 0.0000
	           land 0.0000
	           most 0.0000
	              . 0.0000
	           page 0.0000

        surface   454155   1 (8)
	        surface 1.0000
	              , 0.0000
	        service 0.0000
	           that 0.0000
	              . 0.0000
	             of 0.0000
	              a 0.0000
	           </S> 0.0000

        central   454249   1 (6)
	        central 1.0000
	              , 0.0000
	              } 0.0000
	              s 0.0000
	              a 0.0000
	           </S> 0.0000

        reddish   454272   1 (9)
	        reddish 1.0000
	              - 0.0000
	           real 0.0000
	     1999/08/27 0.0000
	              a 0.0000
	          <UNK> 0.0000
	           </S> 0.0000
	              , 0.0000
	           Eyes 0.0000

        centres   454298   1 (10)
	        centres 1.0000
	            red 0.0000
	     exceptions 0.0000
	              , 0.0000
	        cinerea 0.0000
	           </S> 0.0000
	        control 0.0000
	              . 0.0000
	    information 0.0000
	              a 0.0000

      outermost   454307   1 (7)
	      outermost 1.0000
	              a 0.0000
	            the 0.0000
	          other 0.0000
	            and 0.0000
	         yellow 0.0000
	           </S> 0.0000

        feather   454317   1 (6)
	        feather 1.0000
	           </S> 0.0000
	          other 0.0000
	              a 0.0000
	              , 0.0000
	          layer 0.0000

          brown   454325   1 (9)
	          brown 1.0000
	          Brown 0.9000
	           beds 0.0000
	           </S> 0.0000
	         pillow 0.0000
	              , 0.0000
	         duster 0.0000
	              a 0.0000
	              . 0.0000

          dusky   454346   1 (7)
	          dusky 1.0000
	           dust 0.8333
	             us 0.0000
	            due 0.0000
	              , 0.0000
	           site 0.0000
	           </S> 0.0000

      remaining   454405   1 (5)
	      remaining 1.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	              } 0.0000

       feathers   454415   1 (7)
	       feathers 1.0000
	           </S> 0.0000
	       features 0.0000
	              , 0.0000
	              a 0.0000
	             in 0.0000
	        kmalloc 0.0000

       blackish   454424   1 (10)
	       blackish 1.0000
	              . 0.0000
	           </S> 0.0000
	              , 0.0000
	           back 0.0000
	              ) 0.0000
	              % 0.0000
	             us 0.0000
	              a 0.0000
	         caches 0.0000

     triangular   454448   1 (8)
	     triangular 1.0000
	              a 0.0000
	            and 0.0000
	              ( 0.0000
	              . 0.0000
	           </S> 0.0000
	              , 0.0000
	        program 0.0000

              a   454472   1 (6)
	              a 1.0000
	              } 0.9000
	              , 0.9000
	           </S> 0.0000
	             us 0.0000
	            the 0.0000

        buffish   454480   1 (9)
	        buffish 1.0000
	             of 0.0000
	              a 0.0000
	              , 0.0000
	            off 0.0000
	          range 0.0000
	           </S> 0.0000
	       business 0.0000
	           File 0.0000

            ear   454548   1 (7)
	            ear 1.0000
	           year 0.9000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	              } 0.0000
	            arz 0.0000

         rufous   454560   1 (11)
	         rufous 1.0000
	          rufus 0.9091
	              a 0.0000
	              . 0.0000
	          white 0.0000
	           </S> 0.0000
	              , 0.0000
	              - 0.0000
	        sources 0.0000
	          group 0.0000
	   descriptions 0.0000

         cheeks   454595   1 (6)
	         cheeks 1.0000
	          check 0.8182
	           </S> 0.0000
	              a 0.0000
	              } 0.0000
	              , 0.0000

    distinctl}'   454631   1 (5)
	     distinctly 1.0000
	        details 0.3333
	              a 0.0000
	              , 0.0000
	           </S> 0.0000

      yellowish   454643   1 (8)
	      yellowish 1.0000
	           year 0.4167
	              , 0.0000
	              . 0.0000
	           full 0.0000
	          major 0.0000
	           </S> 0.0000
	              a 0.0000

         flanks   454686   1 (6)
	         flanks 1.0000
	         Thanks 0.8000
	              } 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000

       brownish   454693   1 (7)
	       brownish 1.0000
	       browsing 0.7273
	            you 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	             of 0.0000

         throat   454704   1 (6)
	         throat 1.0000
	              } 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	          torax 0.0000

       narrowly   454711   1 (6)
	       narrowly 1.0000
	              . 0.0000
	             is 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000

         breast   454742   1 (6)
	         breast 1.0000
	          break 0.7778
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	              } 0.0000

        broadly   454760   1 (9)
	        broadly 1.0000
	           </S> 0.0000
	              , 0.0000
	              . 0.0000
	        product 0.0000
	              a 0.0000
	             us 0.0000
	             of 0.0000
	         cancer 0.0000

       streaked   454768   1 (7)
	       streaked 1.0000
	         stream 0.7273
	           </S> 0.0000
	              , 0.0000
	            and 0.0000
	              a 0.0000
	        defined 0.0000

              ;   454777   1 (7)
	              ; 1.0000
	              , 0.9091
	             us 0.8182
	           with 0.0000
	           </S> 0.0000
	            the 0.0000
	          while 0.0000

           bill   454779   1 (7)
	           bill 1.0000
	           will 0.9000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	              } 0.0000
	            cia 0.0000

           dark   454784   1 (8)
	           dark 1.0000
	            day 0.8182
	           </S> 0.0000
	              . 0.0000
	              a 0.0000
	              , 0.0000
	            and 0.0000
	            arz 0.0000

           feet   454816   1 (7)
	           feet 1.0000
	           free 0.8182
	           </S> 0.0000
	              ) 0.0000
	              } 0.0000
	              a 0.0000
	              , 0.0000

          light   454821   1 (6)
	          light 1.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	              . 0.0000
	             of 0.0000

           horn   454827   1 (10)
	           horn 1.0000
	           here 0.8182
	              , 0.0000
	            box 0.0000
	           </S> 0.0000
	        reddish 0.0000
	             of 0.0000
	       Tide2006 0.0000
	          corax 0.0000
	              a 0.0000

              -   454831   1 (7)
	              - 1.0000
	              , 0.9167
	              . 0.9167
	             us 0.8333
	           dark 0.0000
	            the 0.0000
	           </S> 0.0000

           iris   454839   1 (7)
	           iris 1.0000
	             is 0.7143
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	              } 0.0000
	             iu 0.0000

          hazel   454844   1 (7)
	          hazel 1.0000
	           have 0.9130
	              ) 0.0000
	              , 0.0000
	           </S> 0.0000
	           here 0.0000
	          Pales 0.0000

              .   454849   1 (6)
	              . 1.0000
	              , 0.9286
	             us 0.8571
	            the 0.0000
	           </S> 0.0000
	           eyes 0.0000

      soniewhal   454870   1 (9)
	        Toniwha 1.0000
	      nonlethal 1.0000
	       societal 1.0000
	       somewhat 1.0000
	        similar 0.6250
	              a 0.3750
	              , 0.0000
	           from 0.0000
	           </S> 0.0000

             as   454880   1 (6)
	             as 1.0000
	             us 0.9231
	           </S> 0.0000
	           that 0.0000
	              , 0.0000
	            the 0.0000

           Sk3'   454890 inf (11)
	           Skip 1.0000
	             Sk 1.0000
	           Site 0.8889
	              A 0.0000
	              , 0.0000
	           case 0.0000
	            mid 0.0000
	           same 0.0000
	           </S> 0.0000
	            non 0.0000
	          world 0.0000

              -   454894   1 (6)
	              - 1.0000
	              , 0.9091
	             of 0.8182
	             us 0.8182
	           </S> 0.0000
	            the 0.0000

            the   454902   1 (5)
	            the 1.0000
	           </S> 0.0000
	             us 0.0000
	              , 0.0000
	              } 0.0000

      deeidedly   454917   1 (9)
	      decidedly 1.0000
	        Aidedly 0.8000
	         deeded 0.8000
	        deedily 0.8000
	        decided 0.8000
	              , 0.0000
	           much 0.0000
	           </S> 0.0000
	              a 0.0000

        shorter   454927   1 (8)
	        shorter 1.0000
	           </S> 0.0000
	             us 0.0000
	          store 0.0000
	             to 0.0000
	              , 0.0000
	            out 0.0000
	              a 0.0000

          Yonng   454965 inf (8)
	           Yong 1.0000
	          Yonne 1.0000
	           </S> 0.0000
	              " 0.0000
	              a 0.0000
	              , 0.0000
	            You 0.0000
	              s 0.0000

        l:)irds   454971   2 (5)
	         lairds 1.0000
	          birds 0.9167
	              a 0.0000
	              , 0.0000
	           </S> 0.0000

            are   454979   1 (4)
	            are 1.0000
	           area 0.6667
	            arz 0.0000
	            the 0.0000

         rnfons   454988 inf (14)
	         infons 1.0000
	         refons 1.0000
	       renflons 0.9167
	          frons 0.0000
	         likely 0.0000
	          fully 0.0000
	          rufus 0.0000
	           </S> 0.0000
	           Info 0.0000
	             to 0.0000
	            you 0.0000
	           than 0.0000
	              , 0.0000
	              a 0.0000

          above   454995   1 (8)
	          above 1.0000
	          about 0.8571
	           </S> 0.0000
	              , 0.0000
	              I 0.0000
	             to 0.0000
	        arborea 0.0000
	           know 0.0000

          below   455033   1 (6)
	          below 1.0000
	              , 0.0000
	              } 0.0000
	              a 0.0000
	           </S> 0.0000
	          Aedon 0.0000

        3'ellow   455053 inf (10)
	         Yellow 1.0000
	          below 0.9091
	           ello 0.9091
	             to 0.0000
	         likely 0.0000
	           </S> 0.0000
	           than 0.0000
	              a 0.0000
	              , 0.0000
	      expensive 0.0000

        spotted   455082   1 (9)
	        spotted 1.0000
	         people 0.0000
	      available 0.0000
	              , 0.0000
	             do 0.0000
	              a 0.0000
	           </S> 0.0000
	           than 0.0000
	              . 0.0000

             On   455118   1 (7)
	             On 1.0000
	             in 0.9167
	              , 0.0000
	             us 0.0000
	           </S> 0.0000
	              " 0.0000
	              a 0.0000

            Dr.   455243   1 (11)
	            Dry 1.0000
	             Dr 1.0000
	            are 0.9091
	              ( 0.0000
	           </S> 0.0000
	              a 0.0000
	            and 0.0000
	          which 0.0000
	            the 0.0000
	        writers 0.0000
	            arz 0.0000

        vSharpe   455247   1 (8)
	         Sharpe 1.0000
	          share 0.8000
	              , 0.0000
	             A. 0.0000
	           </S> 0.0000
	           King 0.0000
	         Jekyll 0.0000
	              a 0.0000

            and   455255   1 (5)
	            and 1.0000
	              , 0.0000
	           </S> 0.0000
	             's 0.0000
	              s 0.0000

        Lullula   455306   1 (10)
	        Lullula 1.0000
	             up 0.0000
	           mail 0.0000
	          value 0.0000
	           </S> 0.0000
	              . 0.0000
	             to 0.0000
	              s 0.0000
	       specific 0.0000
	              a 0.0000

              ,   455313   1 (7)
	              , 1.0000
	              - 0.9444
	             us 0.8889
	        arborea 0.0000
	           </S> 0.0000
	            the 0.0000
	          genus 0.0000

           Kaup   455315   1 (10)
	           Kaup 1.0000
	              - 0.0000
	              a 0.0000
	            and 0.0000
	           </S> 0.0000
	      therefore 0.0000
	           lava 0.0000
	            the 0.0000
	          <UNK> 0.0000
	           your 0.0000

         IvU-lu   455357 inf (8)
	          Ivalu 1.0000
	             In 0.7273
	          <UNK> 0.7273
	              , 0.6364
	              ) 0.6364
	              a 0.6364
	           </S> 0.6364
	              s 0.0000

           Col.   455422   1 (9)
	           Cold 1.0000
	           Coll 1.0000
	            Col 1.0000
	              , 0.0000
	              a 0.0000
	           only 0.0000
	           </S> 0.0000
	              " 0.0000
	           sala 0.0000

             L.   455427   1 (6)
	             L. 1.0000
	             of 0.8571
	              a 0.8571
	              , 0.8571
	          James 0.0000
	           </S> 0.0000

          Irb}'   455436   1 (11)
	            Irb 1.0000
	           Irby 1.0000
	           Iraq 0.9091
	             .. 0.0000
	              , 0.0000
	        However 0.0000
	          <UNK> 0.0000
	           </S> 0.0000
	             A. 0.0000
	              A 0.0000
	         Claver 0.0000

    Ornithology   455452   1 (7)
	    Ornithology 1.0000
	           with 0.2727
	            One 0.1818
	              , 0.0000
	           </S> 0.0000
	        Journal 0.0000
	              a 0.0000

          sa3'S   455494 inf (9)
	           said 1.0000
	             sa 1.0000
	           sala 1.0000
	           </S> 0.0000
	            and 0.0000
	              , 0.0000
	              a 0.0000
	              x 0.0000
	           SasS 0.0000

           that   455500   1 (7)
	           that 1.0000
	              a 0.0000
	              " 0.0000
	           </S> 0.0000
	              s 0.0000
	              = 0.0000
	              , 0.0000

     Andalucian   455514   1 (9)
	     Andalucian 1.0000
	      Andalucia 0.9167
	       American 0.5000
	           same 0.0000
	           </S> 0.0000
	          other 0.0000
	              B 0.0000
	              , 0.0000
	            top 0.0000

           Wood   455534   1 (10)
	           Wood 1.0000
	           good 0.9000
	              - 0.0000
	             EU 0.0000
	            non 0.0000
	              i 0.0000
	           same 0.0000
	             by 0.0000
	            sub 0.0000
	           </S> 0.0000

              -   455538   1 (6)
	              - 1.0000
	              , 0.9091
	             us 0.8182
	             of 0.8182
	           </S> 0.0000
	            the 0.0000

           Lark   455539   1 (10)
	           Lark 1.0000
	            are 0.8182
	              s 0.0000
	             to 0.0000
	          Mizer 0.0000
	              a 0.0000
	       wrapping 0.0000
	           </S> 0.0000
	              . 0.0000
	             it 0.0000

    frequenting   455642   1 (8)
	    frequenting 1.0000
	              a 0.0000
	           free 0.0000
	           2005 0.0000
	           </S> 0.0000
	              , 0.0000
	            and 0.0000
	            the 0.0000

          scrub   455654   1 (8)
	          scrub 1.0000
	           such 0.0000
	           </S> 0.0000
	              a 0.0000
	          Parus 0.0000
	            the 0.0000
	              , 0.0000
	         places 0.0000

            not   455666   1 (7)
	            not 1.0000
	              , 0.0000
	             us 0.0000
	          there 0.0000
	              a 0.0000
	            the 0.0000
	           </S> 0.0000

           \&xy   455670 inf (12)
	           sexy 1.0000
	            Oxy 1.0000
	             xy 1.0000
	           Next 0.9000
	           only 0.9000
	        limited 0.0000
	              a 0.0000
	              , 0.0000
	            too 0.0000
	           have 0.0000
	             be 0.0000
	           </S> 0.0000

          thick   455675   1 (7)
	          thick 1.0000
	          think 0.9231
	              a 0.0000
	              , 0.0000
	             to 0.0000
	           </S> 0.0000
	           Pica 0.0000

       locality   455694   1 (8)
	       locality 1.0000
	          local 0.7500
	       searches 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	             of 0.0000
	           town 0.0000

      Gibraltar   455708   1 (9)
	      Gibraltar 1.0000
	      Australia 0.4545
	              a 0.2727
	             to 0.2727
	            the 0.2727
	         future 0.0000
	           </S> 0.0000
	              , 0.0000
	             us 0.0000

      Chaparaks   455728 inf (13)
	     Chaparrals 1.0000
	      Chaparall 1.0000
	     Chaparajos 1.0000
	         Charak 0.8889
	         Chapar 0.8889
	       Charakas 0.8889
	        Company 0.0000
	          world 0.0000
	           </S> 0.0000
	              t 0.0000
	          first 0.0000
	           same 0.0000
	              . 0.0000

              (   455738   1 (6)
	              ( 1.0000
	              , 0.9091
	             of 0.8182
	             us 0.8182
	           </S> 0.0000
	            the 0.0000

           Well   455788   1 (8)
	           Well 1.0000
	            Web 0.8571
	              " 0.0000
	           </S> 0.0000
	          paper 0.0000
	              a 0.0000
	              , 0.0000
	           sala 0.0000

       vSpanish   455806   1 (10)
	        Spanish 1.0000
	         public 0.0000
	              , 0.0000
	            the 0.0000
	              a 0.0000
	           main 0.0000
	           </S> 0.0000
	             us 0.0000
	            top 0.0000
	        English 0.0000

           bird   455815   1 (8)
	           bird 1.0000
	             of 0.0000
	              a 0.0000
	             by 0.0000
	              , 0.0000
	           </S> 0.0000
	            cia 0.0000
	         Double 0.0000

           they   455865   1 (5)
	           they 1.0000
	              } 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000

          never   455901   1 (7)
	          never 1.0000
	              - 0.0000
	           </S> 0.0000
	    Calandrella 0.0000
	              , 0.0000
	              a 0.0000
	         impact 0.0000

        remains   455907   1 (7)
	        remains 1.0000
	        reading 0.0000
	              , 0.0000
	           been 0.0000
	              a 0.0000
	           </S> 0.0000
	           have 0.0000

          onl}'   455999   1 (7)
	           only 1.0000
	        nowhere 0.0000
	          going 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	          ollon 0.0000

       timbered   456020   1 (7)
	       timbered 1.0000
	           </S> 0.0000
	              , 0.0000
	             us 0.0000
	              a 0.0000
	            the 0.0000
	          there 0.0000

            not   456038   1 (7)
	            not 1.0000
	              , 0.0000
	           </S> 0.0000
	            and 0.0000
	              a 0.0000
	              } 0.0000
	             us 0.0000

      clearings   456119   1 (9)
	      clearings 1.0000
	           </S> 0.0000
	         delays 0.0000
	              a 0.0000
	              , 0.0000
	            the 0.0000
	             in 0.0000
	          major 0.0000
	         change 0.0000

       although   456164   1 (9)
	       although 1.0000
	        through 0.7500
	            the 0.5000
	           that 0.5000
	           </S> 0.0000
	            but 0.0000
	              ( 0.0000
	              I 0.0000
	            and 0.0000

        resorts   456197   1 (9)
	        resorts 1.0000
	        results 0.8333
	       searches 0.0000
	            son 0.0000
	              . 0.0000
	              , 0.0000
	           </S> 0.0000
	     fatalities 0.0000
	              a 0.0000

            for   456207   1 (6)
	            for 1.0000
	              a 0.0000
	              , 0.0000
	              } 0.0000
	           </S> 0.0000
	            arz 0.0000

        commons   456229   1 (9)
	        commons 1.0000
	         heaths 0.0000
	        company 0.0000
	             me 0.0000
	           </S> 0.0000
	              , 0.0000
	            the 0.0000
	              a 0.0000
	         corone 0.0000

            but   456239   1 (6)
	            but 1.0000
	             us 0.0000
	              } 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000

          trees   456243   1 (10)
	          trees 1.0000
	           they 0.0000
	             it 0.0000
	           </S> 0.0000
	              , 0.0000
	          these 0.0000
	              a 0.0000
	            not 0.0000
	              I 0.0000
	          Pales 0.0000

              '   456271   1 (9)
	              ' 1.0000
	              , 0.9286
	             to 0.8571
	             in 0.8571
	             us 0.8571
	            due 0.0000
	            for 0.0000
	            the 0.0000
	           </S> 0.0000

       Although   456346   1 (7)
	       Although 1.0000
	        through 0.7857
	              , 0.0000
	           </S> 0.0000
	            Not 0.0000
	              " 0.0000
	              a 0.0000

          feeds   456417   1 (7)
	          feeds 1.0000
	          needs 0.9167
	              - 0.0000
	              , 0.0000
	           </S> 0.0000
	    Calandrella 0.0000
	              a 0.0000

         roosts   456464   1 (8)
	         roosts 1.0000
	              , 0.0000
	             be 0.0000
	           </S> 0.0000
	            has 0.0000
	              a 0.0000
	         rights 0.0000
	             us 0.0000

         builds   456475   1 (9)
	         builds 1.0000
	             in 0.0000
	           </S> 0.0000
	              a 0.0000
	           that 0.0000
	           will 0.0000
	            the 0.0000
	              , 0.0000
	             to 0.0000

        tussock   456567   1 (10)
	        tussock 1.0000
	           </S> 0.0000
	          large 0.0000
	              . 0.0000
	           this 0.0000
	              a 0.0000
	           time 0.0000
	              s 0.0000
	           year 0.0000
	             to 0.0000

             it   456591   1 (6)
	             it 1.0000
	             iu 0.9167
	           </S> 0.0000
	              , 0.0000
	              } 0.0000
	              a 0.0000

     compactl}'   456602   1 (8)
	      compactly 1.0000
	       complete 0.7000
	           </S> 0.0000
	           than 0.0000
	              a 0.0000
	        solidly 0.0000
	              , 0.0000
	             to 0.0000

          built   456613   1 (8)
	          built 1.0000
	            but 0.8462
	           than 0.0000
	              , 0.0000
	             us 0.0000
	              a 0.0000
	             to 0.0000
	           </S> 0.0000

           Sk^^   456636 inf (10)
	           Skip 1.0000
	             Sk 1.0000
	           Site 0.9091
	          major 0.0000
	              , 0.0000
	           </S> 0.0000
	            non 0.0000
	              . 0.0000
	           most 0.0000
	              a 0.0000

              -   456640   1 (7)
	              - 1.0000
	              . 0.9286
	              , 0.9286
	             of 0.8571
	             us 0.8571
	            the 0.0000
	           </S> 0.0000

      sometimes   456648   1 (6)
	      sometimes 1.0000
	              } 0.0000
	           </S> 0.0000
	    Calandrella 0.0000
	              a 0.0000
	              , 0.0000

          couch   456661   1 (10)
	          couch 1.0000
	          could 0.8333
	            sea 0.0000
	          comix 0.0000
	           </S> 0.0000
	            non 0.0000
	            the 0.0000
	              , 0.0000
	           self 0.0000
	              a 0.0000

          grass   456703   1 (9)
	          grass 1.0000
	         points 0.0000
	           </S> 0.0000
	          great 0.0000
	              a 0.0000
	              . 0.0000
	              , 0.0000
	   segmentation 0.0000
	         detail 0.0000

      sometimes   456742   1 (5)
	      sometimes 1.0000
	              } 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000

          grass   456762   1 (7)
	          grass 1.0000
	           </S> 0.0000
	          great 0.0000
	            the 0.0000
	              , 0.0000
	             us 0.0000
	              a 0.0000

          bents   456768   1 (9)
	          bents 1.0000
	           best 0.8182
	              , 0.0000
	           </S> 0.0000
	        section 0.0000
	    information 0.0000
	              a 0.0000
	      withereth 0.0000
	              . 0.0000

        Central   456913   1 (7)
	        Central 1.0000
	           </S> 0.0000
	         Center 0.0000
	            the 0.0000
	              a 0.0000
	              , 0.0000
	         Cettia 0.0000

        Lilford   456955 inf (11)
	        Linford 1.0000
	        Lifford 1.0000
	        Milford 1.0000
	              a 0.0000
	              s 0.0000
	          <UNK> 0.0000
	              1 0.0000
	        million 0.0000
	          title 0.0000
	           </S> 0.0000
	              , 0.0000

          until   456984   1 (7)
	          until 1.0000
	              a 0.0000
	          under 0.0000
	              , 0.0000
	           </S> 0.0000
	             of 0.0000
	          Munia 0.0000

      Secholiin   457020 inf (12)
	       Decholin 1.0000
	       Scholion 1.0000
	       Scholing 0.9231
	      Schonlein 0.9231
	         Sechin 0.9231
	         people 0.6154
	           </S> 0.0000
	              a 0.0000
	          <UNK> 0.0000
	              . 0.0000
	              1 0.0000
	              s 0.0000

       huffish-   457072 inf (11)
	        huffish 1.0000
	            his 0.6667
	           used 0.5833
	              . 0.0000
	            not 0.0000
	          white 0.0000
	              a 0.0000
	     trademarks 0.0000
	           </S> 0.0000
	              , 0.0000
	   instructions 0.0000

             or   457081   1 (6)
	             or 1.0000
	              a 0.0000
	             us 0.0000
	              , 0.0000
	             to 0.0000
	           </S> 0.0000

         greyer   457167   1 (9)
	         greyer 1.0000
	       district 0.0000
	           </S> 0.0000
	            the 0.0000
	              , 0.0000
	              . 0.0000
	        chronic 0.0000
	              a 0.0000
	          great 0.0000

          spots   457174   1 (9)
	          spots 1.0000
	             of 0.0000
	              , 0.0000
	        disease 0.0000
	           </S> 0.0000
	              B 0.0000
	    regulations 0.0000
	           site 0.0000
	         spinas 0.0000

         massed   457288   1 (8)
	         massed 1.0000
	      populated 0.0000
	           made 0.0000
	           </S> 0.0000
	              a 0.0000
	           look 0.0000
	              , 0.0000
	         Passer 0.0000

             as   457350   1 (7)
	             as 1.0000
	             us 0.8889
	              I 0.0000
	              } 0.0000
	           </S> 0.0000
	           with 0.0000
	              , 0.0000

      confluent   457401   1 (10)
	      confluent 1.0000
	        content 0.7273
	              a 0.0000
	      expensive 0.0000
	             us 0.0000
	           than 0.0000
	              . 0.0000
	           </S> 0.0000
	              , 0.0000
	           more 0.0000

          being   457464   1 (6)
	          being 1.0000
	              - 0.0000
	           </S> 0.0000
	    Calandrella 0.0000
	              , 0.0000
	              a 0.0000

     generall}'   457470   1 (6)
	      generally 1.0000
	       generall 1.0000
	       formally 0.5000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000

       admitted   457481   1 (8)
	       admitted 1.0000
	            not 0.0000
	              I 0.0000
	      available 0.0000
	          after 0.0000
	             to 0.0000
	              , 0.0000
	           </S> 0.0000

              '   457504 inf (8)
	              , 1.0000
	             to 0.9167
	             us 0.9167
	            the 0.0000
	            all 0.0000
	          match 0.0000
	            one 0.0000
	           </S> 0.0000

       resemble   457506   1 (9)
	       resemble 1.0000
	           </S> 0.0000
	           read 0.0000
	              s 0.0000
	              a 0.0000
	            for 0.0000
	              , 0.0000
	            The 0.0000
	             in 0.0000

         cjuite   457627 inf (10)
	         cluite 1.0000
	          cuite 1.0000
	           uite 0.8889
	              . 0.0000
	           </S> 0.0000
	           site 0.0000
	              , 0.0000
	            for 0.0000
	              a 0.0000
	        juncite 0.0000

          eaidy   457634 inf (8)
	          Saidy 1.0000
	            ead 0.8750
	           said 0.8750
	              , 0.0000
	          ediya 0.0000
	           </S> 0.0000
	              a 0.0000
	            the 0.0000

         enough   457640   1 (3)
	         enough 1.0000
	         Keough 0.3333
	        through 0.0000

     consisting   457735   1 (10)
	     consisting 1.0000
	              a 0.0000
	    Calandrella 0.0000
	            and 0.0000
	              & 0.0000
	              - 0.0000
	           </S> 0.0000
	            was 0.0000
	         online 0.0000
	            the 0.0000

              -   457806   1 (8)
	              - 1.0000
	              , 0.9231
	             of 0.8462
	             us 0.8462
	             DT 0.0000
	            the 0.0000
	           </S> 0.0000
	       Flooring 0.0000

             's   457811   1 (8)
	             's 1.0000
	             us 0.9231
	             is 0.9231
	              a 0.8462
	              ! 0.8462
	              , 0.8462
	              - 0.8462
	           </S> 0.0000

          ver^'   457822   1 (6)
	            ver 1.0000
	          verve 1.0000
	           very 1.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000

           pnre   457828   1 (10)
	            pre 1.0000
	           pure 1.0000
	           inre 1.0000
	           page 0.8889
	              a 0.0000
	              , 0.0000
	             to 0.0000
	           </S> 0.0000
	           pren 0.0000
	          parva 0.0000

            and   457833   1 (3)
	            and 1.0000
	            the 0.0000
	            arz 0.0000

            b}-   457851   1 (7)
	              - 1.0000
	             by 1.0000
	           </S> 0.0000
	              , 0.0000
	             us 0.0000
	              a 0.0000
	            the 0.0000

          man}^   457855   1 (8)
	            man 1.0000
	           mana 1.0000
	           many 1.0000
	              . 0.0000
	           </S> 0.0000
	          major 0.0000
	              , 0.0000
	              a 0.0000

             it   457861   1 (3)
	             it 1.0000
	             iu 0.6667
	            the 0.0000

     certaiul}'   457927   1 (7)
	      certainly 1.0000
	          could 0.4286
	         really 0.4286
	             is 0.1429
	              a 0.1429
	           </S> 0.0000
	              , 0.0000

             is   457938   1 (7)
	             is 1.0000
	              s 0.9231
	              , 0.0000
	            not 0.0000
	           does 0.0000
	           </S> 0.0000
	              a 0.0000

   nevertheless   457991   1 (6)
	   nevertheless 1.0000
	        request 0.2500
	           </S> 0.0000
	              a 0.0000
	              } 0.0000
	              , 0.0000

     persevered   458030   1 (8)
	     persevered 1.0000
	       provided 0.0000
	           </S> 0.0000
	              , 0.0000
	            the 0.0000
	              a 0.0000
	           used 0.0000
	              . 0.0000

             it   458104   1 (6)
	             it 1.0000
	             iu 0.9091
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	              } 0.0000

            but   458182   1 (6)
	            but 1.0000
	              s 0.0000
	              , 0.0000
	              } 0.0000
	              a 0.0000
	           </S> 0.0000

            mj-   458369   3 (10)
	            mjw 1.0000
	             mj 1.0000
	             my 0.9167
	           </S> 0.0000
	              , 0.0000
	             us 0.0000
	             an 0.0000
	            the 0.0000
	           your 0.0000
	              a 0.0000

            old   458373   1 (8)
	            old 1.0000
	             of 0.8333
	              . 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	             us 0.0000
	           best 0.0000

       Grayling   458393   1 (9)
	       Grayling 1.0000
	       training 0.6667
	           </S> 0.0000
	          <UNK> 0.0000
	    Blatherwick 0.0000
	              A 0.0000
	             's 0.0000
	             A. 0.0000
	              , 0.0000

  Sittiugbourne   458406   1 (8)
	  Sittingbourne 1.0000
	         course 0.4667
	        Service 0.4000
	            the 0.3333
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	             us 0.0000

              ;   458420   1 (6)
	              ; 1.0000
	              , 0.9231
	              . 0.9231
	             us 0.8462
	            the 0.0000
	           </S> 0.0000

             we   458422   1 (5)
	             we 1.0000
	              ) 0.0000
	              } 0.0000
	             us 0.0000
	           </S> 0.0000

     delightful   458505   1 (10)
	     delightful 1.0000
	          right 0.5000
	          total 0.3333
	           date 0.3333
	          sweet 0.0000
	           </S> 0.0000
	           same 0.0000
	          theme 0.0000
	              - 0.0000
	     subjective 0.0000

        looking   458538   1 (6)
	        looking 1.0000
	              } 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	    Calandrella 0.0000

         espied   458557   1 (11)
	         espied 1.0000
	             as 0.0000
	              , 0.0000
	            had 0.0000
	           </S> 0.0000
	             to 0.0000
	          found 0.0000
	              ( 0.0000
	              a 0.0000
	           used 0.0000
	             be 0.0000

      promineut   458651   1 (11)
	      prominent 1.0000
	       prominet 1.0000
	        promine 0.8889
	              , 0.0000
	           send 0.0000
	           </S> 0.0000
	           stay 0.0000
	           from 0.0000
	              a 0.0000
	    prominuerit 0.0000
	            the 0.0000

            eye   458661   1 (9)
	            eye 1.0000
	              , 0.0000
	       informed 0.0000
	              a 0.0000
	              . 0.0000
	           </S> 0.0000
	            New 0.0000
	          split 0.0000
	            Pyi 0.0000

              -   458664   1 (6)
	              - 1.0000
	              , 0.9167
	              . 0.9167
	             us 0.8333
	            the 0.0000
	           </S> 0.0000

      Presently   458673 inf (8)
	      presently 1.0000
	    Presciently 0.8750
	        Present 0.8750
	       recently 0.8750
	              a 0.0000
	              , 0.0000
	              " 0.0000
	           </S> 0.0000

          awaj^   458693   1 (12)
	           away 1.0000
	            awa 1.0000
	          Zawaj 1.0000
	          again 0.8889
	              . 0.0000
	           </S> 0.0000
	           waaj 0.0000
	              , 0.0000
	             us 0.0000
	             to 0.0000
	            off 0.0000
	              I 0.0000

         rising   458699   1 (6)
	         rising 1.0000
	         rating 0.8182
	              a 0.0000
	           </S> 0.0000
	            the 0.0000
	              , 0.0000

      obliquely   458715   1 (7)
	      obliquely 1.0000
	           time 0.3636
	          other 0.3636
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	          major 0.0000

       swinging   458744   1 (10)
	       swinging 1.0000
	              , 0.0000
	            can 0.0000
	            the 0.0000
	             us 0.0000
	           said 0.0000
	           </S> 0.0000
	           came 0.0000
	              a 0.0000
	       increase 0.0000

            aud   458775   2 (8)
	            aud 1.0000
	            and 0.9167
	            who 0.0000
	           </S> 0.0000
	            the 0.0000
	              " 0.0000
	            arz 0.0000
	              I 0.0000

         rising   458779   1 (6)
	         rising 1.0000
	          using 0.7778
	              0 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000

         spiral   458850   1 (10)
	         spiral 1.0000
	              - 0.0000
	              , 0.0000
	              . 0.0000
	         spinas 0.0000
	              a 0.0000
	          range 0.0000
	        special 0.0000
	           </S> 0.0000
	         calves 0.0000

         curves   458857   1 (8)
	         curves 1.0000
	              , 0.0000
	             as 0.0000
	         course 0.0000
	             of 0.0000
	           </S> 0.0000
	              a 0.0000
	         Corvus 0.0000

      certainlj   458961   1 (10)
	      certainly 1.0000
	       services 0.4444
	              , 0.0000
	              . 0.0000
	           work 0.0000
	            was 0.0000
	             is 0.0000
	              a 0.0000
	             us 0.0000
	           </S> 0.0000

              ?   458970   1 (6)
	              ? 1.0000
	              , 0.9000
	             it 0.8000
	             us 0.8000
	            the 0.0000
	           </S> 0.0000

           does   458972   1 (6)
	           does 1.0000
	           down 0.6000
	             us 0.0000
	              ) 0.0000
	              " 0.0000
	           </S> 0.0000

       gloaming   458998   1 (9)
	       gloaming 1.0000
	              a 0.0000
	           </S> 0.0000
	              ) 0.0000
	             of 0.0000
	              s 0.0000
	              , 0.0000
	          <UNK> 0.0000
	           good 0.0000

        rustics   459023   1 (7)
	        rustics 1.0000
	        rustica 0.9091
	              a 0.0000
	          Music 0.0000
	              , 0.0000
	             to 0.0000
	           </S> 0.0000

    Nightingale   459064   1 (8)
	    Nightingale 1.0000
	       National 0.5000
	          night 0.4167
	           same 0.2500
	              . 0.0000
	          other 0.0000
	           </S> 0.0000
	          world 0.0000

            but   459078   1 (6)
	            but 1.0000
	              a 0.0000
	           </S> 0.0000
	              } 0.0000
	             us 0.0000
	              , 0.0000

       Although   459164   1 (6)
	       Although 1.0000
	         Anthus 0.6364
	              , 0.0000
	              I 0.0000
	           </S> 0.0000
	              " 0.0000

      sometimes   459183   1 (8)
	      sometimes 1.0000
	              . 0.0000
	             is 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	            flu 0.0000
	           site 0.0000

          soars   459193   1 (8)
	          soars 1.0000
	          Board 0.7778
	              , 0.0000
	              a 0.0000
	             be 0.0000
	           </S> 0.0000
	       referred 0.0000
	           sala 0.0000

          quite   459199   1 (7)
	          quite 1.0000
	           site 0.8182
	              , 0.0000
	             to 0.0000
	           </S> 0.0000
	              a 0.0000
	         quelea 0.0000

           this   459229   1 (9)
	           this 1.0000
	              , 0.0000
	        address 0.0000
	             it 0.0000
	            cia 0.0000
	              a 0.0000
	           </S> 0.0000
	              " 0.0000
	              - 0.0000

       moreover   459261   1 (6)
	       moreover 1.0000
	        However 0.7273
	              a 0.0000
	           </S> 0.0000
	              } 0.0000
	              , 0.0000

             it   459270   1 (5)
	             it 1.0000
	             iu 0.9000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000

      obliquely   459350   1 (7)
	      obliquely 1.0000
	         online 0.6429
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	             us 0.0000
	            the 0.0000

            b}'   459363   1 (10)
	              ' 1.0000
	             by 1.0000
	           more 0.0000
	             in 0.0000
	              , 0.0000
	           beef 0.0000
	           </S> 0.0000
	            the 0.0000
	              s 0.0000
	              a 0.0000

          jerky   459367   1 (9)
	          jerky 1.0000
	           were 0.0000
	              . 0.0000
	              a 0.0000
	            few 0.0000
	           </S> 0.0000
	             us 0.0000
	            dew 0.0000
	              , 0.0000

          drops   459373   1 (7)
	          drops 1.0000
	           does 0.7778
	           </S> 0.0000
	              . 0.0000
	              , 0.0000
	              a 0.0000
	      movements 0.0000

           Lark   459406   1 (9)
	           Lark 1.0000
	            are 0.8333
	           this 0.0000
	              s 0.0000
	             to 0.0000
	       wrapping 0.0000
	           </S> 0.0000
	              a 0.0000
	              . 0.0000

             On   459475   1 (7)
	             On 1.0000
	             in 0.8889
	             us 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	              " 0.0000

            but   459689   1 (5)
	            but 1.0000
	              a 0.0000
	              , 0.0000
	             us 0.0000
	           </S> 0.0000

            fed   459710   1 (10)
	            fed 1.0000
	           </S> 0.0000
	              . 0.0000
	            for 0.0000
	             us 0.0000
	         became 0.0000
	              , 0.0000
	            not 0.0000
	             as 0.0000
	              a 0.0000

      repletion   459728   1 (10)
	      repletion 1.0000
	            say 0.0000
	              , 0.0000
	              a 0.0000
	            the 0.0000
	             me 0.0000
	           </S> 0.0000
	         people 0.0000
	             us 0.0000
	           cars 0.0000

          Later   459770   1 (8)
	          Later 1.0000
	          after 0.8000
	              a 0.0000
	              / 0.0000
	              , 0.0000
	           </S> 0.0000
	              " 0.0000
	          Pales 0.0000

            aud   459801   2 (8)
	            aud 1.0000
	            and 0.9167
	           </S> 0.0000
	             of 0.0000
	              . 0.0000
	              , 0.0000
	              I 0.0000
	            arz 0.0000

              I   459805   1 (6)
	              I 1.0000
	              , 0.9000
	              0 0.9000
	           </S> 0.0000
	            the 0.0000
	             us 0.0000

        exerted   459900   1 (8)
	        exerted 1.0000
	              , 0.0000
	           were 0.0000
	            you 0.0000
	            the 0.0000
	           open 0.0000
	              a 0.0000
	           </S> 0.0000

       hawthorn   459954   1 (6)
	       hawthorn 1.0000
	          hours 0.0000
	              a 0.0000
	           </S> 0.0000
	             of 0.0000
	              , 0.0000

          About   460079   1 (5)
	          About 1.0000
	              " 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000

           bird   460148   1 (10)
	           bird 1.0000
	             by 0.0000
	             of 0.0000
	              , 0.0000
	            cia 0.0000
	           </S> 0.0000
	              a 0.0000
	           flip 0.0000
	              e 0.0000
	            eye 0.0000

           Wood   460190   1 (8)
	           Wood 1.0000
	           good 0.9167
	              , 0.0000
	             of 0.0000
	              a 0.0000
	              I 0.0000
	           </S> 0.0000
	           File 0.0000

     splendidly   460248   1 (10)
	     splendidly 1.0000
	           said 0.3636
	          along 0.2727
	          major 0.0000
	              , 0.0000
	             as 0.0000
	              " 0.0000
	              a 0.0000
	          whole 0.0000
	           </S> 0.0000

            One   460260   1 (7)
	            One 1.0000
	            one 0.9091
	              a 0.0000
	              , 0.0000
	             us 0.0000
	           </S> 0.0000
	              " 0.0000

              I   460381   1 (6)
	              I 1.0000
	              " 0.9000
	              , 0.9000
	             us 0.0000
	            the 0.0000
	           </S> 0.0000

             it   460463   1 (7)
	             it 1.0000
	             iu 0.8889
	              a 0.0000
	           </S> 0.0000
	            the 0.0000
	              I 0.0000
	              , 0.0000

       uncann}'   460523   1 (11)
	        uncanny 1.0000
	         unique 0.6000
	              a 0.5000
	             us 0.5000
	              , 0.4000
	            the 0.4000
	           </S> 0.4000
	           more 0.0000
	     misleading 0.0000
	            him 0.0000
	           like 0.0000

              ;   460532   1 (6)
	              ; 1.0000
	              . 0.9091
	              , 0.9091
	             us 0.8182
	           </S> 0.0000
	            the 0.0000

        however   460534   1 (5)
	        however 1.0000
	          homer 0.5714
	              ) 0.0000
	           </S> 0.0000
	              } 0.0000

           Lark   460594   1 (10)
	           Lark 1.0000
	            are 0.8333
	              . 0.0000
	             to 0.0000
	         profit 0.0000
	              a 0.0000
	           </S> 0.0000
	              s 0.0000
	             up 0.0000
	           mail 0.0000

            and   460675   1 (6)
	            and 1.0000
	              } 0.0000
	           </S> 0.0000
	              , 0.0000
	          again 0.0000
	            arz 0.0000

            Sky   460751   1 (10)
	            Sky 1.0000
	            See 0.8182
	           </S> 0.0000
	            Pyi 0.0000
	              . 0.0000
	          party 0.0000
	             of 0.0000
	          house 0.0000
	              , 0.0000
	              a 0.0000

              -   460754   1 (5)
	              - 1.0000
	              , 0.9167
	             us 0.8333
	            the 0.0000
	           </S> 0.0000

          whose   460760   1 (8)
	          whose 1.0000
	          those 0.9375
	              a 0.0000
	              , 0.0000
	              " 0.0000
	    Calandrella 0.0000
	           </S> 0.0000
	              - 0.0000

              -   460803   1 (8)
	              - 1.0000
	              a 0.9231
	              , 0.9231
	             of 0.8462
	             be 0.8462
	             us 0.8462
	           </S> 0.0000
	            the 0.0000

              '   460879 inf (7)
	              , 1.0000
	             's 1.0000
	              . 1.0000
	             us 0.9231
	             of 0.9231
	           </S> 0.0000
	            the 0.0000

        figured   460906   1 (10)
	        figured 1.0000
	              , 0.0000
	        hatches 0.0000
	             is 0.0000
	          found 0.0000
	             us 0.0000
	              a 0.0000
	           </S> 0.0000
	             of 0.0000
	          rests 0.0000

           Farn   460945   1 (9)
	           Farn 1.0000
	            For 0.8333
	           Bock 0.0000
	             C. 0.0000
	         Schott 0.0000
	           </S> 0.0000
	              a 0.0000
	              s 0.0000
	              , 0.0000

             's   460949   1 (7)
	             's 1.0000
	             is 0.9091
	              s 0.9091
	              , 0.8182
	              a 0.8182
	           </S> 0.0000
	             D. 0.0000

     Familx-ALA   460965 inf (9)
	         Finite 1.0000
	       analysis 1.0000
	           will 1.0000
	              - 0.6667
	              a 0.6667
	              " 0.3333
	           </S> 0.3333
	              , 0.3333
	              / 0.3333

           UDID   460976 inf (8)
	            UDI 1.0000
	           UDIG 1.0000
	          GUDID 1.0000
	            USD 0.9474
	              a 0.0000
	           UDDI 0.0000
	              , 0.0000
	           </S> 0.0000

              E   460982 inf (9)
	              " 1.0000
	             El 1.0000
	              / 1.0000
	              , 1.0000
	             RE 1.0000
	             EE 1.0000
	            the 0.0000
	           </S> 0.0000
	             us 0.0000

        Crested   460990   1 (7)
	        Crested 1.0000
	        Chester 0.8182
	              / 0.0000
	           </S> 0.0000
	              - 0.0000
	         Center 0.0000
	     Associated 0.0000

         Alanda   461005   1 (10)
	         Alando 1.0000
	          Aland 1.0000
	        Alandia 1.0000
	         Alauda 1.0000
	         Alaska 0.8750
	           </S> 0.0000
	              " 0.0000
	              a 0.0000
	              , 0.0000
	              / 0.0000

       crisfafa   461012   1 (9)
	       cristata 1.0000
	          crisa 0.9091
	       crisaras 0.0000
	           </S> 0.0000
	         Friday 0.0000
	           Club 0.0000
	              a 0.0000
	              , 0.0000
	      configure 0.0000

              ,   461020   1 (5)
	              , 1.0000
	             us 0.8000
	           </S> 0.0000
	            the 0.0000
	       Marbella 0.0000

           LiNN   461022 inf (9)
	            LNN 1.0000
	           LiNK 1.0000
	           List 0.9286
	             pp 0.0000
	              i 0.0000
	            the 0.0000
	       Marbella 0.0000
	            NiL 0.0000
	            cia 0.0000

              .   461026   1 (5)
	              . 1.0000
	              , 0.8571
	             us 0.7143
	           </S> 0.0000
	            the 0.0000

       RESIDENT   461029 inf (9)
	        REIDEEN 1.0000
	        TRIDENT 1.0000
	        RESTENA 1.0000
	          IDENT 1.0000
	           </S> 0.6000
	              I 0.6000
	              , 0.5000
	              / 0.5000
	              " 0.5000

        Central   461041   1 (9)
	        Central 1.0000
	         Center 0.0000
	            the 0.0000
	       Northern 0.0000
	              a 0.0000
	        writing 0.0000
	              , 0.0000
	           </S> 0.0000
	         Cettia 0.0000

        Eiirope   461062   1 (16)
	         Europe 1.0000
	         Eiropa 1.0000
	           rope 0.9091
	           Eiro 0.9091
	     California 0.0000
	              . 0.0000
	        Eoropie 0.0000
	         Africa 0.0000
	              , 0.0000
	           from 0.0000
	              ) 0.0000
	        siropen 0.0000
	         Valley 0.0000
	           </S> 0.0000
	             us 0.0000
	              a 0.0000

            60°   461106   1 (8)
	             60 1.0000
	            600 1.0000
	             10 0.9167
	             us 0.8333
	            the 0.8333
	              , 0.8333
	              a 0.8333
	           </S> 0.0000

             N.   461110 inf (9)
	             No 1.0000
	              . 1.0000
	              a 0.9000
	              , 0.9000
	              % 0.9000
	             us 0.0000
	            the 0.0000
	           </S> 0.0000
	          years 0.0000

             in   461118   1 (6)
	             in 1.0000
	           </S> 0.0000
	             iu 0.0000
	              , 0.0000
	              " 0.0000
	              ) 0.0000

          North   461141   1 (6)
	          North 1.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	              } 0.0000
	          corax 0.0000

     Senegambia   461168   1 (10)
	     Senegambia 1.0000
	       research 0.4615
	            see 0.3846
	              a 0.3077
	            the 0.3077
	              , 0.0000
	          music 0.0000
	            you 0.0000
	            try 0.0000
	             us 0.0000

      Abyssinia   461221   1 (7)
	      Abyssinia 1.0000
	         online 0.3636
	              , 0.0000
	             us 0.0000
	              a 0.0000
	            the 0.0000
	           </S> 0.0000

           east   461231   1 (7)
	           east 1.0000
	           each 0.8182
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	           lava 0.0000
	            non 0.0000

             To   461286   1 (7)
	             To 1.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	              " 0.0000
	           Asia 0.0000
	              s 0.0000

            one   461452   1 (7)
	            one 1.0000
	              . 0.0000
	           </S> 0.0000
	              } 0.0000
	             us 0.0000
	              a 0.0000
	              , 0.0000

         Sussex   461536   1 (8)
	         Sussex 1.0000
	            the 0.0000
	              a 0.0000
	         Passer 0.0000
	              , 0.0000
	          stock 0.0000
	           </S> 0.0000
	           used 0.0000

   Macclesfield   461719   1 (9)
	   Macclesfield 1.0000
	       Services 0.2308
	            the 0.0000
	              , 0.0000
	           more 0.0000
	        Welling 0.0000
	       moisture 0.0000
	           </S> 0.0000
	              a 0.0000

       climatic   461756   1 (9)
	       climatic 1.0000
	              , 0.0000
	             us 0.0000
	              a 0.0000
	             to 0.0000
	           </S> 0.0000
	     variations 0.0000
	         chance 0.0000
	      companies 0.0000

  modifications   461765   1 (7)
	  modifications 1.0000
	             of 0.0000
	       movement 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	     conditions 0.0000

           Lark   461787   1 (10)
	           Lark 1.0000
	           part 0.8333
	           </S> 0.0000
	        section 0.0000
	              a 0.0000
	             is 0.0000
	              . 0.0000
	            Web 0.0000
	              , 0.0000
	            arz 0.0000

            all   461793   1 (7)
	            all 1.0000
	           </S> 0.0000
	              I 0.0000
	              ( 0.0000
	           alba 0.0000
	            the 0.0000
	            one 0.0000

           Tlie   461858 inf (10)
	           Tlia 1.0000
	            Tli 1.0000
	           This 0.8571
	           Tile 0.8571
	           </S> 0.0000
	           fish 0.0000
	              " 0.0000
	              a 0.0000
	              , 0.0000
	           alba 0.0000

        typical   461863   1 (5)
	        typical 1.0000
	          <UNK> 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000

          watli   461911   5 (13)
	           wali 1.0000
	           wati 1.0000
	          watti 1.0000
	          Matli 1.0000
	            the 0.0000
	              , 0.0000
	         witali 0.0000
	        Quwatli 0.0000
	           </S> 0.0000
	            and 0.0000
	          wolfi 0.0000
	           with 0.0000
	              a 0.0000

         darker   461917   1 (6)
	         darker 1.0000
	         market 0.8182
	              , 0.0000
	           </S> 0.0000
	         Passer 0.0000
	              a 0.0000

        centres   461924   1 (8)
	        centres 1.0000
	         centre 0.9000
	        central 0.8000
	           </S> 0.0000
	           side 0.0000
	              , 0.0000
	           than 0.0000
	        cinerea 0.0000

            the   462019   1 (5)
	            the 1.0000
	           </S> 0.0000
	             us 0.0000
	              , 0.0000
	              } 0.0000

          crest   462036   1 (8)
	          crest 1.0000
	           best 0.8182
	           term 0.0000
	             us 0.0000
	              a 0.0000
	            out 0.0000
	              , 0.0000
	           </S> 0.0000

      fcatliers   462065 inf (13)
	     flatliners 1.0000
	       outliers 0.9091
	         fliers 0.9091
	          world 0.0000
	           most 0.0000
	          major 0.0000
	          first 0.0000
	              , 0.0000
	     catlickers 0.0000
	           page 0.0000
	              a 0.0000
	           </S> 0.0000
	              . 0.0000

         darker   462075   1 (9)
	         darker 1.0000
	              , 0.0000
	             of 0.0000
	           </S> 0.0000
	              . 0.0000
	           date 0.0000
	         rather 0.0000
	         Passer 0.0000
	              a 0.0000

            the   462098   1 (5)
	            the 1.0000
	           </S> 0.0000
	              , 0.0000
	              } 0.0000
	             us 0.0000

        hastard   462102 inf (12)
	        Bastard 1.0000
	         hastar 1.0000
	           </S> 0.0000
	           last 0.0000
	            two 0.0000
	       hamstrad 0.0000
	           same 0.0000
	            way 0.0000
	        country 0.0000
	          major 0.0000
	           term 0.0000
	              - 0.0000

        primary   462110   1 (8)
	        primary 1.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	             it 0.0000
	             of 0.0000
	           size 0.0000
	        private 0.0000

            the   462128   1 (5)
	            the 1.0000
	              , 0.0000
	           </S> 0.0000
	              } 0.0000
	             us 0.0000

         Ijrown   462155   1 (15)
	          Brown 1.0000
	           Ijon 1.0000
	          brown 1.0000
	         Intown 1.0000
	           Iron 1.0000
	           down 0.9167
	      available 0.0000
	             to 0.0000
	              a 0.0000
	         winner 0.0000
	          green 0.0000
	           </S> 0.0000
	             us 0.0000
	         Ingrow 0.0000
	              , 0.0000

          greyi   462168 inf (10)
	          greyi 1.0000
	   CheapTickets 0.0000
	           free 0.0000
	            non 0.0000
	              a 0.0000
	          pstat 0.0000
	              , 0.0000
	            the 0.0000
	           </S> 0.0000
	            Pyi 0.0000

              -   462173   1 (7)
	              - 1.0000
	              , 0.9091
	              . 0.9091
	             us 0.8182
	           </S> 0.0000
	            the 0.0000
	           name 0.0000

       luargius   462177 inf (10)
	        largius 1.0000
	              - 0.0000
	           </S> 0.0000
	              s 0.0000
	              , 0.0000
	             .. 0.0000
	              " 0.0000
	           list 0.0000
	              a 0.0000
	        sources 0.0000

              ,   462185   1 (6)
	              , 1.0000
	              c 0.9286
	              / 0.9286
	             us 0.8571
	           </S> 0.0000
	            the 0.0000

         whicli   462219   1 (10)
	         whilie 1.0000
	        Chiclid 1.0000
	          which 1.0000
	           that 0.0000
	              . 0.0000
	          wires 0.0000
	         chwili 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000

          outer   462250   1 (9)
	          outer 1.0000
	          other 0.8750
	              , 0.0000
	           </S> 0.0000
	          major 0.0000
	              . 0.0000
	       complete 0.0000
	          tinge 0.0000
	              a 0.0000

        feather   462276   1 (11)
	        feather 1.0000
	          major 0.0000
	              - 0.0000
	           half 0.0000
	             is 0.0000
	              , 0.0000
	             in 0.0000
	           </S> 0.0000
	             of 0.0000
	              a 0.0000
	          other 0.0000

          sandv   462296   1 (13)
	          sandy 1.0000
	           sand 1.0000
	           said 0.9000
	            non 0.0000
	       sandvitx 0.0000
	          built 0.0000
	           </S> 0.0000
	          vands 0.0000
	           sala 0.0000
	            two 0.0000
	              a 0.0000
	            new 0.0000
	              , 0.0000

              -   462301   1 (6)
	              - 1.0000
	              , 0.9231
	             of 0.8462
	             us 0.8462
	            the 0.0000
	           </S> 0.0000

         margin   462307   1 (10)
	         margin 1.0000
	              , 0.0000
	              - 0.0000
	          cover 0.0000
	             us 0.0000
	         access 0.0000
	           mail 0.0000
	          icons 0.0000
	           </S> 0.0000
	              a 0.0000

         t)uter   462321 inf (12)
	          tuter 1.0000
	         tauter 1.0000
	           uter 0.9091
	            the 0.0000
	           </S> 0.0000
	            top 0.0000
	          their 0.0000
	        Company 0.0000
	             us 0.0000
	         tutter 0.0000
	              a 0.0000
	              , 0.0000

            web   462328   1 (8)
	            web 1.0000
	             we 0.9091
	             us 0.0000
	              a 0.0000
	              , 0.0000
	              ) 0.0000
	           </S> 0.0000
	             of 0.0000

            the   462334   1 (6)
	            the 1.0000
	              , 0.0000
	             us 0.0000
	              ) 0.0000
	           </S> 0.0000
	              } 0.0000

      backwards   462382   1 (7)
	      backwards 1.0000
	           </S> 0.0000
	              a 0.0000
	           back 0.0000
	              , 0.0000
	             as 0.0000
	           away 0.0000

        buffish   462419   1 (10)
	        buffish 1.0000
	            not 0.0000
	           </S> 0.0000
	       informed 0.0000
	            non 0.0000
	              , 0.0000
	        because 0.0000
	              a 0.0000
	            the 0.0000
	            off 0.0000

            the   462435   1 (5)
	            the 1.0000
	              } 0.0000
	           </S> 0.0000
	             us 0.0000
	              , 0.0000

   principall}-   462455   1 (10)
	    principally 1.0000
	     principall 1.0000
	       actually 0.5000
	      available 0.4167
	        scarlet 0.4167
	            not 0.2500
	              a 0.2500
	              , 0.0000
	           </S> 0.0000
	          white 0.0000

        buffish   462468   1 (7)
	        buffish 1.0000
	              a 0.0000
	            but 0.0000
	            non 0.0000
	              , 0.0000
	           </S> 0.0000
	             to 0.0000

         deeper   462483   1 (11)
	         deeper 1.0000
	         aerial 0.0000
	            the 0.0000
	              a 0.0000
	         people 0.0000
	          while 0.0000
	            and 0.0000
	           </S> 0.0000
	      depending 0.0000
	             or 0.0000
	              , 0.0000

          sides   462517   1 (7)
	          sides 1.0000
	          sites 0.8750
	              , 0.0000
	              a 0.0000
	              } 0.0000
	           </S> 0.0000
	          Pales 0.0000

        spotted   462533   1 (7)
	        spotted 1.0000
	              , 0.0000
	              . 0.0000
	         system 0.0000
	              a 0.0000
	           </S> 0.0000
	      documents 0.0000

         breast   462563   1 (5)
	         breast 1.0000
	              , 0.0000
	           </S> 0.0000
	              } 0.0000
	              a 0.0000

        spotted   462570   1 (5)
	        spotted 1.0000
	         sports 0.0000
	           </S> 0.0000
	         cancer 0.0000
	              , 0.0000

         flanks   462609   1 (6)
	         flanks 1.0000
	         Thanks 0.7500
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	              } 0.0000

       slightly   462616   1 (5)
	       slightly 1.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	             of 0.0000

       streaked   462625   1 (6)
	       streaked 1.0000
	         stream 0.7273
	              , 0.0000
	           </S> 0.0000
	            out 0.0000
	      different 0.0000

              ;   462634   1 (8)
	              ; 1.0000
	              , 0.9091
	             us 0.8182
	             of 0.8182
	           with 0.0000
	            the 0.0000
	           </S> 0.0000
	           gray 0.0000

           bill   462636   1 (7)
	           bill 1.0000
	           will 0.9000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	              } 0.0000
	            cia 0.0000

       mandible   462654   1 (8)
	       mandible 1.0000
	           this 0.0000
	              a 0.0000
	              , 0.0000
	            may 0.0000
	            the 0.0000
	         museum 0.0000
	           </S> 0.0000

          paler   462663   1 (9)
	          paler 1.0000
	          pages 0.8462
	              a 0.0000
	              . 0.0000
	           </S> 0.0000
	            Act 0.0000
	              ) 0.0000
	              , 0.0000
	          Pales 0.0000

           feet   462671   1 (6)
	           feet 1.0000
	           free 0.7500
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	              } 0.0000

         fleshy   462676   1 (7)
	         fleshy 1.0000
	              , 0.0000
	             of 0.0000
	              a 0.0000
	              . 0.0000
	           </S> 0.0000
	          files 0.0000

           iris   462696   1 (7)
	           iris 1.0000
	             is 0.7143
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	              } 0.0000
	             iu 0.0000

          hazel   462701   1 (7)
	          hazel 1.0000
	           have 0.9130
	              ) 0.0000
	              , 0.0000
	           </S> 0.0000
	           here 0.0000
	          Pales 0.0000

              .   462706   1 (6)
	              . 1.0000
	              , 0.9286
	             us 0.8571
	            the 0.0000
	           </S> 0.0000
	           eyes 0.0000

          crest   462733   1 (9)
	          crest 1.0000
	           best 0.8571
	           time 0.0000
	              , 0.0000
	              a 0.0000
	             of 0.0000
	         period 0.0000
	           than 0.0000
	           </S> 0.0000

      rufescent   462825   1 (11)
	      rufescent 1.0000
	      rufescens 0.9091
	        complex 0.0000
	      different 0.0000
	         likely 0.0000
	              , 0.0000
	           </S> 0.0000
	      effective 0.0000
	           than 0.0000
	              a 0.0000
	             to 0.0000

       blackish   462844   1 (7)
	       blackish 1.0000
	           been 0.0000
	              a 0.0000
	              , 0.0000
	           also 0.0000
	              . 0.0000
	           </S> 0.0000

            sub   462853   1 (10)
	            sub 1.0000
	             us 0.8333
	             so 0.8333
	             re 0.0000
	             to 0.0000
	           </S> 0.0000
	              , 0.0000
	              - 0.0000
	              N 0.0000
	              a 0.0000

              -   462856   1 (5)
	              - 1.0000
	              , 0.9091
	             us 0.8182
	            the 0.0000
	           </S> 0.0000

           tips   462886   1 (8)
	           tips 1.0000
	           this 0.8462
	              - 0.0000
	           </S> 0.0000
	     comparison 0.0000
	              a 0.0000
	              , 0.0000
	            cia 0.0000

           tlie   462910   3 (9)
	           trie 1.0000
	          tliet 1.0000
	           this 0.9091
	           tile 0.9091
	            the 0.9091
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	           alba 0.0000

          moult   462945   1 (8)
	          moult 1.0000
	          would 0.8333
	              a 0.0000
	           </S> 0.0000
	             of 0.0000
	              . 0.0000
	              , 0.0000
	          maura 0.0000

        becomes   462983   1 (7)
	        becomes 1.0000
	              , 0.0000
	           </S> 0.0000
	       Galerida 0.0000
	         becker 0.0000
	    Calandrella 0.0000
	       Mountain 0.0000

        centres   463024   1 (9)
	        centres 1.0000
	           side 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	        control 0.0000
	             of 0.0000
	          brown 0.0000
	        cinerea 0.0000

           less   463048   1 (8)
	           less 1.0000
	           News 0.8182
	              . 0.0000
	              a 0.0000
	             of 0.0000
	              , 0.0000
	           lava 0.0000
	           </S> 0.0000

           Col.   463067   1 (10)
	           Cold 1.0000
	            Col 1.0000
	           Coll 1.0000
	              " 0.0000
	           </S> 0.0000
	              / 0.0000
	           only 0.0000
	              a 0.0000
	              , 0.0000
	           sala 0.0000

          Irb}-   463072   1 (10)
	            Irb 1.0000
	           Irby 1.0000
	           Iraq 0.9167
	        Mustard 0.0000
	             J. 0.0000
	              ) 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	      configure 0.0000

    Ornithology   463087   1 (7)
	    Ornithology 1.0000
	           with 0.2727
	            One 0.1818
	              , 0.0000
	           </S> 0.0000
	        Journal 0.0000
	              a 0.0000

      Andalucia   463249   1 (10)
	      Andalucia 1.0000
	       products 0.4167
	           </S> 0.0000
	         sticky 0.0000
	           used 0.0000
	    destination 0.0000
	              a 0.0000
	              , 0.0000
	             in 0.0000
	            the 0.0000

           They   463309   1 (6)
	           They 1.0000
	            The 0.8889
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	              " 0.0000

            arc   463314   2 (6)
	            arc 1.0000
	            arz 0.8889
	            are 0.8889
	            and 0.7778
	           </S> 0.0000
	              , 0.0000

    distributed   463318   1 (9)
	    distributed 1.0000
	              a 0.0000
	           </S> 0.0000
	         system 0.0000
	              . 0.0000
	            not 0.0000
	           well 0.0000
	              , 0.0000
	              s 0.0000

          pairs   463333   1 (8)
	          pairs 1.0000
	           part 0.8182
	            the 0.0000
	              , 0.0000
	          parva 0.0000
	              a 0.0000
	           </S> 0.0000
	     commission 0.0000

          onl}'   463397   1 (8)
	           only 1.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	            the 0.0000
	            not 0.0000
	              s 0.0000
	          ollon 0.0000

           some   463403   1 (8)
	           some 1.0000
	           more 0.8182
	              a 0.0000
	             to 0.0000
	              . 0.0000
	              s 0.0000
	           </S> 0.0000
	              , 0.0000

    Excessively   463422 inf (10)
	    excessively 1.0000
	      Excessive 0.9000
	    Exclusively 0.9000
	        However 0.3000
	             us 0.1000
	            the 0.1000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	              " 0.0000

           tame   463434   1 (8)
	           tame 1.0000
	           time 0.9231
	         drowsy 0.0000
	      Injurious 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	           lava 0.0000

      Curiiicit   463486 inf (11)
	       Curicica 1.0000
	        Curtici 1.0000
	        Curiini 1.0000
	        service 0.7500
	   organization 0.0000
	              s 0.0000
	            the 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	           them 0.0000

    frequenting   463518   1 (7)
	    frequenting 1.0000
	              a 0.0000
	           </S> 0.0000
	      following 0.0000
	            the 0.0000
	              , 0.0000
	             us 0.0000

          roads   463530   1 (10)
	          roads 1.0000
	              , 0.0000
	          rufus 0.0000
	           </S> 0.0000
	            the 0.0000
	        service 0.0000
	              a 0.0000
	              . 0.0000
	           made 0.0000
	    information 0.0000

           dung   463599   1 (10)
	           dung 1.0000
	             to 0.0000
	              . 0.0000
	           </S> 0.0000
	              s 0.0000
	             or 0.0000
	          being 0.0000
	             up 0.0000
	             do 0.0000
	              a 0.0000

             at   463605   1 (9)
	             at 1.0000
	              I 0.0000
	              - 0.0000
	           with 0.0000
	            and 0.0000
	             of 0.0000
	           </S> 0.0000
	            the 0.0000
	            arz 0.0000

             as   463643   1 (10)
	             as 1.0000
	             us 0.9474
	              I 0.0000
	             or 0.0000
	            the 0.0000
	        written 0.0000
	            and 0.0000
	        writing 0.0000
	           </S> 0.0000
	              " 0.0000

        dusting   463665   1 (8)
	        dusting 1.0000
	         during 0.8182
	     protecting 0.0000
	              a 0.0000
	           </S> 0.0000
	            the 0.0000
	              , 0.0000
	        rustica 0.0000

            and   463686   1 (7)
	            and 1.0000
	           what 0.0000
	              } 0.0000
	           that 0.0000
	              , 0.0000
	           </S> 0.0000
	            arz 0.0000

     Sauderling   463758   1 (13)
	     Sanderling 1.0000
	      ouderling 0.9000
	       Sterling 0.8000
	       response 0.0000
	         result 0.0000
	              , 0.0000
	            bit 0.0000
	            new 0.0000
	           </S> 0.0000
	          major 0.0000
	           good 0.0000
	          wheel 0.0000
	        service 0.0000

         within   463769   1 (6)
	         within 1.0000
	           </S> 0.0000
	             of 0.0000
	              a 0.0000
	              , 0.0000
	             in 0.0000

          birds   463887   1 (10)
	          birds 1.0000
	              . 0.0000
	           </S> 0.0000
	     characters 0.0000
	           more 0.0000
	              a 0.0000
	              , 0.0000
	     convincing 0.0000
	          Parus 0.0000
	          first 0.0000

           This   463894   1 (6)
	           This 1.0000
	              " 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	            cia 0.0000

      migrating   463948   1 (11)
	      migrating 1.0000
	             it 0.0000
	             us 0.0000
	              , 0.0000
	           more 0.0000
	            any 0.0000
	           </S> 0.0000
	            the 0.0000
	        changes 0.0000
	             to 0.0000
	              a 0.0000

        Crested   463988   1 (6)
	        Crested 1.0000
	        Chester 0.8182
	         Center 0.0000
	              / 0.0000
	           </S> 0.0000
	              - 0.0000

        usually   464001   1 (5)
	        usually 1.0000
	        usualis 0.8333
	    Calandrella 0.0000
	           </S> 0.0000
	              , 0.0000

           eart   464135 inf (9)
	           eart 1.0000
	           each 0.8333
	            the 0.0000
	            non 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	             re 0.0000
	            arz 0.0000

              -   464140   1 (7)
	              - 1.0000
	              , 0.9286
	              } 0.9286
	              . 0.9286
	             us 0.8571
	            the 0.0000
	           </S> 0.0000

          Larks   464179   1 (12)
	          Larks 1.0000
	          Links 0.8333
	              , 0.0000
	              a 0.0000
	           hand 0.0000
	      countries 0.0000
	         people 0.0000
	           than 0.0000
	              . 0.0000
	           site 0.0000
	           </S> 0.0000
	          Parus 0.0000

          bents   464206   1 (11)
	          bents 1.0000
	           best 0.8667
	            the 0.0000
	      workshops 0.0000
	              ( 0.0000
	            and 0.0000
	          trees 0.0000
	           </S> 0.0000
	              a 0.0000
	      therefore 0.0000
	              x 0.0000

           etc.   464213   1 (9)
	           etc. 1.0000
	           each 0.9048
	        wedgies 0.0000
	      therefore 0.0000
	          <UNK> 0.0000
	              , 0.0000
	            the 0.0000
	           Pica 0.0000
	              i 0.0000

       Saunders   464245   1 (9)
	       Saunders 1.0000
	          under 0.0000
	           said 0.0000
	           </S> 0.0000
	              , 0.0000
	          Stern 0.0000
	             A. 0.0000
	              a 0.0000
	              " 0.0000

         says:-   464254   1 (8)
	          sayst 1.0000
	           says 1.0000
	        Company 0.0000
	            Inn 0.0000
	              " 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000

              -   464261   1 (5)
	              - 1.0000
	              , 0.9167
	             us 0.8333
	            the 0.0000
	           </S> 0.0000

              "   464263   1 (8)
	              " 1.0000
	              . 0.9412
	             us 0.8824
	             to 0.8824
	           with 0.0000
	            the 0.0000
	           </S> 0.0000
	           mail 0.0000

      commenced   464280   1 (8)
	      commenced 1.0000
	          could 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	         occurs 0.0000
	           with 0.0000
	            the 0.0000

     depression   464337   1 (10)
	     depression 1.0000
	              a 0.0000
	           kind 0.0000
	        details 0.0000
	             as 0.0000
	        portion 0.0000
	            all 0.0000
	           </S> 0.0000
	              , 0.0000
	             us 0.0000

              -   464375   1 (8)
	              - 1.0000
	              : 0.9231
	              , 0.9231
	              . 0.9231
	             of 0.8462
	             us 0.8462
	           </S> 0.0000
	            the 0.0000

        herbage   464394   1 (12)
	        herbage 1.0000
	         others 0.0000
	            the 0.0000
	              , 0.0000
	             us 0.0000
	           </S> 0.0000
	           here 0.0000
	              a 0.0000
	            run 0.0000
	           them 0.0000
	              ) 0.0000
	              . 0.0000

            the   464510   1 (5)
	            the 1.0000
	           </S> 0.0000
	              } 0.0000
	              , 0.0000
	             us 0.0000

            diy   464539 inf (9)
	            did 1.0000
	             di 1.0000
	           diya 1.0000
	            day 1.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	            yid 0.0000
	            cia 0.0000

          grass   464543   1 (6)
	          grass 1.0000
	              a 0.0000
	              , 0.0000
	          great 0.0000
	           </S> 0.0000
	             to 0.0000

     distinctly   464617   1 (7)
	     distinctly 1.0000
	        listing 0.5455
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	      chequered 0.0000
	              - 0.0000

        average   464709   1 (5)
	        average 1.0000
	              } 0.0000
	              I 0.0000
	              , 0.0000
	           </S> 0.0000

   measurements   464717   1 (7)
	   measurements 1.0000
	        results 0.4615
	       exchange 0.2308
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	             of 0.0000

            '95   464730 inf (10)
	              5 1.0000
	             's 1.0000
	             of 0.9091
	              , 0.9091
	             us 0.9091
	              a 0.9091
	            the 0.9091
	           </S> 0.0000
	           made 0.0000
	          rates 0.0000

              "   464737 inf (6)
	              " 1.0000
	              , 0.9231
	             us 0.8462
	           </S> 0.0000
	            the 0.0000
	           midi 0.0000

             bS   464738 inf (11)
	             by 1.0000
	            EbS 1.0000
	              - 0.8889
	              , 0.8889
	              a 0.8889
	              ( 0.8889
	             he 0.0000
	           </S> 0.0000
	           PbSe 0.0000
	             Sb 0.0000
	              s 0.0000

             in   464741   1 (8)
	             in 1.0000
	              a 0.0000
	              " 0.0000
	             iu 0.0000
	              , 0.0000
	              c 0.0000
	           said 0.0000
	           </S> 0.0000

              .   464743   1 (5)
	              . 1.0000
	              , 0.9231
	             us 0.8462
	           </S> 0.0000
	            the 0.0000

     Incubation   464745   1 (9)
	     Incubation 1.0000
	          world 0.0000
	              " 0.0000
	         public 0.0000
	      ChangeLog 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	        However 0.0000

         wdiich   464760   1 (10)
	          which 1.0000
	           dich 1.0000
	          Riich 1.0000
	           wich 1.0000
	        Midwich 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	            the 0.0000
	             us 0.0000

            the   464767   1 (4)
	            the 1.0000
	              , 0.0000
	             us 0.0000
	           </S> 0.0000

        Crested   464811   1 (9)
	        Crested 1.0000
	              - 0.0000
	          first 0.0000
	              / 0.0000
	              X 0.0000
	          major 0.0000
	           </S> 0.0000
	           time 0.0000
	         Center 0.0000

         sandj^   464868 inf (6)
	         sandja 1.0000
	           said 0.8182
	            the 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000

          roads   464875   1 (6)
	          roads 1.0000
	           read 0.8333
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	          rufus 0.0000

        dusting   464906   1 (8)
	        dusting 1.0000
	         during 0.8000
	              a 0.0000
	              , 0.0000
	            the 0.0000
	           </S> 0.0000
	         saying 0.0000
	        rustica 0.0000

      rapidit}'   464946   1 (13)
	       rapidity 1.0000
	     rapiditati 0.8889
	           rate 0.5556
	         prices 0.4444
	        leaping 0.4444
	           idea 0.4444
	              a 0.3333
	           beer 0.0000
	    information 0.0000
	              , 0.0000
	           deal 0.0000
	              . 0.0000
	           </S> 0.0000

          glide   464984   1 (10)
	          glide 1.0000
	           like 0.8000
	             is 0.0000
	       afforded 0.0000
	              . 0.0000
	             in 0.0000
	              , 0.0000
	              a 0.0000
	            was 0.0000
	           </S> 0.0000

          wlien   465006   4 (15)
	          Alien 1.0000
	           lien 1.0000
	           wien 1.0000
	           when 0.9091
	         racing 0.0000
	            sex 0.0000
	     technician 0.0000
	           look 0.0000
	           cock 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	        ewlieni 0.0000
	         willen 0.0000
	             of 0.0000

            Its   465051   1 (7)
	            Its 1.0000
	             It 0.8889
	             us 0.7778
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	              " 0.0000

           Lark   465107   1 (10)
	           Lark 1.0000
	            are 0.8182
	           </S> 0.0000
	            Dog 0.0000
	              . 0.0000
	           side 0.0000
	        Tikchik 0.0000
	              a 0.0000
	             to 0.0000
	              s 0.0000

              .   465111   1 (7)
	              . 1.0000
	              : 0.9231
	              , 0.9231
	              - 0.9231
	             us 0.8462
	            the 0.0000
	           </S> 0.0000

     gregarious   465123   1 (8)
	     gregarious 1.0000
	             be 0.0000
	          great 0.0000
	              , 0.0000
	           easy 0.0000
	              a 0.0000
	             to 0.0000
	           </S> 0.0000

     generall}'   465142   1 (7)
	       generall 1.0000
	      generally 1.0000
	         really 0.5556
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	            not 0.0000

           seen   465153   1 (8)
	           seen 1.0000
	            see 0.8889
	            the 0.0000
	           </S> 0.0000
	              a 0.0000
	             to 0.0000
	           sala 0.0000
	              , 0.0000

            (U-   465166   4 (10)
	             US 1.0000
	              - 1.0000
	             EU 1.0000
	            the 0.0000
	           </S> 0.0000
	             us 0.0000
	             or 0.0000
	            and 0.0000
	              a 0.0000
	        working 0.0000

             iu   465170   2 (5)
	             iu 1.0000
	             in 0.9167
	              a 0.0000
	           </S> 0.0000
	              , 0.0000

          pairs   465173   1 (8)
	          pairs 1.0000
	          parts 0.8000
	              ) 0.0000
	              a 0.0000
	              , 0.0000
	              s 0.0000
	              - 0.0000
	           </S> 0.0000

        fauiily   465183 inf (12)
	        fairily 1.0000
	       faultily 1.0000
	           will 0.0000
	            the 0.0000
	          small 0.0000
	        private 0.0000
	           uily 0.0000
	       kawaiily 0.0000
	          minor 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000

        parties   465191   1 (9)
	        parties 1.0000
	           more 0.0000
	              , 0.0000
	         groups 0.0000
	           part 0.0000
	             us 0.0000
	           </S> 0.0000
	              . 0.0000
	              a 0.0000

         liquid   465221   1 (7)
	         liquid 1.0000
	           when 0.0000
	           </S> 0.0000
	           like 0.0000
	           than 0.0000
	              , 0.0000
	              a 0.0000

        uttered   465272   1 (8)
	        uttered 1.0000
	          there 0.0000
	            not 0.0000
	             to 0.0000
	              , 0.0000
	          based 0.0000
	              a 0.0000
	           </S> 0.0000

         duriug   465308   1 (10)
	         during 1.0000
	         durius 1.0000
	         dubius 0.8889
	           have 0.0000
	             in 0.0000
	             is 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	          drugi 0.0000

              a   465315   1 (7)
	              a 1.0000
	              , 0.9091
	           </S> 0.0000
	            the 0.0000
	             up 0.0000
	             us 0.0000
	             to 0.0000

            the   465364   1 (5)
	            the 1.0000
	             us 0.0000
	              } 0.0000
	           </S> 0.0000
	              , 0.0000

      syllabled   465380   1 (7)
	      syllabled 1.0000
	           </S> 0.0000
	      described 0.0000
	              a 0.0000
	       selected 0.0000
	              , 0.0000
	           used 0.0000

              '   465393   1 (6)
	              ' 1.0000
	              , 0.9167
	              a 0.9167
	             us 0.8333
	           </S> 0.0000
	            the 0.0000

              '   465403   1 (6)
	              ' 1.0000
	              " 0.9091
	              , 0.9091
	             us 0.8182
	            the 0.0000
	           </S> 0.0000

          horse   465559   1 (7)
	          horse 1.0000
	           home 0.8000
	              , 0.0000
	            the 0.0000
	           </S> 0.0000
	          corax 0.0000
	              a 0.0000

          Dixon   465619   1 (8)
	          Dixon 1.0000
	          Diego 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	              " 0.0000
	              ) 0.0000
	          minor 0.0000

            sa3   465625 inf (9)
	            say 1.0000
	            sas 1.0000
	             sa 1.0000
	             so 0.9167
	              a 0.9167
	          Hawke 0.0000
	           </S> 0.0000
	              , 0.0000
	           sala 0.0000

             's   465628   1 (8)
	             's 1.0000
	             us 0.9000
	             is 0.9000
	              - 0.8000
	              , 0.8000
	              a 0.8000
	            out 0.0000
	           </S> 0.0000

      xA-lgeria   465639   1 (8)
	        Algeria 1.0000
	          their 0.3750
	            the 0.2500
	              a 0.2500
	             us 0.0000
	           </S> 0.0000
	              , 0.0000
	          which 0.0000

             he   465649   1 (5)
	             he 1.0000
	           </S> 0.0000
	              , 0.0000
	             us 0.0000
	              a 0.0000

           soar   465674   1 (11)
	           soar 1.0000
	           some 0.8571
	            flu 0.0000
	              , 0.0000
	           goes 0.0000
	          today 0.0000
	              . 0.0000
	             on 0.0000
	           </S> 0.0000
	              a 0.0000
	           sala 0.0000

           iuto   465679   2 (9)
	           iuto 1.0000
	           into 0.8889
	              . 0.0000
	             in 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	             iu 0.0000
	        through 0.0000

       warbling   465740   1 (7)
	       warbling 1.0000
	              . 0.0000
	             of 0.0000
	              , 0.0000
	              a 0.0000
	         within 0.0000
	           </S> 0.0000

       Theobald   465793   1 (8)
	       Theobald 1.0000
	            the 0.0000
	            and 0.0000
	              a 0.0000
	            The 0.0000
	            New 0.0000
	              - 0.0000
	           </S> 0.0000

      describes   465802   1 (6)
	      describes 1.0000
	              a 0.0000
	              , 0.0000
	        because 0.0000
	            and 0.0000
	           </S> 0.0000

 ovato-pyriform   465875 inf (11)
	  ovatopyriform 1.0000
	       Category 0.3077
	          major 0.2308
	             of 0.1538
	              ( 0.0000
	              . 0.0000
	           </S> 0.0000
	    consecutive 0.0000
	              - 0.0000
	              a 0.0000
	              , 0.0000

              3   465890 inf (7)
	              , 1.0000
	              . 1.0000
	             us 0.9000
	             of 0.9000
	            the 0.0000
	           year 0.0000
	           </S> 0.0000

              -   465891   1 (7)
	              - 1.0000
	              ) 0.9000
	              , 0.9000
	             us 0.8000
	            the 0.0000
	           </S> 0.0000
	         Column 0.0000

       ellowish   465892 inf (8)
	      yellowish 1.0000
	              a 0.0000
	           with 0.0000
	              4 0.0000
	              , 0.0000
	             to 0.0000
	           </S> 0.0000
	              s 0.0000

              -   465900   1 (5)
	              - 1.0000
	              , 0.9231
	             us 0.8462
	            the 0.0000
	           </S> 0.0000

      uuiformly   465912   1 (9)
	      uniformly 1.0000
	     muriformly 0.8750
	    ununiformly 0.8750
	         before 0.3750
	            are 0.1250
	           </S> 0.0000
	              . 0.0000
	              a 0.0000
	              , 0.0000

       freckled   465922   1 (6)
	       freckled 1.0000
	              a 0.0000
	           laid 0.0000
	         filled 0.0000
	           </S> 0.0000
	              , 0.0000

         Jerdon   465971   1 (9)
	         Jerdon 1.0000
	         person 0.8000
	             he 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	             He 0.0000
	              I 0.0000
	          Aedon 0.0000

        Chendul   465994 inf (10)
	        Chendur 1.0000
	         Chendu 1.0000
	          <UNK> 0.0000
	              a 0.0000
	              s 0.0000
	           </S> 0.0000
	           when 0.0000
	             of 0.0000
	              , 0.0000
	       Chundale 0.0000

        chiefly   466031   1 (7)
	        chiefly 1.0000
	            and 0.0000
	           </S> 0.0000
	            the 0.0000
	              a 0.0000
	      including 0.0000
	          could 0.0000

          grass   466039   1 (8)
	          grass 1.0000
	           </S> 0.0000
	          major 0.0000
	           last 0.0000
	              a 0.0000
	             UK 0.0000
	             in 0.0000
	              , 0.0000

             II   466137   1 (7)
	             II 1.0000
	             In 0.9231
	             us 0.0000
	              " 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000

            nor   466210   1 (7)
	            nor 1.0000
	            not 0.9091
	              , 0.0000
	          minor 0.0000
	          <UNK> 0.0000
	              a 0.0000
	           </S> 0.0000

             iu   466214   2 (7)
	             iu 1.0000
	             in 0.9091
	             to 0.0000
	              a 0.0000
	           </S> 0.0000
	            the 0.0000
	              , 0.0000

      Himalayas   466221   1 (8)
	      Himalayas 1.0000
	       Himalaya 0.9091
	        company 0.0000
	           </S> 0.0000
	          young 0.0000
	              - 0.0000
	           same 0.0000
	          world 0.0000

             iu   466236   2 (7)
	             iu 1.0000
	             is 0.9091
	             in 0.9091
	              , 0.0000
	           </S> 0.0000
	            the 0.0000
	              a 0.0000

             It   466270   1 (6)
	             It 1.0000
	             us 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	              " 0.0000

         plaius   466296   1 (14)
	         plains 1.0000
	          plais 1.0000
	           plai 0.9000
	          beach 0.0000
	         closed 0.0000
	              , 0.0000
	           </S> 0.0000
	          place 0.0000
	        beaches 0.0000
	       products 0.0000
	         Lanius 0.0000
	         plausi 0.0000
	              a 0.0000
	       Agelaius 0.0000

       ploughed   466307   1 (9)
	       ploughed 1.0000
	            the 0.0000
	            any 0.0000
	          other 0.0000
	             in 0.0000
	              , 0.0000
	             on 0.0000
	           </S> 0.0000
	              a 0.0000

             It   466361   1 (7)
	             It 1.0000
	           </S> 0.0000
	             us 0.0000
	              a 0.0000
	              " 0.0000
	              , 0.0000
	              / 0.0000

             A.   466412 inf (9)
	             AM 1.0000
	              . 1.0000
	            All 0.9000
	              a 0.9000
	              $ 0.9000
	             to 0.9000
	              , 0.9000
	           </S> 0.0000
	             us 0.0000

     guli^iila*   466415 inf (13)
	          guide 1.0000
	      eliminate 1.0000
	       nidulans 0.8000
	      Similarly 0.8000
	         Philip 0.8000
	           will 0.8000
	             as 0.6000
	              a 0.6000
	         advice 0.6000
	      pratensis 0.0000
	           </S> 0.0000
	              % 0.0000
	              , 0.0000

            nor   466426   1 (7)
	            nor 1.0000
	            not 0.9167
	           </S> 0.0000
	          minor 0.0000
	             it 0.0000
	              , 0.0000
	              a 0.0000

           flue   466445 inf (10)
	           flue 1.0000
	           free 0.8182
	           that 0.0000
	           much 0.0000
	              a 0.0000
	             on 0.0000
	           </S> 0.0000
	              , 0.0000
	            far 0.0000
	           alba 0.0000

             In   466451   1 (6)
	             In 1.0000
	             us 0.0000
	              , 0.0000
	              " 0.0000
	              a 0.0000
	           </S> 0.0000

             iu   466507   2 (8)
	             iu 1.0000
	             in 0.9286
	           </S> 0.0000
	          other 0.0000
	              a 0.0000
	              , 0.0000
	              . 0.0000
	           even 0.0000

   considerable   466510   1 (7)
	   considerable 1.0000
	             to 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	         really 0.0000
	              s 0.0000

         flocks   466523   1 (8)
	         flocks 1.0000
	          focus 0.8333
	         flores 0.8333
	           </S> 0.0000
	              , 0.0000
	           time 0.0000
	      influence 0.0000
	         amount 0.0000

         Jerdon   466584   1 (9)
	         Jerdon 1.0000
	         person 0.8182
	             he 0.0000
	            you 0.0000
	          Aedon 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	              I 0.0000

        Chendul   466603 inf (11)
	         Chendu 1.0000
	        Chendur 1.0000
	              , 0.0000
	              a 0.0000
	          <UNK> 0.0000
	           </S> 0.0000
	           when 0.0000
	    unsubscribe 0.0000
	              s 0.0000
	             of 0.0000
	       Chundale 0.0000

        Seebohm   466695   1 (9)
	        Seebohm 1.0000
	              , 0.0000
	           </S> 0.0000
	              ) 0.0000
	             it 0.0000
	              a 0.0000
	            the 0.0000
	              I 0.0000
	           both 0.0000

         states   466703   1 (9)
	         states 1.0000
	          state 0.9231
	             is 0.0000
	              a 0.0000
	           know 0.0000
	          think 0.0000
	              , 0.0000
	           </S> 0.0000
	          Pales 0.0000

        Bunting   466778   1 (11)
	        Bunting 1.0000
	              a 0.0000
	             to 0.0000
	         during 0.0000
	           </S> 0.0000
	              . 0.0000
	           Corn 0.0000
	             up 0.0000
	         source 0.0000
	           year 0.0000
	              s 0.0000

          caged   466820   1 (10)
	          caged 1.0000
	           that 0.0000
	              a 0.0000
	          asked 0.0000
	           used 0.0000
	            can 0.0000
	              , 0.0000
	           </S> 0.0000
	             to 0.0000
	          Pales 0.0000

            the   466940   1 (5)
	            the 1.0000
	              , 0.0000
	             us 0.0000
	           </S> 0.0000
	              } 0.0000

         custom   466944   1 (7)
	         custom 1.0000
	       customer 0.8000
	           just 0.0000
	           </S> 0.0000
	              - 0.0000
	           time 0.0000
	           same 0.0000

           Herr   467233   1 (8)
	           Herr 1.0000
	           Help 0.7500
	      Exercised 0.0000
	              , 0.0000
	              a 0.0000
	            arz 0.0000
	           </S> 0.0000
	           etc. 0.0000

         Rausch   467238   1 (8)
	         Rausch 1.0000
	             M. 0.0000
	              " 0.0000
	              , 0.0000
	          cause 0.0000
	             he 0.0000
	           </S> 0.0000
	              a 0.0000

         speaks   467245   1 (7)
	         speaks 1.0000
	          speak 0.9167
	              , 0.0000
	           </S> 0.0000
	          Ringe 0.0000
	              a 0.0000
	         spinas 0.0000

       songster   467287   1 (9)
	       songster 1.0000
	           idea 0.0000
	              , 0.0000
	         artist 0.0000
	              I 0.0000
	             of 0.0000
	           </S> 0.0000
	         system 0.0000
	            one 0.0000

           wild   467338   1 (11)
	           wild 1.0000
	           will 0.9167
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	      materials 0.0000
	              . 0.0000
	     population 0.0000
	            sex 0.0000
	        singles 0.0000
	          wolfi 0.0000

         singer   467392   1 (9)
	         singer 1.0000
	          since 0.8000
	              . 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	          years 0.0000
	          minor 0.0000
	              ) 0.0000

        Perhaps   467400   1 (6)
	        Perhaps 1.0000
	        perhaps 0.9000
	              , 0.0000
	              a 0.0000
	              " 0.0000
	           </S> 0.0000

           Herr   467408   1 (9)
	           Herr 1.0000
	           Help 0.8462
	           most 0.0000
	            you 0.0000
	              a 0.0000
	            the 0.0000
	           </S> 0.0000
	              , 0.0000
	            arz 0.0000

         Rausch   467413   1 (10)
	         Rausch 1.0000
	             is 0.0000
	              , 0.0000
	           </S> 0.0000
	          cause 0.0000
	          <UNK> 0.0000
	    importantly 0.0000
	            are 0.0000
	             M. 0.0000
	              a 0.0000

           like   467421   1 (8)
	           like 1.0000
	              " 0.0000
	           </S> 0.0000
	              a 0.0000
	            and 0.0000
	            the 0.0000
	           lava 0.0000
	          while 0.0000

        Seebohm   467426   1 (10)
	        Seebohm 1.0000
	              , 0.0000
	             us 0.0000
	           </S> 0.0000
	          about 0.0000
	             me 0.0000
	           that 0.0000
	             to 0.0000
	              a 0.0000
	           this 0.0000

        Bunting   467481   1 (10)
	        Bunting 1.0000
	              . 0.0000
	              a 0.0000
	         during 0.0000
	             to 0.0000
	              s 0.0000
	             up 0.0000
	           </S> 0.0000
	           Free 0.0000
	           year 0.0000

            aud   467490   2 (10)
	            aud 1.0000
	            and 0.9167
	          while 0.0000
	           </S> 0.0000
	            the 0.0000
	            but 0.0000
	              I 0.0000
	              - 0.0000
	             so 0.0000
	            arz 0.0000

  considerabl}'   467560 inf (10)
	   considerable 1.0000
	         called 0.2727
	            the 0.0000
	     domesticus 0.0000
	           with 0.0000
	              , 0.0000
	             by 0.0000
	           </S> 0.0000
	              a 0.0000
	           such 0.0000

             as   467574   1 (6)
	             as 1.0000
	             us 0.9565
	              , 0.0000
	          their 0.0000
	           </S> 0.0000
	        package 0.0000

           This   467622   1 (6)
	           This 1.0000
	           </S> 0.0000
	              " 0.0000
	              a 0.0000
	              , 0.0000
	            cia 0.0000

           tlie   467641   3 (11)
	           trie 1.0000
	          tliet 1.0000
	           tile 0.9091
	           true 0.9091
	           this 0.9091
	            the 0.9091
	              a 0.0000
	           alba 0.0000
	              , 0.0000
	           able 0.0000
	           </S> 0.0000

     PyauviotKs   467656 inf (11)
	       previous 1.0000
	        various 1.0000
	            its 0.8889
	             us 0.7778
	        support 0.7778
	           your 0.7778
	              a 0.6667
	            the 0.6667
	        respect 0.0000
	           </S> 0.0000
	              , 0.0000

       Icucotis   467667 inf (11)
	        cunctis 1.0000
	       Isocotin 1.0000
	          Ictis 1.0000
	         scuoti 1.0000
	          cotis 1.0000
	              a 0.0000
	              , 0.0000
	          until 0.0000
	             of 0.0000
	              . 0.0000
	           </S> 0.0000

            the   467676   1 (2)
	            the 1.0000
	             us 0.0000

      specimens   467688   1 (8)
	      specimens 1.0000
	        service 0.0000
	         number 0.0000
	              a 0.0000
	             of 0.0000
	           Gulf 0.0000
	              , 0.0000
	           </S> 0.0000

         wliich   467701   2 (10)
	         Iliich 1.0000
	          lwich 0.9091
	           wich 0.9091
	          which 0.9091
	              a 0.0000
	              , 0.0000
	           them 0.0000
	             us 0.0000
	            the 0.0000
	           </S> 0.0000

           have   467708   1 (8)
	           have 1.0000
	              . 0.0000
	              a 0.0000
	             in 0.0000
	           </S> 0.0000
	            the 0.0000
	              , 0.0000
	           lava 0.0000

       variable   467720   1 (8)
	       variable 1.0000
	      selection 0.0000
	              , 0.0000
	           </S> 0.0000
	             of 0.0000
	              a 0.0000
	      available 0.0000
	              . 0.0000

         liquid   467729   1 (7)
	         liquid 1.0000
	           </S> 0.0000
	              . 0.0000
	         listed 0.0000
	             of 0.0000
	              a 0.0000
	              , 0.0000

           song   467736   1 (8)
	           song 1.0000
	           some 0.8667
	           </S> 0.0000
	              s 0.0000
	              , 0.0000
	          <UNK> 0.0000
	              a 0.0000
	       nitrogen 0.0000

           N.W.   467780 inf (10)
	           NEWS 1.0000
	             NW 1.0000
	           NWWW 1.0000
	            the 0.0000
	             us 0.0000
	           this 0.0000
	           </S> 0.0000
	            New 0.0000
	              a 0.0000
	              , 0.0000

          India   467785   1 (8)
	          India 1.0000
	          Index 0.8182
	           that 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	           site 0.0000
	          Munia 0.0000

        Judging   467814   1 (6)
	        Judging 1.0000
	              " 0.0000
	              , 0.0000
	           </S> 0.0000
	        funding 0.0000
	              a 0.0000

            b}^   467822   1 (6)
	             by 1.0000
	              } 1.0000
	              a 0.0000
	           </S> 0.0000
	             us 0.0000
	              , 0.0000

         Jerdou   467826   1 (9)
	         Jerdon 1.0000
	         Jerrod 0.8750
	              a 0.0000
	           </S> 0.0000
	         Jersey 0.0000
	            the 0.0000
	          today 0.0000
	              , 0.0000
	          Aedon 0.0000

             's   467832 inf (6)
	             us 1.0000
	             as 1.0000
	             is 1.0000
	             ss 1.0000
	             so 0.5000
	            the 0.0000

          India   467864   1 (8)
	          India 1.0000
	          Index 0.8182
	           </S> 0.0000
	              , 0.0000
	          which 0.0000
	              a 0.0000
	            the 0.0000
	          Munia 0.0000

       Tientsin   467913   1 (7)
	       Tientsin 1.0000
	              a 0.0000
	         person 0.0000
	        Tibetan 0.0000
	            the 0.0000
	              , 0.0000
	           </S> 0.0000

           Lark   467922   1 (10)
	           Lark 1.0000
	            are 0.8462
	              " 0.0000
	              a 0.0000
	              , 0.0000
	              ) 0.0000
	              . 0.0000
	             to 0.0000
	           </S> 0.0000
	            arz 0.0000

       scolding   467977   1 (8)
	       scolding 1.0000
	             us 0.0000
	              , 0.0000
	        working 0.0000
	              a 0.0000
	            the 0.0000
	           </S> 0.0000
	          words 0.0000

             My   468056   1 (6)
	             My 1.0000
	              " 0.0000
	             us 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000

  aviculturists   468069   1 (8)
	  aviculturists 1.0000
	       students 0.3077
	             us 0.1538
	           </S> 0.0000
	              " 0.0000
	              I 0.0000
	            you 0.0000
	            the 0.0000

          would   468083   1 (8)
	          would 1.0000
	        changes 0.0000
	             is 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	            the 0.0000
	          wolfi 0.0000

         Rausch   468123   1 (8)
	         Rausch 1.0000
	       Chairman 0.0000
	           </S> 0.0000
	              , 0.0000
	          cause 0.0000
	           Bush 0.0000
	          major 0.0000
	              a 0.0000

             's   468129   1 (5)
	             's 1.0000
	             us 0.9167
	             is 0.9167
	              , 0.8333
	           </S> 0.0000

            but   468152   1 (6)
	            but 1.0000
	           </S> 0.0000
	              } 0.0000
	              a 0.0000
	              , 0.0000
	             us 0.0000

          the}'   468160 inf (7)
	          their 1.0000
	            the 1.0000
	           thee 1.0000
	           </S> 0.0000
	              a 0.0000
	            you 0.0000
	              , 0.0000

         desire   468166   1 (7)
	         desire 1.0000
	         design 0.7500
	           </S> 0.0000
	             is 0.0000
	              , 0.0000
	              a 0.0000
	           want 0.0000

        Crested   468185   1 (9)
	        Crested 1.0000
	        Chester 0.8182
	              . 0.0000
	          world 0.0000
	         things 0.0000
	           same 0.0000
	         Center 0.0000
	         policy 0.0000
	           </S> 0.0000

         import   468199   1 (10)
	         import 1.0000
	            the 0.0000
	             so 0.0000
	              a 0.0000
	        support 0.0000
	    Calandrella 0.0000
	              ( 0.0000
	             CO 0.0000
	            who 0.0000
	           </S> 0.0000

           Pere   468260 inf (7)
	           Pere 1.0000
	           were 0.9091
	           </S> 0.0000
	              : 0.0000
	           Pica 0.0000
	            the 0.0000
	              a 0.0000

         (P.Z.S   468271 inf (9)
	           IPZS 1.0000
	             P. 0.8889
	           Park 0.7778
	            and 0.6667
	             's 0.6667
	              , 0.6667
	           </S> 0.6667
	              a 0.6667
	          Bowie 0.0000

              .   468277   1 (5)
	              . 1.0000
	              , 0.9286
	             us 0.8571
	            the 0.0000
	           </S> 0.0000

            187   468279 inf (10)
	            100 1.0000
	             80 1.0000
	              - 0.9000
	             us 0.9000
	            the 0.9000
	              / 0.9000
	              , 0.9000
	              " 0.9000
	              I 0.9000
	           </S> 0.0000

             In   468349   1 (6)
	             In 1.0000
	              a 0.0000
	             us 0.0000
	              , 0.0000
	              " 0.0000
	           </S> 0.0000

         Jerdon   468382   1 (8)
	         Jerdon 1.0000
	         person 0.8333
	              a 0.0000
	       equation 0.0000
	              : 0.0000
	           </S> 0.0000
	            the 0.0000
	          Aedon 0.0000

            Cat   468394   1 (9)
	            Cat 1.0000
	             at 0.9333
	           </S> 0.0000
	              / 0.0000
	              , 0.0000
	              ) 0.0000
	              " 0.0000
	              I 0.0000
	            cia 0.0000

          Birds   468399   1 (8)
	          Birds 1.0000
	              s 0.0000
	              / 0.0000
	              a 0.0000
	          first 0.0000
	              " 0.0000
	              , 0.0000
	           </S> 0.0000

             E.   468406 inf (10)
	             EE 1.0000
	             El 1.0000
	              ( 0.9091
	             of 0.9091
	             us 0.9091
	              a 0.9091
	            the 0.0000
	            see 0.0000
	           Cats 0.0000
	           </S> 0.0000

            Ind   468409   1 (8)
	            Ind 1.0000
	             In 0.9167
	          <UNK> 0.0000
	           coli 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	             us 0.0000

              .   468412   1 (6)
	              . 1.0000
	              , 0.9091
	             us 0.8182
	           </S> 0.0000
	            the 0.0000
	            Med 0.0000

           Comp   468414   1 (8)
	           Comp 1.0000
	           Home 0.8462
	              , 0.0000
	              I 0.0000
	           </S> 0.0000
	              " 0.0000
	              / 0.0000
	          comix 0.0000

             II   468426   1 (8)
	             II 1.0000
	             In 0.9231
	             us 0.0000
	              " 0.0000
	           </S> 0.0000
	              a 0.0000
	              ) 0.0000
	              , 0.0000

   grasshoppers   468474   1 (10)
	   grasshoppers 1.0000
	          major 0.3077
	          there 0.3077
	        because 0.0000
	           know 0.0000
	        himself 0.0000
	             in 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000

        Seebohm   468574   1 (7)
	        Seebohm 1.0000
	             us 0.0000
	              a 0.0000
	              , 0.0000
	            the 0.0000
	           </S> 0.0000
	           both 0.0000

              -   468583   1 (5)
	              - 1.0000
	              , 0.9286
	             us 0.8571
	           </S> 0.0000
	            the 0.0000

              "   468585   1 (8)
	              " 1.0000
	              . 0.9333
	             us 0.8667
	             to 0.8667
	            the 0.0000
	           </S> 0.0000
	           with 0.0000
	           mail 0.0000

             In   468831   1 (6)
	             In 1.0000
	           </S> 0.0000
	              a 0.0000
	             us 0.0000
	              , 0.0000
	              " 0.0000

        insects   468902   1 (9)
	        insects 1.0000
	           </S> 0.0000
	              a 0.0000
	             be 0.0000
	          <UNK> 0.0000
	              , 0.0000
	           said 0.0000
	           that 0.0000
	            its 0.0000

      mealworms   468911   1 (10)
	      mealworms 1.0000
	           more 0.5714
	        however 0.0000
	           </S> 0.0000
	            the 0.0000
	        spiders 0.0000
	      therefore 0.0000
	        rodents 0.0000
	              a 0.0000
	            and 0.0000

     Familx-ALA   468928 inf (9)
	           will 1.0000
	              - 0.8889
	              a 0.8889
	       Analysis 0.8889
	       tramadol 0.8889
	              ) 0.0000
	           </S> 0.0000
	             .. 0.0000
	              , 0.0000

          UDID^   468939 inf (11)
	            UDI 1.0000
	          UNIDO 1.0000
	           UDDI 1.0000
	           UDIG 1.0000
	          GUDID 1.0000
	            DVD 0.8889
	              ) 0.0000
	             us 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000

              .   468944 inf (3)
	             of 1.0000
	             us 1.0000
	            the 0.0000

        AVinged   468957 inf (12)
	        Avinger 1.0000
	          Vinge 1.0000
	          Ainge 1.0000
	         winged 1.0000
	          House 0.0000
	        Stripes 0.0000
	           </S> 0.0000
	              , 0.0000
	              I 0.0000
	             of 0.0000
	         Vidgen 0.0000
	          thing 0.0000

           Lark   468965   1 (7)
	           Lark 1.0000
	           Last 0.8462
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	          <UNK> 0.0000
	            arz 0.0000

              .   468969   1 (6)
	              . 1.0000
	              , 0.9231
	             us 0.8462
	          Books 0.0000
	            the 0.0000
	           </S> 0.0000

ilTclanocorypha   468972 inf (9)
	      According 1.0000
	          Thank 0.7500
	      Copyright 0.7500
	             in 0.5000
	              a 0.2500
	           </S> 0.0000
	              / 0.0000
	              " 0.0000
	              , 0.0000

       sidirica   468988   1 (10)
	       sibirica 1.0000
	         ridica 0.8462
	         Sirica 0.8462
	         silica 0.8462
	      residiria 0.0000
	           </S> 0.0000
	      ossidrica 0.0000
	              a 0.0000
	              , 0.0000
	      configure 0.0000

              ,   468996 inf (3)
	             of 1.0000
	             us 1.0000
	            the 0.0000

          Gmp;l   468998 inf (7)
	          Gmail 1.0000
	          Gympl 1.0000
	            Gmp 1.0000
	          Email 0.9231
	             pp 0.0000
	            the 0.0000
	              i 0.0000

              .   469003   1 (5)
	              . 1.0000
	              , 0.8571
	             us 0.7143
	           </S> 0.0000
	            the 0.0000

           THIS   469006   1 (6)
	           THIS 1.0000
	              , 0.0000
	              I 0.0000
	           This 0.0000
	              " 0.0000
	           </S> 0.0000

        species   469011   1 (8)
	        species 1.0000
	             IS 0.0000
	           case 0.0000
	              , 0.0000
	              I 0.0000
	       document 0.0000
	           </S> 0.0000
	        suecica 0.0000

           1869   469141 inf (7)
	           1861 1.0000
	           1986 0.9474
	            the 0.8421
	           2005 0.8421
	              a 0.8421
	           </S> 0.8421
	      therefore 0.0000

         Rowley   469178   1 (7)
	         Rowley 1.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	              : 0.0000
	              s 0.0000
	          Rules 0.0000

           1870   469241 inf (6)
	           1871 1.0000
	             pp 0.0000
	           2006 0.0000
	            the 0.0000
	           </S> 0.0000
	              a 0.0000

        species   469270   1 (9)
	        species 1.0000
	        special 0.8182
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	              ] 0.0000
	     Federation 0.0000
	             of 0.0000
	        suecica 0.0000

            and   469279   1 (6)
	            and 1.0000
	              } 0.0000
	             eg 0.0000
	           </S> 0.0000
	              , 0.0000
	            arz 0.0000

             by   469284   1 (9)
	             by 1.0000
	            the 0.0000
	             or 0.0000
	             us 0.0000
	              , 0.0000
	              a 0.0000
	            for 0.0000
	           </S> 0.0000
	            who 0.0000

      Mongolian   469321   1 (8)
	      Mongolian 1.0000
	         health 0.0000
	             of 0.0000
	         forces 0.0000
	          would 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000

        Eugland   469383   1 (11)
	        England 1.0000
	        Rugland 1.0000
	           </S> 0.0000
	            the 0.0000
	            you 0.0000
	             us 0.0000
	              a 0.0000
	              , 0.0000
	     Euglandina 0.0000
	           cars 0.0000
	            and 0.0000

           This   469473   1 (6)
	           This 1.0000
	              " 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	            cia 0.0000

             in   469571   1 (6)
	             in 1.0000
	           </S> 0.0000
	              } 0.0000
	              a 0.0000
	              s 0.0000
	              , 0.0000

        January   469594   1 (8)
	        January 1.0000
	              , 0.0000
	              a 0.0000
	    destination 0.0000
	            the 0.0000
	           said 0.0000
	           </S> 0.0000
	       children 0.0000

           1908   469603 inf (8)
	           1998 1.0000
	           1999 0.9167
	              , 0.7500
	           </S> 0.7500
	              a 0.7500
	           with 0.7500
	            and 0.7500
	            the 0.7500

         Sussex   469628   1 (10)
	         Sussex 1.0000
	              a 0.0000
	          place 0.0000
	           </S> 0.0000
	            the 0.0000
	           used 0.0000
	              , 0.0000
	         Passer 0.0000
	          color 0.0000
	          stock 0.0000

Faunlx-ALAUDID.E   469637 inf (11)
	       SATURDAY 1.0000
	        Falkirk 1.0000
	           only 0.6667
	             DE 0.6667
	        England 0.3333
	              - 0.3333
	              a 0.3333
	              / 0.0000
	              , 0.0000
	              " 0.0000
	           </S> 0.0000

              .   469653   1 (5)
	              . 1.0000
	              , 0.9286
	             us 0.8571
	           </S> 0.0000
	            the 0.0000

              .   469670   1 (5)
	              . 1.0000
	              , 0.9231
	             us 0.8462
	           </S> 0.0000
	            the 0.0000

 Mcla)iOLoyypha   469673 inf (11)
	      ChangeLog 1.0000
	             My 0.6667
	         Martin 0.6667
	      Copyright 0.6667
	              a 0.3333
	              ) 0.3333
	   yeltoniensis 0.3333
	              / 0.0000
	              " 0.0000
	              , 0.0000
	           </S> 0.0000

    ycltontemis   469688 inf (9)
	       contrast 1.0000
	     components 1.0000
	       conftest 1.0000
	      Montornés 0.8571
	             to 0.7143
	      configure 0.7143
	              a 0.0000
	           </S> 0.0000
	              , 0.0000

              ,   469699 inf (3)
	             of 1.0000
	             us 1.0000
	            the 0.0000

          FoRST   469701 inf (7)
	           FRST 1.0000
	          FIRST 1.0000
	            RST 0.9333
	            For 0.8667
	              i 0.0000
	            the 0.0000
	             pp 0.0000

              .   469706   1 (6)
	              . 1.0000
	              , 0.8571
	              ) 0.8571
	             us 0.7143
	           </S> 0.0000
	            the 0.0000

              A   469709   1 (7)
	              A 1.0000
	              " 0.9167
	              / 0.9167
	              , 0.9167
	             us 0.0000
	            the 0.0000
	           </S> 0.0000

          FLOCK   469711 inf (9)
	           FLOC 1.0000
	            FOR 0.8462
	              , 0.0000
	           nest 0.0000
	          major 0.0000
	           </S> 0.0000
	         number 0.0000
	              A 0.0000
	           copy 0.0000

          About   469822   1 (6)
	          About 1.0000
	              " 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	        sources 0.0000

       imported   469860   1 (10)
	       imported 1.0000
	           many 0.0000
	              , 0.0000
	          items 0.0000
	            the 0.0000
	             us 0.0000
	              a 0.0000
	        ranging 0.0000
	             if 0.0000
	           </S> 0.0000

     Leadenhall   469905   1 (7)
	     Leadenhall 1.0000
	        January 0.3636
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	            the 0.0000
	          major 0.0000

          Larks   469924   1 (9)
	          Larks 1.0000
	          Links 0.8462
	              , 0.0000
	              " 0.0000
	           </S> 0.0000
	       Research 0.0000
	         London 0.0000
	              a 0.0000
	          Parus 0.0000

       Ortolans   469931   1 (11)
	       Ortolans 1.0000
	          women 0.0000
	            the 0.0000
	       Swallows 0.0000
	              , 0.0000
	         online 0.0000
	      therefore 0.0000
	           </S> 0.0000
	              a 0.0000
	        drepper 0.0000
	              s 0.0000

            and   469941   1 (4)
	            and 1.0000
	          while 0.0000
	            the 0.0000
	            arz 0.0000

         Quails   469945   1 (9)
	         Quails 1.0000
	         dubius 0.0000
	          Email 0.0000
	              , 0.0000
	            the 0.0000
	           they 0.0000
	           </S> 0.0000
	              a 0.0000
	       children 0.0000

              "   469984   1 (8)
	              " 1.0000
	              , 0.9091
	              - 0.9091
	             us 0.8182
	            the 0.0000
	           time 0.0000
	       distance 0.0000
	           </S> 0.0000

         almost   470050   1 (8)
	         almost 1.0000
	            and 0.0000
	              I 0.0000
	            the 0.0000
	           also 0.0000
	           </S> 0.0000
	           such 0.0000
	              " 0.0000

       bullocks   470087   1 (8)
	       bullocks 1.0000
	             if 0.0000
	              , 0.0000
	          close 0.0000
	        defined 0.0000
	           well 0.0000
	           </S> 0.0000
	              a 0.0000

        jerking   470119   1 (8)
	        jerking 1.0000
	        Perkins 0.8462
	        working 0.8462
	           </S> 0.0000
	          doors 0.0000
	              - 0.0000
	          first 0.0000
	          major 0.0000

           open   470127   1 (11)
	           open 1.0000
	            one 0.8571
	             of 0.0000
	             us 0.0000
	      movements 0.0000
	           part 0.0000
	              , 0.0000
	            off 0.0000
	         number 0.0000
	           </S> 0.0000
	              a 0.0000

       smashing   470184   1 (8)
	       smashing 1.0000
	              , 0.0000
	              - 0.0000
	              a 0.0000
	             of 0.0000
	         system 0.0000
	             or 0.0000
	           </S> 0.0000

       liberate   470242   1 (8)
	       liberate 1.0000
	           like 0.0000
	              , 0.0000
	             be 0.0000
	          again 0.0000
	           </S> 0.0000
	              . 0.0000
	              a 0.0000

         enough   470251   1 (7)
	         enough 1.0000
	        through 0.7000
	            the 0.0000
	           </S> 0.0000
	             us 0.0000
	              a 0.0000
	              , 0.0000

          flock   470292   1 (10)
	          flock 1.0000
	            and 0.0000
	              a 0.0000
	           time 0.0000
	          basis 0.0000
	             of 0.0000
	           </S> 0.0000
	         family 0.0000
	           from 0.0000
	              , 0.0000

             No   470299   1 (6)
	             No 1.0000
	              a 0.0000
	           </S> 0.0000
	             us 0.0000
	              , 0.0000
	              " 0.0000

   importations   470347   1 (13)
	   importations 1.0000
	           that 0.0000
	            use 0.0000
	            the 0.0000
	             us 0.0000
	            one 0.0000
	            any 0.0000
	      thousands 0.0000
	           your 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	    information 0.0000

          birds   470363   1 (10)
	          birds 1.0000
	             it 0.0000
	           time 0.0000
	           </S> 0.0000
	            the 0.0000
	          first 0.0000
	              a 0.0000
	              , 0.0000
	           them 0.0000
	          Parus 0.0000

         Family   470436   1 (7)
	         Family 1.0000
	              " 0.0000
	           </S> 0.0000
	              / 0.0000
	              , 0.0000
	              a 0.0000
	           mail 0.0000

   ALAl'DID.-Ji   470444 inf (13)
	             L. 1.0000
	       Atlantis 1.0000
	            All 1.0000
	            Vol 0.5000
	              D 0.5000
	           side 0.0000
	              © 0.0000
	              a 0.0000
	             to 0.0000
	              s 0.0000
	           </S> 0.0000
	              , 0.0000
	              p 0.0000

              .   470456   1 (7)
	              . 1.0000
	              , 0.9167
	              - 0.9167
	             us 0.8333
	            And 0.0000
	            the 0.0000
	           </S> 0.0000

  Ciila)idixlla   470481   1 (9)
	    Calandrella 1.0000
	        Comella 0.5714
	          Click 0.4286
	              a 0.1429
	              ) 0.1429
	              , 0.0000
	           </S> 0.0000
	              " 0.0000
	              / 0.0000

   bnuhydaityla   470495 inf (9)
	        Tuesday 1.0000
	          build 1.0000
	       addition 0.8333
	          atlas 0.8333
	      configure 0.5000
	              a 0.5000
	              n 0.5000
	              , 0.0000
	           </S> 0.0000

              ,   470507 inf (3)
	             of 1.0000
	             us 1.0000
	            the 0.0000

          LEISL   470509 inf (5)
	          LEISD 1.0000
	           LEIS 1.0000
	            the 0.0000
	              i 0.0000
	             pp 0.0000

              .   470514   1 (5)
	              . 1.0000
	              , 0.8571
	             us 0.7143
	           </S> 0.0000
	            the 0.0000

         HOWARD   470517 inf (7)
	          HOARD 1.0000
	         HAZARD 0.9091
	           WARD 0.9091
	           </S> 0.0000
	              I 0.0000
	              " 0.0000
	              , 0.0000

       SAUNDERS   470524 inf (8)
	          SUNDS 1.0000
	         FUNDER 1.0000
	        SINGERS 1.0000
	         UANDES 1.0000
	             A. 0.6364
	              , 0.5455
	              a 0.5455
	           </S> 0.5455

         admits   470533   1 (5)
	         admits 1.0000
	          admit 0.9231
	              , 0.0000
	              I 0.0000
	           </S> 0.0000

    justifiably   470568   1 (8)
	    justifiably 1.0000
	           just 0.4167
	           </S> 0.0000
	             is 0.0000
	             to 0.0000
	              a 0.0000
	          major 0.0000
	              , 0.0000

          geuus   470594   1 (10)
	         genuus 1.0000
	          genus 1.0000
	           geus 1.0000
	            geu 0.0000
	          world 0.0000
	           </S> 0.0000
	          rufus 0.0000
	            get 0.0000
	           same 0.0000
	              , 0.0000

    Calandrclla   470600   1 (7)
	    Calandrella 1.0000
	       Calandra 0.8000
	          place 0.3000
	              a 0.1000
	             of 0.0000
	              , 0.0000
	           </S> 0.0000

              ,   470611 inf (3)
	             of 1.0000
	             us 1.0000
	            the 0.0000

  characterized   470613   1 (6)
	  characterized 1.0000
	          their 0.0000
	              i 0.0000
	        written 0.0000
	            the 0.0000
	             or 0.0000

          crest   470645   1 (9)
	          crest 1.0000
	           best 0.8182
	             it 0.0000
	              , 0.0000
	             us 0.0000
	              a 0.0000
	            the 0.0000
	           this 0.0000
	           </S> 0.0000

        conical   470660   1 (7)
	        conical 1.0000
	              , 0.0000
	        control 0.0000
	             of 0.0000
	              a 0.0000
	           </S> 0.0000
	         dollar 0.0000

           hind   470693   1 (11)
	           hind 1.0000
	            his 0.8182
	          minor 0.0000
	           </S> 0.0000
	              a 0.0000
	            non 0.0000
	              - 0.0000
	              , 0.0000
	              . 0.0000
	           half 0.0000
	       informed 0.0000

  infinitesimal   470707   1 (7)
	  infinitesimal 1.0000
	    information 0.3077
	              a 0.0000
	              . 0.0000
	           </S> 0.0000
	            the 0.0000
	              , 0.0000

        bastard   470721   1 (10)
	        bastard 1.0000
	        numbers 0.0000
	             us 0.0000
	            the 0.0000
	          based 0.0000
	              . 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	       compared 0.0000

        primary   470729   1 (9)
	        primary 1.0000
	              ' 0.0000
	              . 0.0000
	              a 0.0000
	              , 0.0000
	        private 0.0000
	              " 0.0000
	          since 0.0000
	           </S> 0.0000

        Alaiida   470795   1 (15)
	        Algaida 1.0000
	          Alaid 1.0000
	         Alauda 1.0000
	        Alaimia 1.0000
	        Adalida 1.0000
	            out 0.0000
	           Alai 0.0000
	              a 0.0000
	           </S> 0.0000
	             is 0.0000
	           said 0.0000
	           that 0.0000
	              , 0.0000
	              . 0.0000
	        maiidae 0.0000

              .   470802   1 (5)
	              . 1.0000
	              , 0.8889
	             us 0.7778
	            the 0.0000
	           </S> 0.0000

       Inhabits   470805 inf (6)
	        Inhabit 1.0000
	    Inhabitants 0.8000
	              A 0.0000
	           </S> 0.0000
	              , 0.0000
	              " 0.0000

       Southern   470814   1 (5)
	       Southern 1.0000
	           </S> 0.0000
	              a 0.0000
	        shallow 0.0000
	              , 0.0000

             in   470927   1 (6)
	             in 1.0000
	              } 0.0000
	             iu 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000

     xAbyssinia   470992   1 (8)
	      Abyssinia 1.0000
	          using 0.4545
	       possible 0.4545
	              a 0.2727
	            the 0.0000
	           </S> 0.0000
	              , 0.0000
	              I 0.0000

              ;   471003   1 (8)
	              ; 1.0000
	              , 0.9091
	             as 0.8182
	             us 0.8182
	            the 0.0000
	           know 0.0000
	            can 0.0000
	           </S> 0.0000

       eastward   471005   1 (5)
	       eastward 1.0000
	        eastern 0.6250
	              } 0.0000
	           </S> 0.0000
	              ) 0.0000

             To   471069   1 (7)
	             To 1.0000
	              " 0.0000
	              ( 0.0000
	              , 0.0000
	           </S> 0.0000
	             us 0.0000
	              a 0.0000

      straggler   471116   1 (9)
	      straggler 1.0000
	    opportunity 0.0000
	              , 0.0000
	              a 0.0000
	          event 0.0000
	           </S> 0.0000
	            one 0.0000
	             of 0.0000
	          state 0.0000

          about   471127   1 (7)
	          about 1.0000
	           </S> 0.0000
	            the 0.0000
	           used 0.0000
	              I 0.0000
	              " 0.0000
	            and 0.0000

  authenticated   471138   1 (11)
	  authenticated 1.0000
	       students 0.2308
	         months 0.0000
	              . 0.0000
	              , 0.0000
	          miles 0.0000
	           </S> 0.0000
	          major 0.0000
	          years 0.0000
	              I 0.0000
	              - 0.0000

           si.x   471213   1 (12)
	            six 1.0000
	           siex 1.0000
	           site 0.9167
	             si 0.9167
	             on 0.0000
	              a 0.0000
	            one 0.0000
	            the 0.0000
	            and 0.0000
	           </S> 0.0000
	              ( 0.0000
	           sala 0.0000

             of   471218   1 (6)
	             of 1.0000
	            put 0.0000
	              , 0.0000
	            the 0.0000
	           </S> 0.0000
	             us 0.0000

            one   471401   1 (5)
	            one 1.0000
	              s 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000

         caught   471405   1 (9)
	         caught 1.0000
	           case 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	            can 0.0000
	             of 0.0000
	             is 0.0000
	        caudata 0.0000

            was   471428   1 (5)
	            was 1.0000
	             us 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000

             In   471465   1 (7)
	             In 1.0000
	             us 0.0000
	              / 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	              " 0.0000

   sand3'-browu   471627 inf (10)
	          brown 1.0000
	           send 0.8571
	            not 0.7143
	             an 0.7143
	       password 0.7143
	              a 0.5714
	        implied 0.0000
	            the 0.0000
	           </S> 0.0000
	              , 0.0000

            the   471683   1 (5)
	            the 1.0000
	           </S> 0.0000
	              , 0.0000
	              } 0.0000
	             us 0.0000

              -   471699   1 (6)
	              - 1.0000
	              , 0.9231
	              . 0.9231
	             us 0.8462
	            the 0.0000
	           </S> 0.0000

       blackish   471740   1 (8)
	       blackish 1.0000
	           back 0.0000
	             of 0.0000
	              a 0.0000
	              ) 0.0000
	              , 0.0000
	        thereof 0.0000
	           </S> 0.0000

            but   471750   1 (9)
	            but 1.0000
	              a 0.0000
	             us 0.0000
	           </S> 0.0000
	          while 0.0000
	              , 0.0000
	           with 0.0000
	              e 0.0000
	            the 0.0000

        huffish   471787 inf (10)
	        huffish 1.0000
	           this 0.0000
	              , 0.0000
	            and 0.0000
	           blue 0.0000
	              a 0.0000
	           </S> 0.0000
	           skin 0.0000
	             us 0.0000
	             to 0.0000

        patches   471795   1 (6)
	        patches 1.0000
	        Watches 0.9231
	           </S> 0.0000
	          grief 0.0000
	              , 0.0000
	              a 0.0000

              a   471863   1 (6)
	              a 1.0000
	              } 0.9167
	              , 0.9167
	           </S> 0.0000
	             us 0.0000
	            the 0.0000

   superciliary   471871   1 (8)
	   superciliary 1.0000
	        support 0.3333
	              , 0.0000
	            man 0.0000
	              a 0.0000
	             of 0.0000
	    crystalline 0.0000
	           </S> 0.0000

         streak   471884   1 (9)
	         streak 1.0000
	         stream 0.9000
	              , 0.0000
	              . 0.0000
	         ridges 0.0000
	           </S> 0.0000
	         stripe 0.0000
	           sore 0.0000
	              a 0.0000

          under   471892   1 (5)
	          under 1.0000
	              } 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000

              a   471962   1 (7)
	              a 1.0000
	              } 0.9167
	              , 0.9167
	             us 0.0000
	            the 0.0000
	           </S> 0.0000
	            and 0.0000

           tlie   471997   3 (9)
	           trie 1.0000
	          tliet 1.0000
	           tile 0.9000
	           this 0.9000
	            the 0.9000
	           </S> 0.0000
	              a 0.0000
	           alba 0.0000
	              , 0.0000

           neck   472002   1 (10)
	           neck 1.0000
	            new 0.8182
	            Act 0.0000
	       Atlantic 0.0000
	           Pica 0.0000
	           </S> 0.0000
	          <UNK> 0.0000
	              , 0.0000
	              . 0.0000
	              a 0.0000

           bill   472009   1 (8)
	           bill 1.0000
	           will 0.8750
	              , 0.0000
	           </S> 0.0000
	              } 0.0000
	            and 0.0000
	              a 0.0000
	            cia 0.0000

           dark   472014   1 (9)
	           dark 1.0000
	            day 0.8182
	              . 0.0000
	           </S> 0.0000
	             of 0.0000
	              , 0.0000
	              a 0.0000
	            and 0.0000
	            arz 0.0000

           feet   472040   1 (7)
	           feet 1.0000
	           free 0.8182
	              a 0.0000
	              ) 0.0000
	           </S> 0.0000
	              } 0.0000
	              , 0.0000

     j^ellowish   472045   1 (7)
	      yellowish 1.0000
	          below 0.5000
	             of 0.1250
	              , 0.0000
	           </S> 0.0000
	              . 0.0000
	              a 0.0000

           horn   472056   1 (7)
	           horn 1.0000
	           here 0.8000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	       Tide2006 0.0000
	          corax 0.0000

           iris   472069   1 (7)
	           iris 1.0000
	             is 0.7143
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	              } 0.0000
	             iu 0.0000

          hazel   472074   1 (7)
	          hazel 1.0000
	           have 0.9130
	              ) 0.0000
	              , 0.0000
	           </S> 0.0000
	           here 0.0000
	          Pales 0.0000

              .   472079   1 (6)
	              . 1.0000
	              , 0.9286
	             us 0.8571
	            the 0.0000
	           </S> 0.0000
	           eyes 0.0000

         tipped   472244   1 (7)
	         tipped 1.0000
	          times 0.0000
	             of 0.0000
	              . 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000

           buff   472269   1 (11)
	           buff 1.0000
	            but 0.8824
	           </S> 0.0000
	           your 0.0000
	             us 0.0000
	            the 0.0000
	           them 0.0000
	          rufus 0.0000
	          black 0.0000
	              , 0.0000
	              a 0.0000

          moult   472292   1 (8)
	          moult 1.0000
	          would 0.8333
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	             of 0.0000
	              . 0.0000
	          maura 0.0000

        Colonel   472322   1 (7)
	        Colonel 1.0000
	              a 0.0000
	              , 0.0000
	          <UNK> 0.0000
	              " 0.0000
	           </S> 0.0000
	         corone 0.0000

           Irby   472330   1 (8)
	           Irby 1.0000
	          Blimp 0.0000
	              a 0.0000
	              , 0.0000
	             In 0.0000
	          <UNK> 0.0000
	           </S> 0.0000
	           alba 0.0000

    Ornithology   472337   1 (8)
	    Ornithology 1.0000
	           with 0.2727
	            One 0.1818
	              , 0.0000
	        Journal 0.0000
	           </S> 0.0000
	              a 0.0000
	              ) 0.0000

         says:-   472379   1 (9)
	          sayst 1.0000
	           says 1.0000
	              , 0.0000
	             == 0.0000
	           </S> 0.0000
	              ; 0.0000
	              s 0.0000
	              a 0.0000
	              " 0.0000

              "   472386   1 (6)
	              " 1.0000
	              : 0.8889
	              , 0.8889
	             us 0.7778
	            the 0.0000
	           </S> 0.0000

     Andalucian   472394   1 (7)
	     Andalucian 1.0000
	      Andalucia 0.9000
	       American 0.4000
	           </S> 0.0000
	          other 0.0000
	           same 0.0000
	              , 0.0000

      commences   472445   1 (7)
	      commences 1.0000
	       comments 0.8571
	           </S> 0.0000
	         summer 0.0000
	              a 0.0000
	              , 0.0000
	             of 0.0000

          nests   472541   1 (8)
	          nests 1.0000
	              , 0.0000
	            new 0.0000
	             us 0.0000
	            the 0.0000
	           </S> 0.0000
	              a 0.0000
	              . 0.0000

    Excessively   472586 inf (9)
	    excessively 1.0000
	      Excessive 0.9000
	    Exclusively 0.9000
	    exclusively 0.8000
	              , 0.0000
	           </S> 0.0000
	              " 0.0000
	              / 0.0000
	              a 0.0000

       abundant   472598   1 (8)
	       abundant 1.0000
	      Injurious 0.0000
	         Monday 0.0000
	        Drained 0.0000
	      configure 0.0000
	              I 0.0000
	              , 0.0000
	           </S> 0.0000

       Cahuidra   472655 inf (13)
	        Cahuita 1.0000
	       Cahuilla 1.0000
	       Cathedra 0.9000
	              , 0.0000
	         Cahuil 0.0000
	             as 0.0000
	          major 0.0000
	              " 0.0000
	          other 0.0000
	        Chhidru 0.0000
	       original 0.0000
	           City 0.0000
	           </S> 0.0000

              ;   472664   1 (7)
	              ; 1.0000
	              , 0.9231
	             of 0.8462
	             us 0.8462
	           </S> 0.0000
	            the 0.0000
	           that 0.0000

           they   472666   1 (5)
	           they 1.0000
	            the 0.8333
	              ) 0.0000
	              } 0.0000
	           </S> 0.0000

         falhnv   472678 inf (10)
	          falha 1.0000
	         falhas 1.0000
	        falhava 1.0000
	           </S> 0.0000
	           find 0.0000
	             us 0.0000
	            not 0.0000
	             to 0.0000
	              , 0.0000
	              a 0.0000

        i^round   472685 inf (10)
	        inbound 1.0000
	       inground 1.0000
	          round 1.0000
	         around 1.0000
	             us 0.0000
	              a 0.0000
	             to 0.0000
	              , 0.0000
	           </S> 0.0000
	            use 0.0000

              ,   472692 inf (3)
	             of 1.0000
	             us 1.0000
	            the 0.0000

           clod   472724   1 (10)
	           clod 1.0000
	              . 0.0000
	              a 0.0000
	     References 0.0000
	         excuse 0.0000
	            cia 0.0000
	            can 0.0000
	              , 0.0000
	           </S> 0.0000
	             of 0.0000

           au}'   472735 inf (11)
	            aua 1.0000
	             au 1.0000
	           auto 1.0000
	            and 0.9000
	            the 0.0000
	              , 0.0000
	              I 0.0000
	           alba 0.0000
	           part 0.0000
	           </S> 0.0000
	           some 0.0000

        sliglit   472740   1 (11)
	        seligit 1.0000
	         slight 1.0000
	         Piglit 1.0000
	         stigli 1.0000
	          sigli 1.0000
	        stiglio 1.0000
	          light 0.9000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	          major 0.0000

     depression   472748   1 (3)
	     depression 1.0000
	     depressior 0.6667
	     expression 0.3333

              I   472774   1 (6)
	              I 1.0000
	              " 0.9231
	              , 0.9231
	           </S> 0.0000
	             us 0.0000
	            the 0.0000

          l)ird   472829 inf (11)
	          laird 1.0000
	           Bird 0.9000
	           like 0.8000
	            one 0.0000
	             of 0.0000
	              , 0.0000
	              - 0.0000
	            man 0.0000
	           </S> 0.0000
	              a 0.0000
	           dirl 0.0000

            off   472835   1 (8)
	            off 1.0000
	             of 0.9091
	              , 0.0000
	           said 0.0000
	             us 0.0000
	           </S> 0.0000
	              a 0.0000
	            new 0.0000

              "   472839   1 (6)
	              " 1.0000
	              , 0.8889
	             us 0.7778
	            the 0.0000
	            all 0.0000
	           </S> 0.0000

       Saunders   472849   1 (9)
	       Saunders 1.0000
	           Dean 0.0000
	          under 0.0000
	           </S> 0.0000
	              a 0.0000
	             A. 0.0000
	              , 0.0000
	              " 0.0000
	             he 0.0000

          liird   472898 inf (10)
	          liira 1.0000
	           liir 1.0000
	         beauty 0.0000
	        weather 0.0000
	              , 0.0000
	           </S> 0.0000
	           same 0.0000
	           team 0.0000
	           like 0.0000
	           dirl 0.0000

      frequents   472904   1 (7)
	      frequents 1.0000
	        request 0.7000
	              a 0.0000
	             is 0.0000
	             of 0.0000
	              , 0.0000
	           </S> 0.0000

            dry   472914   1 (7)
	            dry 1.0000
	            day 0.9091
	           </S> 0.0000
	              a 0.0000
	            the 0.0000
	              , 0.0000
	            arz 0.0000

          while   472984   1 (5)
	          while 1.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	              } 0.0000

       tameuess   472994   1 (14)
	       tameness 1.0000
	          tames 0.8182
	          meues 0.0000
	            own 0.0000
	              a 0.0000
	         effect 0.0000
	        ameutes 0.0000
	          major 0.0000
	          value 0.0000
	           head 0.0000
	              , 0.0000
	           time 0.0000
	        content 0.0000
	           </S> 0.0000

             is   473003   1 (6)
	             is 1.0000
	             iu 0.9231
	           </S> 0.0000
	              . 0.0000
	              a 0.0000
	              , 0.0000

    difficult}'   473029   1 (11)
	     difficulty 1.0000
	      difficult 1.0000
	      different 0.6364
	             it 0.3636
	          found 0.3636
	             us 0.0000
	             of 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	            the 0.0000

             in   473041   1 (6)
	             in 1.0000
	              , 0.0000
	            the 0.0000
	              s 0.0000
	           </S> 0.0000
	              a 0.0000

       shooting   473044   1 (9)
	       shooting 1.0000
	              a 0.0000
	          which 0.0000
	          using 0.0000
	           </S> 0.0000
	            the 0.0000
	              , 0.0000
	           such 0.0000
	             us 0.0000

       withoiit   473083   1 (9)
	        without 1.0000
	         Pithoi 0.8750
	       Githoito 0.8750
	              , 0.0000
	       purposes 0.0000
	             of 0.0000
	              . 0.0000
	           </S> 0.0000
	              a 0.0000

        blowing   473092   1 (6)
	        blowing 1.0000
	           </S> 0.0000
	              a 0.0000
	          being 0.0000
	           only 0.0000
	              , 0.0000

            cut   473137   1 (10)
	            cut 1.0000
	            can 0.8462
	              a 0.0000
	            flu 0.0000
	           </S> 0.0000
	             's 0.0000
	            cia 0.0000
	             of 0.0000
	              , 0.0000
	           like 0.0000

         utters   473180   1 (9)
	         utters 1.0000
	          under 0.0000
	           uses 0.0000
	             in 0.0000
	           </S> 0.0000
	            and 0.0000
	              , 0.0000
	             of 0.0000
	              I 0.0000

           song   473208   1 (7)
	           song 1.0000
	           some 0.8182
	              a 0.0000
	           </S> 0.0000
	              . 0.0000
	              , 0.0000
	           sala 0.0000

           clod   473235   1 (9)
	           clod 1.0000
	            cia 0.0000
	              a 0.0000
	              , 0.0000
	            can 0.0000
	           </S> 0.0000
	             of 0.0000
	          level 0.0000
	           high 0.0000

         jerk}'   473297 inf (11)
	           jerk 1.0000
	          jerks 1.0000
	         jerker 1.0000
	             us 0.0000
	              a 0.0000
	           more 0.0000
	           </S> 0.0000
	           were 0.0000
	              . 0.0000
	              , 0.0000
	           less 0.0000

         flight   473304   1 (7)
	         flight 1.0000
	          light 0.9167
	              , 0.0000
	           </S> 0.0000
	              . 0.0000
	              a 0.0000
	   ostentatious 0.0000

             In   473312   1 (6)
	             In 1.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	             us 0.0000
	              " 0.0000

   nidification   473374   1 (10)
	   nidification 1.0000
	              , 0.0000
	             it 0.0000
	            the 0.0000
	         Advent 0.0000
	              a 0.0000
	      Education 0.0000
	           </S> 0.0000
	             us 0.0000
	           them 0.0000

             as   473388   1 (7)
	             as 1.0000
	             us 0.9091
	            the 0.0000
	           </S> 0.0000
	              ( 0.0000
	              I 0.0000
	            and 0.0000

        Seebohm   473391   1 (8)
	        Seebohm 1.0000
	          <UNK> 0.0000
	              , 0.0000
	             it 0.0000
	              a 0.0000
	           need 0.0000
	           well 0.0000
	           </S> 0.0000

         varies   473439   1 (7)
	         varies 1.0000
	        various 0.8182
	           </S> 0.0000
	          Books 0.0000
	              , 0.0000
	              D 0.0000
	          Parus 0.0000

     commencing   473447   1 (6)
	     commencing 1.0000
	            the 0.0000
	         online 0.0000
	             or 0.0000
	              a 0.0000
	            but 0.0000

             in   473550   1 (6)
	             in 1.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	              } 0.0000
	             iu 0.0000

        nesting   473628   1 (8)
	        nesting 1.0000
	        Listing 0.8000
	             of 0.0000
	              a 0.0000
	              , 0.0000
	              . 0.0000
	           than 0.0000
	           </S> 0.0000

     operations   473636   1 (8)
	     operations 1.0000
	        options 0.7000
	          birds 0.0000
	             it 0.0000
	              a 0.0000
	              , 0.0000
	           they 0.0000
	           </S> 0.0000

      sheltered   473772   1 (10)
	      sheltered 1.0000
	           </S> 0.0000
	        getting 0.0000
	              a 0.0000
	          legal 0.0000
	             to 0.0000
	          there 0.0000
	              , 0.0000
	         caused 0.0000
	       affected 0.0000

          Larks   473842   1 (11)
	          Larks 1.0000
	          Links 0.8462
	           hand 0.0000
	           </S> 0.0000
	         things 0.0000
	              I 0.0000
	              , 0.0000
	         people 0.0000
	           than 0.0000
	      countries 0.0000
	          Parus 0.0000

          grass   473864   1 (8)
	          grass 1.0000
	          great 0.0000
	              a 0.0000
	             us 0.0000
	              , 0.0000
	            the 0.0000
	      probation 0.0000
	           </S> 0.0000

       feathers   473988   1 (9)
	       feathers 1.0000
	           </S> 0.0000
	          other 0.0000
	             it 0.0000
	              a 0.0000
	              . 0.0000
	             us 0.0000
	           even 0.0000
	              , 0.0000

           bird   474178   1 (10)
	           bird 1.0000
	              . 0.0000
	             is 0.0000
	              , 0.0000
	              a 0.0000
	          there 0.0000
	             by 0.0000
	            cia 0.0000
	           </S> 0.0000
	            the 0.0000

            but   474239   1 (6)
	            but 1.0000
	              a 0.0000
	           </S> 0.0000
	             us 0.0000
	              , 0.0000
	              } 0.0000

            Sky   474362   1 (11)
	            Sky 1.0000
	             by 0.8333
	            non 0.0000
	          Black 0.0000
	              a 0.0000
	              , 0.0000
	           self 0.0000
	            the 0.0000
	           </S> 0.0000
	            Pyi 0.0000
	          three 0.0000

              -   474365   1 (6)
	              - 1.0000
	              , 0.9167
	              . 0.9167
	             us 0.8333
	           </S> 0.0000
	            the 0.0000

          Larks   474366   1 (10)
	          Larks 1.0000
	          Links 0.8333
	           </S> 0.0000
	           side 0.0000
	         namely 0.0000
	              a 0.0000
	             up 0.0000
	              . 0.0000
	             to 0.0000
	              s 0.0000

             In   474463   1 (6)
	             In 1.0000
	           </S> 0.0000
	              a 0.0000
	              " 0.0000
	             us 0.0000
	              , 0.0000

      colouring   474466   1 (7)
	      colouring 1.0000
	            the 0.0000
	              , 0.0000
	              a 0.0000
	          using 0.0000
	           </S> 0.0000
	       addition 0.0000

        whitish   474496   1 (8)
	        whitish 1.0000
	          white 0.7500
	          which 0.7500
	              s 0.0000
	              . 0.0000
	              a 0.0000
	           </S> 0.0000
	             to 0.0000

         freely   474504   1 (7)
	         freely 1.0000
	           free 0.8333
	            and 0.0000
	              a 0.0000
	              - 0.0000
	              , 0.0000
	           </S> 0.0000

      sprinkled   474511   1 (7)
	      sprinkled 1.0000
	       Sprinkle 0.8333
	        printed 0.7500
	         shared 0.0000
	              , 0.0000
	           </S> 0.0000
	      available 0.0000

          smoky   474531   1 (9)
	          smoky 1.0000
	         yellow 0.0000
	           </S> 0.0000
	           some 0.0000
	              . 0.0000
	              , 0.0000
	            non 0.0000
	              a 0.0000
	           gray 0.0000

         greyer   474558   1 (8)
	         greyer 1.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	          great 0.0000
	             us 0.0000
	              . 0.0000
	            the 0.0000

          shell   474565   1 (9)
	          shell 1.0000
	          shall 0.9231
	              , 0.0000
	            non 0.0000
	              a 0.0000
	           </S> 0.0000
	              . 0.0000
	           Back 0.0000
	           sala 0.0000

          these   474579   1 (5)
	          these 1.0000
	              , 0.0000
	              } 0.0000
	           </S> 0.0000
	              a 0.0000

        marking   474719   1 (8)
	        marking 1.0000
	        working 0.8333
	              . 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	       elements 0.0000
	           than 0.0000

            but   474749   1 (6)
	            but 1.0000
	           </S> 0.0000
	             us 0.0000
	              } 0.0000
	              , 0.0000
	              a 0.0000

          Larks   474792   1 (8)
	          Larks 1.0000
	          Links 0.8182
	          Large 0.8182
	           time 0.0000
	           same 0.0000
	           </S> 0.0000
	          Parus 0.0000
	              , 0.0000

         Jerdon   474838   1 (8)
	         Jerdon 1.0000
	           were 0.0000
	            the 0.0000
	           </S> 0.0000
	              " 0.0000
	          Aedon 0.0000
	              , 0.0000
	              a 0.0000

             cf   474846   1 (10)
	             cf 1.0000
	             of 0.9091
	           </S> 0.0000
	          <UNK> 0.0000
	            The 0.0000
	              \ 0.0000
	     Restricted 0.0000
	              s 0.0000
	              - 0.0000
	              a 0.0000

            Cat   474849   1 (10)
	            Cat 1.0000
	             at 0.9091
	              ) 0.0000
	          v2.9s 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	              . 0.0000
	              - 0.0000
	            cia 0.0000

          Birds   474854   1 (8)
	          Birds 1.0000
	           Bird 0.9167
	              s 0.0000
	              a 0.0000
	              " 0.0000
	              , 0.0000
	          first 0.0000
	           </S> 0.0000

             E.   474861 inf (9)
	             EE 1.0000
	             El 1.0000
	              ( 0.9091
	             us 0.9091
	              a 0.9091
	             of 0.9091
	           Cats 0.0000
	            the 0.0000
	           </S> 0.0000

             I.   474864   1 (7)
	             J. 1.0000
	              . 1.0000
	              I 1.0000
	             In 1.0000
	              , 0.9091
	              a 0.9091
	           </S> 0.0000

             II   474879   1 (8)
	             II 1.0000
	             In 0.9231
	             us 0.0000
	              " 0.0000
	           </S> 0.0000
	              a 0.0000
	              ) 0.0000
	              , 0.0000

             It   474970   1 (7)
	             It 1.0000
	              " 0.0000
	           </S> 0.0000
	              a 0.0000
	              . 0.0000
	             us 0.0000
	              , 0.0000

     associates   474973   1 (5)
	     associates 1.0000
	     associated 0.9000
	             is 0.0000
	           </S> 0.0000
	              , 0.0000

    frequenting   475000   1 (8)
	    frequenting 1.0000
	            the 0.0000
	          rufus 0.0000
	              a 0.0000
	           with 0.0000
	           free 0.0000
	            and 0.0000
	           </S> 0.0000

           bare   475016   1 (9)
	           bare 1.0000
	           same 0.0000
	           tall 0.0000
	           </S> 0.0000
	            two 0.0000
	              - 0.0000
	           back 0.0000
	           sons 0.0000
	            arz 0.0000

              -   475026   1 (6)
	              - 1.0000
	              . 0.9000
	              , 0.9000
	             us 0.8000
	           </S> 0.0000
	            the 0.0000

          downs   475027   1 (9)
	          downs 1.0000
	           down 0.9167
	           </S> 0.0000
	              a 0.0000
	           mail 0.0000
	             to 0.0000
	              s 0.0000
	              . 0.0000
	             up 0.0000

             it   475093   1 (7)
	             it 1.0000
	             iu 0.8889
	              } 0.0000
	              a 0.0000
	              , 0.0000
	            can 0.0000
	           </S> 0.0000

          grain   475111   1 (9)
	          grain 1.0000
	              , 0.0000
	             co 0.0000
	              a 0.0000
	          great 0.0000
	            the 0.0000
	             us 0.0000
	           </S> 0.0000
	          Multi 0.0000

        retires   475143   1 (9)
	        retires 1.0000
	           </S> 0.0000
	         wanted 0.0000
	              , 0.0000
	           been 0.0000
	       required 0.0000
	           have 0.0000
	              a 0.0000
	           turn 0.0000

           from   475200   1 (5)
	           from 1.0000
	              a 0.0000
	              s 0.0000
	           </S> 0.0000
	              , 0.0000

             II   475298   1 (7)
	             II 1.0000
	             In 0.9231
	             us 0.0000
	              " 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000

           both   475378   1 (5)
	           both 1.0000
	           </S> 0.0000
	              } 0.0000
	              a 0.0000
	              , 0.0000

           Lark   475454   1 (10)
	           Lark 1.0000
	            are 0.8462
	         estate 0.0000
	              , 0.0000
	           </S> 0.0000
	              . 0.0000
	              a 0.0000
	             of 0.0000
	          world 0.0000
	            arz 0.0000

             's   475458   1 (9)
	             's 1.0000
	             is 0.9231
	             us 0.9231
	              . 0.8462
	              a 0.8462
	              , 0.8462
	          Books 0.0000
	           time 0.0000
	           </S> 0.0000

        Towards   475462 inf (8)
	         Toward 1.0000
	              , 0.0000
	              " 0.0000
	           </S> 0.0000
	              a 0.0000
	             at 0.0000
	       Tawadros 0.0000
	          There 0.0000

          April   475501   1 (6)
	          April 1.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	              " 0.0000
	             us 0.0000

         flocks   475540   1 (7)
	         flocks 1.0000
	           from 0.0000
	            and 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	    motivations 0.0000

          nnite   475553 inf (9)
	           nite 1.0000
	         nanite 1.0000
	         annite 1.0000
	           site 0.8889
	           </S> 0.0000
	              , 0.0000
	        divided 0.0000
	           more 0.0000
	              a 0.0000

           into   475559   1 (6)
	           into 1.0000
	             to 0.8000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	          minor 0.0000

         troops   475569   1 (9)
	         troops 1.0000
	           room 0.0000
	       majority 0.0000
	              a 0.0000
	     dimensions 0.0000
	              , 0.0000
	              . 0.0000
	           </S> 0.0000
	          Books 0.0000

     containing   475577   1 (7)
	     containing 1.0000
	              a 0.0000
	           </S> 0.0000
	            and 0.0000
	          rufus 0.0000
	         online 0.0000
	            the 0.0000

          man}'   475588   1 (8)
	           many 1.0000
	            man 1.0000
	           mana 1.0000
	          major 0.0000
	            the 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000

      tliousand   475594   1 (5)
	       thousand 1.0000
	         tousan 0.9000
	              a 0.4000
	           </S> 0.3000
	              , 0.3000

          birds   475604   1 (4)
	          birds 1.0000
	           bird 0.6667
	             is 0.0000
	          Parus 0.0000

          qnite   475615   1 (10)
	          quite 1.0000
	           nite 1.0000
	           site 0.9167
	             to 0.0000
	         quinte 0.0000
	              , 0.0000
	        mammals 0.0000
	           </S> 0.0000
	              a 0.0000
	            the 0.0000

      darkening   475621   1 (8)
	      darkening 1.0000
	              , 0.0000
	           </S> 0.0000
	             of 0.0000
	             us 0.0000
	              a 0.0000
	           does 0.0000
	              . 0.0000

        flj'ing   475682   1 (13)
	         flying 1.0000
	          fling 1.0000
	         filing 0.8889
	            the 0.0000
	              a 0.0000
	              , 0.0000
	             us 0.0000
	           they 0.0000
	           fing 0.0000
	            wet 0.0000
	           </S> 0.0000
	             it 0.0000
	        looking 0.0000

              .   475689   1 (7)
	              . 1.0000
	              , 0.9167
	             us 0.8333
	            are 0.0000
	           </S> 0.0000
	            the 0.0000
	            was 0.0000

          Great   475691   1 (6)
	          Great 1.0000
	              " 0.0000
	              ) 0.0000
	              , 0.0000
	              I 0.0000
	           </S> 0.0000

       nnnibers   475697   3 (9)
	       einibers 1.0000
	       Enniberg 1.0000
	        numbers 0.8889
	        nimbers 0.8889
	        Britain 0.0000
	         things 0.0000
	              , 0.0000
	           </S> 0.0000
	       innitens 0.0000

            are   475706   1 (5)
	            are 1.0000
	              , 0.0000
	            arz 0.0000
	              I 0.0000
	           </S> 0.0000

       conntr}-   475738 inf (11)
	        control 1.0000
	        conners 1.0000
	         contra 1.0000
	         conner 1.0000
	         contro 1.0000
	          world 0.7000
	              . 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	          major 0.0000

            for   475781   1 (6)
	            for 1.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	              } 0.0000
	            arz 0.0000

             On   475830   1 (8)
	             On 1.0000
	             in 0.9167
	           </S> 0.0000
	              , 0.0000
	            the 0.0000
	             us 0.0000
	              a 0.0000
	              " 0.0000

         parade   475862   1 (7)
	         parade 1.0000
	              a 0.0000
	              , 0.0000
	           part 0.0000
	             of 0.0000
	           </S> 0.0000
	          parva 0.0000

        groiind   475869 inf (11)
	        growing 1.0000
	          groin 1.0000
	        groined 1.0000
	          route 0.0000
	              . 0.0000
	        gridino 0.0000
	        heroiin 0.0000
	              , 0.0000
	           will 0.0000
	           </S> 0.0000
	              a 0.0000

              ,   475876   1 (5)
	              , 1.0000
	             us 0.8182
	            the 0.0000
	           </S> 0.0000
	          begin 0.0000

             at   475878   1 (8)
	             at 1.0000
	            you 0.0000
	           </S> 0.0000
	            the 0.0000
	            and 0.0000
	              | 0.0000
	              I 0.0000
	            arz 0.0000

        Kamptee   475881   1 (9)
	        Kamptee 1.0000
	           know 0.0000
	           have 0.0000
	              a 0.0000
	             us 0.0000
	              , 0.0000
	           </S> 0.0000
	            all 0.0000
	           your 0.0000

              I   475890   1 (8)
	              I 1.0000
	              a 0.9167
	             of 0.0000
	            the 0.0000
	             us 0.0000
	            and 0.0000
	            who 0.0000
	           </S> 0.0000

         bagged   475892   1 (7)
	         bagged 1.0000
	          based 0.7778
	            was 0.0000
	             'm 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000

         twelve   475899   1 (8)
	         twelve 1.0000
	          there 0.6667
	            the 0.0000
	            not 0.0000
	              a 0.0000
	           </S> 0.0000
	            and 0.0000
	              , 0.0000

          birds   475912   1 (9)
	          birds 1.0000
	              a 0.0000
	              . 0.0000
	          first 0.0000
	           </S> 0.0000
	          years 0.0000
	              , 0.0000
	             or 0.0000
	          Parus 0.0000

    discharging   475924   1 (8)
	    discharging 1.0000
	        hearing 0.4545
	              , 0.0000
	              a 0.0000
	            the 0.0000
	           they 0.0000
	           </S> 0.0000
	             us 0.0000

           both   475936   1 (8)
	           both 1.0000
	            but 0.8571
	              . 0.0000
	          their 0.0000
	            the 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000

        wonnded   475959   1 (17)
	        wounded 1.0000
	         wonned 1.0000
	         wonden 0.9091
	        Sonndeg 0.9091
	        wondend 0.9091
	          wonde 0.9091
	           wonn 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	          other 0.0000
	             of 0.0000
	            the 0.0000
	           guns 0.0000
	              . 0.0000
	             us 0.0000
	          would 0.0000

          birds   475967   1 (7)
	          birds 1.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	           them 0.0000
	          first 0.0000
	          Parus 0.0000

        escaped   475973   1 (7)
	        escaped 1.0000
	              . 0.0000
	              a 0.0000
	              ) 0.0000
	              , 0.0000
	           </S> 0.0000
	         estate 0.0000

           They   475982   1 (7)
	           They 1.0000
	            The 0.9231
	          minor 0.0000
	              " 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000

        alwa3'S   476069   1 (7)
	         always 1.0000
	          alway 1.0000
	              a 0.6250
	              , 0.5000
	           </S> 0.5000
	            not 0.5000
	          often 0.0000

         called   476077   1 (7)
	         called 1.0000
	           call 0.8000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	             to 0.0000
	        cablets 0.0000

        Ortolan   476084   1 (9)
	        Ortolan 1.0000
	              " 0.0000
	     Hottentots 0.0000
	           </S> 0.0000
	            for 0.0000
	              a 0.0000
	              , 0.0000
	          today 0.0000
	        Oriolus 0.0000

             by   476092   1 (7)
	             by 1.0000
	              , 0.0000
	             us 0.0000
	           </S> 0.0000
	              a 0.0000
	        Bunting 0.0000
	            the 0.0000

           They   476115   1 (7)
	           They 1.0000
	            The 0.9231
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	              " 0.0000
	         Return 0.0000

          the}'   476194 inf (8)
	           thee 1.0000
	          their 1.0000
	            the 1.0000
	           </S> 0.0000
	             M. 0.0000
	              a 0.0000
	         sister 0.0000
	              , 0.0000

          breed   476200   1 (8)
	          breed 1.0000
	           been 0.8333
	              . 0.0000
	              a 0.0000
	             it 0.0000
	              , 0.0000
	           </S> 0.0000
	             us 0.0000

         laying   476352   1 (8)
	         laying 1.0000
	           last 0.0000
	           </S> 0.0000
	             J. 0.0000
	            the 0.0000
	              , 0.0000
	         within 0.0000
	              a 0.0000

         rufous   476406   1 (9)
	         rufous 1.0000
	          rufus 0.9167
	            the 0.0000
	           your 0.0000
	          white 0.0000
	           </S> 0.0000
	              a 0.0000
	          radio 0.0000
	              , 0.0000

          spots   476413   1 (10)
	          spots 1.0000
	              ) 0.0000
	              a 0.0000
	             on 0.0000
	           </S> 0.0000
	              , 0.0000
	              . 0.0000
	              - 0.0000
	         spinas 0.0000
	           site 0.0000

      unspotted   476447   1 (8)
	      unspotted 1.0000
	              a 0.0000
	              " 0.0000
	              , 0.0000
	           used 0.0000
	            and 0.0000
	           </S> 0.0000
	            the 0.0000

         yellow   476457   1 (8)
	         yellow 1.0000
	              , 0.0000
	           </S> 0.0000
	           from 0.0000
	              I 0.0000
	              a 0.0000
	           well 0.0000
	            the 0.0000

          Larks   476511   1 (9)
	          Larks 1.0000
	          Links 0.8182
	          Large 0.8182
	              , 0.0000
	           same 0.0000
	           time 0.0000
	          Parus 0.0000
	           </S> 0.0000
	          other 0.0000

        insects   476518   1 (8)
	        insects 1.0000
	              ( 0.0000
	           </S> 0.0000
	            its 0.0000
	              a 0.0000
	            and 0.0000
	            the 0.0000
	            who 0.0000

           Herr   476601   1 (7)
	           Herr 1.0000
	           Help 0.8000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	              " 0.0000
	            arz 0.0000

          Gatke   476606 inf (9)
	          Gatka 1.0000
	           Gate 1.0000
	          Games 0.0000
	        Gataket 0.0000
	         Doctor 0.0000
	             M. 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000

           says   476612   1 (8)
	           says 1.0000
	            say 0.9000
	              a 0.0000
	           sala 0.0000
	           </S> 0.0000
	              , 0.0000
	          Ringe 0.0000
	         Kaefer 0.0000

     Heligoland   476633   1 (10)
	     Heligoland 1.0000
	         Health 0.3636
	        America 0.2727
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	             it 0.0000
	           them 0.0000
	            the 0.0000
	             us 0.0000

              "   476644   1 (8)
	              " 1.0000
	              ( 0.9167
	              = 0.9167
	             of 0.8333
	             us 0.8333
	           </S> 0.0000
	            and 0.0000
	            the 0.0000

            pp.   476646   1 (11)
	            ppp 1.0000
	             pp 1.0000
	            ppm 1.0000
	              . 0.8750
	             up 0.8750
	          <UNK> 0.0000
	           </S> 0.0000
	              s 0.0000
	              a 0.0000
	              , 0.0000
	           said 0.0000

       359-360)   476650 inf (9)
	          29-30 1.0000
	             35 0.8667
	              , 0.7333
	              " 0.7333
	           </S> 0.7333
	              a 0.7333
	          <UNK> 0.7333
	            the 0.7333
	              s 0.0000

              :   476659 inf (6)
	              ) 1.0000
	              , 1.0000
	             us 0.8750
	           </S> 0.0000
	            the 0.0000
	          <UNK> 0.0000

              "   476663   1 (8)
	              " 1.0000
	              , 0.9091
	              : 0.9091
	             us 0.8182
	           </S> 0.0000
	            the 0.0000
	          party 0.0000
	           open 0.0000

           Lark   476723   1 (10)
	           Lark 1.0000
	           Last 0.8333
	            bit 0.0000
	           girl 0.0000
	              . 0.0000
	           </S> 0.0000
	          vased 0.0000
	              , 0.0000
	              a 0.0000
	            arz 0.0000

          being   476728   1 (7)
	          being 1.0000
	           </S> 0.0000
	              , 0.0000
	        bouquet 0.0000
	    Calandrella 0.0000
	              a 0.0000
	              . 0.0000

          ver}-   476795   1 (8)
	           very 1.0000
	          verve 1.0000
	            ver 1.0000
	           </S> 0.0000
	            the 0.0000
	             us 0.0000
	              a 0.0000
	              , 0.0000

      solitar}'   476801   1 (8)
	       solitary 1.0000
	      solitario 1.0000
	           site 0.5556
	              a 0.0000
	              / 0.0000
	           rare 0.0000
	              , 0.0000
	           </S> 0.0000

      instances   476811   1 (3)
	      instances 1.0000
	        instans 0.3333
	      insurance 0.0000

              .   476820   1 (6)
	              . 1.0000
	              , 0.9000
	             us 0.8000
	             of 0.8000
	            the 0.0000
	           </S> 0.0000

             In   476823   1 (6)
	             In 1.0000
	           </S> 0.0000
	              , 0.0000
	              " 0.0000
	             us 0.0000
	              a 0.0000

            and   477069   1 (5)
	            and 1.0000
	              } 0.0000
	              , 0.0000
	           </S> 0.0000
	            arz 0.0000

        besides   477073   1 (8)
	        besides 1.0000
	              a 0.0000
	           with 0.0000
	           </S> 0.0000
	       business 0.0000
	            the 0.0000
	              , 0.0000
	          found 0.0000

              I   477171   1 (6)
	              I 1.0000
	              , 0.9500
	              " 0.9500
	             us 0.0000
	            the 0.0000
	           </S> 0.0000

             it   477235   1 (7)
	             it 1.0000
	             iu 0.8571
	              } 0.0000
	          which 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000

   momeutaril}-   477247   1 (6)
	    momentarily 1.0000
	           more 0.3333
	           </S> 0.0000
	              a 0.0000
	             so 0.0000
	              , 0.0000

        stunned   477260   1 (7)
	        stunned 1.0000
	              , 0.0000
	          major 0.0000
	           </S> 0.0000
	             to 0.0000
	              a 0.0000
	          since 0.0000

          ver\'   477342   1 (11)
	           very 1.0000
	            ver 1.0000
	          verve 1.0000
	              , 0.0000
	             to 0.0000
	            the 0.0000
	           will 0.0000
	           from 0.0000
	             's 0.0000
	           </S> 0.0000
	              a 0.0000

           soon   477348   1 (8)
	           soon 1.0000
	           some 0.8462
	              , 0.0000
	           </S> 0.0000
	            the 0.0000
	              a 0.0000
	        however 0.0000
	           sala 0.0000

extraordinarilj''   477365   1 (9)
	extraordinarily 1.0000
	    information 0.2857
	           will 0.1429
	           </S> 0.0000
	          quite 0.0000
	              , 0.0000
	              a 0.0000
	             us 0.0000
	              . 0.0000

           tame   477383   1 (8)
	           tame 1.0000
	           time 0.9000
	              , 0.0000
	        friends 0.0000
	             of 0.0000
	              a 0.0000
	           </S> 0.0000
	           lava 0.0000

             It   477389   1 (6)
	             It 1.0000
	           </S> 0.0000
	              , 0.0000
	             us 0.0000
	              " 0.0000
	              a 0.0000

            but   477514   1 (6)
	            but 1.0000
	              , 0.0000
	              } 0.0000
	              a 0.0000
	           </S> 0.0000
	             us 0.0000

            Its   477575   1 (7)
	            Its 1.0000
	             It 0.8889
	             us 0.7778
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	              " 0.0000

        Bunting   477613   1 (10)
	        Bunting 1.0000
	           </S> 0.0000
	              . 0.0000
	              a 0.0000
	           less 0.0000
	          major 0.0000
	         during 0.0000
	            man 0.0000
	              , 0.0000
	         result 0.0000

           than   477621   1 (7)
	           than 1.0000
	             of 0.0000
	           </S> 0.0000
	              a 0.0000
	              . 0.0000
	              , 0.0000
	          torax 0.0000

          Sk}--   477628 inf (10)
	             Sk 1.0000
	           Skin 1.0000
	           Skip 1.0000
	          major 0.0000
	              , 0.0000
	           </S> 0.0000
	            the 0.0000
	         single 0.0000
	            new 0.0000
	           year 0.0000

           Lark   477634   1 (8)
	           Lark 1.0000
	           part 0.8182
	           </S> 0.0000
	            ago 0.0000
	              , 0.0000
	             of 0.0000
	              a 0.0000
	            arz 0.0000

              .   477638   1 (6)
	              . 1.0000
	              , 0.9231
	             us 0.8462
	          Books 0.0000
	            the 0.0000
	           </S> 0.0000

              I   477640   1 (7)
	              I 1.0000
	              " 0.9000
	              / 0.9000
	              , 0.9000
	             us 0.0000
	            the 0.0000
	           </S> 0.0000

         Canary   477652   1 (8)
	         Canary 1.0000
	         Canada 0.8000
	            top 0.0000
	           </S> 0.0000
	              1 0.0000
	              , 0.0000
	              a 0.0000
	            the 0.0000

              -   477658   1 (7)
	              - 1.0000
	              , 0.9286
	             us 0.8571
	            the 0.0000
	        Islands 0.0000
	           </S> 0.0000
	           your 0.0000

              a   477762   1 (6)
	              a 1.0000
	              , 0.9000
	              } 0.9000
	             us 0.0000
	           </S> 0.0000
	            the 0.0000

       Familx-A   477857   1 (6)
	      FamiliaDA 1.0000
	         Family 1.0000
	              a 0.4286
	           </S> 0.2857
	              ) 0.2857
	              , 0.2857

             LA   477866   1 (7)
	             LA 1.0000
	              " 0.0000
	              a 0.0000
	              , 0.0000
	             us 0.0000
	             of 0.0000
	           </S> 0.0000

              E   477876 inf (9)
	              , 1.0000
	             El 1.0000
	             RE 1.0000
	              " 1.0000
	              / 1.0000
	             EE 1.0000
	             us 0.0000
	           </S> 0.0000
	            the 0.0000

           Lark   477891   1 (10)
	           Lark 1.0000
	            are 0.8182
	              s 0.0000
	              . 0.0000
	           </S> 0.0000
	           side 0.0000
	             St 0.0000
	              a 0.0000
	             to 0.0000
	            Vol 0.0000

              .   477895   1 (8)
	              . 1.0000
	              - 0.9231
	              , 0.9231
	             us 0.8462
	           </S> 0.0000
	           Bilk 0.0000
	            the 0.0000
	         Island 0.0000

       Olocurvs   477898 inf (9)
	        locuras 1.0000
	         locura 0.8571
	       closures 0.8571
	          Olous 0.8571
	         Olorus 0.8571
	           </S> 0.0000
	              a 0.0000
	              " 0.0000
	              , 0.0000

      alpcstris   477907   1 (8)
	      alpestris 1.0000
	      palustris 0.8333
	         astris 0.8333
	       addition 0.5000
	              I 0.0000
	              , 0.0000
	           </S> 0.0000
	      configure 0.0000

              ,   477916 inf (3)
	             of 1.0000
	             us 1.0000
	            the 0.0000

           LiNX   477918 inf (8)
	            LNX 1.0000
	           LiNK 1.0000
	           List 0.9286
	             pp 0.0000
	              i 0.0000
	           LiXi 0.0000
	            the 0.0000
	            cia 0.0000

              .   477922   1 (5)
	              . 1.0000
	              , 0.8571
	             us 0.7143
	           </S> 0.0000
	            the 0.0000

         BREEDS   477925 inf (11)
	         BRENDA 1.0000
	           BRES 1.0000
	          BREEF 1.0000
	         BREEAM 1.0000
	          BREAK 0.9000
	              " 0.0000
	           </S> 0.0000
	              / 0.0000
	              I 0.0000
	              , 0.0000
	        FREEBSD 0.0000

         within   477932   1 (5)
	         within 1.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	             of 0.0000

        bej'ond   477957   1 (10)
	          bjond 1.0000
	         beyond 1.0000
	         bedone 0.8889
	           bond 0.8889
	           </S> 0.0000
	              . 0.0000
	              , 0.0000
	             of 0.0000
	              A 0.0000
	             to 0.0000

            the   477965   1 (4)
	            the 1.0000
	           </S> 0.0000
	             us 0.0000
	              , 0.0000

             on   478047   1 (6)
	             on 1.0000
	           </S> 0.0000
	              } 0.0000
	              a 0.0000
	             us 0.0000
	              , 0.0000

       eastward   478164   1 (7)
	       eastward 1.0000
	       Password 0.7500
	              } 0.0000
	              , 0.0000
	           </S> 0.0000
	            the 0.0000
	              a 0.0000

      Turkestan   478191   1 (9)
	      Turkestan 1.0000
	           turn 0.0000
	           </S> 0.0000
	              a 0.0000
	          great 0.0000
	           fact 0.0000
	              , 0.0000
	            the 0.0000
	             us 0.0000

             S.   478202 inf (10)
	             SS 1.0000
	             So 1.0000
	             US 0.9167
	              a 0.9167
	              s 0.9167
	            the 0.0000
	            and 0.0000
	          China 0.0000
	           </S> 0.0000
	           your 0.0000

             To   478229   1 (7)
	             To 1.0000
	              s 0.0000
	           Asia 0.0000
	              a 0.0000
	              " 0.0000
	              , 0.0000
	           </S> 0.0000

           when   478331   1 (6)
	           when 1.0000
	              a 0.0000
	            New 0.0000
	              , 0.0000
	              . 0.0000
	           </S> 0.0000

      according   478451   1 (5)
	      according 1.0000
	           </S> 0.0000
	              I 0.0000
	              } 0.0000
	              , 0.0000

          Aplin   478468   1 (11)
	          Aplin 1.0000
	              1 0.0000
	            the 0.0000
	           </S> 0.0000
	        changes 0.0000
	            All 0.0000
	              a 0.0000
	          <UNK> 0.0000
	       Chairman 0.0000
	              , 0.0000
	          Aedon 0.0000

             In   478643   1 (6)
	             In 1.0000
	             us 0.0000
	              a 0.0000
	              , 0.0000
	              " 0.0000
	           </S> 0.0000

           Fair   478665   1 (8)
	           Fair 1.0000
	            For 0.7500
	              . 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	            the 0.0000
	           lava 0.0000

         partly   478775   1 (7)
	         partly 1.0000
	           part 0.8333
	              , 0.0000
	             of 0.0000
	           </S> 0.0000
	          parva 0.0000
	              a 0.0000

         creamy   478912   1 (9)
	         creamy 1.0000
	              , 0.0000
	           </S> 0.0000
	              . 0.0000
	          <UNK> 0.0000
	              a 0.0000
	           jobs 0.0000
	              - 0.0000
	         credit 0.0000

            the   478927   1 (6)
	            the 1.0000
	              } 0.0000
	              , 0.0000
	           </S> 0.0000
	             us 0.0000
	             in 0.0000

       erectile   478957   1 (10)
	       erectile 1.0000
	        receive 0.7273
	     adjustable 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	        adverse 0.0000
	         apical 0.0000
	              . 0.0000
	   introduction 0.0000

           tuft   478966   1 (10)
	           tuft 1.0000
	           that 0.8333
	           </S> 0.0000
	              , 0.0000
	    dysfunction 0.0000
	         tissue 0.0000
	              I 0.0000
	             of 0.0000
	          based 0.0000
	          rufus 0.0000

         cheeks   479009   1 (10)
	         cheeks 1.0000
	      therefore 0.0000
	            and 0.0000
	          there 0.0000
	            the 0.0000
	              ( 0.0000
	        however 0.0000
	           </S> 0.0000
	              a 0.0000
	      workshops 0.0000

            ear   479072   1 (8)
	            ear 1.0000
	           year 0.9000
	              } 0.0000
	           </S> 0.0000
	              a 0.0000
	            and 0.0000
	              , 0.0000
	            arz 0.0000

         creamy   479084   1 (10)
	         creamy 1.0000
	          white 0.0000
	              , 0.0000
	          great 0.0000
	              - 0.0000
	           </S> 0.0000
	              . 0.0000
	              a 0.0000
	        sources 0.0000
	           fife 0.0000

           nape   479112   1 (7)
	           nape 1.0000
	           name 0.8750
	           </S> 0.0000
	              , 0.0000
	              } 0.0000
	              a 0.0000
	           lava 0.0000

              ,   479124   1 (5)
	              , 1.0000
	             of 0.8462
	             us 0.8462
	           </S> 0.0000
	            the 0.0000

      vinaceous   479170   1 (10)
	      vinaceous 1.0000
	              . 0.0000
	        process 0.0000
	       brownish 0.0000
	              - 0.0000
	          <UNK> 0.0000
	              , 0.0000
	           Eyes 0.0000
	           </S> 0.0000
	              a 0.0000

           wing   479188   1 (7)
	           wing 1.0000
	           with 0.8333
	           </S> 0.0000
	              , 0.0000
	          minor 0.0000
	              a 0.0000
	              } 0.0000

              -   479192   1 (5)
	              - 1.0000
	              , 0.9231
	             us 0.8462
	           </S> 0.0000
	            the 0.0000

         quills   479221   1 (7)
	         quills 1.0000
	          quite 0.0000
	           </S> 0.0000
	              , 0.0000
	              } 0.0000
	              a 0.0000
	         quelea 0.0000

          smoky   479228   1 (5)
	          smoky 1.0000
	          story 0.7500
	              a 0.0000
	           </S> 0.0000
	              , 0.0000

          white   479259   1 (8)
	          white 1.0000
	          while 0.9231
	      partition 0.0000
	              , 0.0000
	           </S> 0.0000
	             of 0.0000
	              a 0.0000
	           care 0.0000

           ashy   479293   1 (11)
	           ashy 1.0000
	             as 0.8182
	              I 0.0000
	            the 0.0000
	            non 0.0000
	           your 0.0000
	           well 0.0000
	              , 0.0000
	           alba 0.0000
	          trade 0.0000
	           </S> 0.0000

              -   479297   1 (6)
	              - 1.0000
	              , 0.9286
	              . 0.9286
	             us 0.8571
	           </S> 0.0000
	            the 0.0000

        margins   479298   1 (9)
	        margins 1.0000
	          serif 0.0000
	              . 0.0000
	             to 0.0000
	           </S> 0.0000
	              a 0.0000
	              s 0.0000
	           mail 0.0000
	           offs 0.0000

       feathers   479308   1 (7)
	       feathers 1.0000
	           some 0.0000
	              , 0.0000
	       features 0.0000
	              a 0.0000
	           </S> 0.0000
	              } 0.0000

        greyish   479329   1 (10)
	        greyish 1.0000
	              . 0.0000
	           Free 0.0000
	             of 0.0000
	            non 0.0000
	           side 0.0000
	           </S> 0.0000
	             to 0.0000
	              a 0.0000
	              , 0.0000

        centres   479354   1 (12)
	        centres 1.0000
	           wire 0.0000
	              , 0.0000
	           </S> 0.0000
	         pepper 0.0000
	           Back 0.0000
	      reference 0.0000
	              . 0.0000
	        control 0.0000
	            and 0.0000
	        cinerea 0.0000
	              a 0.0000

            two   479380   1 (6)
	            two 1.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	              } 0.0000
	             us 0.0000

       coloured   479406   1 (6)
	       coloured 1.0000
	           come 0.0000
	           </S> 0.0000
	              a 0.0000
	              - 0.0000
	              , 0.0000

      remainder   479515   1 (7)
	      remainder 1.0000
	              a 0.0000
	              } 0.0000
	        reviews 0.0000
	           </S> 0.0000
	              , 0.0000
	       notified 0.0000

          under   479528   1 (7)
	          under 1.0000
	             us 0.0000
	           </S> 0.0000
	              , 0.0000
	            the 0.0000
	              a 0.0000
	            two 0.0000

         creamy   479540   1 (9)
	         creamy 1.0000
	          great 0.0000
	            the 0.0000
	              : 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	            off 0.0000
	             of 0.0000

         vinous   479564   1 (8)
	         vinous 1.0000
	              a 0.0000
	          minor 0.0000
	              , 0.0000
	           </S> 0.0000
	      dependent 0.0000
	          Links 0.0000
	       emphasis 0.0000

             on   479571   1 (7)
	             on 1.0000
	             of 0.9167
	              . 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	             us 0.0000

         flanks   479606   1 (6)
	         flanks 1.0000
	         Thanks 0.7500
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	              } 0.0000

           bill   479635   1 (7)
	           bill 1.0000
	           will 0.9000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	              } 0.0000
	            cia 0.0000

           iris   479657   1 (7)
	           iris 1.0000
	             is 0.8333
	              } 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	             iu 0.0000

           deep   479662   1 (5)
	           deep 1.0000
	           does 0.9167
	              , 0.0000
	           dark 0.0000
	           </S> 0.0000

       erectile   479728   1 (10)
	       erectile 1.0000
	           </S> 0.0000
	         longer 0.0000
	              , 0.0000
	          major 0.0000
	        service 0.0000
	              a 0.0000
	              . 0.0000
	            one 0.0000
	            ear 0.0000

          tufts   479737   1 (10)
	          tufts 1.0000
	              , 0.0000
	    dysfunction 0.0000
	              a 0.0000
	         effect 0.0000
	           that 0.0000
	              . 0.0000
	           </S> 0.0000
	         tissue 0.0000
	          rufus 0.0000

        centres   479770   1 (10)
	        centres 1.0000
	              a 0.0000
	              . 0.0000
	           </S> 0.0000
	           Back 0.0000
	        control 0.0000
	         access 0.0000
	              , 0.0000
	          brown 0.0000
	        cinerea 0.0000

          Young   479818   1 (7)
	          Young 1.0000
	           Your 0.8000
	              " 0.0000
	              a 0.0000
	              , 0.0000
	            the 0.0000
	           </S> 0.0000

          moult   479990   1 (9)
	          moult 1.0000
	          would 0.8000
	              , 0.0000
	             of 0.0000
	              a 0.0000
	              . 0.0000
	           </S> 0.0000
	        trellis 0.0000
	          maura 0.0000

          adult   479996   1 (6)
	          adult 1.0000
	              . 0.0000
	           </S> 0.0000
	              , 0.0000
	              I 0.0000
	          about 0.0000

             In   480066   1 (6)
	             In 1.0000
	           </S> 0.0000
	              , 0.0000
	              " 0.0000
	             us 0.0000
	              a 0.0000

         vShore   480080   1 (11)
	          Shore 1.0000
	           more 0.7778
	           park 0.0000
	            two 0.0000
	              i 0.0000
	           same 0.0000
	           </S> 0.0000
	            non 0.0000
	         Shrove 0.0000
	              - 0.0000
	         griots 0.0000

              -   480086   1 (7)
	              - 1.0000
	              , 0.9286
	             of 0.8571
	             us 0.8571
	             is 0.8571
	           </S> 0.0000
	            the 0.0000

       inhabits   480092   1 (9)
	       inhabits 1.0000
	           </S> 0.0000
	             us 0.0000
	              a 0.0000
	           into 0.0000
	             in 0.0000
	              - 0.0000
	              , 0.0000
	             of 0.0000

         liills   480132 inf (11)
	          lills 1.0000
	           ills 0.9000
	       outcrops 0.0000
	              . 0.0000
	         little 0.0000
	       mountain 0.0000
	          coves 0.0000
	             us 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000

             nf   480139   2 (7)
	             nf 1.0000
	             of 0.9091
	             no 0.9091
	           </S> 0.0000
	              a 0.0000
	             us 0.0000
	              , 0.0000

        Seebohm   480193   1 (6)
	        Seebohm 1.0000
	            See 0.0000
	              a 0.0000
	              " 0.0000
	           </S> 0.0000
	              , 0.0000

           says   480201   1 (6)
	           says 1.0000
	            say 0.9231
	           </S> 0.0000
	              , 0.0000
	           sala 0.0000
	              a 0.0000

              '   480234   1 (10)
	              ' 1.0000
	              , 0.9375
	             as 0.8750
	             to 0.8750
	             us 0.8750
	             on 0.8750
	            the 0.0000
	           </S> 0.0000
	         within 0.0000
	       composed 0.0000

          Inish   480293 inf (15)
	          Inisa 1.0000
	           Inis 1.0000
	              ) 0.0000
	         tenant 0.0000
	              , 0.0000
	       Inisheer 0.0000
	              a 0.0000
	              . 0.0000
	           year 0.0000
	        Ienishi 0.0000
	           </S> 0.0000
	          Index 0.0000
	          woman 0.0000
	         sunset 0.0000
	          minor 0.0000

       Everyone   480301   1 (5)
	       Everyone 1.0000
	              I 0.0000
	              , 0.0000
	           </S> 0.0000
	              " 0.0000

        melod3^   480412   1 (7)
	         melody 1.0000
	              a 0.0000
	            the 0.0000
	              , 0.0000
	             us 0.0000
	           </S> 0.0000
	           more 0.0000

             It   480420   1 (7)
	             It 1.0000
	             us 0.0000
	              a 0.0000
	            and 0.0000
	           </S> 0.0000
	              , 0.0000
	              . 0.0000

             At   480557   1 (7)
	             At 1.0000
	           </S> 0.0000
	             to 0.0000
	              " 0.0000
	              , 0.0000
	              a 0.0000
	             us 0.0000

         .Uauda   480682   1 (10)
	          Usuda 1.0000
	           auda 1.0000
	          Lauda 1.0000
	         Alauda 1.0000
	              , 0.0000
	           </S> 0.0000
	           Paul 0.0000
	              a 0.0000
	            you 0.0000
	            the 0.0000

    arz'i-fis/s   480689 inf (12)
	       business 1.0000
	    application 0.6667
	            are 0.6667
	             is 0.6667
	   organization 0.3333
	            and 0.3333
	              i 0.3333
	           hook 0.0000
	           </S> 0.0000
	              , 0.0000
	            the 0.0000
	              I 0.0000

           does   480701   1 (4)
	           does 1.0000
	           down 0.3333
	            the 0.0000
	             us 0.0000

           3'OU   480709   6 (9)
	            YOU 1.0000
	             OU 1.0000
	            UOU 1.0000
	             On 0.9091
	              ' 0.9091
	            you 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000

           take   480714   1 (8)
	           take 1.0000
	           make 0.8750
	           lava 0.0000
	             of 0.0000
	             is 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000

             As   480808   1 (9)
	             As 1.0000
	             is 0.9231
	             us 0.9231
	            the 0.0000
	              a 0.0000
	              , 0.0000
	              " 0.0000
	           This 0.0000
	           </S> 0.0000

          Larks   480836   1 (10)
	          Larks 1.0000
	          Links 0.8333
	              a 0.0000
	           time 0.0000
	          sites 0.0000
	           site 0.0000
	           </S> 0.0000
	      knowledge 0.0000
	              , 0.0000
	          Parus 0.0000

         stones   480916   1 (11)
	         stones 1.0000
	              . 0.0000
	              a 0.0000
	          state 0.0000
	           </S> 0.0000
	   underwriters 0.0000
	            the 0.0000
	           them 0.0000
	              ) 0.0000
	              , 0.0000
	         spinas 0.0000

      sometimes   480925   1 (5)
	      sometimes 1.0000
	              a 0.0000
	              , 0.0000
	              } 0.0000
	           </S> 0.0000

      naturally   481061   1 (7)
	      naturally 1.0000
	              ( 0.0000
	           </S> 0.0000
	              a 0.0000
	            the 0.0000
	        January 0.0000
	            and 0.0000

        differs   481071   1 (7)
	        differs 1.0000
	           does 0.0000
	      occurring 0.0000
	           </S> 0.0000
	            the 0.0000
	              a 0.0000
	              , 0.0000

     externally   481169   1 (7)
	     externally 1.0000
	        Germany 0.4000
	              , 0.0000
	              } 0.0000
	           </S> 0.0000
	              a 0.0000
	            and 0.0000

           dead   481211   1 (7)
	           dead 1.0000
	              , 0.0000
	            cia 0.0000
	              a 0.0000
	           </S> 0.0000
	            the 0.0000
	           data 0.0000

          bents   481225   1 (10)
	          bents 1.0000
	           best 0.8333
	        worship 0.0000
	            and 0.0000
	            the 0.0000
	           work 0.0000
	      therefore 0.0000
	           </S> 0.0000
	              a 0.0000
	         sedges 0.0000

            but   481239   1 (7)
	            but 1.0000
	              } 0.0000
	             us 0.0000
	              ) 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000

       reindeer   481287   1 (8)
	       reindeer 1.0000
	           </S> 0.0000
	            the 0.0000
	              a 0.0000
	              , 0.0000
	       thinning 0.0000
	          under 0.0000
	           shut 0.0000

         number   481311   1 (7)
	         number 1.0000
	             of 0.0000
	              , 0.0000
	            are 0.0000
	           </S> 0.0000
	              a 0.0000
	          price 0.0000

         tlieir   481453   1 (11)
	          their 1.0000
	         telier 1.0000
	           tiei 1.0000
	          tliet 1.0000
	           ieir 1.0000
	            the 0.0000
	              a 0.0000
	             us 0.0000
	           </S> 0.0000
	              , 0.0000
	        Entropy 0.0000

      generally   481460   1 (7)
	      generally 1.0000
	        General 0.7500
	             or 0.0000
	          <UNK> 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000

             To   481488   1 (6)
	             To 1.0000
	           </S> 0.0000
	              , 0.0000
	              " 0.0000
	             us 0.0000
	              a 0.0000

    conspicuous   481523   1 (9)
	    conspicuous 1.0000
	          could 0.4286
	             is 0.3571
	              , 0.0000
	          minor 0.0000
	              . 0.0000
	           </S> 0.0000
	             be 0.0000
	              a 0.0000

            Mr.   481562   1 (9)
	            Mrs 1.0000
	             Mr 1.0000
	             My 0.9167
	            the 0.0000
	              a 0.0000
	            but 0.0000
	            and 0.0000
	           </S> 0.0000
	            arz 0.0000

           Hole   481574   1 (9)
	           Hole 1.0000
	           Home 0.9000
	           </S> 0.0000
	          <UNK> 0.0000
	         Island 0.0000
	              I 0.0000
	              , 0.0000
	       Capralos 0.0000
	           sala 0.0000

            Sky   481733   1 (9)
	            Sky 1.0000
	            See 0.8462
	       basename 0.0000
	             in 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	             to 0.0000
	            Pyi 0.0000

          Larks   481737   1 (11)
	          Larks 1.0000
	          Links 0.8462
	           side 0.0000
	           </S> 0.0000
	      Tours.com 0.0000
	              s 0.0000
	             to 0.0000
	            rev 0.0000
	              a 0.0000
	              . 0.0000
	          files 0.0000

             He   481744   1 (8)
	             He 1.0000
	             be 0.9167
	           </S> 0.0000
	              / 0.0000
	              " 0.0000
	             us 0.0000
	              a 0.0000
	              , 0.0000

            you   481867   1 (6)
	            you 1.0000
	             us 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	              } 0.0000

        firstly   481979   1 (10)
	        firstly 1.0000
	          first 0.8333
	           mail 0.0000
	            but 0.0000
	              . 0.0000
	              s 0.0000
	              a 0.0000
	             up 0.0000
	           </S> 0.0000
	             to 0.0000

       chancing   481988   1 (10)
	       chancing 1.0000
	            and 0.0000
	             or 0.0000
	              - 0.0000
	            the 0.0000
	            how 0.0000
	           </S> 0.0000
	              a 0.0000
	          minor 0.0000
	         online 0.0000

            and   482026   1 (5)
	            and 1.0000
	              , 0.0000
	              } 0.0000
	           </S> 0.0000
	            arz 0.0000

     speciniens   482081   1 (13)
	      specimens 1.0000
	      spiciness 0.9000
	        species 0.9000
	       socinien 0.9000
	       specient 0.9000
	        section 0.7000
	          years 0.0000
	              - 0.0000
	              . 0.0000
	           </S> 0.0000
	          major 0.0000
	              a 0.0000
	              , 0.0000

           shot   482092   1 (8)
	           shot 1.0000
	            she 0.8333
	              a 0.0000
	              . 0.0000
	           </S> 0.0000
	              , 0.0000
	           four 0.0000
	           sala 0.0000

    Polygonacea   482260   1 (9)
	   Polygonaceae 1.0000
	          local 0.3636
	           life 0.2727
	              , 0.0000
	              a 0.0000
	           time 0.0000
	            the 0.0000
	           </S> 0.0000
	             us 0.0000

            and   482272   1 (6)
	            and 1.0000
	             in 0.8000
	           </S> 0.0000
	              . 0.0000
	              , 0.0000
	            arz 0.0000

           Lark   482331   1 (11)
	           Lark 1.0000
	           part 0.8333
	              , 0.0000
	           site 0.0000
	           </S> 0.0000
	             is 0.0000
	            Web 0.0000
	              a 0.0000
	              . 0.0000
	           kind 0.0000
	            arz 0.0000

       consists   482336   1 (8)
	       consists 1.0000
	              a 0.0000
	              , 0.0000
	    Calandrella 0.0000
	              I 0.0000
	              . 0.0000
	          could 0.0000
	           </S> 0.0000

             it   482468   1 (6)
	             it 1.0000
	             iu 0.9000
	              } 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000

        devours   482476   1 (9)
	        devours 1.0000
	            has 0.0000
	              s 0.0000
	             be 0.0000
	         accept 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	           your 0.0000

          small   482484   1 (7)
	          small 1.0000
	          shall 0.9091
	           sala 0.8182
	              , 0.0000
	              a 0.0000
	            the 0.0000
	           </S> 0.0000

       mollusca   482490   1 (5)
	       mollusca 1.0000
	              a 0.0000
	              , 0.0000
	          house 0.0000
	           </S> 0.0000

      Crustacea   482503   1 (9)
	      Crustacea 1.0000
	              , 0.0000
	        Privacy 0.0000
	            the 0.0000
	           then 0.0000
	              a 0.0000
	             to 0.0000
	          shall 0.0000
	           </S> 0.0000

           cast   482513   1 (8)
	           cast 1.0000
	            can 0.8667
	           </S> 0.0000
	              . 0.0000
	            cia 0.0000
	             it 0.0000
	              a 0.0000
	              , 0.0000

          Being   482540   1 (7)
	          Being 1.0000
	          being 0.9000
	              a 0.0000
	              " 0.0000
	            and 0.0000
	           </S> 0.0000
	              , 0.0000

           both   482546   1 (4)
	           both 1.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000

           tame   482551   1 (9)
	           tame 1.0000
	           time 0.9286
	            the 0.8571
	              , 0.0000
	              a 0.0000
	       intimate 0.0000
	          cases 0.0000
	           </S> 0.0000
	           lava 0.0000

      beautiful   482557   1 (10)
	      beautiful 1.0000
	        because 0.6667
	              - 0.0000
	            the 0.0000
	          women 0.0000
	      therefore 0.0000
	           work 0.0000
	              a 0.0000
	           </S> 0.0000
	        chasten 0.0000

          caged   482606   1 (9)
	          caged 1.0000
	              , 0.0000
	            the 0.0000
	            can 0.0000
	           used 0.0000
	             to 0.0000
	           </S> 0.0000
	              a 0.0000
	          Pales 0.0000

            and   482614   1 (5)
	            and 1.0000
	              } 0.0000
	           </S> 0.0000
	              , 0.0000
	            arz 0.0000

    frequentl}^   482640   1 (9)
	     frequently 1.0000
	           free 0.4444
	           been 0.3333
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	            not 0.0000
	              s 0.0000
	           also 0.0000

           bird   482670   1 (8)
	           bird 1.0000
	            the 0.0000
	              a 0.0000
	            cia 0.0000
	           </S> 0.0000
	           your 0.0000
	              , 0.0000
	             by 0.0000

           Herr   482683   1 (7)
	           Herr 1.0000
	           Help 0.8182
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	              " 0.0000
	            arz 0.0000

          Gatke   482688 inf (8)
	          Gatka 1.0000
	           Gate 1.0000
	          Games 0.0000
	              , 0.0000
	        Gataket 0.0000
	             M. 0.0000
	              a 0.0000
	           </S> 0.0000

       observes   482694   1 (6)
	       observes 1.0000
	           </S> 0.0000
	             J. 0.0000
	              , 0.0000
	              a 0.0000
	          Ringe 0.0000

      agreeably   482850   1 (7)
	      agreeably 1.0000
	      available 0.5000
	             to 0.0000
	           </S> 0.0000
	              a 0.0000
	              I 0.0000
	              , 0.0000

           Lark   482860   1 (9)
	           Lark 1.0000
	            are 0.8333
	              a 0.0000
	            old 0.0000
	              , 0.0000
	             to 0.0000
	           well 0.0000
	           </S> 0.0000
	            arz 0.0000

            its   482872   1 (7)
	            its 1.0000
	              a 0.0000
	         enable 0.0000
	           </S> 0.0000
	              } 0.0000
	              , 0.0000
	             iu 0.0000

        peevish   483014   1 (10)
	        peevish 1.0000
	            not 0.0000
	     interested 0.0000
	           </S> 0.0000
	              , 0.0000
	          found 0.0000
	       provided 0.0000
	           dead 0.0000
	      appearing 0.0000
	              a 0.0000

     captivit}'   483025   1 (11)
	      captivity 1.0000
	      captivait 0.9231
	           fact 0.5385
	           case 0.5385
	            the 0.0000
	        general 0.0000
	           turn 0.0000
	              a 0.0000
	              , 0.0000
	             us 0.0000
	           </S> 0.0000

            and   483037   1 (4)
	            and 1.0000
	           </S> 0.0000
	            the 0.0000
	            arz 0.0000

    impetuously   483060   1 (6)
	    impetuously 1.0000
	         people 0.4615
	            the 0.2308
	              a 0.0000
	              , 0.0000
	           </S> 0.0000

     fluttering   483072   1 (7)
	     fluttering 1.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	            the 0.0000
	        Company 0.0000
	      following 0.0000

           this   483128   1 (6)
	           this 1.0000
	              } 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	              s 0.0000

       prettily   483208   1 (9)
	       prettily 1.0000
	            non 0.0000
	            two 0.0000
	           </S> 0.0000
	           same 0.0000
	              A 0.0000
	           well 0.0000
	              - 0.0000
	         people 0.0000

           cage   483238   1 (10)
	           cage 1.0000
	            can 0.8462
	           </S> 0.0000
	            the 0.0000
	          early 0.0000
	              a 0.0000
	            non 0.0000
	            cia 0.0000
	              , 0.0000
	           self 0.0000

             My   483251   1 (7)
	             My 1.0000
	              a 0.0000
	              " 0.0000
	           </S> 0.0000
	             us 0.0000
	              , 0.0000
	            for 0.0000

          flies   483348   1 (9)
	          flies 1.0000
	              , 0.0000
	          place 0.0000
	           </S> 0.0000
	            the 0.0000
	              a 0.0000
	            you 0.0000
	           free 0.0000
	          Pales 0.0000

        earwigs   483509   1 (9)
	        earwigs 1.0000
	              - 0.0000
	              " 0.0000
	             us 0.0000
	           </S> 0.0000
	          <UNK> 0.0000
	              a 0.0000
	        service 0.0000
	              , 0.0000

        rejects   483547   1 (8)
	        rejects 1.0000
	            not 0.0000
	           </S> 0.0000
	              I 0.0000
	              , 0.0000
	           were 0.0000
	            may 0.0000
	              a 0.0000

          Small   483596   1 (8)
	          Small 1.0000
	       teaching 0.0000
	          State 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	              " 0.0000
	           sala 0.0000

          moths   483623   1 (8)
	          moths 1.0000
	         months 0.9412
	          mouth 0.8824
	              , 0.0000
	       business 0.0000
	           </S> 0.0000
	     businesses 0.0000
	         Anthus 0.0000

              -   483724   1 (7)
	              - 1.0000
	              . 0.9167
	              , 0.9167
	             of 0.8333
	           </S> 0.0000
	             us 0.0000
	            the 0.0000

            ear   483725   1 (10)
	            ear 1.0000
	           year 0.9000
	             to 0.0000
	              s 0.0000
	           </S> 0.0000
	           side 0.0000
	             th 0.0000
	        student 0.0000
	              a 0.0000
	              . 0.0000

            Its   483730   1 (8)
	            Its 1.0000
	             It 0.8889
	             us 0.7778
	              , 0.0000
	              " 0.0000
	              ) 0.0000
	              a 0.0000
	           </S> 0.0000

         staple   483734   1 (7)
	         staple 1.0000
	          state 0.8333
	              , 0.0000
	           main 0.0000
	              a 0.0000
	           </S> 0.0000
	           sala 0.0000

         Canary   483759   1 (8)
	         Canary 1.0000
	        January 0.8000
	              a 0.0000
	            the 0.0000
	              , 0.0000
	            non 0.0000
	           that 0.0000
	           </S> 0.0000

              -   483765   1 (8)
	              - 1.0000
	              , 0.9286
	             us 0.8571
	             to 0.8571
	           </S> 0.0000
	            the 0.0000
	        Islands 0.0000
	          Wharf 0.0000

     procurable   483801   1 (9)
	     procurable 1.0000
	           </S> 0.0000
	       required 0.0000
	              a 0.0000
	              , 0.0000
	         people 0.0000
	              " 0.0000
	          whole 0.0000
	         reward 0.0000

      Sustained   483813   1 (6)
	      Sustained 1.0000
	              , 0.0000
	              " 0.0000
	           </S> 0.0000
	              / 0.0000
	              I 0.0000

          keeps   483848   1 (8)
	          keeps 1.0000
	           been 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	       provided 0.0000
	            flu 0.0000
	             of 0.0000

          every   483899   1 (6)
	          every 1.0000
	              a 0.0000
	              . 0.0000
	              , 0.0000
	             to 0.0000
	           </S> 0.0000

          Larks   484087   1 (8)
	          Larks 1.0000
	          Links 0.8333
	              a 0.0000
	            the 0.0000
	            non 0.0000
	              , 0.0000
	           </S> 0.0000
	          Parus 0.0000

              -   484093   1 (8)
	              - 1.0000
	              . 0.9167
	              , 0.9167
	              ' 0.9167
	             us 0.8333
	            and 0.0000
	           </S> 0.0000
	            the 0.0000

        Canar3^   484202   1 (10)
	         Canara 1.0000
	         Canary 1.0000
	          Canar 1.0000
	         Canada 0.9091
	            the 0.0000
	             us 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	              e 0.0000

              -   484209   1 (5)
	              - 1.0000
	              , 0.9286
	             us 0.8571
	            the 0.0000
	           </S> 0.0000

        Canar}'   484267   1 (11)
	         Canary 1.0000
	         Canara 1.0000
	          Canar 1.0000
	         Canada 0.9167
	              , 0.0000
	             us 0.0000
	         PayPal 0.0000
	             it 0.0000
	             to 0.0000
	           </S> 0.0000
	              a 0.0000

             iu   484329   2 (10)
	             iu 1.0000
	             in 0.9167
	             by 0.0000
	              , 0.0000
	            the 0.0000
	              a 0.0000
	           </S> 0.0000
	             as 0.0000
	       argument 0.0000
	              . 0.0000

            one   484332   1 (7)
	            one 1.0000
	              s 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	             is 0.0000
	            the 0.0000

           Lark   484433   1 (9)
	           Lark 1.0000
	           Last 0.8571
	           </S> 0.0000
	            way 0.0000
	              , 0.0000
	              a 0.0000
	         chance 0.0000
	            new 0.0000
	            arz 0.0000

           husk   484441   1 (9)
	           husk 1.0000
	             us 0.7778
	            has 0.7778
	            the 0.0000
	             be 0.0000
	           </S> 0.0000
	              a 0.0000
	              : 0.0000
	              H 0.0000

         ever}'   484446   1 (10)
	          every 1.0000
	         everre 1.0000
	           ever 1.0000
	           even 0.8750
	           corn 0.0000
	             us 0.0000
	            the 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000

           seed   484453   1 (6)
	           seed 1.0000
	            see 0.9167
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	           sala 0.0000

           this   484481   1 (6)
	           this 1.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	             it 0.0000
	            cia 0.0000

            but   484640   1 (6)
	            but 1.0000
	              , 0.0000
	              } 0.0000
	           </S> 0.0000
	              a 0.0000
	             us 0.0000

           Lark   484653   1 (10)
	           Lark 1.0000
	           part 0.8182
	            man 0.0000
	              . 0.0000
	              , 0.0000
	            and 0.0000
	              a 0.0000
	             of 0.0000
	           </S> 0.0000
	            arz 0.0000

       swallows   484658   1 (7)
	       swallows 1.0000
	         allows 0.8182
	    Calandrella 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	            and 0.0000

         ejects   484701   1 (9)
	         ejects 1.0000
	            use 0.0000
	           </S> 0.0000
	              . 0.0000
	              a 0.0000
	            the 0.0000
	              , 0.0000
	           been 0.0000
	             us 0.0000

          later   484723   1 (10)
	          later 1.0000
	          after 0.8182
	              , 0.0000
	              . 0.0000
	            was 0.0000
	            gun 0.0000
	             of 0.0000
	              a 0.0000
	           </S> 0.0000
	           lava 0.0000

  insectivorous   484738   1 (8)
	  insectivorous 1.0000
	    information 0.2308
	              , 0.0000
	          major 0.0000
	           </S> 0.0000
	              a 0.0000
	             of 0.0000
	             as 0.0000

           When   484763   1 (6)
	           When 1.0000
	           when 0.9000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	              " 0.0000

          Larks   484807   1 (8)
	          Larks 1.0000
	              a 0.0000
	           part 0.0000
	              " 0.0000
	           </S> 0.0000
	              , 0.0000
	              . 0.0000
	          Parus 0.0000

          would   484813   1 (6)
	          would 1.0000
	          wolfi 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	              ' 0.0000

        insects   484875   1 (9)
	        insects 1.0000
	            the 0.0000
	              , 0.0000
	            him 0.0000
	             it 0.0000
	              a 0.0000
	             us 0.0000
	         incest 0.0000
	           </S> 0.0000

            and   484885   1 (5)
	            and 1.0000
	              } 0.0000
	              , 0.0000
	           </S> 0.0000
	            arz 0.0000

        subsist   484917   1 (10)
	        subsist 1.0000
	           </S> 0.0000
	            the 0.0000
	             do 0.0000
	            not 0.0000
	           have 0.0000
	              , 0.0000
	             us 0.0000
	              a 0.0000
	        subject 0.0000

          seeds   484946   1 (8)
	          seeds 1.0000
	          needs 0.9167
	              , 0.0000
	            the 0.0000
	        receipt 0.0000
	           </S> 0.0000
	             us 0.0000
	              a 0.0000

             it   484972   1 (6)
	             it 1.0000
	             iu 0.9091
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	              } 0.0000

         solely   485024   1 (8)
	         solely 1.0000
	           </S> 0.0000
	           time 0.0000
	              , 0.0000
	           turn 0.0000
	           some 0.0000
	              . 0.0000
	              a 0.0000

         soaked   485034   1 (7)
	         soaked 1.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	            the 0.0000
	           some 0.0000
	           Wall 0.0000

           ants   485041   1 (10)
	           ants 1.0000
	            and 0.8000
	           alba 0.0000
	             in 0.0000
	              , 0.0000
	           </S> 0.0000
	       material 0.0000
	     Newspapers 0.0000
	       Watchers 0.0000
	              I 0.0000

              '   485045   1 (5)
	              ' 1.0000
	              , 0.9565
	             us 0.9130
	            the 0.0000
	           </S> 0.0000

        cocoons   485047   1 (10)
	        cocoons 1.0000
	         common 0.7500
	              , 0.0000
	           nest 0.0000
	              s 0.0000
	           </S> 0.0000
	              a 0.0000
	              ) 0.0000
	           bees 0.0000
	        Library 0.0000

      unnatural   485109   1 (8)
	      unnatural 1.0000
	         online 0.0000
	       possible 0.0000
	              , 0.0000
	          under 0.0000
	           </S> 0.0000
	             of 0.0000
	              a 0.0000

          Larks   485158   1 (10)
	          Larks 1.0000
	          Links 0.8462
	              , 0.0000
	           most 0.0000
	           </S> 0.0000
	              . 0.0000
	      following 0.0000
	    information 0.0000
	              a 0.0000
	          Parus 0.0000

            you   485164   1 (8)
	            you 1.0000
	             of 0.8333
	              a 0.0000
	              . 0.0000
	           </S> 0.0000
	              , 0.0000
	             us 0.0000
	              ' 0.0000

       recently   485214   1 (7)
	       recently 1.0000
	       required 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	            the 0.0000
	           they 0.0000

      branchers   485244   1 (7)
	      branchers 1.0000
	           </S> 0.0000
	              s 0.0000
	          <UNK> 0.0000
	          There 0.0000
	              , 0.0000
	              a 0.0000

          Larks   485290   1 (10)
	          Larks 1.0000
	          Links 0.8333
	           </S> 0.0000
	         people 0.0000
	              . 0.0000
	              a 0.0000
	          users 0.0000
	              , 0.0000
	         errors 0.0000
	          Parus 0.0000

             it   485330   1 (6)
	             it 1.0000
	             iu 0.9091
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	              } 0.0000

      branchers   485381   1 (9)
	      branchers 1.0000
	              , 0.0000
	              a 0.0000
	             we 0.0000
	        animals 0.0000
	           </S> 0.0000
	          there 0.0000
	            you 0.0000
	            the 0.0000

          tamer   485399   1 (10)
	          tamer 1.0000
	           time 0.8182
	              a 0.0000
	      difficult 0.0000
	           held 0.0000
	           </S> 0.0000
	          found 0.0000
	         manual 0.0000
	              , 0.0000
	          Pales 0.0000

      perfectly   485454   1 (7)
	      perfectly 1.0000
	         people 0.0000
	              , 0.0000
	          major 0.0000
	              a 0.0000
	           </S> 0.0000
	      available 0.0000

           tame   485464   1 (11)
	           tame 1.0000
	           time 0.9091
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	        located 0.0000
	              . 0.0000
	           free 0.0000
	       involved 0.0000
	       arranged 0.0000
	           lava 0.0000

       Appendix   485574   1 (7)
	       Appendix 1.0000
	            And 0.0000
	           prey 0.0000
	              " 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000

              .   485582   1 (6)
	              . 1.0000
	              A 0.9167
	              , 0.9167
	             us 0.8333
	           </S> 0.0000
	            the 0.0000

           WHEN   485585   1 (7)
	           WHEN 1.0000
	              / 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	             We 0.0000
	              " 0.0000

             It   485854   1 (7)
	             It 1.0000
	           </S> 0.0000
	              ) 0.0000
	             us 0.0000
	              , 0.0000
	              a 0.0000
	              " 0.0000

           need   485857   1 (5)
	           need 1.0000
	            new 0.8462
	           </S> 0.0000
	             is 0.0000
	              , 0.0000

    particulars   485967   1 (8)
	    particulars 1.0000
	           </S> 0.0000
	              , 0.0000
	        reviews 0.0000
	              a 0.0000
	            the 0.0000
	       pictures 0.0000
	             of 0.0000

     respecting   485979   1 (9)
	     respecting 1.0000
	             of 0.0000
	           </S> 0.0000
	              , 0.0000
	          being 0.0000
	            the 0.0000
	             it 0.0000
	              a 0.0000
	             us 0.0000

        alreadj   486147   1 (10)
	        already 1.0000
	        alejada 0.0000
	              . 0.0000
	            and 0.0000
	            are 0.0000
	             to 0.0000
	              I 0.0000
	              , 0.0000
	            red 0.0000
	           </S> 0.0000

              '   486154 inf (5)
	              , 1.0000
	             us 0.9000
	            the 0.0000
	           this 0.0000
	           </S> 0.0000

            Had   486188   1 (8)
	            Had 1.0000
	            had 0.9091
	              a 0.0000
	             in 0.0000
	              , 0.0000
	           </S> 0.0000
	              " 0.0000
	            cia 0.0000

       articles   486206   1 (9)
	       articles 1.0000
	         prices 0.7000
	      restraint 0.0000
	             of 0.0000
	    masterpiece 0.0000
	              , 0.0000
	           used 0.0000
	              I 0.0000
	           </S> 0.0000

        Messrs.   486251   1 (9)
	         Messrs 1.0000
	        Message 0.8000
	            the 0.0000
	              , 0.0000
	              a 0.0000
	        William 0.0000
	             us 0.0000
	           </S> 0.0000
	              ] 0.0000

       Witherby   486265   1 (6)
	       Witherby 1.0000
	         either 0.7273
	              , 0.0000
	           </S> 0.0000
	              A 0.0000
	             J. 0.0000

             F.   486281 inf (8)
	             FL 1.0000
	              . 1.0000
	              a 0.9091
	            For 0.9091
	              , 0.9091
	             us 0.0000
	           </S> 0.0000
	       Spyratos 0.0000

      Ticehurst   486284   1 (7)
	      Ticehurst 1.0000
	      Tilehurst 0.9333
	            has 0.5333
	              , 0.0000
	             C. 0.0000
	              A 0.0000
	           </S> 0.0000

           been   486294   1 (5)
	           been 1.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	          Aedon 0.0000

       inclttde   486357   1 (10)
	        include 1.0000
	       includet 0.8571
	          incle 0.8571
	             us 0.0000
	           have 0.0000
	           </S> 0.0000
	            see 0.0000
	              , 0.0000
	              a 0.0000
	            the 0.0000

            all   486366   1 (7)
	            all 1.0000
	           </S> 0.0000
	              I 0.0000
	              , 0.0000
	           alba 0.0000
	             of 0.0000
	            the 0.0000

       vagrants   486376   1 (10)
	       vagrants 1.0000
	        reviews 0.0000
	              , 0.0000
	          great 0.0000
	            are 0.0000
	           </S> 0.0000
	             us 0.0000
	          years 0.0000
	         things 0.0000
	              a 0.0000

      gentlemen   486665   1 (12)
	      gentlemen 1.0000
	              a 0.0000
	              - 0.0000
	              ) 0.0000
	             us 0.0000
	       Internet 0.0000
	             in 0.0000
	          above 0.0000
	       websites 0.0000
	              , 0.0000
	           </S> 0.0000
	    impairments 0.0000

             As   486677   1 (7)
	             As 1.0000
	             us 0.8889
	             is 0.8889
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	              " 0.0000

     considered   486712   1 (6)
	     considered 1.0000
	              , 0.0000
	           </S> 0.0000
	             of 0.0000
	              a 0.0000
	        control 0.0000

       visitors   486773   1 (11)
	       visitors 1.0000
	           </S> 0.0000
	              a 0.0000
	              . 0.0000
	           came 0.0000
	           most 0.0000
	           site 0.0000
	            and 0.0000
	             to 0.0000
	              , 0.0000
	     viscivorus 0.0000

         remedv   486843   1 (12)
	         remedy 1.0000
	              a 0.0000
	            use 0.0000
	             us 0.0000
	      remediava 0.0000
	         reduce 0.0000
	            the 0.0000
	             be 0.0000
	           </S> 0.0000
	         recent 0.0000
	           take 0.0000
	        vermede 0.0000

    deficienc}'   486854   1 (10)
	     deficience 1.0000
	     deficiency 1.0000
	      deficient 0.9000
	        details 0.4000
	         people 0.3000
	           work 0.0000
	              - 0.0000
	           same 0.0000
	      following 0.0000
	           </S> 0.0000

           here   486866   1 (6)
	           here 1.0000
	           </S> 0.0000
	              , 0.0000
	             of 0.0000
	            arz 0.0000
	              a 0.0000

      published   486948   1 (7)
	      published 1.0000
	           </S> 0.0000
	       changing 0.0000
	              , 0.0000
	              a 0.0000
	         people 0.0000
	             of 0.0000

         Family   486983   1 (7)
	         Family 1.0000
	              s 0.0000
	              a 0.0000
	              , 0.0000
	              " 0.0000
	              / 0.0000
	           </S> 0.0000

        TURDID^   486991 inf (12)
	         TURYID 1.0000
	           TURI 0.9333
	            The 0.7333
	              a 0.6667
	           </S> 0.6667
	              , 0.6667
	             to 0.6667
	            rev 0.0000
	           side 0.0000
	              s 0.0000
	              p 0.0000
	            Vol 0.0000

              .   486998   1 (6)
	              . 1.0000
	              , 0.9167
	              - 0.9167
	             us 0.8333
	           </S> 0.0000
	            the 0.0000

      Subfamih-   487001   1 (6)
	      Subfamily 1.0000
	         Sufami 0.9000
	              I 0.3000
	              " 0.3000
	              , 0.3000
	           </S> 0.3000

       TURDINyF   487011 inf (8)
	          <UNK> 1.0000
	           TODO 1.0000
	         THANKS 1.0000
	        COPYING 1.0000
	           </S> 0.8571
	              , 0.8571
	              a 0.8571
	    MAINTAINERS 0.0000

              .   487019 inf (3)
	             of 1.0000
	             us 1.0000
	            the 0.0000

          Dusky   487026 inf (10)
	           Dusk 1.0000
	         Duisky 1.0000
	          Dusko 1.0000
	           Duke 0.9167
	           </S> 0.0000
	             us 0.0000
	              - 0.0000
	              / 0.0000
	           just 0.0000
	     Associated 0.0000

        Turdiis   487041   1 (12)
	          urdis 1.0000
	          Turds 1.0000
	        Turdiev 1.0000
	         Turdus 1.0000
	        Turkish 0.8571
	              a 0.0000
	        Taurids 0.0000
	              / 0.0000
	           Turd 0.0000
	           </S> 0.0000
	              , 0.0000
	              " 0.0000

        dubiiis   487049   2 (8)
	         dubiis 1.0000
	         dubius 0.9231
	          dubii 0.9231
	         duties 0.8462
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	      configure 0.0000

              ,   487056 inf (3)
	             of 1.0000
	             us 1.0000
	            the 0.0000

         BechsT   487058 inf (7)
	           Bech 1.0000
	         Becher 1.0000
	              i 0.0000
	           each 0.0000
	             pp 0.0000
	        Beeches 0.0000
	            the 0.0000

              .   487064   1 (5)
	              . 1.0000
	              , 0.8571
	             us 0.7143
	           </S> 0.0000
	            the 0.0000

             NE   487067 inf (8)
	             NE 1.0000
	             No 0.9167
	             us 0.0000
	              " 0.0000
	              / 0.0000
	              , 0.0000
	              I 0.0000
	           </S> 0.0000

       specimen   487070   1 (7)
	       specimen 1.0000
	        species 0.8333
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	              ) 0.0000
	          round 0.0000

      Gunthorpe   487110   1 (9)
	      Gunthorpe 1.0000
	        another 0.0000
	         future 0.0000
	            you 0.0000
	           </S> 0.0000
	              a 0.0000
	             us 0.0000
	            the 0.0000
	              , 0.0000

          Notts   487121   1 (8)
	          Notts 1.0000
	          North 0.8182
	              , 0.0000
	           </S> 0.0000
	              / 0.0000
	              " 0.0000
	              I 0.0000
	          Sitta 0.0000

              .   487126   1 (7)
	              . 1.0000
	              , 0.9375
	             us 0.8750
	           </S> 0.0000
	      configure 0.0000
	         County 0.0000
	            the 0.0000

           1905   487146 inf (8)
	           1995 1.0000
	           1990 0.9333
	           2005 0.9333
	           1950 0.9333
	              a 0.0000
	             pp 0.0000
	           </S> 0.0000
	            the 0.0000

     Stornowa}-   487198   1 (9)
	      Stornoway 1.0000
	         Monday 0.5455
	        Windows 0.4545
	        average 0.4545
	            the 0.3636
	              a 0.3636
	             us 0.0000
	              , 0.0000
	           </S> 0.0000

          Outer   487210   1 (7)
	          Outer 1.0000
	          Other 0.8000
	              a 0.0000
	            and 0.0000
	            the 0.0000
	           </S> 0.0000
	            you 0.0000

          White   487284   1 (6)
	          White 1.0000
	           What 0.8000
	              " 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000

             's   487289   1 (5)
	             's 1.0000
	             is 0.9167
	             us 0.9167
	              , 0.8333
	           </S> 0.0000

           i8th   487352 inf (11)
	            8th 1.0000
	           iath 1.0000
	            ith 1.0000
	           into 0.8571
	           2005 0.0000
	           </S> 0.0000
	              , 0.0000
	             iu 0.0000
	             31 0.0000
	              a 0.0000
	              1 0.0000

           1902   487358 inf (8)
	           1903 1.0000
	           1990 0.9333
	           2005 0.8667
	           </S> 0.8000
	            the 0.8000
	              a 0.0000
	              ( 0.0000
	             pp 0.0000

            now   487379   1 (9)
	            now 1.0000
	             of 0.8462
	           </S> 0.0000
	             us 0.0000
	             DT 0.0000
	         Papers 0.0000
	              , 0.0000
	            dog 0.0000
	              I 0.0000

          Ouzel   487432   1 (10)
	          Ouzel 1.0000
	       wrapping 0.0000
	          Other 0.0000
	             to 0.0000
	       Extended 0.0000
	              s 0.0000
	              a 0.0000
	             it 0.0000
	              . 0.0000
	           </S> 0.0000

         Family   487500   1 (5)
	         Family 1.0000
	              , 0.0000
	              " 0.0000
	           </S> 0.0000
	              a 0.0000

             Ti   487508 inf (11)
	             Ti 1.0000
	             To 0.9167
	       Friendly 0.0000
	             to 0.0000
	           </S> 0.0000
	              v 0.0000
	             up 0.0000
	         lovers 0.0000
	              s 0.0000
	              , 0.0000
	              a 0.0000

              '   487511   1 (6)
	              ' 1.0000
	              , 0.9167
	              - 0.9167
	             us 0.8333
	            the 0.0000
	           </S> 0.0000

           RDID   487512 inf (8)
	           RDIS 1.0000
	            RDI 1.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	             Re 0.0000
	              s 0.0000
	              ) 0.0000

              .   487516   1 (7)
	              . 1.0000
	              ' 0.9091
	              | 0.9091
	              , 0.9091
	             us 0.8182
	            the 0.0000
	           </S> 0.0000

             E.   487518 inf (8)
	             El 1.0000
	              . 1.0000
	              " 0.9091
	             of 0.9091
	              , 0.9091
	              I 0.9091
	             us 0.0000
	           </S> 0.0000

    Subfaniily-   487522   1 (6)
	      Subfamily 1.0000
	        Stanley 0.5556
	              A 0.0000
	           </S> 0.0000
	              , 0.0000
	              ' 0.0000

             TL   487534 inf (6)
	             TL 1.0000
	             To 0.9091
	           </S> 0.0000
	              a 0.0000
	             us 0.0000
	              , 0.0000

              '   487537   1 (6)
	              ' 1.0000
	              - 0.9167
	              , 0.9167
	             us 0.8333
	           </S> 0.0000
	            the 0.0000

           RUIN   487538 inf (11)
	            RUI 1.0000
	           RUIM 1.0000
	            the 0.0000
	              , 0.0000
	             al 0.0000
	              ) 0.0000
	              s 0.0000
	              a 0.0000
	           IRUN 0.0000
	             Re 0.0000
	           </S> 0.0000

              .   487542   1 (8)
	              . 1.0000
	              ' 0.9231
	              , 0.9231
	             us 0.8462
	           </S> 0.0000
	           THIS 0.0000
	          other 0.0000
	            the 0.0000

              E   487544 inf (9)
	              " 1.0000
	             El 1.0000
	              , 1.0000
	              / 1.0000
	             RE 1.0000
	             EE 1.0000
	            the 0.0000
	           </S> 0.0000
	             us 0.0000

       Saxicola   487575   1 (6)
	       Saxicola 1.0000
	              , 0.0000
	              I 0.0000
	              / 0.0000
	              " 0.0000
	           </S> 0.0000

      shipazina   487584 inf (12)
	       simazina 1.0000
	       shikazan 0.9167
	         hazina 0.9167
	      quipazine 0.9167
	       shipping 0.9167
	          maura 0.5833
	              a 0.5000
	           </S> 0.0000
	              , 0.0000
	      configure 0.0000
	       torquata 0.0000
	        rubetra 0.0000

              ,   487593   1 (4)
	              , 1.0000
	             us 0.8000
	            the 0.0000
	           </S> 0.0000

           LiNN   487595 inf (8)
	            LNN 1.0000
	           LiNK 1.0000
	           List 0.9286
	             pp 0.0000
	              i 0.0000
	            the 0.0000
	            NiL 0.0000
	            cia 0.0000

              .   487599   1 (5)
	              . 1.0000
	              , 0.8571
	             us 0.7143
	           </S> 0.0000
	            the 0.0000

              A   487602   1 (7)
	              A 1.0000
	              " 0.9167
	              , 0.9167
	           This 0.0000
	             us 0.0000
	            the 0.0000
	           </S> 0.0000

           1902   487654 inf (8)
	           1992 1.0000
	           1990 0.9474
	           1920 0.9474
	           2005 0.8947
	            the 0.8421
	              a 0.8421
	           </S> 0.8421
	      therefore 0.0000

           1905   487676 inf (8)
	           1995 1.0000
	           2005 0.9167
	           1990 0.9167
	           2002 0.8333
	              a 0.7500
	           </S> 0.7500
	            the 0.7500
	              , 0.7500

        another   487682   1 (11)
	        another 1.0000
	          other 0.8000
	          which 0.0000
	            the 0.0000
	              , 0.0000
	              s 0.0000
	             he 0.0000
	            who 0.0000
	              I 0.0000
	           2005 0.0000
	           </S> 0.0000

            Hoo   487704   1 (9)
	            Hoo 1.0000
	           </S> 0.0000
	            the 0.0000
	             us 0.0000
	          times 0.0000
	              , 0.0000
	         future 0.0000
	           Home 0.0000
	              a 0.0000

         Sussex   487709   1 (9)
	         Sussex 1.0000
	            who 0.0000
	            the 0.0000
	           used 0.0000
	            and 0.0000
	   respectively 0.0000
	              a 0.0000
	              s 0.0000
	           </S> 0.0000

             on   487717   1 (6)
	             on 1.0000
	             us 0.0000
	              a 0.0000
	              , 0.0000
	              } 0.0000
	           </S> 0.0000

          3'ear   487750   1 (11)
	           rear 1.0000
	           year 1.0000
	            ear 1.0000
	              . 0.0000
	           name 0.0000
	         States 0.0000
	           </S> 0.0000
	              , 0.0000
	             of 0.0000
	              a 0.0000
	           time 0.0000

              a   487757   1 (5)
	              a 1.0000
	             of 0.0000
	            the 0.0000
	           </S> 0.0000
	             us 0.0000

           Pett   487779   1 (9)
	           Pett 1.0000
	           Post 0.8333
	              , 0.0000
	           </S> 0.0000
	          times 0.0000
	            the 0.0000
	         future 0.0000
	              a 0.0000
	           Pica 0.0000

              a   487794   1 (6)
	              a 1.0000
	              } 0.9333
	              , 0.9333
	            the 0.0000
	             us 0.0000
	           </S> 0.0000

     Winchelsea   487813   1 (10)
	     Winchelsea 1.0000
	          these 0.7273
	         killed 0.6818
	          least 0.6364
	            the 0.6364
	              a 0.0000
	             us 0.0000
	           your 0.0000
	              , 0.0000
	           </S> 0.0000

           1907   487836 inf (8)
	           1900 1.0000
	           1970 0.9333
	           2005 0.8667
	              ) 0.0000
	           </S> 0.0000
	            the 0.0000
	             pp 0.0000
	              a 0.0000

      stapazina   487851 inf (13)
	       stanzina 1.0000
	      stanarina 1.0000
	        Atazina 0.8889
	        stapati 0.8889
	       Capazine 0.8889
	           said 0.5556
	              a 0.0000
	         change 0.0000
	           that 0.0000
	              , 0.0000
	           </S> 0.0000
	             of 0.0000
	     Mabinogion 0.0000

             by   487881   1 (10)
	             by 1.0000
	           that 0.0000
	         please 0.0000
	              ( 0.0000
	            and 0.0000
	             us 0.0000
	            the 0.0000
	            but 0.0000
	           </S> 0.0000
	              a 0.0000

        species   487927   1 (11)
	        species 1.0000
	        special 0.8333
	              , 0.0000
	              - 0.0000
	        sources 0.0000
	           </S> 0.0000
	     statements 0.0000
	              a 0.0000
	          Green 0.0000
	        Sparrow 0.0000
	        suecica 0.0000

       Saxicola   487962   1 (6)
	       Saxicola 1.0000
	              , 0.0000
	           your 0.0000
	              a 0.0000
	           </S> 0.0000
	         little 0.0000

   occidoitalis   487971   1 (12)
	   occidentalis 1.0000
	    occipitalis 1.0000
	      occiditis 0.9000
	     individual 0.3000
	       Saxicola 0.3000
	             as 0.2000
	       torquata 0.2000
	             is 0.2000
	          whole 0.2000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000

              .   487983   1 (5)
	              . 1.0000
	              , 0.9000
	             us 0.8000
	            the 0.0000
	           </S> 0.0000

       Saxicola   488016   1 (6)
	       Saxicola 1.0000
	        Special 0.0000
	              a 0.0000
	              , 0.0000
	       Oenanthe 0.0000
	           </S> 0.0000

         daerti   488025   4 (12)
	          darti 1.0000
	         dzerti 1.0000
	         Haerti 1.0000
	        deserti 0.9000
	       torquata 0.0000
	         derati 0.0000
	        rubetra 0.0000
	          maura 0.0000
	              a 0.0000
	          death 0.0000
	           </S> 0.0000
	              , 0.0000

            was   488032   1 (5)
	            was 1.0000
	             us 0.0000
	              , 0.0000
	             we 0.0000
	           </S> 0.0000

       Pentland   488064   1 (9)
	       Pentland 1.0000
	              s 0.0000
	              a 0.0000
	             2K 0.0000
	          <UNK> 0.0000
	           </S> 0.0000
	        section 0.0000
	              . 0.0000
	            Now 0.0000

       Skerries   488073   1 (8)
	       Skerries 1.0000
	         Series 0.8182
	           </S> 0.0000
	      Filtering 0.0000
	              a 0.0000
	             A. 0.0000
	              , 0.0000
	              ) 0.0000

           1906   488097 inf (8)
	           1900 1.0000
	           1960 0.9333
	           2005 0.8667
	            the 0.8000
	           </S> 0.8000
	              a 0.0000
	             pp 0.0000
	              ) 0.0000

         Family   488104   1 (6)
	         Family 1.0000
	              , 0.0000
	              / 0.0000
	              " 0.0000
	           </S> 0.0000
	              a 0.0000

           TURD   488112 inf (12)
	            TUR 1.0000
	           TURN 1.0000
	          DUART 0.0000
	           mail 0.0000
	       friendly 0.0000
	             to 0.0000
	              a 0.0000
	            The 0.0000
	              , 0.0000
	              s 0.0000
	           </S> 0.0000
	       Friendly 0.0000

             ID   488117   1 (9)
	             ID 1.0000
	             In 0.9231
	             us 0.0000
	              - 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	              ) 0.0000
	          Sites 0.0000

              .   488119   1 (7)
	              . 1.0000
	              : 0.9375
	              , 0.9375
	             us 0.8750
	          <UNK> 0.0000
	           </S> 0.0000
	            the 0.0000

             E.   488121 inf (8)
	              . 1.0000
	             El 1.0000
	              a 0.9091
	              , 0.9091
	              " 0.9091
	             of 0.9091
	              s 0.0000
	           </S> 0.0000

     Subfamily-   488125   1 (6)
	      Subfamily 1.0000
	          Smith 0.4545
	           </S> 0.0000
	              , 0.0000
	              A 0.0000
	             J. 0.0000

       TURDIN.E   488136 inf (11)
	             RD 1.0000
	          <UNK> 1.0000
	             N. 1.0000
	             E. 0.7500
	            The 0.7500
	           </S> 0.5000
	              a 0.5000
	              , 0.5000
	            Ave 0.0000
	    PROTECTIONE 0.0000
	      INTERSECT 0.0000

              .   488144 inf (3)
	             of 1.0000
	             us 1.0000
	            the 0.0000

              .   488169   1 (5)
	              . 1.0000
	              , 0.9231
	             us 0.8462
	            the 0.0000
	           </S> 0.0000

     Pratincola   488172   1 (6)
	     Pratincola 1.0000
	              , 0.0000
	              " 0.0000
	              / 0.0000
	           </S> 0.0000
	              I 0.0000

          maura   488183   1 (6)
	          maura 1.0000
	              a 0.0000
	          major 0.0000
	              , 0.0000
	      configure 0.0000
	           </S> 0.0000

           Paix   488190 inf (9)
	           Paix 1.0000
	           Page 0.8667
	              i 0.0000
	             pp 0.0000
	           Pica 0.0000
	            the 0.0000
	              ) 0.0000
	          <UNK> 0.0000
	   philadelphia 0.0000

              .   488194   1 (6)
	              . 1.0000
	              , 0.9000
	             us 0.8000
	            the 0.0000
	           </S> 0.0000
	           will 0.0000

           male   488197 inf (8)
	           male 1.0000
	           make 0.9091
	           </S> 0.0000
	              " 0.0000
	              , 0.0000
	              I 0.0000
	           This 0.0000
	           sala 0.0000

           Cley   488216   1 (10)
	           Cley 1.0000
	           City 0.8571
	              a 0.0000
	            the 0.0000
	           </S> 0.0000
	              , 0.0000
	         Disney 0.0000
	        Norwich 0.0000
	         future 0.0000
	           alba 0.0000

           1904   488249 inf (8)
	           1900 1.0000
	           1940 0.9333
	           2005 0.8667
	            the 0.8000
	              ) 0.8000
	           </S> 0.8000
	              a 0.8000
	             pp 0.0000

              A   488255   1 (7)
	              A 1.0000
	              " 0.8889
	              , 0.8889
	              ) 0.8889
	             us 0.0000
	           </S> 0.0000
	            the 0.0000

      Redstarts   488265 inf (9)
	       Redstart 1.0000
	            the 0.0000
	           </S> 0.0000
	       research 0.0000
	       kayakers 0.0000
	          <UNK> 0.0000
	             us 0.0000
	              , 0.0000
	              a 0.0000

          built   488275   1 (7)
	          built 1.0000
	            but 0.8000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	              . 0.0000
	              - 0.0000

        Spiggie   488284 inf (10)
	         piggie 1.0000
	        Spigiel 0.9737
	             us 0.0000
	              a 0.0000
	              , 0.0000
	           your 0.0000
	          <UNK> 0.0000
	            the 0.0000
	           </S> 0.0000
	           high 0.0000

     vShetlands   488293   1 (8)
	      Shetlands 1.0000
	           view 0.7500
	       Compiled 0.7500
	              a 0.7143
	           </S> 0.0000
	          <UNK> 0.0000
	              s 0.0000
	              - 0.0000

              )   488303   1 (5)
	              ) 1.0000
	              , 0.9231
	             us 0.8462
	            the 0.0000
	           </S> 0.0000

            Maj   488309 inf (8)
	            Maj 1.0000
	              a 0.8889
	             My 0.8889
	           </S> 0.0000
	            cia 0.0000
	              , 0.0000
	          stock 0.0000
	            the 0.0000

              '   488312   1 (8)
	              ' 1.0000
	              , 0.9231
	              - 0.9231
	             us 0.8462
	          world 0.0000
	           </S> 0.0000
	            the 0.0000
	            Gen 0.0000

           1901   488315 inf (10)
	             10 1.0000
	           1964 1.0000
	              ' 0.8000
	              , 0.8000
	           </S> 0.8000
	              ) 0.8000
	            the 0.8000
	              a 0.8000
	              s 0.0000
	    Transcripts 0.0000

            two   488322   1 (7)
	            two 1.0000
	             us 0.0000
	              , 0.0000
	           </S> 0.0000
	              } 0.0000
	          there 0.0000
	              a 0.0000

         Skerry   488393   1 (9)
	         Skerry 1.0000
	         Sierra 0.8462
	           </S> 0.0000
	            end 0.0000
	            age 0.0000
	              , 0.0000
	           same 0.0000
	           very 0.0000
	          Speed 0.0000

           Vore   488400   1 (7)
	           Vore 1.0000
	           more 0.9167
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	             of 0.0000
	          corax 0.0000

          Light   488405   1 (7)
	          Light 1.0000
	              , 0.0000
	           </S> 0.0000
	          Stack 0.0000
	    definitions 0.0000
	             M. 0.0000
	              a 0.0000

        Messrs.   488436   1 (6)
	         Messrs 1.0000
	        Message 0.8000
	              / 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000

       Witherby   488444   1 (8)
	       Witherby 1.0000
	         either 0.7857
	              , 0.0000
	             A. 0.0000
	          <UNK> 0.0000
	      configure 0.0000
	              a 0.0000
	           </S> 0.0000

      Ticehurst   488457   1 (9)
	      Ticehurst 1.0000
	            The 0.5333
	              a 0.0000
	          major 0.0000
	             to 0.0000
	              , 0.0000
	           </S> 0.0000
	            the 0.0000
	     superseded 0.0000

         record   488467   1 (9)
	         record 1.0000
	              . 0.0000
	             of 0.0000
	             by 0.0000
	           </S> 0.0000
	             us 0.0000
	         before 0.0000
	              , 0.0000
	              a 0.0000

         Solway   488537   1 (12)
	         Solway 1.0000
	          state 0.0000
	            one 0.0000
	              , 0.0000
	          party 0.0000
	      sectional 0.0000
	         Policy 0.0000
	              : 0.0000
	             us 0.0000
	              a 0.0000
	        kitchen 0.0000
	           </S> 0.0000

       Aberdeen   488575   1 (6)
	       Aberdeen 1.0000
	              } 0.0000
	              a 0.0000
	           </S> 0.0000
	           1900 0.0000
	              , 0.0000

        ]\Iarch   488589 inf (9)
	          harch 1.0000
	        Isearch 1.0000
	         Search 1.0000
	           arch 1.0000
	           </S> 0.0000
	          major 0.0000
	             of 0.0000
	              , 0.0000
	              a 0.0000

           20th   488597 inf (9)
	             th 1.0000
	            sth 1.0000
	           with 1.0000
	             us 0.0000
	              , 0.0000
	           them 0.0000
	           </S> 0.0000
	            the 0.0000
	              a 0.0000

           1900   488603 inf (7)
	           1990 1.0000
	           2005 0.8182
	            the 0.7273
	              ) 0.7273
	              a 0.7273
	              s 0.0000
	          <UNK> 0.0000

          Moray   488609   1 (8)
	          Moray 1.0000
	           More 0.8000
	             ie 0.0000
	           </S> 0.0000
	              } 0.0000
	              , 0.0000
	              a 0.0000
	          corax 0.0000

        Flannan   488640   1 (6)
	        Flannan 1.0000
	        Flannel 0.7500
	              , 0.0000
	              } 0.0000
	           </S> 0.0000
	              a 0.0000

           June   488665   1 (7)
	           June 1.0000
	            Jan 0.8333
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	             of 0.0000
	          Munia 0.0000

         Orkney   488724   1 (7)
	         Orkney 1.0000
	         Orange 0.7857
	              } 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	       Regiment 0.0000

           male   488734   1 (10)
	           male 1.0000
	           make 0.9091
	          woman 0.0000
	           </S> 0.0000
	            new 0.0000
	              a 0.0000
	            was 0.0000
	              , 0.0000
	         Mother 0.0000
	           sala 0.0000

       November   488751   1 (8)
	       November 1.0000
	           over 0.0000
	            the 0.0000
	              , 0.0000
	           </S> 0.0000
	      including 0.0000
	              a 0.0000
	            and 0.0000

           1905   488766 inf (7)
	           1995 1.0000
	           1990 0.9474
	           2005 0.9474
	            the 0.8421
	           </S> 0.8421
	              a 0.8421
	      therefore 0.0000

         Family   488800   1 (6)
	         Family 1.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	              / 0.0000
	              " 0.0000

       TURDID.^   488808 inf (11)
	         TURYID 1.0000
	            The 0.7143
	              s 0.6429
	              , 0.6429
	             to 0.6429
	              a 0.6429
	           </S> 0.6429
	            rev 0.0000
	           side 0.0000
	              p 0.0000
	            Vol 0.0000

              .   488816   1 (6)
	              . 1.0000
	              , 0.9167
	              - 0.9167
	             us 0.8333
	           </S> 0.0000
	            the 0.0000

     Subfamily-   488819   1 (5)
	      Subfamily 1.0000
	           </S> 0.1000
	              , 0.1000
	              " 0.1000
	              I 0.1000

       TURDIN/E   488830 inf (10)
	        COPYING 1.0000
	          <UNK> 1.0000
	           TODO 1.0000
	         THANKS 1.0000
	         README 1.0000
	              / 0.9286
	              a 0.8571
	           </S> 0.8571
	              , 0.8571
	    MAINTAINERS 0.0000

              .   488838 inf (3)
	             of 1.0000
	             us 1.0000
	            the 0.0000

       Spottf:d   488851 inf (11)
	        Spoofed 1.0000
	          Spott 1.0000
	       Spottify 1.0000
	          point 0.6250
	             to 0.5000
	           mail 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	         tailed 0.0000
	              s 0.0000

     Bluethroat   488860   1 (9)
	     Bluethroat 1.0000
	           that 0.5000
	           Deer 0.3333
	              a 0.2500
	              ) 0.0000
	           </S> 0.0000
	             us 0.0000
	              - 0.0000
	              , 0.0000

              .   488870   1 (6)
	              . 1.0000
	              , 0.8889
	             us 0.7778
	            the 0.0000
	           Boat 0.0000
	           </S> 0.0000

    Cxa)icciila   488873 inf (8)
	          Click 1.0000
	        Comella 1.0000
	              ) 0.3333
	           </S> 0.0000
	              / 0.0000
	              I 0.0000
	              " 0.0000
	              , 0.0000

        u'i>l/l   488885 inf (7)
	          uaill 1.0000
	           uill 1.0000
	          build 0.8182
	           </S> 0.7273
	              a 0.6364
	              , 0.6364
	      configure 0.0000

              ,   488892 inf (3)
	             of 1.0000
	             us 1.0000
	            the 0.0000

          BrEHM   488894 inf (6)
	           BEHS 1.0000
	            BrE 1.0000
	             pp 0.0000
	           from 0.0000
	              i 0.0000
	            the 0.0000

              .   488899   1 (5)
	              . 1.0000
	              , 0.8571
	             us 0.7143
	           </S> 0.0000
	            the 0.0000

              A   488902   1 (7)
	              A 1.0000
	              " 0.9167
	              , 0.9167
	           This 0.0000
	             us 0.0000
	            the 0.0000
	           </S> 0.0000

      Dungeness   488932   1 (7)
	      Dungeness 1.0000
	              , 0.0000
	              a 0.0000
	            the 0.0000
	           </S> 0.0000
	       business 0.0000
	             us 0.0000

              a   488976   1 (6)
	              a 1.0000
	              } 0.9167
	              , 0.9167
	           </S> 0.0000
	             us 0.0000
	            the 0.0000

            ist   489026 inf (10)
	            ist 1.0000
	              , 0.0000
	             11 0.0000
	              1 0.0000
	             iu 0.0000
	           </S> 0.0000
	              a 0.0000
	           2005 0.0000
	            its 0.0000
	             30 0.0000

           1905   489031 inf (11)
	           1995 1.0000
	          19105 1.0000
	           1990 0.9333
	           2005 0.9333
	           1950 0.9333
	           </S> 0.8000
	            the 0.8000
	              ( 0.8000
	              a 0.8000
	          <UNK> 0.0000
	             pp 0.0000

             it   489129   1 (6)
	             it 1.0000
	             iu 0.9333
	           </S> 0.0000
	              , 0.0000
	              } 0.0000
	              a 0.0000

        visited   489132   1 (7)
	        visited 1.0000
	          visit 0.7500
	              a 0.0000
	            was 0.0000
	             is 0.0000
	              , 0.0000
	           </S> 0.0000

   Lincolnshire   489140   1 (10)
	   Lincolnshire 1.0000
	          other 0.4706
	          sites 0.4118
	            the 0.4118
	            him 0.4118
	              , 0.0000
	              a 0.0000
	             us 0.0000
	             be 0.0000
	           </S> 0.0000

         Sussex   489180   1 (8)
	         Sussex 1.0000
	           </S> 0.0000
	              , 0.0000
	              } 0.0000
	           1905 0.0000
	          based 0.0000
	              a 0.0000
	         Passer 0.0000

           1903   489190 inf (8)
	           1603 1.0000
	            the 0.7692
	              , 0.7692
	             it 0.7692
	             us 0.7692
	              a 0.7692
	           </S> 0.7692
	        writing 0.0000

         Surrey   489196   1 (6)
	         Surrey 1.0000
	         Survey 0.8750
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	              } 0.0000

           1904   489203 inf (8)
	            CR0 1.0000
	              ) 0.9500
	              , 0.9500
	            and 0.9500
	           GU21 0.9500
	              A 0.9500
	            TW9 0.9500
	           </S> 0.9500

      Yorkshire   489209   1 (5)
	      Yorkshire 1.0000
	           </S> 0.0000
	              a 0.0000
	              } 0.0000
	              , 0.0000

           1903   489219 inf (6)
	              ) 1.0000
	           YO17 1.0000
	           BD20 1.0000
	           </S> 1.0000
	              , 1.0000
	            and 1.0000

      Shetlands   489225   1 (5)
	      Shetlands 1.0000
	           </S> 0.0000
	              } 0.0000
	              , 0.0000
	              a 0.0000

           1905   489235 inf (6)
	             95 1.0000
	             01 0.8889
	              , 0.7778
	           </S> 0.7778
	            the 0.7778
	        Islands 0.4444

         Family   489248   1 (7)
	         Family 1.0000
	              , 0.0000
	           1907 0.0000
	              / 0.0000
	              " 0.0000
	              a 0.0000
	           </S> 0.0000

        TURDID^   489256 inf (12)
	         TURYID 1.0000
	           TURI 0.9333
	            The 0.7333
	              a 0.6667
	           </S> 0.6667
	              , 0.6667
	             to 0.6667
	            rev 0.0000
	           side 0.0000
	              s 0.0000
	              p 0.0000
	            Vol 0.0000

              .   489263   1 (6)
	              . 1.0000
	              , 0.9167
	              - 0.9167
	             us 0.8333
	           </S> 0.0000
	            the 0.0000

     Subfamily-   489266   1 (5)
	      Subfamily 1.0000
	           </S> 0.1000
	              , 0.1000
	              " 0.1000
	              I 0.1000

        TURDIN^   489277 inf (7)
	         TURYID 1.0000
	         TARDIS 1.0000
	           TURN 1.0000
	          <UNK> 0.8235
	              a 0.7647
	              , 0.7647
	           </S> 0.7647

              .   489284 inf (3)
	             of 1.0000
	             us 1.0000
	            the 0.0000

    Nightingale   489299   1 (10)
	    Nightingale 1.0000
	     Washington 0.4167
	           Good 0.0000
	              I 0.0000
	           </S> 0.0000
	          Press 0.0000
	             P. 0.0000
	              , 0.0000
	             of 0.0000
	         London 0.0000

        Daulias   489313 inf (9)
	        Daulian 1.0000
	         Daulia 1.0000
	         Daulis 1.0000
	         Dallas 0.8571
	              / 0.0000
	              , 0.0000
	              " 0.0000
	           </S> 0.0000
	              a 0.0000

     fliilomcla   489321 inf (6)
	           film 1.0000
	        million 0.7500
	              a 0.6250
	              , 0.5000
	           </S> 0.5000
	      configure 0.0000

              ,   489331 inf (3)
	             of 1.0000
	             us 1.0000
	            the 0.0000

         Bechst   489333 inf (8)
	         Bechet 1.0000
	         zechst 1.0000
	        Bechets 0.9231
	              i 0.0000
	           each 0.0000
	      Bechstein 0.0000
	             pp 0.0000
	            the 0.0000

              A   489342   1 (7)
	              A 1.0000
	              " 0.9167
	              , 0.9167
	           This 0.0000
	             us 0.0000
	            the 0.0000
	           </S> 0.0000

         Smeeth   489365   1 (10)
	         Smeeth 1.0000
	           your 0.0000
	              , 0.0000
	            all 0.0000
	           </S> 0.0000
	           home 0.0000
	            the 0.0000
	          South 0.0000
	              a 0.0000
	             us 0.0000

       believed   489406   1 (6)
	       believed 1.0000
	              a 0.0000
	          moved 0.0000
	              , 0.0000
	           </S> 0.0000
	              } 0.0000

    Nightingale   489442   1 (9)
	    Nightingale 1.0000
	          shall 0.3846
	       basename 0.3846
	            law 0.0000
	             of 0.0000
	              I 0.0000
	            use 0.0000
	           </S> 0.0000
	              , 0.0000

         nested   489454   1 (8)
	         nested 1.0000
	           need 0.8182
	             of 0.0000
	           rule 0.0000
	              a 0.0000
	           Sang 0.0000
	              , 0.0000
	           </S> 0.0000

              A   489492   1 (6)
	              A 1.0000
	              " 0.8889
	              , 0.8889
	             us 0.0000
	           </S> 0.0000
	            the 0.0000

        Orphean   489501   1 (8)
	        Orphean 1.0000
	           Open 0.7500
	             of 0.0000
	              , 0.0000
	        student 0.0000
	           </S> 0.0000
	              a 0.0000
	         police 0.0000

           1903   489570 inf (7)
	           1993 1.0000
	           1990 0.9474
	           2005 0.8947
	              a 0.8421
	            the 0.8421
	           </S> 0.8421
	      therefore 0.0000

            6th   489646 inf (10)
	            sth 1.0000
	             th 1.0000
	              6 0.9091
	            the 0.9091
	             st 0.9091
	              a 0.0000
	             us 0.0000
	              ) 0.0000
	           </S> 0.0000
	              , 0.0000

           1905   489651 inf (8)
	           1900 1.0000
	           2005 0.9333
	           </S> 0.0000
	              a 0.0000
	             pp 0.0000
	              , 0.0000
	              " 0.0000
	            the 0.0000

     vSeptember   489712   1 (8)
	      September 1.0000
	        October 0.5455
	          other 0.4545
	            the 0.3636
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	             us 0.0000

           1904   489723 inf (7)
	           2004 1.0000
	              1 0.9091
	              a 0.8182
	            the 0.8182
	           </S> 0.8182
	              , 0.8182
	          world 0.7273

        secured   489856   1 (10)
	        secured 1.0000
	              , 0.0000
	             of 0.0000
	            old 0.0000
	            and 0.0000
	              a 0.0000
	         second 0.0000
	             us 0.0000
	              . 0.0000
	           </S> 0.0000

     Woodchurch   489867   1 (10)
	     Woodchurch 1.0000
	          which 0.7083
	           your 0.7083
	             us 0.6250
	            the 0.6250
	            all 0.0000
	              0 0.0000
	     Canterbury 0.0000
	              a 0.0000
	              , 0.0000

          24t]i   489894   1 (7)
	           24th 1.0000
	          Patti 0.8333
	              a 0.0000
	           2005 0.0000
	              , 0.0000
	              1 0.0000
	           </S> 0.0000

           1907   489901 inf (8)
	           1906 1.0000
	           1970 0.9091
	           2005 0.8182
	           </S> 0.7273
	              a 0.7273
	            the 0.7273
	   respectively 0.0000
	              s 0.0000

            one   489908   1 (7)
	            one 1.0000
	             us 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	              } 0.0000
	     specialize 0.0000

      September   489924   1 (8)
	      September 1.0000
	          other 0.5385
	             VA 0.0000
	           </S> 0.0000
	              , 0.0000
	            the 0.0000
	            and 0.0000
	              a 0.0000

           1902   489940 inf (8)
	           1904 1.0000
	           1990 0.9091
	           2005 0.8182
	              ( 0.7273
	            the 0.7273
	           </S> 0.7273
	              a 0.7273
	              s 0.0000

            one   489946   1 (6)
	            one 1.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	              } 0.0000
	              s 0.0000

              a   490000   1 (6)
	              a 1.0000
	              } 0.9091
	              , 0.9091
	             us 0.0000
	           </S> 0.0000
	            the 0.0000

         3'oung   490002   1 (11)
	          young 1.0000
	          goung 1.0000
	          Young 1.0000
	              - 0.0000
	         single 0.0000
	            new 0.0000
	        similar 0.0000
	          major 0.0000
	           </S> 0.0000
	            oun 0.0000
	         senior 0.0000

         female   490009   1 (8)
	         female 1.0000
	             of 0.0000
	              , 0.0000
	         family 0.0000
	      professor 0.0000
	           look 0.0000
	              a 0.0000
	           </S> 0.0000

          North   490019   1 (8)
	          North 1.0000
	            the 0.0000
	           </S> 0.0000
	           your 0.0000
	              , 0.0000
	              a 0.0000
	           Long 0.0000
	          corax 0.0000

   Lincolnshire   490032   1 (9)
	   Lincolnshire 1.0000
	         online 0.3333
	          South 0.1667
	          North 0.1667
	            the 0.1667
	              a 0.0000
	           Ohio 0.0000
	      therefore 0.0000
	           </S> 0.0000

           1899   490063 inf (7)
	           1890 1.0000
	           1989 0.9231
	              a 0.7692
	           </S> 0.7692
	            the 0.7692
	           2005 0.0000
	      therefore 0.0000

              a   490140   1 (6)
	              a 1.0000
	              , 0.9167
	              } 0.9167
	            the 0.0000
	             us 0.0000
	           </S> 0.0000

        October   490179   1 (8)
	        October 1.0000
	          Other 0.7500
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	              - 0.0000
	            the 0.0000
	       Scotland 0.0000

           1900   490193 inf (6)
	           1990 1.0000
	           2005 0.8667
	              a 0.0000
	             pp 0.0000
	            the 0.0000
	           </S> 0.0000

           1905   490274 inf (10)
	           1995 1.0000
	             19 0.9091
	           2005 0.9091
	           2400 0.8182
	            the 0.7273
	              , 0.7273
	              " 0.7273
	           </S> 0.7273
	              a 0.7273
	              s 0.0000

            two   490281   1 (6)
	            two 1.0000
	              , 0.0000
	           </S> 0.0000
	             us 0.0000
	              a 0.0000
	              } 0.0000

        Li^dlow   490303   1 (12)
	         Ludlow 1.0000
	           Lilo 0.9091
	         Disney 0.0000
	              , 0.0000
	         future 0.0000
	           </S> 0.0000
	             us 0.0000
	            the 0.0000
	              a 0.0000
	         London 0.0000
	     Shrewsbury 0.0000
	          Lidol 0.0000

     Shropshire   490312   1 (8)
	     Shropshire 1.0000
	        through 0.5385
	      therefore 0.4615
	            the 0.3846
	            who 0.3846
	            and 0.0000
	           </S> 0.0000
	              a 0.0000

           1903   490327 inf (9)
	           2003 1.0000
	           1880 0.9167
	              1 0.9167
	            the 0.8333
	              a 0.8333
	             us 0.8333
	              , 0.8333
	           </S> 0.8333
	        writing 0.0000

            and   490334   1 (5)
	            and 1.0000
	           </S> 0.0000
	              , 0.0000
	              } 0.0000
	            arz 0.0000

        Fawilx-   490416   1 (9)
	           Fail 1.0000
	        Fawsley 1.0000
	         Flawil 1.0000
	          Tawil 1.0000
	         Family 1.0000
	              a 0.5000
	           </S> 0.3333
	              , 0.3333
	              " 0.0000

           TURD   490424 inf (7)
	           TURN 1.0000
	            TUR 1.0000
	            The 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	          DUART 0.0000

             ID   490429   1 (6)
	             ID 1.0000
	             In 0.8750
	             us 0.0000
	              , 0.0000
	              ! 0.0000
	           </S> 0.0000

              .   490431   1 (7)
	              . 1.0000
	              , 0.9375
	              : 0.9375
	             us 0.8750
	            the 0.0000
	           </S> 0.0000
	            and 0.0000

             -E   490433 inf (9)
	             -- 1.0000
	              - 1.0000
	              " 0.9286
	              , 0.9286
	              / 0.9286
	              a 0.9286
	             of 0.9286
	              s 0.0000
	           </S> 0.0000

              .   490435   1 (5)
	              . 1.0000
	              , 0.9286
	             us 0.8571
	            the 0.0000
	           </S> 0.0000

    5«//rtw//r-   490438 inf (8)
	      Therefore 1.0000
	           </S> 0.6667
	              / 0.6667
	          First 0.6667
	              - 0.6667
	              " 0.3333
	              , 0.3333
	              I 0.3333

              5   490450 inf (4)
	              , 1.0000
	             us 0.9286
	            the 0.0000
	           </S> 0.0000

           ILY^   490458   1 (9)
	            ILY 1.0000
	           ILYA 1.0000
	             'm 0.0000
	          think 0.0000
	              K 0.0000
	             In 0.0000
	              , 0.0000
	              ) 0.0000
	           </S> 0.0000

              .   490462   1 (7)
	              . 1.0000
	              , 0.9000
	              L 0.9000
	             us 0.8000
	            not 0.0000
	            the 0.0000
	           </S> 0.0000

      Sardinian   490469   1 (8)
	      Sardinian 1.0000
	       Sardinia 0.9000
	              - 0.0000
	       National 0.0000
	              / 0.0000
	           </S> 0.0000
	      Passerine 0.0000
	     Associated 0.0000

        Svlviii   490489   1 (11)
	          Silvi 1.0000
	           Siii 1.0000
	         Sylvia 1.0000
	          Elvii 1.0000
	           viii 1.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	        Svilici 0.0000
	              / 0.0000
	              " 0.0000

viclanoccpliaUx   490497 inf (9)
	         Llopis 1.0000
	     particular 1.0000
	        Atlanta 1.0000
	      client.pl 1.0000
	   Applications 0.7500
	      configure 0.5000
	              a 0.2500
	              , 0.0000
	           </S> 0.0000

              ,   490512 inf (3)
	             of 1.0000
	             us 1.0000
	            the 0.0000

           GmEL   490514 inf (8)
	            GEL 1.0000
	           GTEL 1.0000
	             Gm 0.9286
	              i 0.0000
	          BimEL 0.0000
	            Get 0.0000
	             pp 0.0000
	            the 0.0000

              .   490518   1 (5)
	              . 1.0000
	              , 0.8571
	             us 0.7143
	           </S> 0.0000
	            the 0.0000

              A   490521   1 (7)
	              A 1.0000
	              " 0.9167
	              , 0.9167
	           This 0.0000
	             us 0.0000
	            the 0.0000
	           </S> 0.0000

           1907   490565 inf (8)
	           1900 1.0000
	           1970 0.9474
	           2005 0.8947
	            the 0.8421
	           </S> 0.8421
	              a 0.8421
	              ) 0.8421
	      therefore 0.0000

         Parkin   490600   1 (10)
	         Parkin 1.0000
	           Park 0.8333
	              , 0.0000
	        carrier 0.0000
	      Jefferson 0.0000
	           </S> 0.0000
	              a 0.0000
	    Kirkpatrick 0.0000
	         unique 0.0000
	          Parus 0.0000

            Esq   490608   1 (11)
	            Esq 1.0000
	            use 0.8750
	             E. 0.8750
	             ed 0.0000
	              a 0.0000
	            the 0.0000
	           Phys 0.0000
	              , 0.0000
	           </S> 0.0000
	            and 0.0000
	             pp 0.0000

          F.Z.S   490614 inf (9)
	           FZNS 1.0000
	            FZS 1.0000
	             FZ 0.9444
	              . 0.0000
	             pp 0.0000
	          <UNK> 0.0000
	            the 0.0000
	           </S> 0.0000
	              i 0.0000

              .   490619   1 (6)
	              . 1.0000
	              / 0.8571
	              , 0.8571
	             us 0.7143
	           </S> 0.0000
	            the 0.0000

           Wren   490639   1 (10)
	           Wren 1.0000
	           free 0.8462
	              - 0.0000
	              a 0.0000
	           </S> 0.0000
	              ) 0.0000
	              , 0.0000
	      Cormorant 0.0000
	        Burgers 0.0000
	            arz 0.0000

    Breconshire   490675   1 (9)
	    Breconshire 1.0000
	       December 0.3846
	            the 0.3077
	         Canada 0.0000
	              , 0.0000
	              a 0.0000
	             us 0.0000
	           turn 0.0000
	           </S> 0.0000

           1899   490706 inf (7)
	           1898 1.0000
	           1989 0.9333
	              a 0.0000
	           </S> 0.0000
	             pp 0.0000
	            the 0.0000
	           2005 0.0000

              A   490713   1 (6)
	              A 1.0000
	              " 0.8889
	              , 0.8889
	            the 0.0000
	           </S> 0.0000
	             us 0.0000

           1905   490784 inf (8)
	           1909 1.0000
	           1950 0.9474
	           2005 0.9474
	              a 0.8421
	              ( 0.8421
	            the 0.8421
	           </S> 0.8421
	      therefore 0.0000

            one   490844   1 (6)
	            one 1.0000
	              , 0.0000
	              } 0.0000
	              a 0.0000
	             us 0.0000
	           </S> 0.0000

           1906   490903 inf (9)
	           1996 1.0000
	           1990 0.9474
	           1960 0.9474
	           2005 0.8947
	              a 0.8421
	           </S> 0.8421
	            the 0.8421
	              ( 0.8421
	      therefore 0.0000

         Tresco   490953   1 (10)
	         Tresco 1.0000
	              . 0.0000
	              , 0.0000
	          These 0.0000
	          <UNK> 0.0000
	           </S> 0.0000
	             us 0.0000
	            the 0.0000
	              a 0.0000
	           your 0.0000

         Scilly   490961   1 (10)
	         Scilly 1.0000
	         Social 0.0000
	              - 0.0000
	          <UNK> 0.0000
	           PRES 0.0000
	              s 0.0000
	           </S> 0.0000
	            TSO 0.0000
	              a 0.0000
	       Compiled 0.0000

            ist   490981 inf (9)
	            ist 1.0000
	              , 0.0000
	           2005 0.0000
	              1 0.0000
	           </S> 0.0000
	            its 0.0000
	             iu 0.0000
	              4 0.0000
	              a 0.0000

           1905   490986 inf (9)
	           1995 1.0000
	           2005 0.9333
	           1950 0.9333
	           1990 0.9333
	              a 0.8000
	            the 0.8000
	           </S> 0.8000
	          <UNK> 0.0000
	             pp 0.0000

        Family^   490992   1 (6)
	         Family 1.0000
	              , 0.0000
	              " 0.0000
	              ) 0.0000
	           </S> 0.0000
	              a 0.0000

             Ti   491000 inf (6)
	             Ti 1.0000
	             To 0.9286
	              , 0.0000
	             iu 0.0000
	              a 0.0000
	           </S> 0.0000

             7^   491003 inf (5)
	              - 1.0000
	              , 1.0000
	             us 1.0000
	             of 1.0000
	           </S> 0.0000

           DILL   491006 inf (7)
	            DIL 1.0000
	           DILG 1.0000
	            DSL 0.9167
	              , 0.0000
	         DILLIC 0.0000
	           </S> 0.0000
	              a 0.0000

             -E   491011 inf (7)
	             -- 1.0000
	              - 1.0000
	             us 0.8889
	              , 0.8889
	             of 0.8889
	              M 0.8889
	           </S> 0.0000

              .   491013 inf (5)
	             J. 1.0000
	              , 1.0000
	             us 0.8889
	            the 0.0000
	           </S> 0.0000

 SuhJaniiiy-SYL   491016 inf (9)
	      Searching 1.0000
	          Thank 1.0000
	      ChangeLog 1.0000
	           </S> 0.3333
	              - 0.3333
	              " 0.0000
	              , 0.0000
	              / 0.0000
	              I 0.0000

              J   491031 inf (7)
	              , 1.0000
	             NJ 1.0000
	             JR 1.0000
	             JJ 1.0000
	             us 0.0000
	            the 0.0000
	           </S> 0.0000

           7IA\   491033 inf (9)
	             IA 1.0000
	           RIAA 1.0000
	           AIAA 1.0000
	              K 0.0000
	           </S> 0.0000
	              A 0.0000
	          Gallo 0.0000
	              , 0.0000
	            FAQ 0.0000

             E.   491038   1 (8)
	              . 1.0000
	              E 1.0000
	             of 0.8750
	              a 0.8750
	              , 0.8750
	             us 0.0000
	           </S> 0.0000
	              L 0.0000

        PallAvS   491042 inf (9)
	        Pallavi 1.0000
	        Pallava 1.0000
	         Pallav 1.0000
	           Pall 0.8889
	              , 0.0000
	          Miers 0.0000
	              I 0.0000
	           </S> 0.0000
	           Hall 0.0000

              '   491049 inf (5)
	             's 1.0000
	              , 1.0000
	             us 0.8889
	           </S> 0.0000
	            the 0.0000

              .   491066   1 (6)
	              . 1.0000
	              - 0.9167
	              , 0.9167
	             us 0.8333
	            the 0.0000
	           </S> 0.0000

   Phy/Iosiopus   491069   1 (6)
	   Phylloscopus 1.0000
	    Phyprosopus 1.0000
	           </S> 0.1111
	              a 0.0000
	              " 0.0000
	              , 0.0000

  f^ivrcgit/iis   491082 inf (9)
	        drivers 1.0000
	        scripts 1.0000
	             is 0.8333
	            src 0.8333
	           </S> 0.6667
	              , 0.0000
	              a 0.0000
	          <UNK> 0.0000
	vareSelskap.cgi 0.0000

              .   491095 inf (3)
	             of 1.0000
	             us 1.0000
	            the 0.0000

         single   491098 inf (6)
	         single 1.0000
	              " 0.0000
	              , 0.0000
	              / 0.0000
	              I 0.0000
	           </S> 0.0000

    Chiffchaffs   491185   1 (6)
	    Chiffchaffs 1.0000
	      different 0.3846
	             of 0.2308
	              a 0.2308
	           </S> 0.0000
	              , 0.0000

        visited   491197   1 (8)
	        visited 1.0000
	         United 0.7273
	              , 0.0000
	            the 0.0000
	              a 0.0000
	           </S> 0.0000
	             in 0.0000
	             us 0.0000

        between   491219   1 (6)
	        between 1.0000
	           </S> 0.0000
	              a 0.0000
	             in 0.0000
	              , 0.0000
	             of 0.0000

          i5tli   491233 inf (10)
	          ixtli 1.0000
	           Atli 0.8889
	           into 0.7778
	              , 0.0000
	           itil 0.0000
	              a 0.0000
	           </S> 0.0000
	              1 0.0000
	            and 0.0000
	           2005 0.0000

           1904   491249 inf (9)
	           1999 1.0000
	           2005 0.9091
	            and 0.8182
	           </S> 0.8182
	              a 0.8182
	            the 0.8182
	              ( 0.8182
	              s 0.8182
	          which 0.0000

             in   491255   1 (7)
	             in 1.0000
	              a 0.0000
	           </S> 0.0000
	              } 0.0000
	             iu 0.0000
	              , 0.0000
	             d. 0.0000

          3'ear   491274   1 (10)
	            ear 1.0000
	           year 1.0000
	           rear 1.0000
	           time 0.0000
	           </S> 0.0000
	              a 0.0000
	             of 0.0000
	              , 0.0000
	           name 0.0000
	              . 0.0000

            one   491280   1 (7)
	            one 1.0000
	             us 0.0000
	             it 0.0000
	              . 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000

        Tnlloch   491308   1 (9)
	        Tulloch 1.0000
	       Benlloch 0.9000
	            and 0.0000
	              , 0.0000
	           </S> 0.0000
	       Kavulich 0.0000
	         Taylor 0.0000
	             C. 0.0000
	              a 0.0000

             at   491316   1 (6)
	             at 1.0000
	              A 0.0000
	           </S> 0.0000
	             II 0.0000
	              , 0.0000
	            arz 0.0000

           Ma}^   491335   1 (9)
	            May 1.0000
	             Ma 1.0000
	        January 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	            the 0.0000
	           lava 0.0000
	            Maa 0.0000

           27th   491340 inf (7)
	             27 1.0000
	           with 1.0000
	           </S> 0.0000
	              a 0.0000
	           site 0.0000
	              , 0.0000
	          piece 0.0000

         Family   491378   1 (7)
	         Family 1.0000
	              " 0.0000
	              a 0.0000
	           </S> 0.0000
	              / 0.0000
	              , 0.0000
	              s 0.0000

       TURDID.F   491386 inf (12)
	         TURYID 1.0000
	          TDIDF 1.0000
	            The 0.7143
	             to 0.6429
	              s 0.6429
	           </S> 0.6429
	              , 0.6429
	              a 0.6429
	            rev 0.0000
	           side 0.0000
	            Vol 0.0000
	              p 0.0000

              .   491394   1 (6)
	              . 1.0000
	              , 0.9167
	              - 0.9167
	             us 0.8333
	           </S> 0.0000
	            the 0.0000

      Subjaimly   491397   1 (5)
	      Subfamily 1.0000
	              , 0.3333
	           </S> 0.3333
	              I 0.3333
	              " 0.3333

           -SYL   491407 inf (7)
	           WSYL 1.0000
	            SYL 1.0000
	              , 0.0000
	            USA 0.0000
	      configure 0.0000
	              a 0.0000
	           </S> 0.0000

              I   491412 inf (6)
	             In 1.0000
	             MI 1.0000
	             II 1.0000
	             of 0.5000
	             us 0.0000
	            the 0.0000

          IIN.E   491414   1 (10)
	           IINS 1.0000
	           INEE 1.0000
	            IIN 1.0000
	            III 0.8750
	          think 0.0000
	           </S> 0.0000
	              J 0.0000
	           said 0.0000
	              , 0.0000
	             'm 0.0000

              .   491419   1 (7)
	              . 1.0000
	              , 0.9000
	              " 0.9000
	             us 0.8000
	           </S> 0.0000
	            the 0.0000
	            not 0.0000

  Phy//oscop!is   491448   1 (6)
	   Phylloscopus 1.0000
	              / 0.1111
	           </S> 0.1111
	              I 0.0000
	              , 0.0000
	              " 0.0000

        tristis   491462   1 (6)
	        tristis 1.0000
	              , 0.0000
	        trusted 0.0000
	      configure 0.0000
	              a 0.0000
	           </S> 0.0000

          BlyTH   491471 inf (8)
	          Blyth 1.0000
	            Bly 1.0000
	            Buy 0.9231
	             pp 0.0000
	            the 0.0000
	        PolyTHF 0.0000
	              i 0.0000
	           Baya 0.0000

              .   491476   1 (5)
	              . 1.0000
	              , 0.8571
	             us 0.7143
	           </S> 0.0000
	            the 0.0000

              N   491479 inf (10)
	              / 1.0000
	             IN 1.0000
	             No 1.0000
	              " 1.0000
	              , 1.0000
	             NN 1.0000
	           This 0.0000
	             us 0.0000
	            the 0.0000
	           </S> 0.0000

        example   491481   1 (6)
	        example 1.0000
	              I 0.0000
	              / 0.0000
	           </S> 0.0000
	              ) 0.0000
	              , 0.0000

     lighthonse   491507   1 (9)
	     lighthouse 1.0000
	     lightcones 0.8333
	         little 0.5833
	           time 0.4167
	              , 0.0000
	       discount 0.0000
	           shot 0.0000
	          major 0.0000
	           </S> 0.0000

            off   491518   1 (6)
	            off 1.0000
	             of 0.9167
	             us 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000

         Family   491544   1 (6)
	         Family 1.0000
	           </S> 0.0000
	              a 0.0000
	              / 0.0000
	              , 0.0000
	              " 0.0000

       TURDIL)^   491552 inf (12)
	              D 1.0000
	              ) 1.0000
	            The 1.0000
	              a 0.9000
	              , 0.9000
	              s 0.9000
	           </S> 0.9000
	             to 0.9000
	            rev 0.0000
	           side 0.0000
	              p 0.0000
	            Vol 0.0000

              .   491560   1 (6)
	              . 1.0000
	              , 0.9167
	              - 0.9167
	             us 0.8333
	           </S> 0.0000
	            the 0.0000

     Subfamily-   491563   1 (5)
	      Subfamily 1.0000
	              , 0.1000
	              " 0.1000
	              I 0.1000
	           </S> 0.1000

            SYL   491574 inf (7)
	            SYL 1.0000
	            See 0.8571
	              , 0.0000
	      configure 0.0000
	             us 0.0000
	              a 0.0000
	           </S> 0.0000

              I   491578   1 (7)
	              I 1.0000
	              , 0.9000
	              - 0.9000
	           </S> 0.0000
	             us 0.0000
	          canal 0.0000
	            the 0.0000

         'IIN.E   491580 inf (10)
	           EINE 1.0000
	            IIN 1.0000
	         PRINCE 1.0000
	             'm 0.7143
	           said 0.5714
	           </S> 0.5714
	            and 0.5714
	              , 0.5714
	              J 0.0000
	          think 0.0000

              .   491586   1 (7)
	              . 1.0000
	              , 0.9000
	              " 0.9000
	             us 0.8000
	           </S> 0.0000
	            the 0.0000
	            not 0.0000

       Greenish   491593   1 (8)
	       Greenish 1.0000
	              X 0.0000
	       Whomping 0.0000
	              / 0.0000
	           </S> 0.0000
	          Great 0.0000
	              - 0.0000
	      Territory 0.0000

         Willow   491602   1 (9)
	         Willow 1.0000
	         Yellow 0.7778
	          Ahead 0.0000
	           </S> 0.0000
	        Windows 0.0000
	              , 0.0000
	              I 0.0000
	            Rec 0.0000
	             of 0.0000

              .   491617   1 (6)
	              . 1.0000
	              - 0.9167
	              , 0.9167
	             us 0.8333
	            the 0.0000
	           </S> 0.0000

  Phylloscopiis   491620   1 (6)
	   Phylloscopus 1.0000
	 Phylloscopidae 0.9091
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	              " 0.0000

     viridaiius   491634 inf (10)
	     viridariis 1.0000
	     viridarium 1.0000
	      viridamus 1.0000
	        viridas 0.9091
	      viridarii 0.9091
	         Friday 0.6364
	              a 0.3636
	              , 0.0000
	      configure 0.0000
	           </S> 0.0000

              ,   491644 inf (3)
	             of 1.0000
	             us 1.0000
	            the 0.0000

          Blvth   491646 inf (6)
	          Blyth 1.0000
	            Blv 0.9231
	            But 0.0000
	             pp 0.0000
	            the 0.0000
	              i 0.0000

              .   491651   1 (5)
	              . 1.0000
	              , 0.8571
	             us 0.7143
	           </S> 0.0000
	            the 0.0000

              a   491718   1 (6)
	              a 1.0000
	              } 0.8750
	              , 0.8750
	           </S> 0.0000
	            the 0.0000
	             us 0.0000

           Sule   491734   1 (10)
	           Sule 1.0000
	           Site 0.7778
	            the 0.0000
	             of 0.0000
	              s 0.0000
	            out 0.0000
	           </S> 0.0000
	              . 0.0000
	              a 0.0000
	              , 0.0000

     Lighthouse   491746   1 (6)
	     Lighthouse 1.0000
	           </S> 0.0000
	       Sumburgh 0.0000
	             C. 0.0000
	              a 0.0000
	              , 0.0000

Siitherlandshire   491758   1 (9)
	Sutherlandshire 1.0000
	      Australia 0.2857
	            The 0.1429
	           </S> 0.0000
	              s 0.0000
	          <UNK> 0.0000
	              a 0.0000
	           PRES 0.0000
	              - 0.0000

           1902   491795 inf (7)
	           1901 1.0000
	           2005 0.8667
	              a 0.0000
	             pp 0.0000
	              ) 0.0000
	           </S> 0.0000
	            the 0.0000

            Two   491801   1 (8)
	            Two 1.0000
	            Top 0.7778
	             us 0.0000
	              / 0.0000
	              a 0.0000
	              " 0.0000
	              , 0.0000
	           </S> 0.0000

       couiinou   491818 inf (13)
	       coutiaou 1.0000
	        cominou 1.0000
	        counion 0.8889
	           most 0.0000
	              a 0.0000
	       Whomping 0.0000
	              . 0.0000
	         couina 0.0000
	        company 0.0000
	           </S> 0.0000
	       couinons 0.0000
	              , 0.0000
	          major 0.0000

         Willow   491827   1 (8)
	         Willow 1.0000
	              a 0.0000
	              , 0.0000
	              . 0.0000
	            non 0.0000
	           </S> 0.0000
	        Windows 0.0000
	             of 0.0000

          fouud   491847   1 (8)
	           foud 1.0000
	          found 1.0000
	            fou 0.8889
	            not 0.0000
	         killed 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000

      Shetlauds   491890   1 (10)
	      Shetlands 1.0000
	       Shetland 0.9091
	    Netherlands 0.6364
	          State 0.5455
	          world 0.4545
	           </S> 0.0000
	              , 0.0000
	            war 0.0000
	           same 0.0000
	             US 0.0000

             in   491900   1 (6)
	             in 1.0000
	             iu 0.0000
	              , 0.0000
	              a 0.0000
	             of 0.0000
	           </S> 0.0000

              -   491923   1 (7)
	              - 1.0000
	              , 0.9231
	             of 0.8462
	             us 0.8462
	             DT 0.0000
	            the 0.0000
	           </S> 0.0000

         Fnmtlx   491986   1 (8)
	         Family 1.0000
	         Ccnmtl 1.0000
	            Fnm 1.0000
	         Fantax 1.0000
	              " 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000

              -   491993   1 (5)
	              - 1.0000
	              , 0.9333
	             us 0.8667
	            the 0.0000
	           </S> 0.0000

             TL   491995 inf (8)
	             TL 1.0000
	             To 0.9091
	              a 0.0000
	              . 0.0000
	           mail 0.0000
	              s 0.0000
	           </S> 0.0000
	             to 0.0000

          ^RDID   491998 inf (10)
	          ARDIS 1.0000
	            DID 1.0000
	            RDI 1.0000
	            DVD 0.9091
	              - 0.0000
	              a 0.0000
	              , 0.0000
	              ) 0.0000
	             us 0.0000
	           </S> 0.0000

              .   492003   1 (5)
	              . 1.0000
	              , 0.9231
	             us 0.8462
	            the 0.0000
	           </S> 0.0000

             E.   492005 inf (8)
	             El 1.0000
	              . 1.0000
	              " 0.9091
	             of 0.9091
	              , 0.9091
	              I 0.9091
	             us 0.0000
	           </S> 0.0000

 Sii/^/,u>n/\-S   492009 inf (6)
	           Side 1.0000
	           </S> 1.0000
	          Smith 1.0000
	              , 0.5000
	             Am 0.0000
	              A 0.0000

              J   492024   1 (7)
	             NJ 1.0000
	             J. 1.0000
	             JJ 1.0000
	              , 1.0000
	           </S> 0.0000
	            the 0.0000
	             us 0.0000

              Z   492026 inf (9)
	              K 1.0000
	             AZ 1.0000
	              & 1.0000
	              , 1.0000
	             ZA 1.0000
	             ZZ 1.0000
	             us 0.0000
	            the 0.0000
	           </S> 0.0000

            VLV   492030   1 (9)
	            VLV 1.0000
	            DVD 0.0000
	              a 0.0000
	              , 0.0000
	              K 0.0000
	           </S> 0.0000
	             us 0.0000
	            Med 0.0000
	      Financial 0.0000

              E   492035 inf (9)
	              / 1.0000
	             El 1.0000
	              " 1.0000
	              , 1.0000
	             RE 1.0000
	             EE 1.0000
	            the 0.0000
	           </S> 0.0000
	             us 0.0000

         Rufous   492043   1 (8)
	         Rufous 1.0000
	          rufus 0.8333
	           four 0.7500
	         Rudolf 0.0000
	              - 0.0000
	              / 0.0000
	           </S> 0.0000
	     Associated 0.0000

              .   492057   1 (5)
	              . 1.0000
	              , 0.9167
	             us 0.8333
	           </S> 0.0000
	            the 0.0000

          Aidon   492060   1 (11)
	          Aedon 1.0000
	          Aidoo 1.0000
	           Aido 1.0000
	         Aidone 1.0000
	              a 0.0000
	           </S> 0.0000
	          Adino 0.0000
	              , 0.0000
	              " 0.0000
	              / 0.0000
	          Audio 0.0000

     (^alcnimAs   492066 inf (9)
	           libs 1.0000
	        scripts 1.0000
	   Applications 0.8750
	        general 0.7500
	              a 0.7500
	           </S> 0.0000
	      configure 0.0000
	  mkinstalldirs 0.0000
	              , 0.0000

              ,   492076 inf (5)
	             us 1.0000
	             of 1.0000
	            the 0.0000
	           </S> 0.0000
	            Big 0.0000

           Temm   492078 inf (8)
	          Temmu 1.0000
	           Temp 1.0000
	           Teme 1.0000
	            Tem 1.0000
	             pp 0.0000
	            The 0.0000
	              i 0.0000
	            the 0.0000

           THIS   492085   1 (5)
	           THIS 1.0000
	           </S> 0.0000
	              , 0.0000
	              I 0.0000
	              " 0.0000

           rare   492090   1 (8)
	           rare 1.0000
	            are 0.9167
	           </S> 0.0000
	              A 0.0000
	             IS 0.0000
	              , 0.0000
	             is 0.0000
	            arz 0.0000

         Family   492152   1 (5)
	         Family 1.0000
	              , 0.0000
	           </S> 0.0000
	              " 0.0000
	              a 0.0000

       TURDID.E   492160 inf (11)
	         TURYID 1.0000
	            The 0.7143
	              s 0.6429
	              , 0.6429
	             to 0.6429
	              a 0.6429
	           </S> 0.6429
	            rev 0.0000
	           side 0.0000
	              p 0.0000
	            Vol 0.0000

              .   492168   1 (6)
	              . 1.0000
	              , 0.9167
	              - 0.9167
	             us 0.8333
	           </S> 0.0000
	            the 0.0000

 Siih/auiilySYL   492171 inf (9)
	          While 1.0000
	          Since 0.6667
	           </S> 0.6667
	           Only 0.6667
	      Searching 0.6667
	              / 0.3333
	              I 0.0000
	              " 0.0000
	              , 0.0000

              I   492186 inf (7)
	             II 1.0000
	              , 1.0000
	             MI 1.0000
	             In 1.0000
	             us 0.0000
	            the 0.0000
	           </S> 0.0000

          IIN^E   492188   1 (10)
	           IINS 1.0000
	           INEE 1.0000
	            IIN 1.0000
	            III 0.8750
	              , 0.0000
	          think 0.0000
	              J 0.0000
	           said 0.0000
	           </S> 0.0000
	             'm 0.0000

              .   492193   1 (7)
	              . 1.0000
	              , 0.9000
	              " 0.9000
	             us 0.8000
	           </S> 0.0000
	            the 0.0000
	            not 0.0000

        Warbler   492212   1 (11)
	        Warbler 1.0000
	              a 0.0000
	        problem 0.0000
	           </S> 0.0000
	              , 0.0000
	             by 0.0000
	     Securities 0.0000
	              - 0.0000
	              ) 0.0000
	             us 0.0000
	          Sound 0.0000

              .   492219   1 (5)
	              . 1.0000
	              , 0.9167
	             us 0.8333
	            the 0.0000
	           </S> 0.0000

         Acdoii   492222   5 (12)
	         Ardoin 1.0000
	           Acii 1.0000
	         Acilii 1.0000
	          Audio 0.8889
	           </S> 0.0000
	         Acodia 0.0000
	              " 0.0000
	              , 0.0000
	              / 0.0000
	              a 0.0000
	            Acd 0.0000
	          Aedon 0.0000

     fnmiliaris   492229   1 (7)
	     familiaris 1.0000
	        miliari 0.8462
	       miliaria 0.8462
	          <UNK> 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000

              .   492239 inf (3)
	             of 1.0000
	             us 1.0000
	            the 0.0000

              A   492242   1 (7)
	              A 1.0000
	              " 0.9167
	              , 0.9167
	           This 0.0000
	             us 0.0000
	            the 0.0000
	           </S> 0.0000

           1907   492288 inf (8)
	           1997 1.0000
	           1970 0.9333
	           1990 0.9333
	           2005 0.8667
	             pp 0.0000
	              a 0.0000
	            the 0.0000
	           </S> 0.0000

         Family   492295   1 (6)
	         Family 1.0000
	              " 0.0000
	              / 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000

           TURD   492304 inf (12)
	            TUR 1.0000
	           TURN 1.0000
	              s 0.0000
	          DUART 0.0000
	           </S> 0.0000
	       friendly 0.0000
	              v 0.0000
	            The 0.0000
	              > 0.0000
	              a 0.0000
	              , 0.0000
	             to 0.0000

             ID   492309   1 (9)
	             ID 1.0000
	             In 0.9167
	              ' 0.0000
	           </S> 0.0000
	              , 0.0000
	             us 0.0000
	              - 0.0000
	              a 0.0000
	         domain 0.0000

              ^   492312 inf (7)
	              , 1.0000
	              : 1.0000
	             us 0.9333
	             by 0.9333
	          83701 0.0000
	           </S> 0.0000
	            the 0.0000

              .   492313   1 (7)
	              . 1.0000
	              , 0.8750
	          <UNK> 0.0000
	           </S> 0.0000
	           7ego 0.0000
	             us 0.0000
	            the 0.0000

     Subfamily-   492316   1 (7)
	      Subfamily 1.0000
	              a 0.1111
	              , 0.0000
	              / 0.0000
	           </S> 0.0000
	              " 0.0000
	              s 0.0000

            SYL   492327 inf (7)
	            SYL 1.0000
	            See 0.8571
	           </S> 0.0000
	              , 0.0000
	             us 0.0000
	              a 0.0000
	            org 0.0000

              I   492331   1 (7)
	              I 1.0000
	              , 0.9000
	              - 0.9000
	           </S> 0.0000
	             us 0.0000
	          canal 0.0000
	            the 0.0000

           IIN^   492333   1 (9)
	           IINS 1.0000
	            IIN 1.0000
	             IN 0.9000
	           said 0.0000
	             'm 0.0000
	              , 0.0000
	              J 0.0000
	           </S> 0.0000
	          think 0.0000

              .   492337   1 (6)
	              . 1.0000
	              , 0.8750
	             us 0.7500
	           </S> 0.0000
	            the 0.0000
	            not 0.0000

          Radde   492340   1 (7)
	          Radde 1.0000
	           Rate 0.8182
	             It 0.0000
	              I 0.0000
	              , 0.0000
	           </S> 0.0000
	              " 0.0000

             's   492345   1 (6)
	             's 1.0000
	             is 0.9286
	             us 0.9286
	              , 0.8571
	              a 0.8571
	           </S> 0.0000

     Lusciniola   492363 inf (7)
	       Luscinia 1.0000
	       luscinia 0.8889
	         Listen 0.4444
	              a 0.2222
	           </S> 0.1111
	              , 0.1111
	              " 0.1111

       sckwarzi   492374   1 (7)
	       schwarzi 1.0000
	          swarz 0.8333
	        Schwarz 0.8333
	              a 0.5000
	              , 0.0000
	           </S> 0.0000
	      configure 0.0000

              ,   492382 inf (3)
	             of 1.0000
	             us 1.0000
	            the 0.0000

          Radde   492384   1 (5)
	          Radde 1.0000
	           made 0.8571
	            the 0.0000
	              i 0.0000
	             pp 0.0000

              A   492392   1 (7)
	              A 1.0000
	              " 0.9167
	              , 0.9167
	           This 0.0000
	             us 0.0000
	            the 0.0000
	           </S> 0.0000

            Mr.   492477   1 (7)
	            Mr. 1.0000
	             My 0.8333
	              a 0.0000
	            the 0.0000
	           </S> 0.0000
	            arz 0.0000
	              , 0.0000

         Haigli   492481 inf (15)
	          Haili 1.0000
	         Haigui 1.0000
	         Haugli 1.0000
	         Hagali 0.9167
	           Haig 0.9167
	        Haigler 0.9167
	       Chairman 0.0000
	        Speaker 0.0000
	           High 0.0000
	           </S> 0.0000
	              , 0.0000
	      merchants 0.0000
	     Bertenshaw 0.0000
	              a 0.0000
	             J. 0.0000

              .   492487   1 (6)
	              . 1.0000
	              , 0.8889
	             us 0.7778
	            the 0.0000
	           </S> 0.0000
	          Happy 0.0000

         Family   492489   1 (6)
	         Family 1.0000
	              , 0.0000
	           </S> 0.0000
	              I 0.0000
	              / 0.0000
	              " 0.0000

             --   492496   1 (6)
	              - 1.0000
	             of 0.9167
	             us 0.9167
	              , 0.9167
	            Guy 0.0000
	           </S> 0.0000

             Tl   492499 inf (9)
	             Tl 1.0000
	             To 0.9231
	              , 0.0000
	          World 0.0000
	          <UNK> 0.0000
	           </S> 0.0000
	             us 0.0000
	              L 0.0000
	              a 0.0000

              '   492502   1 (7)
	              ' 1.0000
	              - 0.9375
	              , 0.9375
	             -- 0.8750
	             us 0.8750
	            the 0.0000
	           </S> 0.0000

           KDID   492503 inf (10)
	           KDIC 1.0000
	            KDI 1.0000
	            DVD 0.9091
	              s 0.0000
	              , 0.0000
	           </S> 0.0000
	              ) 0.0000
	       Estrange 0.0000
	           KDDI 0.0000
	              a 0.0000

              .   492507   1 (7)
	              . 1.0000
	              ' 0.8571
	              , 0.8571
	             us 0.7143
	           </S> 0.0000
	            the 0.0000
	           2004 0.0000

             E.   492509 inf (9)
	             El 1.0000
	              . 1.0000
	              , 0.9091
	              " 0.9091
	             of 0.9091
	              / 0.9091
	              I 0.9091
	             us 0.0000
	           </S> 0.0000

 Su/ifaniuy-SVL   492513 inf (10)
	        Stanley 1.0000
	    Publication 0.7500
	           </S> 0.5000
	            and 0.5000
	              / 0.2500
	              - 0.2500
	              ' 0.0000
	  config.status 0.0000
	              A 0.0000
	              , 0.0000

              I   492528 inf (7)
	             MI 1.0000
	              , 1.0000
	             II 1.0000
	             In 1.0000
	           </S> 0.0000
	            the 0.0000
	             us 0.0000

              '   492530 inf (5)
	             'm 1.0000
	              , 1.0000
	             us 0.8889
	           </S> 0.0000
	            the 0.0000

           ILWF   492531 inf (11)
	           ILWU 1.0000
	            ILW 1.0000
	              a 0.0000
	              ) 0.0000
	            not 0.0000
	           IWFL 0.0000
	             it 0.0000
	           </S> 0.0000
	              , 0.0000
	              s 0.0000
	             In 0.0000

              .   492535   1 (6)
	              . 1.0000
	              ' 0.9167
	              , 0.9167
	             us 0.8333
	           </S> 0.0000
	            the 0.0000

       Cetti'vS   492538 inf (8)
	          Cetti 1.0000
	        Settiva 1.0000
	         Cettia 1.0000
	              / 0.3750
	              I 0.3750
	              " 0.3750
	           </S> 0.3750
	              , 0.3750

        Warrlkr   492547 inf (8)
	        Warrior 1.0000
	           Warr 0.9333
	           </S> 0.0000
	              , 0.0000
	          <UNK> 0.0000
	         Warral 0.0000
	              a 0.0000
	       Warkalki 0.0000

              .   492554 inf (3)
	             of 1.0000
	             us 1.0000
	            the 0.0000

         Cetfin   492557   3 (11)
	         Cetlin 1.0000
	          Cetin 1.0000
	        Jetfins 0.8889
	         Ceftin 0.8889
	         Cettia 0.8889
	              / 0.0000
	           </S> 0.0000
	              " 0.0000
	              , 0.0000
	              I 0.0000
	         Celtic 0.0000

         ccttii   492564 inf (12)
	         cuttie 1.0000
	          citii 1.0000
	         Vettii 1.0000
	        cutting 0.9167
	            cti 0.9167
	            tii 0.0000
	              , 0.0000
	      accattivi 0.0000
	              a 0.0000
	      configure 0.0000
	           </S> 0.0000
	         Cettia 0.0000

              ,   492570 inf (3)
	             of 1.0000
	             us 1.0000
	            the 0.0000

           Marm   492572   1 (6)
	           Marm 1.0000
	           More 0.8667
	              i 0.0000
	             pp 0.0000
	            the 0.0000
	            arz 0.0000

              .   492576   1 (6)
	              . 1.0000
	             .. 0.9000
	              , 0.9000
	             us 0.8000
	           </S> 0.0000
	            the 0.0000

              A   492579   1 (7)
	              A 1.0000
	              " 0.9167
	              , 0.9167
	           </S> 0.0000
	           This 0.0000
	             us 0.0000
	            the 0.0000

           Ma}'   492617   1 (9)
	             Ma 1.0000
	            May 1.0000
	              a 0.0000
	            the 0.0000
	              , 0.0000
	           lava 0.0000
	            Maa 0.0000
	        January 0.0000
	           </S> 0.0000

           12th   492622 inf (8)
	           16th 1.0000
	           with 0.8750
	             12 0.8750
	              , 0.0000
	              1 0.0000
	              a 0.0000
	           site 0.0000
	           </S> 0.0000

           1904   492628 inf (7)
	           1900 1.0000
	           2005 0.8667
	           </S> 0.8000
	              ) 0.0000
	             pp 0.0000
	              a 0.0000
	            the 0.0000

            One   492635   1 (8)
	            One 1.0000
	            one 0.8889
	           </S> 0.0000
	              " 0.0000
	              / 0.0000
	              a 0.0000
	              , 0.0000
	             us 0.0000

       Icterine   492654   1 (11)
	       Icterine 1.0000
	       Internet 0.7000
	              , 0.0000
	        present 0.0000
	              a 0.0000
	          major 0.0000
	           most 0.0000
	           </S> 0.0000
	         latter 0.0000
	            use 0.0000
	              . 0.0000

         Cromer   492683   1 (11)
	         Cromer 1.0000
	           home 0.0000
	             us 0.0000
	          night 0.0000
	              , 0.0000
	            the 0.0000
	         Center 0.0000
	            all 0.0000
	              a 0.0000
	           </S> 0.0000
	           your 0.0000

            one   492715   1 (7)
	            one 1.0000
	              , 0.0000
	            and 0.0000
	              } 0.0000
	              a 0.0000
	           </S> 0.0000
	             us 0.0000

            one   492752   1 (6)
	            one 1.0000
	              a 0.0000
	              , 0.0000
	              } 0.0000
	           </S> 0.0000
	             us 0.0000

      September   492783   1 (10)
	      September 1.0000
	       December 0.7000
	             it 0.0000
	              , 0.0000
	              a 0.0000
	         before 0.0000
	           </S> 0.0000
	          major 0.0000
	             to 0.0000
	             in 0.0000

            one   492801   1 (6)
	            one 1.0000
	              , 0.0000
	             us 0.0000
	           </S> 0.0000
	              a 0.0000
	              } 0.0000

           Cley   492813   1 (11)
	           Cley 1.0000
	           City 0.9167
	            the 0.0000
	           your 0.0000
	              a 0.0000
	           alba 0.0000
	           </S> 0.0000
	           home 0.0000
	           this 0.0000
	              , 0.0000
	            all 0.0000

        Holkham   492855   1 (11)
	        Holkham 1.0000
	           </S> 0.0000
	           home 0.0000
	              , 0.0000
	            the 0.0000
	           Home 0.0000
	           your 0.0000
	      Annapolis 0.0000
	            all 0.0000
	              a 0.0000
	             us 0.0000

            one   492884   1 (6)
	            one 1.0000
	              , 0.0000
	              } 0.0000
	              a 0.0000
	             us 0.0000
	           </S> 0.0000

          Knock   492905   1 (8)
	          Knock 1.0000
	              . 0.0000
	           </S> 0.0000
	           Town 0.0000
	           know 0.0000
	             of 0.0000
	              a 0.0000
	              , 0.0000

      Lightship   492911   1 (8)
	      Lightship 1.0000
	         Lights 0.7500
	              , 0.0000
	          Knock 0.0000
	           Road 0.0000
	              a 0.0000
	              - 0.0000
	           </S> 0.0000

      September   492922   1 (5)
	      September 1.0000
	            the 0.3636
	              " 0.0000
	              a 0.0000
	              , 0.0000

            one   492939   1 (6)
	            one 1.0000
	              } 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	             us 0.0000

           June   492961   1 (7)
	           June 1.0000
	            Jan 0.8462
	              , 0.0000
	            the 0.0000
	           </S> 0.0000
	              a 0.0000
	          Munia 0.0000

            one   492973   1 (6)
	            one 1.0000
	              } 0.0000
	              , 0.0000
	              a 0.0000
	             us 0.0000
	           </S> 0.0000

         Family   493049   1 (6)
	         Family 1.0000
	              / 0.0000
	              " 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000

        TURDID^   493057 inf (12)
	         TURYID 1.0000
	           TURI 0.9333
	            The 0.7333
	              a 0.6667
	           </S> 0.6667
	              , 0.6667
	             to 0.6667
	            rev 0.0000
	           side 0.0000
	              s 0.0000
	              p 0.0000
	            Vol 0.0000

              .   493064   1 (6)
	              . 1.0000
	              , 0.9167
	              - 0.9167
	             us 0.8333
	           </S> 0.0000
	            the 0.0000

     Subfamily-   493067   1 (5)
	      Subfamily 1.0000
	              , 0.1000
	              " 0.1000
	              I 0.1000
	           </S> 0.1000

            SYL   493078 inf (6)
	            SYL 1.0000
	            See 0.8571
	             us 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000

          VIIN^   493082 inf (8)
	            VII 1.0000
	           VIII 1.0000
	            VIN 1.0000
	              , 0.0000
	           </S> 0.0000
	          canal 0.0000
	              - 0.0000
	              I 0.0000

              .   493087   1 (5)
	              . 1.0000
	              , 0.9231
	             us 0.8462
	            the 0.0000
	           </S> 0.0000

      Melodious   493094 inf (8)
	      Melodinus 1.0000
	      melodious 1.0000
	              / 0.0000
	          Music 0.0000
	              - 0.0000
	      Passerine 0.0000
	           </S> 0.0000
	     Associated 0.0000

       Hypolais   493114   1 (7)
	       Hypolais 1.0000
	       Hypnosis 0.7273
	              " 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	              / 0.0000

     polyglolla   493123 inf (8)
	    polygonella 1.0000
	       polyglot 1.0000
	       polygala 1.0000
	           pool 0.7273
	      configure 0.4545
	              a 0.4545
	           </S> 0.0000
	              , 0.0000

              ,   493133 inf (3)
	             of 1.0000
	             us 1.0000
	            the 0.0000

         ViEILL   493135 inf (7)
	           VEIL 1.0000
	            ILL 0.9231
	         ViEWER 0.9231
	           with 0.7692
	              i 0.7692
	             pp 0.0000
	            the 0.0000

              .   493141   1 (5)
	              . 1.0000
	              , 0.8571
	             us 0.7143
	           </S> 0.0000
	            the 0.0000

             AN   493144   1 (9)
	             AN 1.0000
	             AM 0.9167
	             us 0.0000
	           This 0.0000
	              / 0.0000
	              " 0.0000
	              , 0.0000
	              I 0.0000
	           </S> 0.0000

        example   493147   1 (7)
	        example 1.0000
	           </S> 0.0000
	              E 0.0000
	      EMERGENCY 0.0000
	              , 0.0000
	       document 0.0000
	            ACT 0.0000

        Burwash   493171   1 (11)
	        Burwash 1.0000
	              , 0.0000
	           your 0.0000
	           </S> 0.0000
	             us 0.0000
	            the 0.0000
	              0 0.0000
	            was 0.0000
	         Bosham 0.0000
	              a 0.0000
	            all 0.0000

              a   493198   1 (6)
	              a 1.0000
	              } 0.8889
	              , 0.8889
	           </S> 0.0000
	             us 0.0000
	            the 0.0000

       Ninfield   493219   1 (10)
	       Ninfield 1.0000
	           well 0.0000
	           </S> 0.0000
	              , 0.0000
	            all 0.0000
	           home 0.0000
	            the 0.0000
	           your 0.0000
	             us 0.0000
	              a 0.0000

            May   493241   1 (9)
	            May 1.0000
	            may 0.9231
	             to 0.0000
	           hand 0.0000
	             of 0.0000
	            cia 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000

            one   493252   1 (7)
	            one 1.0000
	           </S> 0.0000
	              } 0.0000
	             us 0.0000
	              , 0.0000
	             it 0.0000
	              a 0.0000

    Lighthoi:se   493281 inf (8)
	     Lighthouse 1.0000
	          Light 0.6364
	             of 0.2727
	              M 0.0000
	              , 0.0000
	           </S> 0.0000
	         Island 0.0000
	           Road 0.0000

              ,   493294   1 (5)
	              , 1.0000
	             us 0.8462
	           </S> 0.0000
	            the 0.0000
	        Kinsale 0.0000

            co.   493296   1 (10)
	             co 1.0000
	            com 1.0000
	            coo 1.0000
	            can 0.9231
	            the 0.0000
	              a 0.0000
	           </S> 0.0000
	              ( 0.0000
	             SC 0.0000
	            cia 0.0000

           Cork   493300   1 (8)
	           Cork 1.0000
	           work 0.8571
	        Wicklow 0.0000
	           </S> 0.0000
	              a 0.0000
	            mar 0.0000
	         Corvus 0.0000
	              , 0.0000

            the   493335   1 (5)
	            the 1.0000
	              , 0.0000
	             us 0.0000
	           </S> 0.0000
	              } 0.0000

           Rev.   493339   1 (10)
	           Reve 1.0000
	           Revo 1.0000
	            Rev 1.0000
	           Read 0.9231
	         letter 0.0000
	           same 0.0000
	          first 0.0000
	              - 0.0000
	           </S> 0.0000
	           lava 0.0000

         Mathew   493350   1 (7)
	         Mathew 1.0000
	         rather 0.8571
	              I 0.0000
	              , 0.0000
	           </S> 0.0000
	             M. 0.0000
	          There 0.0000

          heard   493357   1 (7)
	          heard 1.0000
	           hard 0.8889
	            are 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	            arz 0.0000

       Warblers   493367   1 (8)
	       Warblers 1.0000
	       Wireless 0.7273
	              , 0.0000
	             of 0.0000
	              - 0.0000
	           </S> 0.0000
	              a 0.0000
	        cablets 0.0000

           near   493376   1 (8)
	           near 1.0000
	            new 0.8333
	              . 0.0000
	              a 0.0000
	          three 0.0000
	              , 0.0000
	           </S> 0.0000
	            arz 0.0000

             he   493444   1 (6)
	             he 1.0000
	              , 0.0000
	             us 0.0000
	           </S> 0.0000
	              } 0.0000
	              a 0.0000

      Melodious   493467 inf (9)
	      melodious 1.0000
	      Melodinus 1.0000
	            the 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	              . 0.0000
	       products 0.0000
	             us 0.0000

       Warblers   493477   1 (8)
	       Warblers 1.0000
	        Warbler 0.9167
	        problem 0.0000
	              a 0.0000
	           </S> 0.0000
	             to 0.0000
	              , 0.0000
	        cablets 0.0000

         nested   493500   1 (6)
	         nested 1.0000
	           need 0.7778
	              a 0.0000
	            are 0.0000
	              , 0.0000
	           </S> 0.0000

      Shetlands   493556   1 (10)
	      Shetlands 1.0000
	       Shetland 0.9231
	          these 0.0000
	             SC 0.0000
	           </S> 0.0000
	      therefore 0.0000
	            who 0.0000
	            the 0.0000
	              a 0.0000
	            Man 0.0000

           1906   493586 inf (8)
	           1909 1.0000
	           1960 0.9231
	           2005 0.8462
	           </S> 0.7692
	            the 0.7692
	      therefore 0.0000
	              ( 0.0000
	              a 0.0000

        Warbler   493657   1 (9)
	        Warbler 1.0000
	             to 0.0000
	           </S> 0.0000
	              a 0.0000
	       wrapping 0.0000
	              s 0.0000
	          water 0.0000
	             up 0.0000
	              . 0.0000

             Au   493737 inf (8)
	             Au 1.0000
	             AM 0.9375
	              , 0.0000
	              a 0.0000
	             us 0.0000
	              / 0.0000
	              " 0.0000
	           </S> 0.0000

        example   493740   1 (6)
	        example 1.0000
	           Pair 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	        content 0.0000

              a   493823   1 (6)
	              a 1.0000
	              , 0.8750
	              } 0.8750
	           </S> 0.0000
	            the 0.0000
	             us 0.0000

        Bexhill   493833   1 (10)
	        Bexhill 1.0000
	           </S> 0.0000
	             us 0.0000
	           home 0.0000
	              a 0.0000
	           will 0.0000
	           your 0.0000
	            all 0.0000
	            the 0.0000
	              , 0.0000

            one   493856   1 (7)
	            one 1.0000
	              , 0.0000
	            and 0.0000
	             us 0.0000
	           </S> 0.0000
	              a 0.0000
	              } 0.0000

  Christclinrch   493863   1 (11)
	   Christchurch 1.0000
	        version 0.6111
	           that 0.5556
	              0 0.0000
	              , 0.0000
	              a 0.0000
	            all 0.0000
	           your 0.0000
	           </S> 0.0000
	            the 0.0000
	             us 0.0000

          Hants   493878   1 (9)
	          Hants 1.0000
	              a 0.0000
	            and 0.0000
	            who 0.0000
	            the 0.0000
	           into 0.0000
	           </S> 0.0000
	      therefore 0.0000
	          Parus 0.0000

            one   493899   1 (6)
	            one 1.0000
	           </S> 0.0000
	              , 0.0000
	              } 0.0000
	             us 0.0000
	              a 0.0000

        Horning   493911   1 (12)
	        Horning 1.0000
	        working 0.9130
	              a 0.0000
	              , 0.0000
	              0 0.0000
	      Braintree 0.0000
	           </S> 0.0000
	            all 0.0000
	          <UNK> 0.0000
	           your 0.0000
	            the 0.0000
	             us 0.0000

          there   493943   1 (6)
	          there 1.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	              } 0.0000
	         Member 0.0000

   Charterhonse   493975   1 (10)
	   Charterhouse 1.0000
	       Internet 0.3636
	    Netherlands 0.2727
	           data 0.0000
	         number 0.0000
	           </S> 0.0000
	           same 0.0000
	          world 0.0000
	           next 0.0000
	              , 0.0000

     collection   493988   1 (6)
	     collection 1.0000
	              , 0.0000
	              a 0.0000
	             of 0.0000
	        section 0.0000
	           </S> 0.0000

           shot   493999   1 (8)
	           shot 1.0000
	            she 0.8182
	             of 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	              . 0.0000
	           sala 0.0000

      Godalming   494007   1 (10)
	      Godalming 1.0000
	          <UNK> 0.0000
	           </S> 0.0000
	             it 0.0000
	              a 0.0000
	              , 0.0000
	            the 0.0000
	             us 0.0000
	        working 0.0000
	           your 0.0000

 Ornithologists   494065   1 (10)
	 Ornithologists 1.0000
	          those 0.2857
	            the 0.1429
	          trade 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	         market 0.0000
	          <UNK> 0.0000
	             us 0.0000

       believed   494096   1 (9)
	       believed 1.0000
	            way 0.0000
	             of 0.0000
	              . 0.0000
	             is 0.0000
	        between 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000

         Tresco   494136   1 (9)
	         Tresco 1.0000
	             us 0.0000
	          These 0.0000
	            the 0.0000
	          <UNK> 0.0000
	           your 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000

         Scilly   494144   1 (9)
	         Scilly 1.0000
	              a 0.0000
	         Social 0.0000
	              - 0.0000
	           </S> 0.0000
	          <UNK> 0.0000
	              s 0.0000
	            TSO 0.0000
	       Compiled 0.0000

      Specimens   494167   1 (8)
	      Specimens 1.0000
	         second 0.5000
	              " 0.0000
	           </S> 0.0000
	          minor 0.0000
	          <UNK> 0.0000
	              a 0.0000
	              , 0.0000

        Ireland   494260   1 (8)
	        Ireland 1.0000
	              a 0.0000
	           </S> 0.0000
	           that 0.0000
	              , 0.0000
	            the 0.0000
	    destination 0.0000
	            and 0.0000

     Additional   494298   1 (6)
	     Additional 1.0000
	           with 0.2000
	              a 0.1000
	              , 0.0000
	           </S> 0.0000
	              " 0.0000

       Accentor   494367   1 (11)
	       Accentor 1.0000
	            CDA 0.0000
	             of 0.0000
	           </S> 0.0000
	              a 0.0000
	           into 0.0000
	         Skiing 0.0000
	       Wellness 0.0000
	     Convention 0.0000
	              . 0.0000
	              , 0.0000

            has   494443   1 (5)
	            has 1.0000
	              T 0.0000
	             us 0.0000
	              , 0.0000
	           </S> 0.0000

       Januar}'   494473   1 (11)
	        January 1.0000
	         Januar 1.0000
	            and 0.6923
	              a 0.6154
	            the 0.0000
	           </S> 0.0000
	              , 0.0000
	             A. 0.0000
	              x 0.0000
	        Vermont 0.0000
	      therefore 0.0000

           1905   494483 inf (6)
	              i 1.0000
	            the 1.0000
	              , 1.0000
	      therefore 0.0000
	          <UNK> 0.0000
	             y1 0.0000

      Godalming   494513   1 (9)
	      Godalming 1.0000
	            the 0.0000
	         future 0.0000
	         having 0.0000
	              , 0.0000
	           </S> 0.0000
	       infrared 0.0000
	             us 0.0000
	              a 0.0000

            one   494543   1 (6)
	            one 1.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	              } 0.0000
	              s 0.0000

        January   494568   1 (9)
	        January 1.0000
	            the 0.0000
	        October 0.0000
	              a 0.0000
	              , 0.0000
	             us 0.0000
	           fact 0.0000
	           </S> 0.0000
	           turn 0.0000

             it   494641   1 (6)
	             it 1.0000
	             iu 0.9333
	              } 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000

        Scill}'   494665   1 (10)
	         Scilly 1.0000
	         Scicli 0.9091
	             us 0.0000
	              a 0.0000
	          stock 0.0000
	              , 0.0000
	           </S> 0.0000
	            all 0.0000
	           2004 0.0000
	            the 0.0000

              .   494672   1 (6)
	              . 1.0000
	              : 0.9091
	              , 0.9091
	             us 0.8182
	            the 0.0000
	           </S> 0.0000

              A   494675   1 (6)
	              A 1.0000
	              " 0.9167
	              , 0.9167
	             us 0.0000
	            the 0.0000
	           </S> 0.0000

        Crested   494858   1 (9)
	        Crested 1.0000
	        Chester 0.8182
	              / 0.0000
	              - 0.0000
	           same 0.0000
	          major 0.0000
	          first 0.0000
	         Center 0.0000
	           </S> 0.0000

            Tit   494866   1 (10)
	            Tit 1.0000
	           </S> 0.0000
	              I 0.0000
	              , 0.0000
	            The 0.0000
	             of 0.0000
	         effect 0.0000
	          Butte 0.0000
	       returned 0.0000
	            cia 0.0000

       Yarmouth   494884   1 (10)
	       Yarmouth 1.0000
	       increase 0.0000
	             or 0.0000
	            the 0.0000
	           </S> 0.0000
	              a 0.0000
	            you 0.0000
	             us 0.0000
	              , 0.0000
	          South 0.0000

              a   494975   1 (6)
	              a 1.0000
	              } 0.8750
	              , 0.8750
	             us 0.0000
	           </S> 0.0000
	            the 0.0000

        Creeper   494982   1 (11)
	        Creeper 1.0000
	         Center 0.7273
	              a 0.0000
	           </S> 0.0000
	              s 0.0000
	             it 0.0000
	              . 0.0000
	            old 0.0000
	           year 0.0000
	        Wstrict 0.0000
	             to 0.0000

       Alderney   495044   1 (8)
	       Alderney 1.0000
	           </S> 0.0000
	           five 0.0000
	              a 0.0000
	          order 0.0000
	             us 0.0000
	            the 0.0000
	              , 0.0000

         Family   495092   1 (7)
	         Family 1.0000
	           </S> 0.0000
	              " 0.0000
	              ) 0.0000
	              , 0.0000
	              a 0.0000
	              / 0.0000

             TA   495103   1 (7)
	             TA 1.0000
	             To 0.9231
	           </S> 0.0000
	             us 0.0000
	              a 0.0000
	              - 0.0000
	              , 0.0000

         CILLID   495106 inf (10)
	         CIALIS 1.0000
	         DILLIC 1.0000
	           CILL 1.0000
	              A 0.0000
	           </S> 0.0000
	            USA 0.0000
	          Dewey 0.0000
	           City 0.0000
	              - 0.0000
	              , 0.0000

              .   495112   1 (5)
	              . 1.0000
	              , 0.9091
	             us 0.8182
	            the 0.0000
	           </S> 0.0000

             -E   495114 inf (9)
	             -- 1.0000
	              - 1.0000
	             us 0.9286
	              / 0.9286
	              " 0.9286
	              , 0.9286
	             of 0.9286
	              I 0.9286
	           </S> 0.0000

              .   495116   1 (5)
	              . 1.0000
	              , 0.9286
	             us 0.8571
	            the 0.0000
	           </S> 0.0000

        Wagtail   495135   1 (12)
	        Wagtail 1.0000
	          again 0.7273
	              , 0.0000
	              - 0.0000
	             us 0.0000
	         League 0.0000
	             by 0.0000
	           </S> 0.0000
	              ) 0.0000
	       Stranger 0.0000
	         Flying 0.0000
	              a 0.0000

              .   495142   1 (5)
	              . 1.0000
	              , 0.9231
	             us 0.8462
	            the 0.0000
	           </S> 0.0000

             j]   495145 inf (8)
	              ] 1.0000
	             ja 1.0000
	             us 0.9091
	              " 0.9091
	             of 0.9091
	              , 0.9091
	              I 0.9091
	           </S> 0.0000

            lot   495148   1 (6)
	            lot 1.0000
	            not 0.9286
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	           lava 0.0000

             ac   495152   1 (7)
	             ac 1.0000
	             at 0.9091
	           </S> 0.0000
	              , 0.0000
	              I 0.0000
	             of 0.0000
	            arz 0.0000

           ilia   495155   1 (8)
	           ilia 1.0000
	           </S> 0.0000
	             in 0.0000
	              - 0.0000
	             dc 0.0000
	              , 0.0000
	              a 0.0000
	           alba 0.0000

       60/ra/is   495160 inf (8)
	         travis 1.0000
	          oasis 0.8750
	             is 0.7500
	              a 0.6250
	          kulik 0.6250
	           </S> 0.6250
	              , 0.5000
	  thunderstruck 0.0000

              ,   495168   1 (4)
	              , 1.0000
	             us 0.8182
	            the 0.0000
	           </S> 0.0000

           SuND   495170 inf (12)
	           SEND 1.0000
	           SSND 1.0000
	            SND 1.0000
	             Su 0.9286
	             pp 0.0000
	              i 0.0000
	             us 0.0000
	            the 0.0000
	         SuNava 0.0000
	           Site 0.0000
	      ekaterina 0.0000
	          <UNK> 0.0000

              .   495174   1 (5)
	              . 1.0000
	              , 0.8571
	             us 0.7143
	           </S> 0.0000
	            the 0.0000

           THIS   495177   1 (7)
	           THIS 1.0000
	            THE 0.8333
	              , 0.0000
	              I 0.0000
	              / 0.0000
	              " 0.0000
	           </S> 0.0000

           race   495182   1 (11)
	           race 1.0000
	           each 0.8333
	           kind 0.0000
	           </S> 0.0000
	           side 0.0000
	        version 0.0000
	              A 0.0000
	              , 0.0000
	             IS 0.0000
	             is 0.0000
	           lava 0.0000

           near   495238   1 (9)
	           near 1.0000
	            new 0.8889
	           from 0.0000
	            the 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	      published 0.0000
	            arz 0.0000

             In   495253   1 (6)
	             In 1.0000
	           </S> 0.0000
	              , 0.0000
	              A 0.0000
	              " 0.0000
	             us 0.0000

            two   495304   1 (7)
	            two 1.0000
	           they 0.0000
	              a 0.0000
	             us 0.0000
	              , 0.0000
	          there 0.0000
	           </S> 0.0000

          .shot   495313   1 (8)
	          Ashot 1.0000
	           shot 1.0000
	           show 0.9000
	              , 0.0000
	              a 0.0000
	         killed 0.0000
	           </S> 0.0000
	            not 0.0000

           near   495319   1 (7)
	           near 1.0000
	            new 0.7778
	              a 0.0000
	              , 0.0000
	             to 0.0000
	           </S> 0.0000
	            arz 0.0000

     Willingdon   495324   1 (10)
	     Willingdon 1.0000
	     Washington 0.7143
	              , 0.0000
	        Phoenix 0.0000
	            the 0.0000
	             us 0.0000
	     Chichester 0.0000
	              a 0.0000
	         future 0.0000
	           </S> 0.0000

              A   495344   1 (7)
	              A 1.0000
	              / 0.9333
	              " 0.9333
	              , 0.9333
	            the 0.0000
	             us 0.0000
	           </S> 0.0000

           Lydd   495426   1 (10)
	           Lydd 1.0000
	            Add 0.8667
	              , 0.0000
	              a 0.0000
	           2000 0.0000
	           more 0.0000
	        Derwent 0.0000
	           </S> 0.0000
	            Pyi 0.0000
	            the 0.0000

              A   495432   1 (6)
	              A 1.0000
	              " 0.9167
	              , 0.9167
	             us 0.0000
	           </S> 0.0000
	            the 0.0000

     Winchelsea   495451   1 (11)
	     Winchelsea 1.0000
	          these 0.7273
	           home 0.6364
	            the 0.6364
	          night 0.6364
	              a 0.0000
	              , 0.0000
	             us 0.0000
	           </S> 0.0000
	            all 0.0000
	           your 0.0000

         Family   495477   1 (6)
	         Family 1.0000
	              " 0.0000
	              / 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000

             TA   495488   1 (7)
	             TA 1.0000
	             To 0.9231
	           </S> 0.0000
	             us 0.0000
	              , 0.0000
	              - 0.0000
	              a 0.0000

            CIL   495491   1 (8)
	            CIL 1.0000
	              - 0.0000
	              , 0.0000
	             us 0.0000
	              A 0.0000
	           </S> 0.0000
	              ' 0.0000
	             In 0.0000

              L   495495 inf (8)
	             La 1.0000
	             LL 1.0000
	              , 1.0000
	             FL 1.0000
	            the 0.0000
	  International 0.0000
	           </S> 0.0000
	             us 0.0000

            ID^   495497   1 (11)
	            IDE 1.0000
	             ID 1.0000
	            IDD 1.0000
	             In 0.9231
	              , 0.0000
	              ) 0.0000
	           </S> 0.0000
	           Word 0.0000
	              s 0.0000
	              M 0.0000
	              A 0.0000

              .   495500   1 (7)
	              . 1.0000
	              , 0.9167
	              N 0.9167
	              : 0.9167
	           </S> 0.0000
	            the 0.0000
	             us 0.0000

        Wagtail   495520   1 (12)
	        Wagtail 1.0000
	          again 0.7273
	          model 0.0000
	             by 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	             us 0.0000
	           Gull 0.0000
	              - 0.0000
	       Stranger 0.0000
	              ) 0.0000

      Motacilla   495530   1 (6)
	      Motacilla 1.0000
	              / 0.0000
	              I 0.0000
	           </S> 0.0000
	              , 0.0000
	              " 0.0000

  vulauoccphala   495540 inf (9)
	  Aulacocephala 1.0000
	      Motacilla 0.4545
	     particular 0.3636
	          flava 0.3636
	           alba 0.2727
	              a 0.1818
	              , 0.0000
	      configure 0.0000
	           </S> 0.0000

              ,   495553   1 (4)
	              , 1.0000
	             us 0.8571
	            the 0.0000
	           </S> 0.0000

          LiCHT   495555 inf (9)
	            LiH 1.0000
	            LCH 1.0000
	           LTCH 1.0000
	           LiCl 1.0000
	            CHT 1.0000
	           List 0.9231
	              i 0.0000
	             pp 0.0000
	            the 0.0000

              .   495560   1 (5)
	              . 1.0000
	              , 0.8571
	             us 0.7143
	           </S> 0.0000
	            the 0.0000

              A   495563   1 (7)
	              A 1.0000
	              " 0.9167
	              , 0.9167
	           This 0.0000
	             us 0.0000
	            the 0.0000
	           </S> 0.0000

     Willingdon   495584   1 (10)
	     Willingdon 1.0000
	     Washington 0.6667
	            the 0.0000
	          times 0.0000
	             us 0.0000
	           </S> 0.0000
	         future 0.0000
	              a 0.0000
	              , 0.0000
	          <UNK> 0.0000

           Ma}-   495599   1 (8)
	            May 1.0000
	             Ma 1.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	            Maa 0.0000
	           lava 0.0000
	            the 0.0000

          ijtli   495604 inf (11)
	          ixtli 1.0000
	           Atli 0.8571
	           ijlt 0.8571
	            ijl 0.8571
	             18 0.0000
	           site 0.0000
	              a 0.0000
	              , 0.0000
	           into 0.0000
	           </S> 0.0000
	        Cejtlin 0.0000

              ,   495609 inf (3)
	             of 1.0000
	             us 1.0000
	            the 0.0000

           1906   495611 inf (8)
	             r0 1.0000
	            the 0.8889
	              s 0.8889
	              | 0.8889
	              i 0.8889
	   respectively 0.0000
	          which 0.0000
	             r1 0.0000

             it   495617   1 (7)
	             it 1.0000
	             iu 0.8750
	              } 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	         Member 0.0000

         flaz'a   495641   1 (13)
	          flava 1.0000
	           faza 1.0000
	          fazla 1.0000
	              , 0.0000
	    information 0.0000
	              . 0.0000
	          <UNK> 0.0000
	         Alauda 0.0000
	         family 0.0000
	            Act 0.0000
	           </S> 0.0000
	              a 0.0000
	            fla 0.0000

             as   495649   1 (9)
	             as 1.0000
	             us 0.9167
	              ( 0.0000
	            and 0.0000
	            the 0.0000
	          there 0.0000
	            you 0.0000
	            who 0.0000
	           </S> 0.0000

      followiug   495664   1 (13)
	      following 1.0000
	    unfollowing 0.8182
	         follow 0.8182
	      countries 0.4545
	          major 0.0000
	              a 0.0000
	              , 0.0000
	              - 0.0000
	           </S> 0.0000
	             of 0.0000
	          years 0.0000
	        matches 0.0000
	       extremes 0.0000

              .   495673   1 (6)
	              . 1.0000
	              , 0.9167
	             of 0.8333
	             us 0.8333
	           </S> 0.0000
	            the 0.0000

             Fa   495676 inf (7)
	             Fa 1.0000
	              " 0.0000
	             at 0.0000
	              , 0.0000
	              I 0.0000
	           </S> 0.0000
	             us 0.0000

            ly-   495682   1 (9)
	            lyx 1.0000
	             ly 1.0000
	             by 0.9167
	              / 0.0000
	           </S> 0.0000
	              s 0.0000
	              , 0.0000
	            Map 0.0000
	              a 0.0000

             MO   495686 inf (7)
	             MO 1.0000
	             My 0.9167
	              | 0.0000
	              , 0.0000
	           </S> 0.0000
	             us 0.0000
	              a 0.0000

             TA   495689   1 (7)
	             TA 1.0000
	             To 0.9231
	             us 0.0000
	              - 0.0000
	              , 0.0000
	           </S> 0.0000
	    Grangeville 0.0000

           CILL   495692   1 (8)
	           CILL 1.0000
	              , 0.0000
	              A 0.0000
	             J. 0.0000
	           City 0.0000
	        Listing 0.0000
	           </S> 0.0000
	              - 0.0000

             ID   495697   1 (9)
	             ID 1.0000
	             In 0.9167
	              , 0.0000
	           site 0.0000
	             us 0.0000
	          <UNK> 0.0000
	              a 0.0000
	           </S> 0.0000
	             al 0.0000

              .   495699   1 (6)
	              . 1.0000
	              : 0.9375
	              , 0.9375
	             us 0.8750
	           </S> 0.0000
	            the 0.0000

             F.   495701 inf (9)
	             FL 1.0000
	              . 1.0000
	              " 0.9091
	              a 0.9091
	              , 0.9091
	              / 0.9091
	              s 0.0000
	           </S> 0.0000
	            For 0.0000

         SykEvS   495705 inf (9)
	            Syk 1.0000
	          Sykes 1.0000
	          Smith 0.8667
	              , 0.8000
	           </S> 0.8000
	        Kennedy 0.0000
	      configure 0.0000
	              A 0.0000
	             C. 0.0000

              '   495711   1 (5)
	              ' 1.0000
	              , 0.9231
	             us 0.8462
	           </S> 0.0000
	            the 0.0000

        Wagtail   495713   1 (8)
	        Wagtail 1.0000
	              a 0.0000
	           What 0.0000
	              ) 0.0000
	            Ask 0.0000
	              s 0.0000
	           </S> 0.0000
	              , 0.0000

              .   495720   1 (7)
	              . 1.0000
	              ( 0.9231
	              ' 0.9231
	              , 0.9231
	             us 0.8462
	           </S> 0.0000
	            the 0.0000

      Motacilla   495723   1 (6)
	      Motacilla 1.0000
	              / 0.0000
	              I 0.0000
	           </S> 0.0000
	              " 0.0000
	              , 0.0000

          beema   495733 inf (10)
	         beeman 1.0000
	           bema 1.0000
	           beem 1.0000
	           been 0.9231
	              a 0.0000
	              , 0.0000
	          flava 0.0000
	      configure 0.0000
	           </S> 0.0000
	           alba 0.0000

          SykeS   495740 inf (6)
	          Sykes 1.0000
	           Syke 1.0000
	              i 0.0000
	           Site 0.0000
	             pp 0.0000
	            the 0.0000

              .   495745   1 (5)
	              . 1.0000
	              , 0.8571
	             us 0.7143
	           </S> 0.0000
	            the 0.0000

              A   495748   1 (7)
	              A 1.0000
	              " 0.9167
	              , 0.9167
	           This 0.0000
	             us 0.0000
	            the 0.0000
	           </S> 0.0000

    Rottingdean   495771   1 (11)
	    Rottingdean 1.0000
	        working 0.6667
	            the 0.5714
	              0 0.0000
	           </S> 0.0000
	              a 0.0000
	             us 0.0000
	         Bosham 0.0000
	              , 0.0000
	           your 0.0000
	            all 0.0000

          2otli   495801 inf (10)
	          Kotli 1.0000
	           otli 1.0000
	          Hotel 0.0000
	             25 0.0000
	              1 0.0000
	           </S> 0.0000
	           2005 0.0000
	              a 0.0000
	              , 0.0000
	          wolfi 0.0000

           1898   495808 inf (8)
	           1998 1.0000
	           1989 0.9333
	           1988 0.9333
	           </S> 0.8000
	            the 0.8000
	              a 0.8000
	             pp 0.0000
	           2005 0.0000

         Family   495815   1 (6)
	         Family 1.0000
	              " 0.0000
	              a 0.0000
	              / 0.0000
	           </S> 0.0000
	              , 0.0000

             TA   495826   1 (7)
	             TA 1.0000
	             To 0.9231
	           </S> 0.0000
	             us 0.0000
	              a 0.0000
	              - 0.0000
	              , 0.0000

       CILLlDzE   495829 inf (9)
	           IDEX 1.0000
	             IL 1.0000
	        College 1.0000
	              - 0.7500
	              A 0.7500
	              , 0.7500
	           </S> 0.7500
	          Dewey 0.0000
	            USA 0.0000

              .   495837   1 (5)
	              . 1.0000
	              , 0.9091
	             us 0.8182
	            the 0.0000
	           </S> 0.0000

          AvShy   495844 inf (11)
	           Avvy 1.0000
	            Shy 1.0000
	          Avahi 1.0000
	            Avy 1.0000
	             Av 0.9091
	              C 0.0000
	              e 0.0000
	           </S> 0.0000
	            All 0.0000
	            Red 0.0000
	              - 0.0000

              -   495849   1 (6)
	              - 1.0000
	              , 0.9286
	             us 0.8571
	             of 0.8571
	           </S> 0.0000
	            the 0.0000

        Wagtail   495857   1 (11)
	        Wagtail 1.0000
	          again 0.7273
	       Stranger 0.0000
	             us 0.0000
	         League 0.0000
	              , 0.0000
	              a 0.0000
	              ) 0.0000
	           </S> 0.0000
	              - 0.0000
	             by 0.0000

              .   495864   1 (6)
	              . 1.0000
	              , 0.9231
	              ( 0.9231
	             us 0.8462
	            the 0.0000
	           </S> 0.0000

      Motacilla   495867   1 (6)
	      Motacilla 1.0000
	              / 0.0000
	              I 0.0000
	           </S> 0.0000
	              , 0.0000
	              " 0.0000

 cinereocapilla   495877 inf (9)
	        cinerea 1.0000
	       citreola 1.0000
	        compile 0.7143
	           alba 0.4286
	      configure 0.2857
	          flava 0.2857
	              a 0.0000
	              , 0.0000
	           </S> 0.0000

              ,   495891   1 (4)
	              , 1.0000
	             us 0.8571
	            the 0.0000
	           </S> 0.0000

          Sa\'I   495893 inf (6)
	           SaPI 1.0000
	             Sa 0.9286
	            the 0.0000
	             pp 0.0000
	              i 0.0000
	           have 0.0000

              .   495898   1 (5)
	              . 1.0000
	              , 0.8571
	             us 0.7143
	           </S> 0.0000
	            the 0.0000

            THE   495901   1 (8)
	            THE 1.0000
	            The 0.8333
	              " 0.0000
	              / 0.0000
	              I 0.0000
	             us 0.0000
	              , 0.0000
	           </S> 0.0000

          /lava   496106 inf (10)
	          alava 1.0000
	           lava 1.0000
	          Slava 1.0000
	              a 0.0000
	          <UNK> 0.0000
	           have 0.0000
	           </S> 0.0000
	        sources 0.0000
	              , 0.0000
	        parties 0.0000

            but   496113   1 (8)
	            but 1.0000
	            the 0.0000
	           with 0.0000
	            and 0.0000
	              a 0.0000
	              ( 0.0000
	           </S> 0.0000
	             us 0.0000

 Ornithologists   496138   1 (8)
	 Ornithologists 1.0000
	          those 0.2857
	            the 0.1429
	             to 0.1429
	              a 0.0000
	           </S> 0.0000
	             us 0.0000
	              , 0.0000

      nowadaj'S   496153   1 (8)
	       nowadays 1.0000
	        nowaday 1.0000
	            new 0.5556
	              a 0.4444
	              ' 0.4444
	              . 0.3333
	              , 0.3333
	           </S> 0.3333

             is   496163   1 (6)
	             is 1.0000
	             iu 0.8889
	             in 0.8889
	           </S> 0.0000
	              , 0.0000
	          Union 0.0000

             if   496182   1 (7)
	             if 1.0000
	             iu 0.8571
	              a 0.0000
	              } 0.0000
	            but 0.0000
	           </S> 0.0000
	              , 0.0000

         occurs   496232   1 (9)
	         occurs 1.0000
	              - 0.0000
	             us 0.0000
	       obscurus 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	           Part 0.0000
	          hours 0.0000

      Shetlands   496253   1 (9)
	      Shetlands 1.0000
	            the 0.0000
	           </S> 0.0000
	              a 0.0000
	          these 0.0000
	            Man 0.0000
	      therefore 0.0000
	             SC 0.0000
	            who 0.0000

             as   496264   1 (6)
	             as 1.0000
	             us 0.9565
	          <UNK> 0.0000
	            the 0.0000
	           with 0.0000
	           Skye 0.0000

             it   496332   1 (7)
	             it 1.0000
	             iu 0.9000
	              , 0.0000
	            who 0.0000
	              a 0.0000
	           </S> 0.0000
	              } 0.0000

         Scilly   496356   1 (11)
	         Scilly 1.0000
	         hotels 0.0000
	             us 0.0000
	              , 0.0000
	            the 0.0000
	           file 0.0000
	              a 0.0000
	           sale 0.0000
	           will 0.0000
	         behalf 0.0000
	           </S> 0.0000

              A   496379   1 (6)
	              A 1.0000
	              , 0.9091
	              " 0.9091
	           </S> 0.0000
	             us 0.0000
	            the 0.0000

         Achill   496424   1 (9)
	         Achill 1.0000
	              , 0.0000
	            the 0.0000
	         Canada 0.0000
	          while 0.0000
	           turn 0.0000
	             us 0.0000
	           </S> 0.0000
	              a 0.0000

            co.   496432   1 (12)
	            com 1.0000
	            Co. 1.0000
	             co 1.0000
	            coo 1.0000
	            can 0.9091
	           with 0.0000
	            the 0.0000
	              , 0.0000
	            and 0.0000
	              a 0.0000
	           </S> 0.0000
	            cia 0.0000

              a   496462   1 (6)
	              a 1.0000
	              , 0.8750
	              } 0.8750
	             us 0.0000
	            the 0.0000
	           </S> 0.0000

            co.   496474   1 (9)
	             co 1.0000
	            com 1.0000
	            coo 1.0000
	            can 0.9286
	              , 0.0000
	            cia 0.0000
	           </S> 0.0000
	              a 0.0000
	            the 0.0000

        Donegal   496478   1 (9)
	        Donegal 1.0000
	        General 0.7500
	              a 0.0000
	          world 0.0000
	            mar 0.0000
	        Wicklow 0.0000
	           </S> 0.0000
	              , 0.0000
	        England 0.0000

           1898   496502 inf (9)
	           1998 1.0000
	           1988 0.9231
	           1989 0.9231
	              a 0.7692
	           </S> 0.7692
	            the 0.7692
	      therefore 0.0000
	           2005 0.0000
	            yes 0.0000

              a   496549   1 (6)
	              a 1.0000
	              } 0.8889
	              , 0.8889
	           </S> 0.0000
	             us 0.0000
	            the 0.0000

       Ninfield   496580   1 (9)
	       Ninfield 1.0000
	           </S> 0.0000
	              a 0.0000
	           your 0.0000
	           well 0.0000
	             us 0.0000
	            the 0.0000
	          <UNK> 0.0000
	              , 0.0000

           1901   496617 inf (7)
	           1903 1.0000
	           1990 0.9333
	           2005 0.8667
	           </S> 0.0000
	            the 0.0000
	             pp 0.0000
	              a 0.0000

             In   496624   1 (7)
	             In 1.0000
	              " 0.0000
	              a 0.0000
	           </S> 0.0000
	             us 0.0000
	              , 0.0000
	              ) 0.0000

           1903   496627 inf (6)
	           1993 1.0000
	           1999 0.9167
	           </S> 0.7500
	            the 0.7500
	              , 0.7500
	              a 0.7500

           four   496632   1 (6)
	           four 1.0000
	            for 0.9167
	             us 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000

          Tawny   496637   1 (9)
	          Tawny 1.0000
	              - 0.0000
	           </S> 0.0000
	              a 0.0000
	          young 0.0000
	              , 0.0000
	             of 0.0000
	          Table 0.0000
	          major 0.0000

        another   496736   1 (5)
	        another 1.0000
	              } 0.0000
	              I 0.0000
	              , 0.0000
	           </S> 0.0000

        Bexhill   496780   1 (11)
	        Bexhill 1.0000
	           your 0.0000
	           </S> 0.0000
	              , 0.0000
	             us 0.0000
	           will 0.0000
	            the 0.0000
	              a 0.0000
	            all 0.0000
	          least 0.0000
	            1pm 0.0000

              a   496790   1 (6)
	              a 1.0000
	              , 0.9167
	              } 0.9167
	           </S> 0.0000
	             us 0.0000
	            the 0.0000

         Bodmin   496854   1 (9)
	         Bodmin 1.0000
	          comix 0.0000
	          <UNK> 0.0000
	          Login 0.0000
	              , 0.0000
	            the 0.0000
	           </S> 0.0000
	              a 0.0000
	           your 0.0000

        Richard   496892   1 (5)
	        Richard 1.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	              " 0.0000

         Scilly   496957   1 (11)
	         Scilly 1.0000
	           will 0.0000
	         Europe 0.0000
	              a 0.0000
	            the 0.0000
	         photos 0.0000
	              , 0.0000
	           </S> 0.0000
	       Cheshire 0.0000
	       Scotland 0.0000
	          South 0.0000

        Kentish   496968   1 (7)
	        Kentish 1.0000
	              , 0.0000
	           </S> 0.0000
	           this 0.0000
	            the 0.0000
	              a 0.0000
	       Northern 0.0000

          Pipit   497022   1 (10)
	          Pipit 1.0000
	             we 0.0000
	         Sewage 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	              s 0.0000
	             to 0.0000
	          there 0.0000
	           Post 0.0000

            one   497108   1 (6)
	            one 1.0000
	              } 0.0000
	              , 0.0000
	             us 0.0000
	           </S> 0.0000
	              a 0.0000

        Scill3%   497115   1 (10)
	         Scilly 1.0000
	         Scicli 0.8889
	           late 0.0000
	            the 0.0000
	           </S> 0.0000
	              , 0.0000
	             us 0.0000
	          early 0.0000
	              a 0.0000
	           will 0.0000

            May   497123   1 (7)
	            May 1.0000
	            may 0.9091
	           </S> 0.0000
	              , 0.0000
	            cia 0.0000
	              a 0.0000
	              . 0.0000

            one   497134   1 (6)
	            one 1.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	             us 0.0000
	              } 0.0000

        Milcomb   497141 inf (11)
	         Milcom 1.0000
	       Milcombe 1.0000
	              , 0.0000
	              a 0.0000
	             us 0.0000
	          <UNK> 0.0000
	           that 0.0000
	            the 0.0000
	           your 0.0000
	           </S> 0.0000
	           will 0.0000

              (   497149   1 (6)
	              ( 1.0000
	              , 0.9000
	             us 0.8000
	           time 0.0000
	           </S> 0.0000
	            the 0.0000

            one   497172   1 (6)
	            one 1.0000
	              } 0.0000
	             us 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000

            one   497203   1 (6)
	            one 1.0000
	              a 0.0000
	              , 0.0000
	             us 0.0000
	           </S> 0.0000
	              } 0.0000

    Littlestone   497210   1 (10)
	    Littlestone 1.0000
	      different 0.7838
	            the 0.7568
	           that 0.7568
	             us 0.0000
	          <UNK> 0.0000
	           your 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000

     altogether   497240   1 (10)
	     altogether 1.0000
	          other 0.6154
	          there 0.4615
	            the 0.4615
	       shoulder 0.4615
	           </S> 0.0000
	        reviews 0.0000
	              I 0.0000
	              , 0.0000
	       children 0.0000

         Sussex   497267   1 (10)
	         Sussex 1.0000
	          stock 0.0000
	            the 0.0000
	              a 0.0000
	           </S> 0.0000
	         Passer 0.0000
	         defeat 0.0000
	       progress 0.0000
	              , 0.0000
	           used 0.0000

Random Forest

In [17]:
import model

RF_MODELS = {
  # name:                     model,                   data type, balanced, customized grid)
    'RF-top1.t10':           (model.RandomForestModel, 'top1',    False,    dict(n_estimators=[10])),
    'RF-top1.t10.balanced':  (model.RandomForestModel, 'top1',    True,     dict(n_estimators=[10])),
    'RF-top1.t10.feat-sqrt': (model.RandomForestModel, 'top1',    True,     dict(n_estimators=[10], max_features=['sqrt'])),
    'RF-top1.t10.sp2':       (model.RandomForestModel, 'top1',    False,    dict(n_estimators=[10], min_samples_split=[2])),
    'RF-top1.t50':           (model.RandomForestModel, 'top1',    False,    dict(n_estimators=[50])),
    'RF-top3.t10':           (model.RandomForestModel, 'top3',    False,    dict(n_estimators=[10])),
    'RF-top3.t10.balanced':  (model.RandomForestModel, 'top3',    True,     dict(n_estimators=[10])),
}
train(RF_MODELS, prefix='RF')
RF-top1.t10                         32.99 second
RF-top1.t10.balanced                43.76 second
RF-top1.t10.feat-sqrt               31.71 second
RF-top1.t10.sp2                     33.56 second
RF-top1.t50                         83.52 second
RF-top3.t10                        134.39 second
RF-top3.t10.balanced               165.36 second
In [130]:
test(RF_MODELS)
                                           P@1      P@3      P@5     P@10      P@A
----------------------------------------------------------------------------------
All errors
----------------------------------------------------------------------------------
ed                               top1  0.82468  0.83899  0.84265  0.84365  0.84365
ed                               top3  0.83666  0.84897  0.85396  0.86194  0.86593
----------------------------------------------------------------------------------
RF-top1.t10                      top1  0.83433  0.84365  0.84365  0.84365  0.84365
RF-top1.t10.balanced             top1  0.83666  0.84365  0.84365  0.84365  0.84365
RF-top1.t10.feat-sqrt            top1  0.83333  0.84298  0.84365  0.84365  0.84365
RF-top1.t10.sp2                  top1  0.83433  0.84331  0.84365  0.84365  0.84365
RF-top1.t50                      top1  0.83300  0.84331  0.84365  0.84365  0.84365
RF-top3.t10                      top3  0.84265  0.86294  0.86527  0.86593  0.86593
RF-top3.t10.balanced             top3  0.84498  0.86427  0.86593  0.86593  0.86593
----------------------------------------------------------------------------------
TP errors
----------------------------------------------------------------------------------
ed                               top1  0.44937  0.51741  0.53481  0.53956  0.53956
ed                               top3  0.50633  0.56487  0.58861  0.62500  0.64241
----------------------------------------------------------------------------------
RF-top1.t10                      top1  0.49842  0.53956  0.53956  0.53956  0.53956
RF-top1.t10.balanced             top1  0.50633  0.53956  0.53956  0.53956  0.53956
RF-top1.t10.feat-sqrt            top1  0.49051  0.53639  0.53956  0.53956  0.53956
RF-top1.t10.sp2                  top1  0.49684  0.53797  0.53956  0.53956  0.53956
RF-top1.t50                      top1  0.48892  0.53797  0.53956  0.53956  0.53956
RF-top3.t10                      top3  0.53639  0.62816  0.63924  0.64241  0.64241
RF-top3.t10.balanced             top3  0.54905  0.63608  0.64241  0.64241  0.64241
----------------------------------------------------------------------------------
FP errors
----------------------------------------------------------------------------------
ed                               top1  0.92460  0.92460  0.92460  0.92460  0.92460
ed                               top3  0.92460  0.92460  0.92460  0.92502  0.92544
----------------------------------------------------------------------------------
RF-top1.t10                      top1  0.92376  0.92460  0.92460  0.92460  0.92460
RF-top1.t10.balanced             top1  0.92460  0.92460  0.92460  0.92460  0.92460
RF-top1.t10.feat-sqrt            top1  0.92460  0.92460  0.92460  0.92460  0.92460
RF-top1.t10.sp2                  top1  0.92418  0.92460  0.92460  0.92460  0.92460
RF-top1.t50                      top1  0.92460  0.92460  0.92460  0.92460  0.92460
RF-top3.t10                      top3  0.92418  0.92544  0.92544  0.92544  0.92544
RF-top3.t10.balanced             top3  0.92376  0.92502  0.92544  0.92544  0.92544
In [126]:
report(RF_MODELS, 'RF-top1.t10.balanced')
           niaj   407429 inf (9)
	           niaj 0.9724
	           name 0.0000
	             'm 0.0000
	          began 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	              \ 0.0000
	            cia 0.0000

              '   407433 inf (7)
	           </S> 0.0000
	              a 0.0000
	              ± 0.0000
	            not 0.0000
	              , 0.0000
	            the 0.0000
	             us 0.0000

             bv   407472   1 (8)
	             by 1.0000
	             bv 0.1000
	            the 0.0000
	              , 0.0000
	             us 0.0000
	              a 0.0000
	           </S> 0.0000
	              . 0.0000

       llarting   407485 inf (9)
	       clarting 0.1000
	              : 0.0000
	      latrating 0.0000
	           </S> 0.0000
	              A 0.0000
	       learning 0.0000
	              , 0.0000
	          llarg 0.0000
	              s 0.0000

         Oologj   407522   1 (11)
	         Oology 0.1000
	        Beatles 0.0000
	         Objlog 0.0000
	     Chronology 0.0000
	              , 0.0000
	         Online 0.0000
	        Bankers 0.0000
	           </S> 0.0000
	              a 0.0000
	              . 0.0000
	       Columbia 0.0000

              '   407528   1 (7)
	              ' 1.0000
	            the 0.0000
	              . 0.0000
	              ( 0.0000
	              , 0.0000
	             us 0.0000
	           </S> 0.0000

           1S64   407547   1 (10)
	           1864 0.2000
	           2004 0.1000
	             US 0.0000
	      therefore 0.0000
	              a 0.0000
	          April 0.0000
	              , 0.0000
	           </S> 0.0000
	            the 0.0000
	        however 0.0000

           tlie   407886   1 (9)
	            the 1.0000
	           this 0.3000
	           alba 0.0000
	           </S> 0.0000
	           trie 0.0000
	              a 0.0000
	              , 0.0000
	          tliet 0.0000
	           tile 0.0000

           l)ut   407938 inf (10)
	           last 0.1000
	           lout 0.0000
	              , 0.0000
	             ut 0.0000
	           </S> 0.0000
	              } 0.0000
	           lutu 0.0000
	            lut 0.0000
	           lava 0.0000
	              a 0.0000

            l)y   408009   1 (9)
	             by 0.4000
	            may 0.2000
	           </S> 0.0000
	              , 0.0000
	           lava 0.0000
	              a 0.0000
	             ly 0.0000
	              . 0.0000
	            lay 0.0000

       hatclied   408045   1 (14)
	        hatched 0.5000
	          clied 0.1000
	        latched 0.1000
	             to 0.0000
	      disclosed 0.0000
	      hatchlike 0.0000
	           have 0.0000
	             be 0.0000
	           know 0.0000
	              a 0.0000
	          there 0.0000
	            for 0.0000
	              , 0.0000
	           </S> 0.0000

        wliieli   408093 inf (14)
	           </S> 0.0000
	      therefore 0.0000
	              x 0.0000
	          lieli 0.0000
	            the 0.0000
	            and 0.0000
	              a 0.0000
	           ieli 0.0000
	          wiele 0.0000
	           will 0.0000
	          wlite 0.0000
	              ( 0.0000
	            DEF 0.0000
	         glieli 0.0000

       liowever   408102 inf (9)
	         liever 0.0000
	      therefore 0.0000
	          <UNK> 0.0000
	        lowlier 0.0000
	           like 0.0000
	            the 0.0000
	        However 0.0000
	              i 0.0000
	              , 0.0000

        Coniyus   408276 inf (12)
	        Conifur 0.2000
	         Conics 0.1000
	              , 0.0000
	        Congius 0.0000
	       Cydonius 0.0000
	           Coni 0.0000
	              A 0.0000
	           </S> 0.0000
	          <UNK> 0.0000
	         Corvus 0.0000
	             22 0.0000
	         Comics 0.0000

       Lyveudeu   408288 inf (13)
	           need 0.0000
	              , 0.0000
	          Rhode 0.0000
	       Lieudieu 0.0000
	           </S> 0.0000
	             us 0.0000
	              a 0.0000
	            the 0.0000
	      precursor 0.0000
	       Lavender 0.0000
	          Lyude 0.0000
	         course 0.0000
	           them 0.0000

         full}'   408514   1 (9)
	          fully 0.7000
	           full 0.0000
	            the 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	         credit 0.0000
	             as 0.0000
	             us 0.0000

            b}'   408992   1 (6)
	             by 0.9000
	              a 0.0000
	              , 0.0000
	             bb 0.0000
	           </S> 0.0000
	             us 0.0000

           liis   409453 inf (12)
	           list 0.4000
	            lis 0.3000
	            its 0.2000
	          liisi 0.1000
	            lii 0.1000
	           liin 0.0000
	           </S> 0.0000
	            the 0.0000
	              , 0.0000
	           lisi 0.0000
	           lava 0.0000
	              a 0.0000

           tlie   410531   1 (10)
	            the 0.8000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	           your 0.0000
	           this 0.0000
	           tile 0.0000
	           trie 0.0000
	          tliet 0.0000
	           alba 0.0000

Fa>,iilv-C0RJ7D.-E   410685 inf (11)
	              , 0.0000
	           </S> 0.0000
	              " 0.0000
	           will 0.0000
	             -- 0.0000
	          alive 0.0000
	      available 0.0000
	        friends 0.0000
	              a 0.0000
	              / 0.0000
	       FileName 0.0000

        Corviis   410725 inf (8)
	        Corvida 0.3000
	         Comics 0.0000
	           </S> 0.0000
	              " 0.0000
	              , 0.0000
	          Corvi 0.0000
	              a 0.0000
	        Corvids 0.0000

        iOfoiic   410733 inf (9)
	        infoibi 0.3000
	         infonc 0.0000
	           </S> 0.0000
	          folic 0.0000
	          Ofori 0.0000
	      configure 0.0000
	              a 0.0000
	         ironic 0.0000
	              , 0.0000

          Ijdng   410824 inf (8)
	          Ijdan 0.0000
	          Index 0.0000
	representatives 0.0000
	              , 0.0000
	             Ij 0.0000
	           </S> 0.0000
	              a 0.0000
	              . 0.0000

       Histor}'   411751   1 (9)
	        History 1.0000
	             of 0.0000
	          Hotel 0.0000
	              . 0.0000
	      Resources 0.0000
	              , 0.0000
	       Historis 0.0000
	              a 0.0000
	           </S> 0.0000

       ajipears   412534   1 (11)
	        appears 1.0000
	           </S> 0.0000
	              , 0.0000
	             us 0.0000
	          ajars 0.0000
	         piears 0.0000
	             is 0.0000
	          pears 0.0000
	              . 0.0000
	              I 0.0000
	          years 0.0000

     h3-bridize   412784   1 (10)
	      hybridize 0.9000
	           </S> 0.0000
	              a 0.0000
	        provide 0.0000
	             us 0.0000
	              , 0.0000
	          trade 0.0000
	            the 0.0000
	             be 0.0000
	      hibridize 0.0000

          Gatke   412892 inf (9)
	          Gatka 0.0000
	              a 0.0000
	           take 0.0000
	        Gataket 0.0000
	             M. 0.0000
	           Gate 0.0000
	              , 0.0000
	           </S> 0.0000
	            the 0.0000

         3'ears   413019   1 (11)
	          years 1.0000
	           ears 0.4000
	          sears 0.1000
	           them 0.0000
	              , 0.0000
	            the 0.0000
	             us 0.0000
	           </S> 0.0000
	              a 0.0000
	             it 0.0000
	           this 0.0000

          the}'   413182 inf (10)
	             he 0.2000
	           thee 0.1000
	             us 0.0000
	              I 0.0000
	           </S> 0.0000
	              , 0.0000
	            you 0.0000
	              a 0.0000
	          their 0.0000
	            the 0.0000

          gre}'   413512 inf (11)
	          white 0.0000
	            gre 0.0000
	           </S> 0.0000
	             us 0.0000
	              a 0.0000
	          great 0.0000
	              , 0.0000
	            the 0.0000
	           time 0.0000
	        medical 0.0000
	           greg 0.0000

      cuIchicKs   413633 inf (9)
	       culchies 0.6000
	          <UNK> 0.0000
	           </S> 0.0000
	              - 0.0000
	       services 0.0000
	              a 0.0000
	              , 0.0000
	        sources 0.0000
	       vulgaris 0.0000

     /oi-qna/us   413647 inf (13)
	           Moin 0.0000
	     aeruginosa 0.0000
	            use 0.0000
	           know 0.0000
	        Journal 0.0000
	             in 0.0000
	          <UNK> 0.0000
	           </S> 0.0000
	              , 0.0000
	       Domingos 0.0000
	        contact 0.0000
	             J. 0.0000
	              a 0.0000

    vtrsicoloi-   413666   1 (11)
	     versicolor 0.2000
	    versicolori 0.2000
	           </S> 0.0000
	             us 0.0000
	              ) 0.0000
	              , 0.0000
	          <UNK> 0.0000
	        service 0.0000
	              a 0.0000
	             on 0.0000
	              . 0.0000

        Barbaiy   414010 inf (10)
	        Barbair 0.7000
	           page 0.0000
	           </S> 0.0000
	      Barbarity 0.0000
	         public 0.0000
	           most 0.0000
	              . 0.0000
	              , 0.0000
	          major 0.0000
	              a 0.0000

         cpiite   414297   1 (13)
	             be 0.0000
	           </S> 0.0000
	           cite 0.0000
	        kopiite 0.0000
	           city 0.0000
	           pite 0.0000
	           piit 0.0000
	          quite 0.0000
	         cepiti 0.0000
	              a 0.0000
	           have 0.0000
	         chiite 0.0000
	              , 0.0000

            b}'   414416   1 (9)
	             by 1.0000
	             us 0.0000
	              ' 0.0000
	             in 0.0000
	           </S> 0.0000
	              . 0.0000
	              a 0.0000
	           with 0.0000
	              , 0.0000

          Tliat   414480 inf (9)
	          Triat 0.0000
	              " 0.0000
	           Tlia 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	          Talit 0.0000
	           alba 0.0000
	           This 0.0000

       combiued   414651   1 (12)
	       combined 0.6000
	              - 0.0000
	       complete 0.0000
	          major 0.0000
	         single 0.0000
	     uncombined 0.0000
	      terrorist 0.0000
	          combi 0.0000
	        cymbium 0.0000
	           </S> 0.0000
	          heart 0.0000
	            new 0.0000

         badl3^   414741   1 (7)
	          badly 0.8000
	              . 0.0000
	           back 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	         badala 0.0000

           saj^   414798   1 (11)
	            say 0.8000
	            saj 0.2000
	           </S> 0.0000
	              a 0.0000
	            the 0.0000
	              , 0.0000
	           said 0.0000
	             be 0.0000
	           sala 0.0000
	           saja 0.0000
	           play 0.0000

       natixral   414987 inf (14)
	       national 0.2000
	           </S> 0.0000
	        conduct 0.0000
	              . 0.0000
	            own 0.0000
	         natira 0.0000
	              , 0.0000
	          natia 0.0000
	       National 0.0000
	             or 0.0000
	       naitural 0.0000
	              a 0.0000
	            and 0.0000
	       rational 0.0000

        Carriou   415035   1 (12)
	        Carrion 0.5000
	         Carrio 0.1000
	            non 0.0000
	         Cariou 0.0000
	           </S> 0.0000
	              , 0.0000
	              . 0.0000
	              X 0.0000
	              a 0.0000
	          major 0.0000
	           most 0.0000
	           City 0.0000

         tliree   415571   1 (12)
	          three 0.5000
	         twires 0.0000
	              , 0.0000
	           </S> 0.0000
	          Tiree 0.0000
	             us 0.0000
	            the 0.0000
	          tiler 0.0000
	           lire 0.0000
	       filliree 0.0000
	           tree 0.0000
	              a 0.0000

      greedil}'   417582   1 (10)
	       greedily 0.9000
	           </S> 0.0000
	              a 0.0000
	          great 0.0000
	             us 0.0000
	      available 0.0000
	             by 0.0000
	             to 0.0000
	         winner 0.0000
	              , 0.0000

            lie   417652 inf (10)
	            lie 1.0000
	          there 0.0000
	             of 0.0000
	           like 0.0000
	             it 0.0000
	              , 0.0000
	            cia 0.0000
	              . 0.0000
	              a 0.0000
	           </S> 0.0000

      .standing   417926   1 (6)
	       standing 0.5000
	              a 0.0000
	           </S> 0.0000
	       training 0.0000
	              , 0.0000
	              - 0.0000

         j'oung   418947   1 (12)
	          young 1.0000
	          Young 0.2000
	            own 0.0000
	           </S> 0.0000
	        posters 0.0000
	      customers 0.0000
	         jugong 0.0000
	          lives 0.0000
	         jagung 0.0000
	              , 0.0000
	        website 0.0000
	           jung 0.0000

Familx-C0K]'I1K-E   419777 inf (8)
	              - 0.0000
	           will 0.0000
	         normal 0.0000
	              , 0.0000
	              ) 0.0000
	             -- 0.0000
	              a 0.0000
	           </S> 0.0000

        Collins   419815   2 (8)
	        Collins 1.0000
	           </S> 0.0000
	              " 0.0000
	              a 0.0000
	        College 0.0000
	              , 0.0000
	              / 0.0000
	         Corvus 0.0000

              "   419837 inf (6)
	              " 0.2000
	              - 0.0000
	              , 0.0000
	            the 0.0000
	             us 0.0000
	           </S> 0.0000

          ^OUND   419841 inf (10)
	            UND 0.1000
	          COUNT 0.1000
	           YOUR 0.0000
	              a 0.0000
	            OUN 0.0000
	           </S> 0.0000
	              " 0.0000
	              , 0.0000
	        popular 0.0000
	           UODN 0.0000

           loug   419879 inf (14)
	          lough 0.5000
	           loud 0.1000
	            lou 0.1000
	             it 0.0000
	              , 0.0000
	           your 0.0000
	           logu 0.0000
	          world 0.0000
	              a 0.0000
	           </S> 0.0000
	        country 0.0000
	            the 0.0000
	              . 0.0000
	           lava 0.0000

             iu   419894   1 (6)
	             in 0.8000
	              , 0.0000
	           </S> 0.0000
	            the 0.0000
	             iu 0.0000
	              a 0.0000

              I   419910 inf (10)
	             to 0.0000
	              : 0.0000
	             II 0.0000
	              , 0.0000
	             us 0.0000
	            the 0.0000
	           </S> 0.0000
	       students 0.0000
	             In 0.0000
	             MI 0.0000

              '   419912 inf (7)
	             'm 0.6000
	           </S> 0.0000
	              , 0.0000
	         headed 0.0000
	             us 0.0000
	            the 0.0000
	           live 0.0000

     capcllauns   420125 inf (14)
	          <UNK> 0.1000
	     cabillauds 0.0000
	        callans 0.0000
	           </S> 0.0000
	      calculans 0.0000
	            the 0.0000
	        elegans 0.0000
	        account 0.0000
	       capellas 0.0000
	       capelans 0.0000
	              a 0.0000
	              , 0.0000
	             to 0.0000
	     capillatus 0.0000

     Sceboli??!   420251 inf (14)
	              , 0.0000
	              a 0.0000
	        replied 0.0000
	          Click 0.0000
	  Subordination 0.0000
	              I 0.0000
	              " 0.0000
	             el 0.0000
	            old 0.0000
	              s 0.0000
	           said 0.0000
	           </S> 0.0000
	           side 0.0000
	          below 0.0000

       countr}^   420592   1 (8)
	        country 0.9000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	        countor 0.0000
	             of 0.0000
	          South 0.0000
	         Soviet 0.0000

             iu   421892   1 (6)
	             in 1.0000
	              . 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	             iu 0.0000

        pr\-ing   422066   2 (13)
	        pricing 0.5000
	         prying 0.4000
	              , 0.0000
	              a 0.0000
	         piring 0.0000
	          point 0.0000
	        enemies 0.0000
	        display 0.0000
	        mailing 0.0000
	            own 0.0000
	           </S> 0.0000
	           ping 0.0000
	           prin 0.0000

          e\'es   422074   1 (11)
	           eyes 0.1000
	             es 0.1000
	              . 0.0000
	           eses 0.0000
	           </S> 0.0000
	           even 0.0000
	            ees 0.0000
	          esses 0.0000
	              a 0.0000
	              , 0.0000
	          Pales 0.0000

    carnivorons   422084   1 (10)
	    carnivorous 0.7000
	     carnivoros 0.5000
	           </S> 0.0000
	            the 0.0000
	    carnivorans 0.0000
	      carnivoro 0.0000
	              , 0.0000
	  materialistic 0.0000
	            can 0.0000
	              a 0.0000

       liowever   422121   1 (12)
	        however 1.0000
	        However 0.2000
	             of 0.0000
	           </S> 0.0000
	            the 0.0000
	         liever 0.0000
	           like 0.0000
	          major 0.0000
	        lowlier 0.0000
	      therefore 0.0000
	              , 0.0000
	              a 0.0000

              j   422232 inf (9)
	              , 0.2000
	              . 0.0000
	           </S> 0.0000
	           been 0.0000
	             ja 0.0000
	             us 0.0000
	           fees 0.0000
	             dj 0.0000
	            the 0.0000

              -   422233   1 (8)
	              - 1.0000
	              . 0.0000
	             us 0.0000
	              = 0.0000
	              , 0.0000
	            the 0.0000
	           </S> 0.0000
	       behaving 0.0000

           ears   422234   1 (10)
	           ears 1.0000
	          years 0.0000
	              a 0.0000
	              . 0.0000
	           side 0.0000
	              s 0.0000
	           </S> 0.0000
	             up 0.0000
	             to 0.0000
	        sending 0.0000

            vSt   422287   1 (14)
	           Svet 0.0000
	             me 0.0000
	              a 0.0000
	           </S> 0.0000
	            vat 0.0000
	             Eq 0.0000
	              , 0.0000
	             vt 0.0000
	            Svt 0.0000
	            the 0.0000
	           CliC 0.0000
	             to 0.0000
	             St 0.0000
	             us 0.0000

       Mora}',"   422329 inf (9)
	          March 0.1000
	              a 0.0000
	           </S> 0.0000
	       Colorado 0.0000
	             or 0.0000
	         Modern 0.0000
	            the 0.0000
	              , 0.0000
	             us 0.0000

    newlj'-boru   422359 inf (12)
	            you 0.1000
	              a 0.0000
	             me 0.0000
	            now 0.0000
	           </S> 0.0000
	          never 0.0000
	             or 0.0000
	          about 0.0000
	              , 0.0000
	             no 0.0000
	      wonderful 0.0000
	              s 0.0000

         )-oung   422462   1 (9)
	          young 1.0000
	          goung 0.1000
	          found 0.0000
	              , 0.0000
	            the 0.0000
	            oun 0.0000
	              a 0.0000
	           </S> 0.0000
	             us 0.0000

          vcr}'   422509   1 (9)
	           very 0.9000
	            crv 0.0000
	              a 0.0000
	            vcs 0.0000
	            not 0.0000
	             vc 0.0000
	           </S> 0.0000
	            the 0.0000
	              , 0.0000

           au}'   422708 inf (12)
	              a 0.2000
	            and 0.1000
	          other 0.0000
	              , 0.0000
	           alba 0.0000
	             au 0.0000
	              I 0.0000
	            the 0.0000
	            you 0.0000
	           auto 0.0000
	           </S> 0.0000
	            aua 0.0000

             iu   422847   1 (6)
	             in 0.9000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	             of 0.0000
	             iu 0.0000

           an\'   422963 inf (9)
	              , 0.0000
	           </S> 0.0000
	              . 0.0000
	            and 0.0000
	             an 0.0000
	            the 0.0000
	           anna 0.0000
	           alba 0.0000
	              I 0.0000

      destro3-s   423066   1 (11)
	       destroys 0.5000
	           </S> 0.0000
	           more 0.0000
	          minor 0.0000
	          geese 0.0000
	           from 0.0000
	            the 0.0000
	         destro 0.0000
	      destrosso 0.0000
	              a 0.0000
	              , 0.0000

        osprc}'   423187   1 (9)
	         osprey 0.7000
	            not 0.0000
	              , 0.0000
	            the 0.0000
	           </S> 0.0000
	           both 0.0000
	              a 0.0000
	      otherwise 0.0000
	          other 0.0000

            b}'   423582   1 (8)
	             by 0.9000
	           </S> 0.0000
	             bb 0.0000
	              a 0.0000
	              , 0.0000
	            the 0.0000
	             to 0.0000
	             us 0.0000

           da\-   423586   1 (9)
	            day 0.4000
	              , 0.0000
	             da 0.0000
	              a 0.0000
	            the 0.0000
	           </S> 0.0000
	            dad 0.0000
	          blogs 0.0000
	           lava 0.0000

          Gatke   423596 inf (11)
	              , 0.0000
	           make 0.0000
	            the 0.0000
	          Gatka 0.0000
	           </S> 0.0000
	             he 0.0000
	              a 0.0000
	        Gataket 0.0000
	           Gate 0.0000
	            she 0.0000
	     warranties 0.0000

      scarcel}^   423988   1 (10)
	       scarcely 0.8000
	              a 0.0000
	             be 0.0000
	           </S> 0.0000
	         result 0.0000
	           live 0.0000
	         search 0.0000
	      scarselle 0.0000
	              , 0.0000
	            not 0.0000

simultaneous!}'   424481   1 (10)
	 simultaneously 0.8000
	   simultaneous 0.3000
	         photos 0.0000
	            the 0.0000
	            and 0.0000
	              " 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	         should 0.0000

          Gatke   424758 inf (10)
	          Gatka 0.0000
	           Gate 0.0000
	              " 0.0000
	          Games 0.0000
	        Gataket 0.0000
	              , 0.0000
	              a 0.0000
	           then 0.0000
	             M. 0.0000
	           </S> 0.0000

       econom_v   425240   1 (12)
	       economic 1.0000
	        economy 1.0000
	        econome 0.6000
	           </S> 0.0000
	            use 0.0000
	              , 0.0000
	           case 0.0000
	            end 0.0000
	           same 0.0000
	         School 0.0000
	          state 0.0000
	      oeconomus 0.0000

    Evcr\'where   425260   1 (8)
	            and 0.0000
	          where 0.0000
	              " 0.0000
	           </S> 0.0000
	              , 0.0000
	             us 0.0000
	     Everywhere 0.0000
	              a 0.0000

      altliough   425421   1 (8)
	       although 0.9000
	         though 0.1000
	              I 0.0000
	           </S> 0.0000
	            the 0.0000
	           with 0.0000
	              , 0.0000
	        through 0.0000

          snuiU   425471 inf (11)
	           </S> 0.0000
	              , 0.0000
	           said 0.0000
	           than 0.0000
	        product 0.0000
	              . 0.0000
	       wildlife 0.0000
	          snuif 0.0000
	          major 0.0000
	              a 0.0000
	          Unsui 0.0000

         Ital}'   425654   1 (11)
	          Italy 0.8000
	           Ital 0.1000
	           more 0.0000
	          Itala 0.0000
	              , 0.0000
	            the 0.0000
	            use 0.0000
	           </S> 0.0000
	           that 0.0000
	             us 0.0000
	              a 0.0000

      scarcel}'   425705   1 (8)
	       scarcely 0.8000
	             be 0.0000
	              a 0.0000
	         should 0.0000
	              , 0.0000
	           have 0.0000
	      scarselle 0.0000
	           </S> 0.0000

            b}-   425766   1 (7)
	             by 1.0000
	             us 0.0000
	              a 0.0000
	           </S> 0.0000
	              - 0.0000
	              . 0.0000
	              , 0.0000

          thej^   426336   1 (8)
	           they 1.0000
	          their 0.1000
	          thyej 0.0000
	            the 0.0000
	              a 0.0000
	          kthej 0.0000
	              , 0.0000
	           </S> 0.0000

            da3   426394   3 (14)
	             da 0.8000
	            day 0.8000
	           days 0.2000
	            BBQ 0.0000
	         months 0.0000
	              , 0.0000
	              a 0.0000
	              . 0.0000
	           term 0.0000
	           </S> 0.0000
	            cia 0.0000
	            dad 0.0000
	             of 0.0000
	             do 0.0000

             's   426397   1 (9)
	             's 1.0000
	              : 0.0000
	             us 0.0000
	             is 0.0000
	            day 0.0000
	         winter 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000

         earl}^   426406   1 (10)
	          early 1.0000
	         before 0.0000
	          earle 0.0000
	            the 0.0000
	             us 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	           earl 0.0000
	           each 0.0000

            bj^   426711   2 (10)
	             bj 1.0000
	             by 0.6000
	         simply 0.0000
	           </S> 0.0000
	              , 0.0000
	             us 0.0000
	          those 0.0000
	              a 0.0000
	             in 0.0000
	            bja 0.0000

           an}-   426742 inf (9)
	             an 0.2000
	            and 0.1000
	           very 0.0000
	            the 0.0000
	              , 0.0000
	           alba 0.0000
	              I 0.0000
	           </S> 0.0000
	           anna 0.0000

   unsparingl}'   426959   1 (7)
	    unsparingly 0.6000
	              a 0.0000
	           Nest 0.0000
	           </S> 0.0000
	              , 0.0000
	              s 0.0000
	         during 0.0000

          3'ear   426973   1 (9)
	           year 0.7000
	           rear 0.3000
	            ear 0.0000
	           </S> 0.0000
	             or 0.0000
	            the 0.0000
	              a 0.0000
	            NSW 0.0000
	           zoom 0.0000

            b}'   426992   1 (9)
	             by 0.8000
	             us 0.0000
	           </S> 0.0000
	            and 0.0000
	            the 0.0000
	           with 0.0000
	              a 0.0000
	              , 0.0000
	              ' 0.0000

         coroue   427223   1 (13)
	         corone 0.3000
	         coroun 0.1000
	         corrue 0.1000
	        elegans 0.0000
	          <UNK> 0.0000
	              , 0.0000
	              a 0.0000
	        Sassoon 0.0000
	           </S> 0.0000
	              . 0.0000
	          Group 0.0000
	          corou 0.0000
	    information 0.0000

     precisel}^   427345   1 (8)
	      precisely 0.6000
	              a 0.0000
	              , 0.0000
	           just 0.0000
	       provided 0.0000
	           much 0.0000
	           </S> 0.0000
	            not 0.0000

         coronc   427448   2 (12)
	         corona 0.3000
	         corone 0.2000
	          coron 0.2000
	              , 0.0000
	        company 0.0000
	         corono 0.0000
	              a 0.0000
	          There 0.0000
	              . 0.0000
	        Koronco 0.0000
	           </S> 0.0000
	            who 0.0000

           saj-   427628   1 (10)
	            say 0.5000
	            saj 0.1000
	            pay 0.0000
	           sala 0.0000
	           said 0.0000
	              a 0.0000
	           saja 0.0000
	         search 0.0000
	           </S> 0.0000
	            the 0.0000

         Mail}-   427880 inf (9)
	           Mail 0.2000
	         Mailer 0.1000
	              a 0.0000
	            The 0.0000
	          Maili 0.0000
	              , 0.0000
	           </S> 0.0000
	           mail 0.0000
	             he 0.0000

          willi   427943   2 (12)
	           will 0.3000
	             of 0.0000
	              a 0.0000
	              . 0.0000
	             by 0.0000
	             on 0.0000
	          wills 0.0000
	           </S> 0.0000
	              , 0.0000
	         willis 0.0000
	           with 0.0000
	          wolfi 0.0000

         tliere   427995   1 (9)
	          there 0.1000
	              a 0.0000
	          tiere 0.0000
	         teiere 0.0000
	           that 0.0000
	           </S> 0.0000
	              , 0.0000
	         tiller 0.0000
	         Gliere 0.0000

         Giitke   428200 inf (11)
	         Gietki 0.1000
	              , 0.0000
	           Gite 0.0000
	             M. 0.0000
	           with 0.0000
	           itke 0.0000
	           </S> 0.0000
	            the 0.0000
	          Giitu 0.0000
	             he 0.0000
	              a 0.0000

            sa3   428286 inf (12)
	             sa 0.8000
	            say 0.1000
	             it 0.0000
	              , 0.0000
	             's 0.0000
	            sas 0.0000
	              V 0.0000
	            the 0.0000
	           </S> 0.0000
	              a 0.0000
	             so 0.0000
	           sala 0.0000

             's   428289 inf (7)
	             us 0.1000
	           </S> 0.0000
	              , 0.0000
	              - 0.0000
	             ss 0.0000
	             as 0.0000
	             is 0.0000

          Gre}'   428573 inf (12)
	          Group 0.1000
	         United 0.0000
	              a 0.0000
	              , 0.0000
	          major 0.0000
	        country 0.0000
	              . 0.0000
	            Gre 0.0000
	           most 0.0000
	          Great 0.0000
	           </S> 0.0000
	          Greer 0.0000

  c\ten)ii}iatc   428699 inf (15)
	       indicate 0.1000
	    participate 0.1000
	         attend 0.1000
	      eliminate 0.0000
	           </S> 0.0000
	            the 0.0000
	            see 0.0000
	           have 0.0000
	           make 0.0000
	        contact 0.0000
	          match 0.0000
	            eat 0.0000
	             us 0.0000
	              , 0.0000
	              a 0.0000

Fawilx-COR]'ID.E   428806 inf (6)
	           will 0.0000
	              ) 0.0000
	              - 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000

        Corviis   428836 inf (8)
	        Corvida 0.1000
	          Corvi 0.0000
	              a 0.0000
	              , 0.0000
	              " 0.0000
	        Corvids 0.0000
	           </S> 0.0000
	         Comics 0.0000

   /nigi/i(;i(s   428844 inf (10)
	              n 0.0000
	              , 0.0000
	      configure 0.0000
	        million 0.0000
	   configure.in 0.0000
	             is 0.0000
	              a 0.0000
	           </S> 0.0000
	         config 0.0000
	  config.status 0.0000

        prett}^   429435   1 (9)
	         pretty 1.0000
	            not 0.0000
	              , 0.0000
	             A. 0.0000
	              a 0.0000
	         better 0.0000
	           </S> 0.0000
	         prette 0.0000
	          prett 0.0000

          l^are   429777 inf (11)
	            are 0.2000
	           </S> 0.0000
	     registered 0.0000
	          laare 0.0000
	              , 0.0000
	           lare 0.0000
	              a 0.0000
	             to 0.0000
	    legislative 0.0000
	            bit 0.0000
	           lava 0.0000

           Tlie   429888 inf (9)
	            Tli 0.0000
	           This 0.0000
	           </S> 0.0000
	           Tile 0.0000
	              a 0.0000
	              , 0.0000
	              " 0.0000
	           Tlia 0.0000
	           alba 0.0000

           Tlie   429951 inf (9)
	              a 0.0000
	            Tli 0.0000
	           This 0.0000
	              s 0.0000
	           </S> 0.0000
	              , 0.0000
	           Tile 0.0000
	              " 0.0000
	           Tlia 0.0000

       .slender   430109   1 (8)
	        slender 0.8000
	           than 0.0000
	              a 0.0000
	           </S> 0.0000
	       Calendar 0.0000
	              , 0.0000
	              . 0.0000
	       literacy 0.0000

           tlie   430127   1 (9)
	            the 1.0000
	           tile 0.1000
	          tliet 0.0000
	           alba 0.0000
	              a 0.0000
	           this 0.0000
	           trie 0.0000
	              , 0.0000
	           </S> 0.0000

         .slate   430205   1 (11)
	          slate 0.6000
	             us 0.0000
	              a 0.0000
	              : 0.0000
	             re 0.0000
	          state 0.0000
	            non 0.0000
	         enable 0.0000
	         Islate 0.0000
	            the 0.0000
	           </S> 0.0000

         larvje   430335   1 (12)
	         larvae 0.8000
	          larve 0.2000
	            own 0.0000
	           lava 0.0000
	       families 0.0000
	        ability 0.0000
	           last 0.0000
	              , 0.0000
	              . 0.0000
	           larv 0.0000
	           </S> 0.0000
	              a 0.0000

    preferabl}^   430923   1 (9)
	     preferably 1.0000
	     preferable 0.9000
	          which 0.0000
	            and 0.0000
	            the 0.0000
	             or 0.0000
	           </S> 0.0000
	              a 0.0000
	         public 0.0000

          onl}'   431289   1 (9)
	           only 1.0000
	              a 0.0000
	           have 0.0000
	             be 0.0000
	              , 0.0000
	           </S> 0.0000
	             to 0.0000
	           been 0.0000
	          ollon 0.0000

       segetuin   431456   1 (11)
	        segetum 1.0000
	        ipsilon 0.0000
	              , 0.0000
	         seguin 0.0000
	           </S> 0.0000
	              a 0.0000
	              ) 0.0000
	         segeti 0.0000
	       shipping 0.0000
	        cinerea 0.0000
	        seguint 0.0000

      foiirteen   432118   1 (13)
	       fourteen 0.3000
	        fifteen 0.1000
	       flirteen 0.1000
	        further 0.0000
	           more 0.0000
	       forinten 0.0000
	        hirteen 0.0000
	        damages 0.0000
	         forten 0.0000
	              a 0.0000
	            the 0.0000
	           </S> 0.0000
	              , 0.0000

          fi^om   432328   1 (10)
	           from 1.0000
	          finom 0.3000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	             in 0.0000
	          minor 0.0000
	           fimo 0.0000
	             fi 0.0000
	             to 0.0000

     connucuced   432735 inf (11)
	      connected 0.5000
	       conduced 0.1000
	        reduced 0.0000
	     dispatched 0.0000
	              , 0.0000
	        between 0.0000
	              a 0.0000
	           </S> 0.0000
	        include 0.0000
	             to 0.0000
	             13 0.0000

             iu   432764   1 (6)
	             in 0.8000
	              I 0.0000
	              , 0.0000
	             as 0.0000
	             iu 0.0000
	           </S> 0.0000

      unusualh-   432784   1 (9)
	      unusually 0.4000
	            not 0.0000
	           </S> 0.0000
	       unusuall 0.0000
	        January 0.0000
	            the 0.0000
	              a 0.0000
	              , 0.0000
	        unusual 0.0000

          the}-   432972 inf (8)
	             he 0.3000
	           thee 0.0000
	            the 0.0000
	              , 0.0000
	             is 0.0000
	          their 0.0000
	           </S> 0.0000
	              a 0.0000

      Februar}-   433125   1 (12)
	       February 1.0000
	             is 0.0000
	       Februare 0.0000
	            the 0.0000
	              , 0.0000
	        Februar 0.0000
	           such 0.0000
	           </S> 0.0000
	              a 0.0000
	          which 0.0000
	          about 0.0000
	             us 0.0000

            m^'   433156   1 (7)
	             my 0.8000
	              a 0.0000
	             us 0.0000
	             mm 0.0000
	           </S> 0.0000
	            the 0.0000
	              , 0.0000

          the}-   433604 inf (8)
	              , 0.0000
	            the 0.0000
	           </S> 0.0000
	          their 0.0000
	           thee 0.0000
	            and 0.0000
	              a 0.0000
	            you 0.0000

              t   433651 inf (8)
	             tt 0.0000
	             of 0.0000
	              ) 0.0000
	           </S> 0.0000
	             at 0.0000
	              , 0.0000
	             to 0.0000
	             us 0.0000

             iu   434083   1 (8)
	             in 0.8000
	              , 0.0000
	              . 0.0000
	           </S> 0.0000
	           than 0.0000
	           when 0.0000
	              a 0.0000
	             iu 0.0000

        thicklj   434165   1 (7)
	        thickly 0.4000
	              , 0.0000
	          click 0.0000
	           </S> 0.0000
	              a 0.0000
	          think 0.0000
	            the 0.0000

              '   434172   1 (7)
	              ' 1.0000
	             be 0.0000
	           </S> 0.0000
	              . 0.0000
	             us 0.0000
	            the 0.0000
	              , 0.0000

          the}-   434590 inf (8)
	          their 0.0000
	             of 0.0000
	              , 0.0000
	           thee 0.0000
	              - 0.0000
	            the 0.0000
	           </S> 0.0000
	              a 0.0000

          the}'   434729 inf (7)
	            the 0.3000
	          their 0.1000
	              a 0.0000
	            and 0.0000
	           thee 0.0000
	              - 0.0000
	           </S> 0.0000

       accuracv   435173   1 (11)
	       accuracy 0.7000
	     University 0.0000
	              * 0.0000
	         accura 0.0000
	        purpose 0.0000
	              a 0.0000
	       accuravi 0.0000
	       contents 0.0000
	              , 0.0000
	        address 0.0000
	           </S> 0.0000

         hungiy   435714   1 (13)
	         hungry 0.4000
	              - 0.0000
	              , 0.0000
	              a 0.0000
	          hours 0.0000
	       hungrily 0.0000
	         Dhungi 0.0000
	        hinugay 0.0000
	          Munia 0.0000
	           </S> 0.0000
	          years 0.0000
	              . 0.0000
	           hung 0.0000

         ever}'   435991   1 (9)
	          every 0.8000
	           ever 0.2000
	            the 0.0000
	              . 0.0000
	          other 0.0000
	              , 0.0000
	         everre 0.0000
	              a 0.0000
	           </S> 0.0000

            How   436289   1 (7)
	            How 0.7000
	             us 0.0000
	              " 0.0000
	           Home 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000

              -   436292   1 (7)
	              - 1.0000
	           much 0.0000
	              , 0.0000
	             to 0.0000
	            the 0.0000
	           </S> 0.0000
	             us 0.0000

           catv   436667 inf (14)
	            not 0.3000
	            cat 0.2000
	            can 0.1000
	              , 0.0000
	         appear 0.0000
	             it 0.0000
	        catvine 0.0000
	            cia 0.0000
	              a 0.0000
	           cvat 0.0000
	           </S> 0.0000
	           cats 0.0000
	          least 0.0000
	            the 0.0000

        ar-cc-o   436848 inf (11)
	         arccos 0.3000
	        arrocco 0.3000
	           </S> 0.0000
	            and 0.0000
	         Golden 0.0000
	              , 0.0000
	            The 0.0000
	            the 0.0000
	             pp 0.0000
	            Vol 0.0000
	              I 0.0000

           ni}-   437410 inf (9)
	            nin 0.0000
	             ni 0.0000
	              a 0.0000
	              , 0.0000
	           nice 0.0000
	           </S> 0.0000
	              } 0.0000
	            cia 0.0000
	            not 0.0000

     ALAUDIDJ-:   437728 inf (13)
	        MEDICAL 0.0000
	              D 0.0000
	           LAND 0.0000
	            AND 0.0000
	      FILTERING 0.0000
	              a 0.0000
	           </S> 0.0000
	              : 0.0000
	              ) 0.0000
	              s 0.0000
	              , 0.0000
	        STUDIES 0.0000
	          ALBUM 0.0000

      vSannders   437770 inf (13)
	         anders 0.1000
	       vianders 0.1000
	            the 0.0000
	           </S> 0.0000
	            are 0.0000
	           Dean 0.0000
	              a 0.0000
	        vanders 0.0000
	           very 0.0000
	             us 0.0000
	         person 0.0000
	              , 0.0000
	        Sanders 0.0000

         phiccd   437784 inf (15)
	         priced 0.5000
	        phichqa 0.1000
	            phi 0.1000
	         phocid 0.0000
	          piccy 0.0000
	          ophic 0.0000
	          price 0.0000
	           </S> 0.0000
	        chicchi 0.0000
	           been 0.0000
	              , 0.0000
	       informed 0.0000
	              a 0.0000
	           made 0.0000
	           done 0.0000

       faniil_y   437796   1 (14)
	         family 0.1000
	         fanihy 0.1000
	         fainly 0.1000
	         Daniil 0.1000
	        fancily 0.1000
	             is 0.0000
	           </S> 0.0000
	       fanmilyi 0.0000
	            one 0.0000
	         fanilo 0.0000
	           page 0.0000
	           site 0.0000
	              , 0.0000
	              a 0.0000

              -   437856   1 (8)
	              - 1.0000
	           </S> 0.0000
	             to 0.0000
	             us 0.0000
	             be 0.0000
	              , 0.0000
	            not 0.0000
	            the 0.0000

   Motaciilidcc   437952   1 (9)
	   Motacillidae 0.9000
	             us 0.0000
	          local 0.0000
	           </S> 0.0000
	         public 0.0000
	              , 0.0000
	              a 0.0000
	            the 0.0000
	            top 0.0000

      vSeel)ohm   437972   1 (9)
	        Seebohm 0.0000
	           Enya 0.0000
	           very 0.0000
	              " 0.0000
	           </S> 0.0000
	          today 0.0000
	              , 0.0000
	              a 0.0000
	            the 0.0000

            b}'   438040   1 (6)
	             by 0.7000
	           </S> 0.0000
	              ' 0.0000
	              a 0.0000
	              , 0.0000
	             us 0.0000

         Sharpc   438048   1 (10)
	         Sharpe 0.5000
	          Sharp 0.4000
	          Share 0.1000
	              , 0.0000
	         Martin 0.0000
	              A 0.0000
	           </S> 0.0000
	             A. 0.0000
	          <UNK> 0.0000
	        Sarpech 0.0000

       vSeebohm   438305   1 (9)
	        Seebohm 0.3000
	              , 0.0000
	        Hewllet 0.0000
	           </S> 0.0000
	           what 0.0000
	             of 0.0000
	          Delta 0.0000
	              a 0.0000
	          about 0.0000

       P'inchcs   438476 inf (10)
	        Pinchas 0.4000
	          Pinch 0.2000
	             us 0.0000
	          right 0.0000
	              a 0.0000
	              , 0.0000
	      Committee 0.0000
	            top 0.0000
	            the 0.0000
	           </S> 0.0000

Jloiifijniioi/Ia   438510 inf (11)
	    information 0.0000
	           </S> 0.0000
	              , 0.0000
	             in 0.0000
	     individual 0.0000
	             if 0.0000
	            the 0.0000
	       national 0.0000
	             us 0.0000
	              a 0.0000
	           find 0.0000

  PUciropluvics   438531 inf (12)
	        Privacy 0.1000
	     facilities 0.0000
	              i 0.0000
	    scholarship 0.0000
	        service 0.0000
	              , 0.0000
	       services 0.0000
	              a 0.0000
	       products 0.0000
	          click 0.0000
	            the 0.0000
	           </S> 0.0000

     Corydallar   438590   1 (8)
	              , 0.0000
	           </S> 0.0000
	            RSS 0.0000
	              a 0.0000
	         Canada 0.0000
	            the 0.0000
	      Corydalla 0.0000
	             C. 0.0000

        familj-   438634   1 (12)
	         family 0.8000
	         familj 0.6000
	           </S> 0.0000
	              , 0.0000
	           book 0.0000
	              . 0.0000
	        project 0.0000
	           best 0.0000
	              a 0.0000
	          world 0.0000
	        familja 0.0000
	          major 0.0000

      probabl}'   438699   1 (9)
	       probably 1.0000
	        probabl 0.2000
	       probabla 0.1000
	       possible 0.0000
	           </S> 0.0000
	              , 0.0000
	            the 0.0000
	              a 0.0000
	            not 0.0000

          tliis   438720   1 (10)
	           this 0.6000
	            the 0.5000
	          tsiis 0.0000
	           </S> 0.0000
	          aliis 0.0000
	           tiis 0.0000
	              a 0.0000
	              , 0.0000
	         tiliis 0.0000
	              s 0.0000

        becanse   438747   1 (14)
	        because 0.8000
	          becan 0.2000
	         becase 0.2000
	              . 0.0000
	            the 0.0000
	           </S> 0.0000
	             of 0.0000
	             be 0.0000
	           that 0.0000
	              , 0.0000
	          think 0.0000
	        bacanes 0.0000
	         secans 0.0000
	              a 0.0000

       Sannders   438798 inf (9)
	        Sanders 0.5000
	           </S> 0.0000
	         Server 0.0000
	         anders 0.0000
	              , 0.0000
	           Dean 0.0000
	             A. 0.0000
	              a 0.0000
	             is 0.0000

          sa3-s   438842   1 (11)
	           says 0.9000
	           said 0.3000
	           sala 0.0000
	           </S> 0.0000
	             sa 0.0000
	            sas 0.0000
	             as 0.0000
	           sass 0.0000
	            was 0.0000
	              a 0.0000
	              , 0.0000

      majorit}-   438867   1 (10)
	       majority 1.0000
	            use 0.0000
	              a 0.0000
	        members 0.0000
	              , 0.0000
	              . 0.0000
	            top 0.0000
	           more 0.0000
	           </S> 0.0000
	       majorait 0.0000

    Alaiiiiidic   438937 inf (13)
	       American 0.1000
	           land 0.1000
	        listing 0.0000
	              , 0.0000
	              . 0.0000
	           page 0.0000
	    medications 0.0000
	          child 0.0000
	           </S> 0.0000
	              a 0.0000
	          major 0.0000
	          world 0.0000
	     individual 0.0000

     Coii'ida''   438957 inf (12)
	       original 0.0000
	        Company 0.0000
	              , 0.0000
	           user 0.0000
	           </S> 0.0000
	        company 0.0000
	              a 0.0000
	          Board 0.0000
	              ' 0.0000
	              . 0.0000
	          other 0.0000
	            day 0.0000

       Passcrcs   439007   1 (13)
	       Passeres 0.2000
	       Passirac 0.1000
	      asscracks 0.0000
	           </S> 0.0000
	         Passca 0.0000
	              a 0.0000
	          world 0.0000
	              . 0.0000
	           page 0.0000
	              , 0.0000
	            day 0.0000
	           last 0.0000
	           year 0.0000

          i'eet   439049 inf (8)
	           same 0.1000
	            eet 0.0000
	          ikeet 0.0000
	           idea 0.0000
	           </S> 0.0000
	            ite 0.0000
	          items 0.0000
	              - 0.0000

          man}'   439123   1 (9)
	           many 0.9000
	           mana 0.1000
	            man 0.0000
	            the 0.0000
	           </S> 0.0000
	          major 0.0000
	              - 0.0000
	              , 0.0000
	              a 0.0000

          the}-   439209 inf (8)
	           </S> 0.0000
	              ( 0.0000
	            the 0.0000
	          their 0.0000
	           thee 0.0000
	             by 0.0000
	            and 0.0000
	              a 0.0000

       Aluudida   440171   3 (11)
	        aludida 0.4000
	         Alauda 0.1000
	            use 0.0000
	           </S> 0.0000
	       American 0.0000
	          udida 0.0000
	      Alaudidae 0.0000
	              - 0.0000
	           same 0.0000
	          style 0.0000
	      Alluaudia 0.0000

         fainih   440204 inf (7)
	            War 0.3000
	          faini 0.1000
	           </S> 0.0000
	           find 0.0000
	              , 0.0000
	        fininha 0.0000
	              O 0.0000

              '   440210   1 (6)
	              ' 1.0000
	           </S> 0.0000
	              , 0.0000
	             us 0.0000
	            the 0.0000
	             II 0.0000

    j\Iala3-ana   440326 inf (13)
	       Malaysia 0.1000
	              , 0.0000
	        vanilla 0.0000
	         Canada 0.0000
	              a 0.0000
	             an 0.0000
	      corporate 0.0000
	            the 0.0000
	           time 0.0000
	           </S> 0.0000
	             us 0.0000
	     managerial 0.0000
	        writing 0.0000

        Familx-   440355   1 (7)
	         Family 0.9000
	              a 0.0000
	              s 0.0000
	              , 0.0000
	             he 0.0000
	           </S> 0.0000
	        Femilax 0.0000

      ALAUDID.E   440363 inf (8)
	              A 0.2000
	            the 0.0000
	           said 0.0000
	              . 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	              " 0.0000

      iDVCiisis   440397   2 (9)
	             is 0.1000
	      configure 0.0000
	          Virus 0.0000
	       arvensis 0.0000
	           </S> 0.0000
	              , 0.0000
	          dists 0.0000
	           this 0.0000
	              a 0.0000

      IMongolia   440730   1 (10)
	       Mongolia 0.6000
	              , 0.0000
	         London 0.0000
	              - 0.0000
	           Asia 0.0000
	             of 0.0000
	           </S> 0.0000
	              a 0.0000
	        sources 0.0000
	          coast 0.0000

    \^excepting   441110 inf (12)
	      excepting 0.2000
	    unexcepting 0.2000
	       services 0.0000
	       terrible 0.0000
	    participate 0.0000
	    information 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	            the 0.0000
	     trademarks 0.0000
	             to 0.0000

    caiitarclla   441285 inf (12)
	        contact 0.1000
	    Paccagnella 0.1000
	           </S> 0.0000
	            all 0.0000
	        Maritan 0.0000
	          alert 0.0000
	          <UNK> 0.0000
	              , 0.0000
	              a 0.0000
	             it 0.0000
	         Stella 0.0000
	             at 0.0000

      giilgiila   441329 inf (7)
	       gingilla 0.1000
	              , 0.0000
	            Yes 0.0000
	           will 0.0000
	           </S> 0.0000
	          <UNK> 0.0000
	              a 0.0000

        axlivox   441357 inf (10)
	              I 0.0000
	        altivos 0.0000
	           also 0.0000
	          <UNK> 0.0000
	         axlike 0.0000
	           </S> 0.0000
	           livo 0.0000
	              , 0.0000
	         alivio 0.0000
	          axlir 0.0000

      ivai/crsi   441369 inf (8)
	           </S> 0.0000
	          <UNK> 0.0000
	              a 0.0000
	       vaincrai 0.0000
	            Yes 0.0000
	       vaikersi 0.0000
	          first 0.0000
	              , 0.0000

           arid   441380   2 (9)
	           arid 0.9724
	            and 0.0000
	           </S> 0.0000
	              " 0.0000
	           with 0.0000
	              I 0.0000
	            the 0.0000
	            are 0.0000
	            arz 0.0000

        sccuiid   441755 inf (12)
	          white 0.0000
	        sciurid 0.0000
	        process 0.0000
	           cuii 0.0000
	          scuid 0.0000
	              - 0.0000
	         school 0.0000
	           </S> 0.0000
	           same 0.0000
	           text 0.0000
	        scuirid 0.0000
	        securis 0.0000

         inider   441801 inf (11)
	         United 0.0000
	        insider 0.0000
	       Miniderm 0.0000
	          <UNK> 0.0000
	         indier 0.0000
	            QML 0.0000
	           </S> 0.0000
	              , 0.0000
	            The 0.0000
	         Snider 0.0000
	              a 0.0000

          witli   441850   1 (12)
	           with 0.5000
	         witali 0.0000
	              a 0.0000
	           wilt 0.0000
	        witling 0.0000
	          Titli 0.0000
	              . 0.0000
	              , 0.0000
	          witai 0.0000
	           wili 0.0000
	           </S> 0.0000
	          wolfi 0.0000

l:)hickish-br(iwu   441856 inf (7)
	            his 0.0000
	       brownish 0.0000
	          which 0.0000
	              , 0.0000
	            the 0.0000
	              a 0.0000
	           </S> 0.0000

           tlie   441877   1 (10)
	            the 1.0000
	           tile 0.0000
	              a 0.0000
	           this 0.0000
	          tliet 0.0000
	           alba 0.0000
	           trie 0.0000
	           </S> 0.0000
	              , 0.0000
	         breast 0.0000

              j   441951 inf (9)
	          water 0.0000
	              . 0.0000
	             us 0.0000
	          state 0.0000
	             dj 0.0000
	            the 0.0000
	           </S> 0.0000
	              , 0.0000
	             ja 0.0000

              -   441952   1 (6)
	              - 1.0000
	              ) 0.0000
	            the 0.0000
	              , 0.0000
	             us 0.0000
	           </S> 0.0000

       ellowish   441953 inf (9)
	      yellowish 0.5000
	           with 0.0000
	              . 0.0000
	              s 0.0000
	           LECT 0.0000
	             of 0.0000
	           </S> 0.0000
	             to 0.0000
	              a 0.0000

          d(jes   442053   1 (11)
	           does 0.7000
	            did 0.2000
	            can 0.0000
	              a 0.0000
	              , 0.0000
	            jes 0.0000
	          Pales 0.0000
	           </S> 0.0000
	             do 0.0000
	          dejes 0.0000
	              I 0.0000

         3-oung   442083   1 (8)
	          young 0.8000
	              . 0.0000
	          found 0.0000
	          goung 0.0000
	           </S> 0.0000
	            The 0.0000
	            oun 0.0000
	              a 0.0000

         tawn}^   442177   1 (10)
	          tawny 0.3000
	           tawn 0.1000
	           than 0.0000
	             to 0.0000
	         likely 0.0000
	     interested 0.0000
	              a 0.0000
	              , 0.0000
	        results 0.0000
	           </S> 0.0000

       primar}'   442402   1 (11)
	        primary 1.0000
	              - 0.0000
	         primar 0.0000
	              a 0.0000
	        process 0.0000
	           </S> 0.0000
	              , 0.0000
	           time 0.0000
	             of 0.0000
	       primaria 0.0000
	        primari 0.0000

    distinctl}-   442488   1 (8)
	     distinctly 1.0000
	              , 0.0000
	           more 0.0000
	              a 0.0000
	           </S> 0.0000
	         little 0.0000
	             no 0.0000
	           much 0.0000

           se.\   442627 inf (11)
	            see 0.5000
	      direction 0.0000
	           part 0.0000
	              , 0.0000
	           sala 0.0000
	             is 0.0000
	             of 0.0000
	              . 0.0000
	             se 0.0000
	              a 0.0000
	           </S> 0.0000

            b}-   442821   1 (8)
	             by 0.7000
	              . 0.0000
	           </S> 0.0000
	              - 0.0000
	              a 0.0000
	             to 0.0000
	              , 0.0000
	             us 0.0000

    plantatious   443203   1 (13)
	    plantations 0.9000
	    destination 0.0000
	           </S> 0.0000
	              , 0.0000
	           said 0.0000
	       children 0.0000
	            the 0.0000
	              a 0.0000
	 plantationibus 0.0000
	    information 0.0000
	        servile 0.0000
	          there 0.0000
	      plantatio 0.0000

     iudividual   443313   1 (12)
	     individual 0.9000
	     University 0.0000
	          first 0.0000
	          major 0.0000
	              . 0.0000
	       National 0.0000
	            one 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	        edition 0.0000
	       dividual 0.0000

          ver3'   443525   1 (9)
	           very 1.0000
	              , 0.0000
	            ver 0.0000
	            why 0.0000
	            not 0.0000
	              a 0.0000
	            the 0.0000
	          verve 0.0000
	           </S> 0.0000

     obliquel}-   443743   1 (9)
	      obliquely 0.9000
	              a 0.0000
	           </S> 0.0000
	            not 0.0000
	        oblique 0.0000
	             us 0.0000
	           only 0.0000
	             to 0.0000
	              , 0.0000

       rapidl}'   443758   1 (8)
	        rapidly 0.6000
	              a 0.0000
	    destination 0.0000
	           </S> 0.0000
	            the 0.0000
	   subsidiaries 0.0000
	           said 0.0000
	              , 0.0000

              '   444107 inf (6)
	              ' 1.0000
	            the 0.0000
	              , 0.0000
	           </S> 0.0000
	              . 0.0000
	             us 0.0000

          ivhcc   444108 inf (13)
	           </S> 0.0000
	              , 0.0000
	              ) 0.0000
	          voice 0.0000
	          <UNK> 0.0000
	            icc 0.0000
	          Avich 0.0000
	           vicc 0.0000
	           Ahcc 0.0000
	          ivica 0.0000
	              s 0.0000
	              a 0.0000
	             in 0.0000

          tvhee   444115 inf (11)
	           thee 0.4000
	           they 0.3000
	            the 0.2000
	            tvh 0.0000
	              , 0.0000
	              i 0.0000
	          <UNK> 0.0000
	          tehee 0.0000
	      therefore 0.0000
	          vehet 0.0000
	             L. 0.0000

          w/icc   444122 inf (9)
	          which 0.2000
	            the 0.0000
	          wicca 0.0000
	           wici 0.0000
	            icc 0.0000
	              i 0.0000
	            one 0.0000
	          <UNK> 0.0000
	           Pica 0.0000

     generall}-   444240   1 (8)
	      generally 0.9000
	              a 0.0000
	              ( 0.0000
	            and 0.0000
	       generall 0.0000
	            all 0.0000
	            the 0.0000
	           </S> 0.0000

            b}'   444309   1 (9)
	             by 1.0000
	            and 0.0000
	             us 0.0000
	              ' 0.0000
	           </S> 0.0000
	              a 0.0000
	             of 0.0000
	              , 0.0000
	            the 0.0000

        huffish   444904 inf (9)
	        huffish 1.0000
	              - 0.0000
	          silty 0.0000
	           </S> 0.0000
	             or 0.0000
	            his 0.0000
	              a 0.0000
	            and 0.0000
	            the 0.0000

         smok}'   444989 inf (11)
	          smoke 0.7000
	          until 0.0000
	           smok 0.0000
	           some 0.0000
	         canola 0.0000
	              a 0.0000
	            the 0.0000
	              , 0.0000
	      vegetable 0.0000
	          smoko 0.0000
	           </S> 0.0000

         whicli   445211   1 (7)
	          which 0.5000
	        Chiclid 0.0000
	              , 0.0000
	         whilie 0.0000
	           </S> 0.0000
	         chwili 0.0000
	              a 0.0000

         sieuua   445441 inf (10)
	          sieur 0.2000
	              , 0.0000
	           </S> 0.0000
	            the 0.0000
	             it 0.0000
	            six 0.0000
	              a 0.0000
	         images 0.0000
	           seua 0.0000
	         seguia 0.0000

          ]\Iay   445632 inf (9)
	            may 0.4000
	             ay 0.1000
	              , 0.0000
	            the 0.0000
	              a 0.0000
	             it 0.0000
	           Itay 0.0000
	             us 0.0000
	           </S> 0.0000

            Jul   445742 inf (7)
	            Jul 0.7000
	              , 0.0000
	              a 0.0000
	             us 0.0000
	            the 0.0000
	           </S> 0.0000
	            Jan 0.0000

              '   445746   1 (7)
	              ' 0.8000
	             us 0.0000
	              ) 0.0000
	           </S> 0.0000
	            the 0.0000
	              . 0.0000
	              , 0.0000

  niothcr-l)ird   446052 inf (10)
	           </S> 0.0000
	          third 0.0000
	    traditional 0.0000
	           word 0.0000
	         better 0.0000
	              , 0.0000
	          ninth 0.0000
	    information 0.0000
	          flock 0.0000
	              a 0.0000

           soug   446329 inf (13)
	           soul 0.5000
	            sou 0.2000
	            the 0.0000
	     Zappos.com 0.0000
	           </S> 0.0000
	              , 0.0000
	           head 0.0000
	        mission 0.0000
	           sala 0.0000
	              a 0.0000
	           some 0.0000
	          sough 0.0000
	           sugo 0.0000

       iisually   447002 inf (7)
	       visually 0.9000
	              s 0.0000
	            and 0.0000
	           </S> 0.0000
	          shall 0.0000
	              a 0.0000
	              , 0.0000

             gd   447026 inf (8)
	             gd 0.4000
	             us 0.0000
	            the 0.0000
	              , 0.0000
	              a 0.0000
	             do 0.0000
	           </S> 0.0000
	           CliC 0.0000

     Larkrunuer   447571 inf (11)
	          value 0.1000
	          <UNK> 0.0000
	              , 0.0000
	              a 0.0000
	            are 0.0000
	        Warrior 0.0000
	        neutral 0.0000
	              ) 0.0000
	         broker 0.0000
	              s 0.0000
	           </S> 0.0000

           ui}'   447722 inf (10)
	             ui 0.6000
	             it 0.2000
	            uit 0.1000
	              a 0.0000
	           uiui 0.0000
	            the 0.0000
	           </S> 0.0000
	             us 0.0000
	              , 0.0000
	             up 0.0000

            cue   447736 inf (8)
	            the 0.8000
	            cue 0.6000
	           </S> 0.0000
	            cia 0.0000
	            can 0.0000
	              , 0.0000
	              a 0.0000
	           more 0.0000

            ]jy   447740   1 (10)
	              , 0.0000
	           from 0.0000
	             by 0.0000
	              a 0.0000
	            ajy 0.0000
	             jy 0.0000
	           than 0.0000
	         second 0.0000
	           </S> 0.0000
	            Pyi 0.0000

            lec   448005 inf (9)
	            lec 0.7000
	              a 0.0000
	           </S> 0.0000
	              . 0.0000
	          linux 0.0000
	            New 0.0000
	             to 0.0000
	           name 0.0000
	              s 0.0000

              -   448008   1 (6)
	              - 0.9000
	           </S> 0.0000
	              , 0.0000
	            the 0.0000
	             us 0.0000
	           name 0.0000

          tcc-u   448013 inf (13)
	             tc 0.2000
	           tchu 0.0000
	            tcu 0.0000
	          Ntccc 0.0000
	            the 0.0000
	           Atcc 0.0000
	     Scotchgard 0.0000
	              a 0.0000
	          <UNK> 0.0000
	            and 0.0000
	           </S> 0.0000
	             us 0.0000
	              , 0.0000

         wear}-   448090 inf (9)
	          wears 0.2000
	            now 0.0000
	           wear 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	         wearer 0.0000
	            the 0.0000
	         Search 0.0000

          tlien   448102   1 (12)
	           then 0.2000
	           lien 0.1000
	         tolien 0.0000
	           </S> 0.0000
	              a 0.0000
	             he 0.0000
	           tien 0.0000
	          tliet 0.0000
	            the 0.0000
	              , 0.0000
	         tilien 0.0000
	        Atliens 0.0000

          the}'   448204   1 (8)
	           they 1.0000
	              a 0.0000
	            the 0.0000
	           </S> 0.0000
	              , 0.0000
	           thee 0.0000
	             of 0.0000
	          their 0.0000

  subsequentl}'   448259   1 (8)
	   subsequently 1.0000
	           </S> 0.0000
	             'm 0.0000
	              , 0.0000
	              I 0.0000
	      currently 0.0000
	       recently 0.0000
	           have 0.0000

         3'oung   448285   1 (11)
	          young 1.0000
	          Young 0.1000
	           </S> 0.0000
	          goung 0.0000
	          found 0.0000
	         single 0.0000
	          major 0.0000
	            new 0.0000
	              - 0.0000
	           very 0.0000
	            oun 0.0000

         fl\ing   448604   1 (11)
	         flying 0.4000
	         filing 0.1000
	         closes 0.0000
	           </S> 0.0000
	           been 0.0000
	              , 0.0000
	            ing 0.0000
	           find 0.0000
	              a 0.0000
	          fling 0.0000
	      Northeast 0.0000

  consecjuences   448693   1 (11)
	   consequences 0.7000
	   consecuentes 0.1000
	       services 0.0000
	              , 0.0000
	           </S> 0.0000
	        service 0.0000
	              a 0.0000
	            the 0.0000
	             us 0.0000
	             up 0.0000
	       anything 0.0000

            mj^   450208   1 (10)
	             my 1.0000
	             mj 0.2000
	          their 0.0000
	            mjw 0.0000
	             us 0.0000
	            his 0.0000
	              a 0.0000
	           </S> 0.0000
	            the 0.0000
	              , 0.0000

          the}-   450442 inf (7)
	          their 0.2000
	              a 0.0000
	           </S> 0.0000
	            the 0.0000
	              . 0.0000
	           thee 0.0000
	              , 0.0000

        canar}'   450718   1 (10)
	         canary 0.8000
	          canar 0.1000
	            ink 0.0000
	         Canada 0.0000
	              a 0.0000
	           time 0.0000
	             us 0.0000
	            the 0.0000
	           </S> 0.0000
	              , 0.0000

          3'our   451363   1 (9)
	           your 0.7000
	             us 0.0000
	              a 0.0000
	           </S> 0.0000
	           down 0.0000
	            our 0.0000
	              , 0.0000
	             to 0.0000
	            not 0.0000

      i-eturned   451448   1 (12)
	       returned 0.9000
	          tried 0.0000
	          wants 0.0000
	            was 0.0000
	              a 0.0000
	           </S> 0.0000
	             as 0.0000
	            had 0.0000
	           came 0.0000
	              , 0.0000
	       inturned 0.0000
	        whether 0.0000

          Gatke   451832 inf (8)
	              a 0.0000
	           </S> 0.0000
	          Games 0.0000
	          Gatka 0.0000
	        Gataket 0.0000
	              , 0.0000
	           Gate 0.0000
	             M. 0.0000

          saj'S   451838 inf (9)
	           said 0.0000
	           saja 0.0000
	              a 0.0000
	              , 0.0000
	            saj 0.0000
	           </S> 0.0000
	          Ringe 0.0000
	          Sajas 0.0000
	           sala 0.0000

        Family^   452576   1 (6)
	         Family 0.2000
	              a 0.0000
	              ) 0.0000
	              , 0.0000
	           </S> 0.0000
	              " 0.0000

            ALA   452584 inf (6)
	            ALA 0.7075
	             us 0.0000
	              a 0.0000
	            All 0.0000
	              , 0.0000
	           </S> 0.0000

           UDID   452588 inf (11)
	            UDI 0.1000
	           UDIG 0.1000
	              ) 0.0000
	              , 0.0000
	           </S> 0.0000
	         SEQRES 0.0000
	              I 0.0000
	          GUDID 0.0000
	              A 0.0000
	           UDDI 0.0000
	            USD 0.0000

              .   452592   1 (6)
	              . 1.0000
	             us 0.0000
	              F 0.0000
	              , 0.0000
	            the 0.0000
	           </S> 0.0000

              F   452594 inf (9)
	             OF 0.3697
	              " 0.0000
	            the 0.0000
	           </S> 0.0000
	              / 0.0000
	              , 0.0000
	             us 0.0000
	             FL 0.0000
	             FF 0.0000

        Alaitdn   452614   2 (10)
	          Alain 0.2000
	         Alauda 0.1000
	         Allied 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	              " 0.0000
	           Alai 0.0000
	        Alaitoc 0.0000
	       Adailton 0.0000

       ar/iorca   452622   1 (11)
	        arborea 0.2000
	          arior 0.1000
	        artiora 0.0000
	        authors 0.0000
	        acriora 0.0000
	         siorca 0.0000
	              I 0.0000
	              , 0.0000
	      configure 0.0000
	           </S> 0.0000
	        Maiorca 0.0000

           LlNN   452632 inf (10)
	             pp 0.0000
	           LLNL 0.0000
	              i 0.0000
	            yes 0.0000
	           LMNN 0.0000
	            LNN 0.0000
	           List 0.0000
	            the 0.0000
	             Ll 0.0000
	           alba 0.0000

              "   452639 inf (6)
	              " 0.2000
	              , 0.0000
	            the 0.0000
	              / 0.0000
	             us 0.0000
	           </S> 0.0000

              T   452641 inf (8)
	             TT 0.0000
	              , 0.0000
	             IT 0.0000
	              ) 0.0000
	            the 0.0000
	             To 0.0000
	             us 0.0000
	           </S> 0.0000

              N   452643 inf (8)
	             us 0.0000
	              " 0.0000
	             IN 0.0000
	              , 0.0000
	             No 0.0000
	            the 0.0000
	           </S> 0.0000
	             NN 0.0000

         Russia   452719   1 (11)
	         Russia 1.0000
	         posted 0.0000
	           </S> 0.0000
	              a 0.0000
	             'm 0.0000
	              , 0.0000
	         cassia 0.0000
	          Music 0.0000
	        discuss 0.0000
	              . 0.0000
	         Europe 0.0000

             "^   453153   1 (6)
	             us 0.0000
	              a 0.0000
	             of 0.0000
	              " 0.0000
	              , 0.0000
	           </S> 0.0000

       Iloivard   453158 inf (12)
	          Ilova 0.0000
	              s 0.0000
	           mail 0.0000
	        Ilioara 0.0000
	        Ilgvars 0.0000
	              . 0.0000
	         Rivard 0.0000
	           </S> 0.0000
	          world 0.0000
	             to 0.0000
	              a 0.0000
	          loiva 0.0000

         iipper   454148 inf (13)
	         Ripper 0.8000
	         ripper 0.2000
	          Earth 0.0000
	              , 0.0000
	           </S> 0.0000
	         pipier 0.0000
	          major 0.0000
	              a 0.0000
	           item 0.0000
	           land 0.0000
	           most 0.0000
	              . 0.0000
	           page 0.0000

    distinctl}'   454631   1 (5)
	     distinctly 0.9000
	        details 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000

      soniewhal   454870   1 (9)
	       somewhat 0.2000
	              a 0.0000
	              , 0.0000
	        Toniwha 0.0000
	           from 0.0000
	      nonlethal 0.0000
	       societal 0.0000
	           </S> 0.0000
	        similar 0.0000

           Sk3'   454890 inf (11)
	           Site 0.0000
	              A 0.0000
	              , 0.0000
	           Skip 0.0000
	           case 0.0000
	            mid 0.0000
	           same 0.0000
	           </S> 0.0000
	            non 0.0000
	             Sk 0.0000
	          world 0.0000

      deeidedly   454917   1 (9)
	      decidedly 0.7000
	              , 0.0000
	        Aidedly 0.0000
	           much 0.0000
	           </S> 0.0000
	              a 0.0000
	         deeded 0.0000
	        deedily 0.0000
	        decided 0.0000

          Yonng   454965 inf (8)
	           Yong 0.1000
	           </S> 0.0000
	              " 0.0000
	          Yonne 0.0000
	              a 0.0000
	              , 0.0000
	            You 0.0000
	              s 0.0000

        l:)irds   454971   2 (5)
	         lairds 0.3000
	          birds 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000

         rnfons   454988 inf (14)
	          frons 0.0000
	         likely 0.0000
	          fully 0.0000
	         infons 0.0000
	          rufus 0.0000
	           </S> 0.0000
	         refons 0.0000
	           Info 0.0000
	             to 0.0000
	            you 0.0000
	           than 0.0000
	       renflons 0.0000
	              , 0.0000
	              a 0.0000

        3'ellow   455053 inf (10)
	         Yellow 0.2000
	             to 0.0000
	         likely 0.0000
	          below 0.0000
	           </S> 0.0000
	           than 0.0000
	           ello 0.0000
	              a 0.0000
	              , 0.0000
	      expensive 0.0000

        vSharpe   455247   1 (8)
	         Sharpe 0.8000
	              , 0.0000
	             A. 0.0000
	          share 0.0000
	           </S> 0.0000
	           King 0.0000
	         Jekyll 0.0000
	              a 0.0000

         IvU-lu   455357 inf (8)
	          Ivalu 0.6000
	              s 0.0000
	              , 0.0000
	             In 0.0000
	              ) 0.0000
	          <UNK> 0.0000
	              a 0.0000
	           </S> 0.0000

          Irb}'   455436   1 (11)
	           Irby 0.2000
	            Irb 0.1000
	             .. 0.0000
	              , 0.0000
	        However 0.0000
	           Iraq 0.0000
	          <UNK> 0.0000
	           </S> 0.0000
	             A. 0.0000
	              A 0.0000
	         Claver 0.0000

          sa3'S   455494 inf (9)
	           said 0.1000
	           </S> 0.0000
	            and 0.0000
	             sa 0.0000
	              , 0.0000
	              a 0.0000
	           sala 0.0000
	              x 0.0000
	           SasS 0.0000

           \&xy   455670 inf (12)
	           sexy 0.2000
	        limited 0.0000
	              a 0.0000
	              , 0.0000
	            too 0.0000
	           have 0.0000
	             be 0.0000
	            Oxy 0.0000
	           Next 0.0000
	           only 0.0000
	             xy 0.0000
	           </S> 0.0000

      Chaparaks   455728 inf (13)
	      Chaparall 0.3000
	        Company 0.0000
	          world 0.0000
	     Chaparrals 0.0000
	     Chaparajos 0.0000
	           </S> 0.0000
	              t 0.0000
	          first 0.0000
	           same 0.0000
	         Charak 0.0000
	         Chapar 0.0000
	              . 0.0000
	       Charakas 0.0000

       vSpanish   455806   1 (10)
	        Spanish 1.0000
	         public 0.0000
	              , 0.0000
	            the 0.0000
	              a 0.0000
	           main 0.0000
	           </S> 0.0000
	             us 0.0000
	            top 0.0000
	        English 0.0000

          onl}'   455999   1 (7)
	           only 1.0000
	        nowhere 0.0000
	          going 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	          ollon 0.0000

              '   456271   1 (9)
	              ' 0.8000
	             to 0.5000
	              , 0.0000
	            due 0.0000
	             in 0.0000
	             us 0.0000
	            for 0.0000
	            the 0.0000
	           </S> 0.0000

     compactl}'   456602   1 (8)
	      compactly 0.5000
	           </S> 0.0000
	           than 0.0000
	              a 0.0000
	       complete 0.0000
	        solidly 0.0000
	              , 0.0000
	             to 0.0000

           Sk^^   456636 inf (10)
	           Site 0.2000
	             Sk 0.1000
	          major 0.0000
	              , 0.0000
	           Skip 0.0000
	           </S> 0.0000
	            non 0.0000
	              . 0.0000
	           most 0.0000
	              a 0.0000

      Secholiin   457020 inf (12)
	       Decholin 0.1000
	       Scholion 0.0000
	       Scholing 0.0000
	           </S> 0.0000
	      Schonlein 0.0000
	              a 0.0000
	          <UNK> 0.0000
	              . 0.0000
	              1 0.0000
	         Sechin 0.0000
	              s 0.0000
	         people 0.0000

       huffish-   457072 inf (11)
	        huffish 0.1000
	              . 0.0000
	            his 0.0000
	           used 0.0000
	            not 0.0000
	          white 0.0000
	              a 0.0000
	     trademarks 0.0000
	           </S> 0.0000
	              , 0.0000
	   instructions 0.0000

     generall}'   457470   1 (6)
	      generally 0.7000
	       generall 0.0000
	           </S> 0.0000
	       formally 0.0000
	              , 0.0000
	              a 0.0000

              '   457504 inf (8)
	            the 0.0000
	            all 0.0000
	             to 0.0000
	          match 0.0000
	              , 0.0000
	            one 0.0000
	             us 0.0000
	           </S> 0.0000

         cjuite   457627 inf (10)
	         cluite 0.1000
	              . 0.0000
	           uite 0.0000
	           </S> 0.0000
	           site 0.0000
	          cuite 0.0000
	              , 0.0000
	            for 0.0000
	              a 0.0000
	        juncite 0.0000

          eaidy   457634 inf (8)
	              , 0.0000
	          ediya 0.0000
	           </S> 0.0000
	              a 0.0000
	          Saidy 0.0000
	            ead 0.0000
	           said 0.0000
	            the 0.0000

          ver^'   457822   1 (6)
	           very 1.0000
	            ver 0.0000
	          verve 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000

           pnre   457828   1 (10)
	           pure 0.3000
	           page 0.0000
	            pre 0.0000
	              a 0.0000
	           inre 0.0000
	              , 0.0000
	             to 0.0000
	           </S> 0.0000
	           pren 0.0000
	          parva 0.0000

            b}-   457851   1 (7)
	             by 0.4000
	           </S> 0.0000
	              , 0.0000
	              - 0.0000
	             us 0.0000
	              a 0.0000
	            the 0.0000

          man}^   457855   1 (8)
	           many 0.5000
	            man 0.0000
	              . 0.0000
	           mana 0.0000
	           </S> 0.0000
	          major 0.0000
	              , 0.0000
	              a 0.0000

     certaiul}'   457927   1 (7)
	      certainly 0.7000
	           </S> 0.0000
	             is 0.0000
	              , 0.0000
	          could 0.0000
	         really 0.0000
	              a 0.0000

            mj-   458369   2 (10)
	             mj 0.6710
	             my 0.2000
	            mjw 0.0000
	           </S> 0.0000
	              , 0.0000
	             us 0.0000
	             an 0.0000
	            the 0.0000
	           your 0.0000
	              a 0.0000

  Sittiugbourne   458406   1 (8)
	  Sittingbourne 0.8000
	              , 0.0000
	         course 0.0000
	           </S> 0.0000
	        Service 0.0000
	            the 0.0000
	              a 0.0000
	             us 0.0000

      promineut   458651   1 (11)
	      prominent 0.9000
	       prominet 0.5000
	              , 0.0000
	           send 0.0000
	        promine 0.0000
	           </S> 0.0000
	           stay 0.0000
	           from 0.0000
	              a 0.0000
	    prominuerit 0.0000
	            the 0.0000

          awaj^   458693   1 (12)
	           away 0.3000
	              . 0.0000
	           </S> 0.0000
	           waaj 0.0000
	          again 0.0000
	            awa 0.0000
	              , 0.0000
	             us 0.0000
	             to 0.0000
	            off 0.0000
	              I 0.0000
	          Zawaj 0.0000

            aud   458775   1 (8)
	            and 0.9000
	            aud 0.7075
	            who 0.0000
	           </S> 0.0000
	            the 0.0000
	              " 0.0000
	            arz 0.0000
	              I 0.0000

      certainlj   458961   1 (10)
	      certainly 0.7000
	              , 0.0000
	              . 0.0000
	           work 0.0000
	            was 0.0000
	             is 0.0000
	              a 0.0000
	             us 0.0000
	           </S> 0.0000
	       services 0.0000

              ?   458970   1 (6)
	              ? 1.0000
	             it 0.0000
	              , 0.0000
	            the 0.0000
	             us 0.0000
	           </S> 0.0000

            b}'   459363   1 (10)
	             by 0.7000
	           more 0.0000
	             in 0.0000
	              ' 0.0000
	              , 0.0000
	           beef 0.0000
	           </S> 0.0000
	            the 0.0000
	              s 0.0000
	              a 0.0000

            aud   459801   1 (8)
	            and 0.9000
	            aud 0.7075
	           </S> 0.0000
	             of 0.0000
	              . 0.0000
	              , 0.0000
	              I 0.0000
	            arz 0.0000

       uncann}'   460523   1 (11)
	        uncanny 0.9000
	              a 0.0000
	         unique 0.0000
	           more 0.0000
	              , 0.0000
	            the 0.0000
	     misleading 0.0000
	           </S> 0.0000
	             us 0.0000
	            him 0.0000
	           like 0.0000

              '   460879 inf (7)
	             of 0.2000
	             's 0.1000
	             us 0.0000
	           </S> 0.0000
	              , 0.0000
	              . 0.0000
	            the 0.0000

     Familx-ALA   460965 inf (9)
	         Finite 0.0000
	       analysis 0.0000
	           will 0.0000
	              " 0.0000
	           </S> 0.0000
	              - 0.0000
	              , 0.0000
	              / 0.0000
	              a 0.0000

           UDID   460976 inf (8)
	           UDIG 0.2000
	              a 0.0000
	           UDDI 0.0000
	            USD 0.0000
	            UDI 0.0000
	              , 0.0000
	          GUDID 0.0000
	           </S> 0.0000

              E   460982 inf (9)
	              " 0.0000
	             El 0.0000
	            the 0.0000
	           </S> 0.0000
	              / 0.0000
	              , 0.0000
	             us 0.0000
	             RE 0.0000
	             EE 0.0000

         Alanda   461005   1 (10)
	         Alauda 0.8000
	         Alando 0.2000
	          Aland 0.1000
	           </S> 0.0000
	              " 0.0000
	              a 0.0000
	              , 0.0000
	              / 0.0000
	        Alandia 0.0000
	         Alaska 0.0000

       crisfafa   461012   1 (9)
	       cristata 0.2000
	       crisaras 0.0000
	           </S> 0.0000
	         Friday 0.0000
	           Club 0.0000
	              a 0.0000
	              , 0.0000
	      configure 0.0000
	          crisa 0.0000

        Eiirope   461062   1 (16)
	         Europe 1.0000
	     California 0.0000
	              . 0.0000
	        Eoropie 0.0000
	         Eiropa 0.0000
	           rope 0.0000
	         Africa 0.0000
	              , 0.0000
	           from 0.0000
	              ) 0.0000
	        siropen 0.0000
	         Valley 0.0000
	           </S> 0.0000
	             us 0.0000
	              a 0.0000
	           Eiro 0.0000

           Tlie   461858 inf (10)
	           Tlia 0.0000
	           </S> 0.0000
	            Tli 0.0000
	           fish 0.0000
	              " 0.0000
	           This 0.0000
	              a 0.0000
	           Tile 0.0000
	              , 0.0000
	           alba 0.0000

          watli   461911   2 (13)
	           wati 0.1000
	            the 0.0000
	              , 0.0000
	         witali 0.0000
	        Quwatli 0.0000
	           </S> 0.0000
	           wali 0.0000
	          watti 0.0000
	            and 0.0000
	          wolfi 0.0000
	          Matli 0.0000
	           with 0.0000
	              a 0.0000

      fcatliers   462065 inf (13)
	         fliers 0.4000
	       outliers 0.2000
	          world 0.0000
	           most 0.0000
	          major 0.0000
	          first 0.0000
	              , 0.0000
	     catlickers 0.0000
	           page 0.0000
	     flatliners 0.0000
	              a 0.0000
	           </S> 0.0000
	              . 0.0000

        hastard   462102 inf (12)
	        Bastard 0.4000
	         hastar 0.2000
	           </S> 0.0000
	           last 0.0000
	            two 0.0000
	       hamstrad 0.0000
	           same 0.0000
	            way 0.0000
	        country 0.0000
	          major 0.0000
	           term 0.0000
	              - 0.0000

         Ijrown   462155   1 (15)
	          brown 0.8000
	          Brown 0.2000
	      available 0.0000
	             to 0.0000
	           down 0.0000
	              a 0.0000
	           Ijon 0.0000
	         winner 0.0000
	          green 0.0000
	           </S> 0.0000
	         Intown 0.0000
	             us 0.0000
	         Ingrow 0.0000
	              , 0.0000
	           Iron 0.0000

          greyi   462168 inf (10)
	          greyi 0.9951
	   CheapTickets 0.0000
	           free 0.0000
	            non 0.0000
	              a 0.0000
	          pstat 0.0000
	              , 0.0000
	            the 0.0000
	           </S> 0.0000
	            Pyi 0.0000

              -   462173   1 (7)
	              - 1.0000
	           </S> 0.0000
	            the 0.0000
	              , 0.0000
	           name 0.0000
	             us 0.0000
	              . 0.0000

       luargius   462177 inf (10)
	        largius 0.4000
	              - 0.0000
	           </S> 0.0000
	              s 0.0000
	              , 0.0000
	             .. 0.0000
	              " 0.0000
	           list 0.0000
	              a 0.0000
	        sources 0.0000

         whicli   462219   1 (10)
	          which 0.8000
	           that 0.0000
	              . 0.0000
	          wires 0.0000
	         chwili 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	         whilie 0.0000
	        Chiclid 0.0000

          sandv   462296   1 (13)
	          sandy 0.6000
	           sand 0.6000
	            non 0.0000
	       sandvitx 0.0000
	          built 0.0000
	           </S> 0.0000
	          vands 0.0000
	           sala 0.0000
	            two 0.0000
	              a 0.0000
	            new 0.0000
	              , 0.0000
	           said 0.0000

         t)uter   462321 inf (12)
	         tauter 0.1000
	            the 0.0000
	          tuter 0.0000
	           </S> 0.0000
	            top 0.0000
	          their 0.0000
	        Company 0.0000
	           uter 0.0000
	             us 0.0000
	         tutter 0.0000
	              a 0.0000
	              , 0.0000

   principall}-   462455   1 (10)
	    principally 0.8000
	     principall 0.5000
	            not 0.0000
	              , 0.0000
	              a 0.0000
	      available 0.0000
	        scarlet 0.0000
	           </S> 0.0000
	       actually 0.0000
	          white 0.0000

           tlie   462910   1 (9)
	            the 1.0000
	              , 0.0000
	           trie 0.0000
	              a 0.0000
	          tliet 0.0000
	           this 0.0000
	           </S> 0.0000
	           tile 0.0000
	           alba 0.0000

          Irb}-   463072   1 (10)
	        Mustard 0.0000
	             J. 0.0000
	              ) 0.0000
	              , 0.0000
	              a 0.0000
	           Iraq 0.0000
	            Irb 0.0000
	           Irby 0.0000
	           </S> 0.0000
	      configure 0.0000

            arc   463314   2 (6)
	            arc 1.0000
	            are 0.6000
	            arz 0.0000
	           </S> 0.0000
	              , 0.0000
	            and 0.0000

          onl}'   463397   1 (8)
	           only 0.9000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	            the 0.0000
	            not 0.0000
	              s 0.0000
	          ollon 0.0000

      Curiiicit   463486 inf (11)
	       Curicica 0.1000
	   organization 0.0000
	              s 0.0000
	            the 0.0000
	              , 0.0000
	        service 0.0000
	        Curtici 0.0000
	        Curiini 0.0000
	           </S> 0.0000
	              a 0.0000
	           them 0.0000

     Sauderling   463758   1 (13)
	     Sanderling 0.3000
	      ouderling 0.0000
	       response 0.0000
	       Sterling 0.0000
	         result 0.0000
	              , 0.0000
	            bit 0.0000
	            new 0.0000
	           </S> 0.0000
	          major 0.0000
	           good 0.0000
	          wheel 0.0000
	        service 0.0000

           eart   464135 inf (9)
	           eart 1.0000
	            the 0.0000
	            non 0.0000
	           each 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	             re 0.0000
	            arz 0.0000

         says:-   464254   1 (8)
	           says 0.6000
	        Company 0.0000
	            Inn 0.0000
	          sayst 0.0000
	              " 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000

              -   464261   1 (5)
	              - 1.0000
	            the 0.0000
	              , 0.0000
	             us 0.0000
	           </S> 0.0000

            diy   464539 inf (9)
	              , 0.0000
	            did 0.0000
	             di 0.0000
	           diya 0.0000
	           </S> 0.0000
	              a 0.0000
	            day 0.0000
	            yid 0.0000
	            cia 0.0000

            '95   464730 inf (10)
	             's 0.8000
	              5 0.0000
	             of 0.0000
	           </S> 0.0000
	           made 0.0000
	              , 0.0000
	             us 0.0000
	              a 0.0000
	          rates 0.0000
	            the 0.0000

              "   464737 inf (6)
	              " 1.0000
	             us 0.0000
	              , 0.0000
	           </S> 0.0000
	            the 0.0000
	           midi 0.0000

             bS   464738 inf (11)
	              ( 0.3000
	             by 0.1000
	              - 0.0000
	              , 0.0000
	             he 0.0000
	              a 0.0000
	            EbS 0.0000
	           </S> 0.0000
	           PbSe 0.0000
	             Sb 0.0000
	              s 0.0000

         wdiich   464760   1 (10)
	          which 0.6000
	           wich 0.2000
	        Midwich 0.0000
	              , 0.0000
	           dich 0.0000
	          Riich 0.0000
	           </S> 0.0000
	              a 0.0000
	            the 0.0000
	             us 0.0000

         sandj^   464868 inf (6)
	         sandja 0.1000
	            the 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	           said 0.0000

      rapidit}'   464946   1 (13)
	       rapidity 0.8000
	         prices 0.0000
	        leaping 0.0000
	           beer 0.0000
	    information 0.0000
	              , 0.0000
	           rate 0.0000
	           deal 0.0000
	           idea 0.0000
	              . 0.0000
	           </S> 0.0000
	     rapiditati 0.0000
	              a 0.0000

          wlien   465006   1 (15)
	           lien 0.5000
	           when 0.5000
	         racing 0.0000
	          Alien 0.0000
	            sex 0.0000
	     technician 0.0000
	           look 0.0000
	           cock 0.0000
	              , 0.0000
	              a 0.0000
	           wien 0.0000
	           </S> 0.0000
	        ewlieni 0.0000
	         willen 0.0000
	             of 0.0000

     generall}'   465142   1 (7)
	      generally 1.0000
	       generall 0.0000
	           </S> 0.0000
	              a 0.0000
	         really 0.0000
	              , 0.0000
	            not 0.0000

            (U-   465166   1 (10)
	            the 0.0000
	           </S> 0.0000
	             US 0.0000
	             us 0.0000
	              - 0.0000
	             EU 0.0000
	             or 0.0000
	            and 0.0000
	              a 0.0000
	        working 0.0000

             iu   465170   1 (5)
	             in 1.0000
	              a 0.0000
	             iu 0.0000
	           </S> 0.0000
	              , 0.0000

        fauiily   465183 inf (12)
	       faultily 0.1000
	           will 0.0000
	            the 0.0000
	          small 0.0000
	        fairily 0.0000
	        private 0.0000
	           uily 0.0000
	       kawaiily 0.0000
	          minor 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000

         duriug   465308   1 (10)
	         during 0.7000
	         durius 0.6000
	           have 0.0000
	             in 0.0000
	             is 0.0000
	         dubius 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	          drugi 0.0000

            sa3   465625 inf (9)
	             sa 0.5000
	          Hawke 0.0000
	            say 0.0000
	            sas 0.0000
	             so 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	           sala 0.0000

             's   465628   1 (8)
	             's 1.0000
	              - 0.0000
	            out 0.0000
	              , 0.0000
	             us 0.0000
	           </S> 0.0000
	              a 0.0000
	             is 0.0000

      xA-lgeria   465639   1 (8)
	        Algeria 0.7000
	             us 0.0000
	           </S> 0.0000
	            the 0.0000
	              a 0.0000
	              , 0.0000
	          which 0.0000
	          their 0.0000

           iuto   465679   2 (9)
	           iuto 0.9724
	           into 0.2000
	              . 0.0000
	             in 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	             iu 0.0000
	        through 0.0000

              3   465890 inf (7)
	              , 0.0000
	              . 0.0000
	             us 0.0000
	            the 0.0000
	             of 0.0000
	           year 0.0000
	           </S> 0.0000

              -   465891   1 (7)
	              - 1.0000
	              ) 0.0000
	            the 0.0000
	              , 0.0000
	             us 0.0000
	           </S> 0.0000
	         Column 0.0000

       ellowish   465892 inf (8)
	      yellowish 0.5000
	              a 0.0000
	           with 0.0000
	              4 0.0000
	              , 0.0000
	             to 0.0000
	           </S> 0.0000
	              s 0.0000

      uuiformly   465912   1 (9)
	      uniformly 0.3000
	     muriformly 0.1000
	           </S> 0.0000
	              . 0.0000
	    ununiformly 0.0000
	              a 0.0000
	              , 0.0000
	            are 0.0000
	         before 0.0000

             iu   466214   1 (7)
	             in 1.0000
	             to 0.0000
	              a 0.0000
	           </S> 0.0000
	            the 0.0000
	              , 0.0000
	             iu 0.0000

             iu   466236   1 (7)
	             in 1.0000
	             is 0.7000
	              , 0.0000
	           </S> 0.0000
	            the 0.0000
	             iu 0.0000
	              a 0.0000

         plaius   466296   1 (14)
	         plains 0.5000
	          plais 0.2000
	          beach 0.0000
	         closed 0.0000
	              , 0.0000
	           </S> 0.0000
	          place 0.0000
	        beaches 0.0000
	       products 0.0000
	         Lanius 0.0000
	           plai 0.0000
	         plausi 0.0000
	              a 0.0000
	       Agelaius 0.0000

     guli^iila*   466415 inf (13)
	      Similarly 0.1000
	          guide 0.1000
	      pratensis 0.0000
	           </S> 0.0000
	             as 0.0000
	       nidulans 0.0000
	              a 0.0000
	              % 0.0000
	         Philip 0.0000
	           will 0.0000
	              , 0.0000
	         advice 0.0000
	      eliminate 0.0000

           flue   466445 inf (10)
	           flue 0.9724
	           that 0.0000
	           much 0.0000
	           free 0.0000
	              a 0.0000
	             on 0.0000
	           </S> 0.0000
	              , 0.0000
	            far 0.0000
	           alba 0.0000

             iu   466507   1 (8)
	             in 1.0000
	           </S> 0.0000
	          other 0.0000
	              a 0.0000
	              , 0.0000
	              . 0.0000
	           even 0.0000
	             iu 0.0000

            aud   467490   1 (10)
	            and 1.0000
	            aud 0.7075
	          while 0.0000
	           </S> 0.0000
	            the 0.0000
	            but 0.0000
	              I 0.0000
	              - 0.0000
	             so 0.0000
	            arz 0.0000

  considerabl}'   467560 inf (10)
	   considerable 1.0000
	            the 0.0000
	     domesticus 0.0000
	           with 0.0000
	              , 0.0000
	             by 0.0000
	           </S> 0.0000
	              a 0.0000
	         called 0.0000
	           such 0.0000

           tlie   467641   1 (11)
	            the 0.8000
	           true 0.1000
	              a 0.0000
	           alba 0.0000
	           tile 0.0000
	              , 0.0000
	           trie 0.0000
	           able 0.0000
	           this 0.0000
	          tliet 0.0000
	           </S> 0.0000

     PyauviotKs   467656 inf (11)
	             us 0.3000
	            its 0.2000
	       previous 0.1000
	              a 0.0000
	        respect 0.0000
	           </S> 0.0000
	        support 0.0000
	              , 0.0000
	            the 0.0000
	           your 0.0000
	        various 0.0000

       Icucotis   467667 inf (11)
	        cunctis 0.0000
	              a 0.0000
	       Isocotin 0.0000
	          Ictis 0.0000
	              , 0.0000
	          until 0.0000
	             of 0.0000
	              . 0.0000
	         scuoti 0.0000
	           </S> 0.0000
	          cotis 0.0000

         wliich   467701   1 (10)
	          which 1.0000
	          lwich 0.0000
	         Iliich 0.0000
	              a 0.0000
	              , 0.0000
	           wich 0.0000
	           them 0.0000
	             us 0.0000
	            the 0.0000
	           </S> 0.0000

            b}^   467822   1 (6)
	             by 0.6000
	              a 0.0000
	           </S> 0.0000
	              } 0.0000
	             us 0.0000
	              , 0.0000

         Jerdou   467826   1 (9)
	         Jerdon 0.8000
	              a 0.0000
	           </S> 0.0000
	         Jersey 0.0000
	         Jerrod 0.0000
	            the 0.0000
	          today 0.0000
	              , 0.0000
	          Aedon 0.0000

          the}'   468160 inf (7)
	           thee 0.1000
	           </S> 0.0000
	          their 0.0000
	              a 0.0000
	            the 0.0000
	            you 0.0000
	              , 0.0000

           Pere   468260 inf (7)
	           Pere 1.0000
	           </S> 0.0000
	              : 0.0000
	           Pica 0.0000
	            the 0.0000
	              a 0.0000
	           were 0.0000

            187   468279 inf (10)
	              - 0.0000
	            100 0.0000
	             us 0.0000
	            the 0.0000
	             80 0.0000
	              / 0.0000
	           </S> 0.0000
	              , 0.0000
	              " 0.0000
	              I 0.0000

     Familx-ALA   468928 inf (9)
	              - 0.1000
	              ) 0.0000
	           will 0.0000
	           </S> 0.0000
	              a 0.0000
	             .. 0.0000
	              , 0.0000
	       Analysis 0.0000
	       tramadol 0.0000

          UDID^   468939 inf (11)
	            DVD 0.1000
	              ) 0.0000
	            UDI 0.0000
	          UNIDO 0.0000
	           UDDI 0.0000
	             us 0.0000
	              , 0.0000
	           UDIG 0.0000
	              a 0.0000
	           </S> 0.0000
	          GUDID 0.0000

        AVinged   468957 inf (12)
	         winged 0.3000
	          House 0.0000
	        Stripes 0.0000
	        Avinger 0.0000
	          Vinge 0.0000
	          Ainge 0.0000
	           </S> 0.0000
	              , 0.0000
	              I 0.0000
	             of 0.0000
	         Vidgen 0.0000
	          thing 0.0000

ilTclanocorypha   468972 inf (9)
	          Thank 0.0000
	              a 0.0000
	           </S> 0.0000
	              / 0.0000
	             in 0.0000
	              " 0.0000
	              , 0.0000
	      Copyright 0.0000
	      According 0.0000

       sidirica   468988   1 (10)
	       sibirica 0.6000
	         silica 0.1000
	      residiria 0.0000
	           </S> 0.0000
	      ossidrica 0.0000
	              a 0.0000
	              , 0.0000
	         ridica 0.0000
	         Sirica 0.0000
	      configure 0.0000

          Gmp;l   468998 inf (7)
	          Gmail 0.0000
	             pp 0.0000
	          Gympl 0.0000
	            Gmp 0.0000
	          Email 0.0000
	            the 0.0000
	              i 0.0000

        Eugland   469383   1 (11)
	        England 0.3000
	           </S> 0.0000
	            the 0.0000
	            you 0.0000
	             us 0.0000
	              a 0.0000
	              , 0.0000
	     Euglandina 0.0000
	           cars 0.0000
	            and 0.0000
	        Rugland 0.0000

Faunlx-ALAUDID.E   469637 inf (11)
	              / 0.0000
	       SATURDAY 0.0000
	        England 0.0000
	        Falkirk 0.0000
	           only 0.0000
	              - 0.0000
	             DE 0.0000
	              , 0.0000
	              " 0.0000
	           </S> 0.0000
	              a 0.0000

 Mcla)iOLoyypha   469673 inf (11)
	             My 0.1000
	   yeltoniensis 0.1000
	              / 0.0000
	              " 0.0000
	              , 0.0000
	              a 0.0000
	      ChangeLog 0.0000
	           </S> 0.0000
	              ) 0.0000
	         Martin 0.0000
	      Copyright 0.0000

    ycltontemis   469688 inf (9)
	       contrast 0.0000
	              a 0.0000
	      Montornés 0.0000
	           </S> 0.0000
	     components 0.0000
	              , 0.0000
	       conftest 0.0000
	             to 0.0000
	      configure 0.0000

   ALAl'DID.-Ji   470444 inf (13)
	           side 0.0000
	             L. 0.0000
	              © 0.0000
	              a 0.0000
	             to 0.0000
	              s 0.0000
	       Atlantis 0.0000
	            All 0.0000
	           </S> 0.0000
	              , 0.0000
	              p 0.0000
	            Vol 0.0000
	              D 0.0000

  Ciila)idixlla   470481   1 (9)
	    Calandrella 0.3000
	              , 0.0000
	              a 0.0000
	              ) 0.0000
	           </S> 0.0000
	              " 0.0000
	              / 0.0000
	        Comella 0.0000
	          Click 0.0000

   bnuhydaityla   470495 inf (9)
	       addition 0.0000
	      configure 0.0000
	              a 0.0000
	              , 0.0000
	              n 0.0000
	        Tuesday 0.0000
	          build 0.0000
	          atlas 0.0000
	           </S> 0.0000

          geuus   470594   1 (10)
	          genus 0.4000
	         genuus 0.0000
	            geu 0.0000
	          world 0.0000
	           </S> 0.0000
	          rufus 0.0000
	            get 0.0000
	           same 0.0000
	              , 0.0000
	           geus 0.0000

    Calandrclla   470600   1 (7)
	    Calandrella 0.5000
	              a 0.0000
	             of 0.0000
	              , 0.0000
	           </S> 0.0000
	       Calandra 0.0000
	          place 0.0000

        Alaiida   470795   1 (15)
	         Alauda 0.7000
	            out 0.0000
	           Alai 0.0000
	              a 0.0000
	        Algaida 0.0000
	           </S> 0.0000
	             is 0.0000
	           said 0.0000
	          Alaid 0.0000
	        Alaimia 0.0000
	        Adalida 0.0000
	           that 0.0000
	              , 0.0000
	              . 0.0000
	        maiidae 0.0000

     xAbyssinia   470992   1 (8)
	      Abyssinia 0.5000
	              a 0.0000
	          using 0.0000
	            the 0.0000
	       possible 0.0000
	           </S> 0.0000
	              , 0.0000
	              I 0.0000

           si.x   471213   1 (12)
	            six 0.7000
	           site 0.0000
	             on 0.0000
	              a 0.0000
	            one 0.0000
	            the 0.0000
	            and 0.0000
	           </S> 0.0000
	           siex 0.0000
	              ( 0.0000
	             si 0.0000
	           sala 0.0000

   sand3'-browu   471627 inf (10)
	            not 0.0000
	        implied 0.0000
	           send 0.0000
	            the 0.0000
	              a 0.0000
	             an 0.0000
	          brown 0.0000
	           </S> 0.0000
	       password 0.0000
	              , 0.0000

        huffish   471787 inf (10)
	        huffish 0.9958
	           this 0.0000
	              , 0.0000
	            and 0.0000
	           blue 0.0000
	              a 0.0000
	           </S> 0.0000
	           skin 0.0000
	             us 0.0000
	             to 0.0000

           tlie   471997   1 (9)
	            the 1.0000
	           </S> 0.0000
	              a 0.0000
	           alba 0.0000
	           trie 0.0000
	           tile 0.0000
	           this 0.0000
	              , 0.0000
	          tliet 0.0000

     j^ellowish   472045   1 (7)
	      yellowish 0.6000
	              , 0.0000
	           </S> 0.0000
	              . 0.0000
	          below 0.0000
	             of 0.0000
	              a 0.0000

       Cahuidra   472655 inf (13)
	       Cahuilla 0.7000
	         Cahuil 0.1000
	       Cathedra 0.1000
	              , 0.0000
	        Cahuita 0.0000
	             as 0.0000
	          major 0.0000
	              " 0.0000
	          other 0.0000
	        Chhidru 0.0000
	       original 0.0000
	           City 0.0000
	           </S> 0.0000

         falhnv   472678 inf (10)
	        falhava 0.1000
	           </S> 0.0000
	           find 0.0000
	          falha 0.0000
	             us 0.0000
	            not 0.0000
	             to 0.0000
	              , 0.0000
	         falhas 0.0000
	              a 0.0000

        i^round   472685 inf (10)
	          round 0.6000
	         around 0.3000
	             us 0.0000
	              a 0.0000
	             to 0.0000
	        inbound 0.0000
	       inground 0.0000
	              , 0.0000
	           </S> 0.0000
	            use 0.0000

           au}'   472735 inf (11)
	            and 0.0000
	            aua 0.0000
	            the 0.0000
	              , 0.0000
	              I 0.0000
	           alba 0.0000
	           part 0.0000
	             au 0.0000
	           </S> 0.0000
	           some 0.0000
	           auto 0.0000

        sliglit   472740   1 (11)
	         slight 0.2000
	        seligit 0.0000
	          light 0.0000
	         Piglit 0.0000
	         stigli 0.0000
	           </S> 0.0000
	          sigli 0.0000
	              , 0.0000
	              a 0.0000
	        stiglio 0.0000
	          major 0.0000

          l)ird   472829 inf (11)
	          laird 0.2000
	            one 0.0000
	           Bird 0.0000
	             of 0.0000
	              , 0.0000
	              - 0.0000
	            man 0.0000
	           </S> 0.0000
	           like 0.0000
	              a 0.0000
	           dirl 0.0000

          liird   472898 inf (10)
	         beauty 0.0000
	          liira 0.0000
	        weather 0.0000
	              , 0.0000
	           </S> 0.0000
	           same 0.0000
	           team 0.0000
	           like 0.0000
	           liir 0.0000
	           dirl 0.0000

       tameuess   472994   1 (14)
	       tameness 0.3000
	          meues 0.0000
	            own 0.0000
	              a 0.0000
	         effect 0.0000
	        ameutes 0.0000
	          tames 0.0000
	          major 0.0000
	          value 0.0000
	           head 0.0000
	              , 0.0000
	           time 0.0000
	        content 0.0000
	           </S> 0.0000

    difficult}'   473029   1 (11)
	     difficulty 1.0000
	      difficult 0.3000
	             it 0.0000
	             us 0.0000
	             of 0.0000
	          found 0.0000
	           </S> 0.0000
	              a 0.0000
	      different 0.0000
	              , 0.0000
	            the 0.0000

       withoiit   473083   1 (9)
	        without 0.4000
	              , 0.0000
	         Pithoi 0.0000
	       purposes 0.0000
	             of 0.0000
	              . 0.0000
	           </S> 0.0000
	       Githoito 0.0000
	              a 0.0000

         jerk}'   473297 inf (11)
	          jerks 0.7000
	         jerker 0.2000
	             us 0.0000
	              a 0.0000
	           more 0.0000
	           jerk 0.0000
	           </S> 0.0000
	           were 0.0000
	              . 0.0000
	              , 0.0000
	           less 0.0000

          nnite   475553 inf (9)
	           </S> 0.0000
	              , 0.0000
	        divided 0.0000
	           nite 0.0000
	           more 0.0000
	         nanite 0.0000
	              a 0.0000
	           site 0.0000
	         annite 0.0000

          man}'   475588   1 (8)
	           many 1.0000
	            man 0.3000
	          major 0.0000
	            the 0.0000
	           mana 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000

      tliousand   475594   1 (5)
	       thousand 0.6000
	           </S> 0.0000
	         tousan 0.0000
	              , 0.0000
	              a 0.0000

          qnite   475615   2 (10)
	           nite 0.5000
	          quite 0.1000
	             to 0.0000
	           site 0.0000
	         quinte 0.0000
	              , 0.0000
	        mammals 0.0000
	           </S> 0.0000
	              a 0.0000
	            the 0.0000

        flj'ing   475682   1 (13)
	         flying 0.5000
	         filing 0.1000
	            the 0.0000
	              a 0.0000
	              , 0.0000
	             us 0.0000
	           they 0.0000
	           fing 0.0000
	            wet 0.0000
	          fling 0.0000
	           </S> 0.0000
	             it 0.0000
	        looking 0.0000

       nnnibers   475697   2 (9)
	       einibers 0.1000
	        numbers 0.0000
	        Britain 0.0000
	         things 0.0000
	              , 0.0000
	        nimbers 0.0000
	       Enniberg 0.0000
	           </S> 0.0000
	       innitens 0.0000

       conntr}-   475738 inf (11)
	        control 0.5000
	         conner 0.4000
	         contra 0.2000
	         contro 0.2000
	        conners 0.0000
	              . 0.0000
	              a 0.0000
	              , 0.0000
	          world 0.0000
	           </S> 0.0000
	          major 0.0000

        groiind   475869 inf (11)
	          route 0.0000
	        growing 0.0000
	          groin 0.0000
	              . 0.0000
	        gridino 0.0000
	        heroiin 0.0000
	        groined 0.0000
	              , 0.0000
	           will 0.0000
	           </S> 0.0000
	              a 0.0000

        wonnded   475959   1 (17)
	        wounded 0.4000
	         wonned 0.1000
	           wonn 0.0000
	              , 0.0000
	         wonden 0.0000
	           </S> 0.0000
	              a 0.0000
	          other 0.0000
	        Sonndeg 0.0000
	             of 0.0000
	            the 0.0000
	           guns 0.0000
	              . 0.0000
	        wondend 0.0000
	          wonde 0.0000
	             us 0.0000
	          would 0.0000

        alwa3'S   476069   1 (7)
	         always 0.9000
	          alway 0.2000
	          often 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	            not 0.0000

          the}'   476194 inf (8)
	           thee 0.1000
	          their 0.1000
	           </S> 0.0000
	             M. 0.0000
	              a 0.0000
	         sister 0.0000
	              , 0.0000
	            the 0.0000

          Gatke   476606 inf (9)
	          Games 0.0000
	          Gatka 0.0000
	           Gate 0.0000
	        Gataket 0.0000
	         Doctor 0.0000
	             M. 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000

          ver}-   476795   1 (8)
	           very 1.0000
	           </S> 0.0000
	            the 0.0000
	             us 0.0000
	          verve 0.0000
	            ver 0.0000
	              a 0.0000
	              , 0.0000

      solitar}'   476801   1 (8)
	       solitary 0.9000
	              a 0.0000
	      solitario 0.0000
	           site 0.0000
	              / 0.0000
	           rare 0.0000
	              , 0.0000
	           </S> 0.0000

   momeutaril}-   477247   1 (6)
	    momentarily 0.8000
	           </S> 0.0000
	              a 0.0000
	             so 0.0000
	              , 0.0000
	           more 0.0000

          ver\'   477342   1 (11)
	           very 0.9000
	              , 0.0000
	             to 0.0000
	            the 0.0000
	           will 0.0000
	           from 0.0000
	             's 0.0000
	           </S> 0.0000
	            ver 0.0000
	          verve 0.0000
	              a 0.0000

extraordinarilj''   477365   1 (9)
	extraordinarily 0.8000
	           </S> 0.0000
	          quite 0.0000
	              , 0.0000
	    information 0.0000
	           will 0.0000
	              a 0.0000
	             us 0.0000
	              . 0.0000

          Sk}--   477628 inf (10)
	             Sk 0.1000
	          major 0.0000
	              , 0.0000
	           </S> 0.0000
	            the 0.0000
	         single 0.0000
	           Skin 0.0000
	            new 0.0000
	           Skip 0.0000
	           year 0.0000

       Familx-A   477857   1 (6)
	         Family 0.1000
	           </S> 0.0000
	              ) 0.0000
	      FamiliaDA 0.0000
	              , 0.0000
	              a 0.0000

             LA   477866   1 (7)
	              " 0.0000
	              a 0.0000
	              , 0.0000
	             LA 0.0000
	             us 0.0000
	             of 0.0000
	           </S> 0.0000

              E   477876 inf (9)
	              / 0.3000
	              , 0.0000
	             El 0.0000
	             RE 0.0000
	             us 0.0000
	           </S> 0.0000
	              " 0.0000
	            the 0.0000
	             EE 0.0000

       Olocurvs   477898 inf (9)
	        locuras 0.0000
	         locura 0.0000
	       closures 0.0000
	          Olous 0.0000
	         Olorus 0.0000
	           </S> 0.0000
	              a 0.0000
	              " 0.0000
	              , 0.0000

      alpcstris   477907   1 (8)
	      alpestris 0.9000
	      palustris 0.1000
	         astris 0.1000
	              I 0.0000
	              , 0.0000
	       addition 0.0000
	           </S> 0.0000
	      configure 0.0000

           LiNX   477918 inf (8)
	            LNX 0.0000
	           LiNK 0.0000
	             pp 0.0000
	           List 0.0000
	              i 0.0000
	           LiXi 0.0000
	            the 0.0000
	            cia 0.0000

        bej'ond   477957   1 (10)
	         beyond 0.5000
	         bedone 0.0000
	           </S> 0.0000
	              . 0.0000
	           bond 0.0000
	              , 0.0000
	          bjond 0.0000
	             of 0.0000
	              A 0.0000
	             to 0.0000

         vShore   480080   1 (11)
	          Shore 0.9000
	           park 0.0000
	            two 0.0000
	              i 0.0000
	           same 0.0000
	           </S> 0.0000
	            non 0.0000
	           more 0.0000
	         Shrove 0.0000
	              - 0.0000
	         griots 0.0000

         liills   480132 inf (11)
	       outcrops 0.0000
	          lills 0.0000
	              . 0.0000
	         little 0.0000
	       mountain 0.0000
	          coves 0.0000
	             us 0.0000
	              , 0.0000
	              a 0.0000
	           ills 0.0000
	           </S> 0.0000

             nf   480139   2 (7)
	             nf 0.8354
	           </S> 0.0000
	             of 0.0000
	              a 0.0000
	             us 0.0000
	             no 0.0000
	              , 0.0000

              '   480234   1 (10)
	              ' 1.0000
	            the 0.0000
	           </S> 0.0000
	         within 0.0000
	              , 0.0000
	       composed 0.0000
	             as 0.0000
	             to 0.0000
	             us 0.0000
	             on 0.0000

          Inish   480293 inf (15)
	           Inis 0.1000
	              ) 0.0000
	         tenant 0.0000
	              , 0.0000
	       Inisheer 0.0000
	          Inisa 0.0000
	              a 0.0000
	              . 0.0000
	           year 0.0000
	        Ienishi 0.0000
	           </S> 0.0000
	          Index 0.0000
	          woman 0.0000
	         sunset 0.0000
	          minor 0.0000

        melod3^   480412   1 (7)
	         melody 1.0000
	              a 0.0000
	            the 0.0000
	              , 0.0000
	             us 0.0000
	           </S> 0.0000
	           more 0.0000

         .Uauda   480682   1 (10)
	         Alauda 0.6000
	          Lauda 0.1000
	          Usuda 0.0000
	              , 0.0000
	           </S> 0.0000
	           auda 0.0000
	           Paul 0.0000
	              a 0.0000
	            you 0.0000
	            the 0.0000

    arz'i-fis/s   480689 inf (12)
	            are 0.2000
	           hook 0.0000
	   organization 0.0000
	           </S> 0.0000
	    application 0.0000
	              , 0.0000
	            and 0.0000
	             is 0.0000
	              i 0.0000
	            the 0.0000
	       business 0.0000
	              I 0.0000

           3'OU   480709   2 (9)
	            YOU 0.5000
	            you 0.0000
	              , 0.0000
	           </S> 0.0000
	             On 0.0000
	             OU 0.0000
	            UOU 0.0000
	              ' 0.0000
	              a 0.0000

         tlieir   481453   1 (11)
	          their 0.4000
	          tliet 0.1000
	            the 0.0000
	         telier 0.0000
	           tiei 0.0000
	              a 0.0000
	             us 0.0000
	           </S> 0.0000
	              , 0.0000
	        Entropy 0.0000
	           ieir 0.0000

     speciniens   482081   1 (13)
	      specimens 0.6000
	        species 0.3000
	          years 0.0000
	              - 0.0000
	              . 0.0000
	      spiciness 0.0000
	           </S> 0.0000
	          major 0.0000
	       socinien 0.0000
	              a 0.0000
	       specient 0.0000
	              , 0.0000
	        section 0.0000

    Polygonacea   482260   1 (9)
	              , 0.0000
	          local 0.0000
	              a 0.0000
	           time 0.0000
	            the 0.0000
	   Polygonaceae 0.0000
	           </S> 0.0000
	             us 0.0000
	           life 0.0000

    frequentl}^   482640   1 (9)
	     frequently 1.0000
	              , 0.0000
	           </S> 0.0000
	           been 0.0000
	           free 0.0000
	              a 0.0000
	            not 0.0000
	              s 0.0000
	           also 0.0000

          Gatke   482688 inf (8)
	          Games 0.0000
	          Gatka 0.0000
	              , 0.0000
	           Gate 0.0000
	        Gataket 0.0000
	             M. 0.0000
	              a 0.0000
	           </S> 0.0000

     captivit}'   483025   1 (11)
	      captivity 0.9000
	            the 0.0000
	        general 0.0000
	           turn 0.0000
	           fact 0.0000
	              a 0.0000
	              , 0.0000
	      captivait 0.0000
	           case 0.0000
	             us 0.0000
	           </S> 0.0000

              -   483724   1 (7)
	              - 1.0000
	           </S> 0.0000
	             us 0.0000
	            the 0.0000
	             of 0.0000
	              . 0.0000
	              , 0.0000

            ear   483725   1 (10)
	            ear 1.0000
	           year 0.1000
	             to 0.0000
	              s 0.0000
	           </S> 0.0000
	           side 0.0000
	             th 0.0000
	        student 0.0000
	              a 0.0000
	              . 0.0000

        Canar3^   484202   1 (10)
	         Canary 1.0000
	         Canara 0.2000
	         Canada 0.1000
	          Canar 0.1000
	            the 0.0000
	             us 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	              e 0.0000

        Canar}'   484267   1 (11)
	         Canary 0.5000
	         Canada 0.2000
	              , 0.0000
	             us 0.0000
	         Canara 0.0000
	          Canar 0.0000
	         PayPal 0.0000
	             it 0.0000
	             to 0.0000
	           </S> 0.0000
	              a 0.0000

             iu   484329   1 (10)
	             in 0.9000
	             by 0.2000
	              , 0.0000
	            the 0.0000
	              a 0.0000
	           </S> 0.0000
	             as 0.0000
	       argument 0.0000
	              . 0.0000
	             iu 0.0000

         ever}'   484446   1 (10)
	          every 0.6000
	           ever 0.1000
	           corn 0.0000
	             us 0.0000
	            the 0.0000
	              a 0.0000
	         everre 0.0000
	           even 0.0000
	           </S> 0.0000
	              , 0.0000

        alreadj   486147   1 (10)
	        already 0.6000
	        alejada 0.0000
	              . 0.0000
	            and 0.0000
	            are 0.0000
	             to 0.0000
	              I 0.0000
	              , 0.0000
	            red 0.0000
	           </S> 0.0000

              '   486154 inf (5)
	            the 0.0000
	             us 0.0000
	           this 0.0000
	              , 0.0000
	           </S> 0.0000

       inclttde   486357   1 (10)
	        include 1.0000
	             us 0.0000
	           have 0.0000
	       includet 0.0000
	           </S> 0.0000
	            see 0.0000
	          incle 0.0000
	              , 0.0000
	              a 0.0000
	            the 0.0000

         remedv   486843   1 (12)
	         remedy 0.9000
	              a 0.0000
	            use 0.0000
	             us 0.0000
	      remediava 0.0000
	         reduce 0.0000
	            the 0.0000
	             be 0.0000
	           </S> 0.0000
	         recent 0.0000
	           take 0.0000
	        vermede 0.0000

    deficienc}'   486854   1 (10)
	     deficiency 1.0000
	     deficience 0.9000
	      deficient 0.2000
	           work 0.0000
	        details 0.0000
	              - 0.0000
	           same 0.0000
	         people 0.0000
	      following 0.0000
	           </S> 0.0000

        TURDID^   486991 inf (12)
	         TURYID 0.1000
	            rev 0.0000
	           TURI 0.0000
	           side 0.0000
	              s 0.0000
	              a 0.0000
	            The 0.0000
	           </S> 0.0000
	              p 0.0000
	            Vol 0.0000
	              , 0.0000
	             to 0.0000

      Subfamih-   487001   1 (6)
	      Subfamily 0.2000
	         Sufami 0.0000
	              I 0.0000
	              " 0.0000
	              , 0.0000
	           </S> 0.0000

       TURDINyF   487011 inf (8)
	        COPYING 0.1000
	           </S> 0.0000
	          <UNK> 0.0000
	           TODO 0.0000
	              , 0.0000
	              a 0.0000
	         THANKS 0.0000
	    MAINTAINERS 0.0000

        Turdiis   487041   1 (12)
	         Turdus 0.6000
	        Turkish 0.1000
	              a 0.0000
	        Taurids 0.0000
	              / 0.0000
	          urdis 0.0000
	           Turd 0.0000
	          Turds 0.0000
	        Turdiev 0.0000
	           </S> 0.0000
	              , 0.0000
	              " 0.0000

        dubiiis   487049   1 (8)
	         dubius 0.6000
	         dubiis 0.5000
	           </S> 0.0000
	          dubii 0.0000
	         duties 0.0000
	              a 0.0000
	              , 0.0000
	      configure 0.0000

             NE   487067 inf (8)
	             NE 0.8354
	             us 0.0000
	              " 0.0000
	              / 0.0000
	              , 0.0000
	             No 0.0000
	              I 0.0000
	           </S> 0.0000

     Stornowa}-   487198   1 (9)
	      Stornoway 1.0000
	        Windows 0.0000
	             us 0.0000
	         Monday 0.0000
	            the 0.0000
	        average 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000

           i8th   487352 inf (11)
	            8th 0.4000
	           2005 0.0000
	           into 0.0000
	           </S> 0.0000
	              , 0.0000
	             iu 0.0000
	             31 0.0000
	           iath 0.0000
	              a 0.0000
	              1 0.0000
	            ith 0.0000

             Ti   487508 inf (11)
	             To 0.5000
	       Friendly 0.0000
	             to 0.0000
	           </S> 0.0000
	              v 0.0000
	             up 0.0000
	         lovers 0.0000
	              s 0.0000
	              , 0.0000
	             Ti 0.0000
	              a 0.0000

              '   487511   1 (6)
	              ' 1.0000
	              , 0.0000
	            the 0.0000
	              - 0.0000
	             us 0.0000
	           </S> 0.0000

           RDID   487512 inf (8)
	            RDI 0.1000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	             Re 0.0000
	              s 0.0000
	           RDIS 0.0000
	              ) 0.0000

              .   487516   1 (7)
	              . 1.0000
	              ' 0.0000
	            the 0.0000
	              | 0.0000
	              , 0.0000
	             us 0.0000
	           </S> 0.0000

             E.   487518 inf (8)
	              " 0.0000
	             us 0.0000
	             of 0.0000
	             El 0.0000
	           </S> 0.0000
	              , 0.0000
	              I 0.0000
	              . 0.0000

    Subfaniily-   487522   1 (6)
	      Subfamily 0.5000
	        Stanley 0.0000
	              A 0.0000
	           </S> 0.0000
	              , 0.0000
	              ' 0.0000

             TL   487534 inf (6)
	             TL 0.1000
	           </S> 0.0000
	              a 0.0000
	             us 0.0000
	             To 0.0000
	              , 0.0000

              '   487537   1 (6)
	              ' 1.0000
	              - 0.0000
	              , 0.0000
	           </S> 0.0000
	             us 0.0000
	            the 0.0000

           RUIN   487538 inf (11)
	            the 0.0000
	            RUI 0.0000
	           RUIM 0.0000
	              , 0.0000
	             al 0.0000
	              ) 0.0000
	              s 0.0000
	              a 0.0000
	           IRUN 0.0000
	             Re 0.0000
	           </S> 0.0000

              .   487542   1 (8)
	              . 0.8000
	           </S> 0.0000
	           THIS 0.0000
	          other 0.0000
	              ' 0.0000
	              , 0.0000
	             us 0.0000
	            the 0.0000

              E   487544 inf (9)
	              " 0.0000
	            the 0.0000
	             El 0.0000
	           </S> 0.0000
	              , 0.0000
	              / 0.0000
	             us 0.0000
	             RE 0.0000
	             EE 0.0000

      shipazina   487584 inf (12)
	       simazina 0.3000
	         hazina 0.1000
	       shipping 0.1000
	           </S> 0.0000
	          maura 0.0000
	       shikazan 0.0000
	              a 0.0000
	              , 0.0000
	      configure 0.0000
	      quipazine 0.0000
	       torquata 0.0000
	        rubetra 0.0000

          3'ear   487750   1 (11)
	           year 1.0000
	           rear 0.4000
	              . 0.0000
	           name 0.0000
	         States 0.0000
	           </S> 0.0000
	              , 0.0000
	            ear 0.0000
	             of 0.0000
	              a 0.0000
	           time 0.0000

   occidoitalis   487971   2 (12)
	    occipitalis 0.4000
	             as 0.0000
	       torquata 0.0000
	              , 0.0000
	   occidentalis 0.0000
	             is 0.0000
	           </S> 0.0000
	      occiditis 0.0000
	     individual 0.0000
	          whole 0.0000
	              a 0.0000
	       Saxicola 0.0000

         daerti   488025   1 (12)
	       torquata 0.0000
	        deserti 0.0000
	          darti 0.0000
	         dzerti 0.0000
	         derati 0.0000
	        rubetra 0.0000
	          maura 0.0000
	              a 0.0000
	          death 0.0000
	         Haerti 0.0000
	           </S> 0.0000
	              , 0.0000

           TURD   488112 inf (12)
	            TUR 0.3000
	          DUART 0.0000
	           mail 0.0000
	           TURN 0.0000
	       friendly 0.0000
	             to 0.0000
	              a 0.0000
	            The 0.0000
	              , 0.0000
	              s 0.0000
	           </S> 0.0000
	       Friendly 0.0000

             ID   488117   1 (9)
	             ID 1.0000
	             In 0.1000
	             us 0.0000
	              - 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	              ) 0.0000
	          Sites 0.0000

              .   488119   1 (7)
	              . 1.0000
	              : 0.0000
	             us 0.0000
	          <UNK> 0.0000
	           </S> 0.0000
	              , 0.0000
	            the 0.0000

             E.   488121 inf (8)
	              s 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	              . 0.0000
	             El 0.0000
	              " 0.0000
	             of 0.0000

       TURDIN.E   488136 inf (11)
	             E. 0.1000
	            Ave 0.0000
	    PROTECTIONE 0.0000
	           </S> 0.0000
	              a 0.0000
	             RD 0.0000
	          <UNK> 0.0000
	              , 0.0000
	      INTERSECT 0.0000
	            The 0.0000
	             N. 0.0000

           Paix   488190 inf (9)
	           Paix 0.9724
	              i 0.0000
	             pp 0.0000
	           Pica 0.0000
	           Page 0.0000
	            the 0.0000
	              ) 0.0000
	          <UNK> 0.0000
	   philadelphia 0.0000

     vShetlands   488293   1 (8)
	      Shetlands 0.0000
	           </S> 0.0000
	              a 0.0000
	          <UNK> 0.0000
	              s 0.0000
	           view 0.0000
	              - 0.0000
	       Compiled 0.0000

            Maj   488309 inf (8)
	            Maj 1.0000
	           </S> 0.0000
	            cia 0.0000
	              a 0.0000
	              , 0.0000
	             My 0.0000
	          stock 0.0000
	            the 0.0000

              '   488312   1 (8)
	              ' 0.5000
	          world 0.0000
	           </S> 0.0000
	              , 0.0000
	             us 0.0000
	            the 0.0000
	              - 0.0000
	            Gen 0.0000

        ]\Iarch   488589 inf (9)
	         Search 0.1000
	          harch 0.0000
	        Isearch 0.0000
	           </S> 0.0000
	          major 0.0000
	             of 0.0000
	              , 0.0000
	              a 0.0000
	           arch 0.0000

       TURDID.^   488808 inf (11)
	         TURYID 0.1000
	            rev 0.0000
	              s 0.0000
	              , 0.0000
	           side 0.0000
	             to 0.0000
	              a 0.0000
	           </S> 0.0000
	              p 0.0000
	            Vol 0.0000
	            The 0.0000

       TURDIN/E   488830 inf (10)
	         THANKS 0.4000
	        COPYING 0.1000
	           TODO 0.1000
	         README 0.1000
	              a 0.0000
	          <UNK> 0.0000
	           </S> 0.0000
	              / 0.0000
	              , 0.0000
	    MAINTAINERS 0.0000

       Spottf:d   488851 inf (11)
	       Spottify 0.1000
	           mail 0.0000
	              , 0.0000
	        Spoofed 0.0000
	              a 0.0000
	             to 0.0000
	          Spott 0.0000
	           </S> 0.0000
	         tailed 0.0000
	              s 0.0000
	          point 0.0000

    Cxa)icciila   488873 inf (8)
	           </S> 0.0000
	              / 0.0000
	              ) 0.0000
	          Click 0.0000
	        Comella 0.0000
	              I 0.0000
	              " 0.0000
	              , 0.0000

        u'i>l/l   488885 inf (7)
	      configure 0.0000
	              a 0.0000
	          uaill 0.0000
	           uill 0.0000
	              , 0.0000
	           </S> 0.0000
	          build 0.0000

            ist   489026 inf (10)
	            ist 1.0000
	              , 0.0000
	             11 0.0000
	              1 0.0000
	             iu 0.0000
	           </S> 0.0000
	              a 0.0000
	           2005 0.0000
	            its 0.0000
	             30 0.0000

        TURDID^   489256 inf (12)
	         TURYID 0.1000
	            rev 0.0000
	           TURI 0.0000
	           side 0.0000
	              s 0.0000
	              a 0.0000
	            The 0.0000
	           </S> 0.0000
	              p 0.0000
	            Vol 0.0000
	              , 0.0000
	             to 0.0000

        TURDIN^   489277 inf (7)
	           TURN 0.2000
	              a 0.0000
	         TURYID 0.0000
	              , 0.0000
	         TARDIS 0.0000
	           </S> 0.0000
	          <UNK> 0.0000

     fliilomcla   489321 inf (6)
	              a 0.0000
	      configure 0.0000
	        million 0.0000
	              , 0.0000
	           film 0.0000
	           </S> 0.0000

            6th   489646 inf (10)
	             st 0.1000
	             th 0.1000
	            sth 0.0000
	              a 0.0000
	              6 0.0000
	             us 0.0000
	              ) 0.0000
	            the 0.0000
	           </S> 0.0000
	              , 0.0000

     vSeptember   489712   1 (8)
	      September 0.7000
	        October 0.0000
	              a 0.0000
	          other 0.0000
	              , 0.0000
	           </S> 0.0000
	            the 0.0000
	             us 0.0000

          24t]i   489894   1 (7)
	           24th 0.5000
	              a 0.0000
	          Patti 0.0000
	           2005 0.0000
	              , 0.0000
	              1 0.0000
	           </S> 0.0000

         3'oung   490002   1 (11)
	          young 1.0000
	          Young 0.1000
	              - 0.0000
	         single 0.0000
	          goung 0.0000
	            new 0.0000
	        similar 0.0000
	          major 0.0000
	           </S> 0.0000
	            oun 0.0000
	         senior 0.0000

        Li^dlow   490303   1 (12)
	         Ludlow 0.7000
	         Disney 0.0000
	              , 0.0000
	         future 0.0000
	           </S> 0.0000
	             us 0.0000
	            the 0.0000
	           Lilo 0.0000
	              a 0.0000
	         London 0.0000
	     Shrewsbury 0.0000
	          Lidol 0.0000

        Fawilx-   490416   1 (9)
	           Fail 0.0000
	        Fawsley 0.0000
	           </S> 0.0000
	         Flawil 0.0000
	              , 0.0000
	          Tawil 0.0000
	              a 0.0000
	              " 0.0000
	         Family 0.0000

           TURD   490424 inf (7)
	           TURN 0.0000
	            The 0.0000
	            TUR 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	          DUART 0.0000

             ID   490429   1 (6)
	             ID 0.7075
	             In 0.1000
	             us 0.0000
	              , 0.0000
	              ! 0.0000
	           </S> 0.0000

              .   490431   1 (7)
	              . 1.0000
	              , 0.0000
	            the 0.0000
	             us 0.0000
	              : 0.0000
	           </S> 0.0000
	            and 0.0000

             -E   490433 inf (9)
	             -- 0.1000
	              s 0.0000
	              " 0.0000
	              , 0.0000
	              / 0.0000
	              - 0.0000
	              a 0.0000
	           </S> 0.0000
	             of 0.0000

    5«//rtw//r-   490438 inf (8)
	           </S> 0.0000
	              / 0.0000
	      Therefore 0.0000
	          First 0.0000
	              " 0.0000
	              - 0.0000
	              , 0.0000
	              I 0.0000

              5   490450 inf (4)
	              , 0.0000
	             us 0.0000
	            the 0.0000
	           </S> 0.0000

           ILY^   490458   1 (9)
	            ILY 0.8000
	             'm 0.0000
	          think 0.0000
	              K 0.0000
	             In 0.0000
	              , 0.0000
	              ) 0.0000
	           </S> 0.0000
	           ILYA 0.0000

        Svlviii   490489   1 (11)
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	        Svilici 0.0000
	              / 0.0000
	          Silvi 0.0000
	           Siii 0.0000
	         Sylvia 0.0000
	          Elvii 0.0000
	              " 0.0000
	           viii 0.0000

viclanoccpliaUx   490497 inf (9)
	         Llopis 0.0000
	     particular 0.0000
	              , 0.0000
	        Atlanta 0.0000
	      configure 0.0000
	   Applications 0.0000
	           </S> 0.0000
	              a 0.0000
	      client.pl 0.0000

            ist   490981 inf (9)
	            ist 0.8000
	              , 0.0000
	           2005 0.0000
	              1 0.0000
	           </S> 0.0000
	            its 0.0000
	             iu 0.0000
	              4 0.0000
	              a 0.0000

        Family^   490992   1 (6)
	              , 0.0000
	              " 0.0000
	              ) 0.0000
	           </S> 0.0000
	              a 0.0000
	         Family 0.0000

             Ti   491000 inf (6)
	             Ti 0.8354
	             To 0.0000
	              , 0.0000
	             iu 0.0000
	              a 0.0000
	           </S> 0.0000

             7^   491003 inf (5)
	           </S> 0.0000
	              - 0.0000
	              , 0.0000
	             us 0.0000
	             of 0.0000

           DILL   491006 inf (7)
	            DIL 0.0000
	            DSL 0.0000
	              , 0.0000
	           DILG 0.0000
	         DILLIC 0.0000
	           </S> 0.0000
	              a 0.0000

             -E   491011 inf (7)
	             -- 0.1000
	             us 0.0000
	              , 0.0000
	             of 0.0000
	              M 0.0000
	              - 0.0000
	           </S> 0.0000

 SuhJaniiiy-SYL   491016 inf (9)
	      Searching 0.0000
	              " 0.0000
	              , 0.0000
	           </S> 0.0000
	              / 0.0000
	              - 0.0000
	          Thank 0.0000
	      ChangeLog 0.0000
	              I 0.0000

              J   491031 inf (7)
	             us 0.0000
	            the 0.0000
	           </S> 0.0000
	              , 0.0000
	             NJ 0.0000
	             JR 0.0000
	             JJ 0.0000

           7IA\   491033 inf (9)
	             IA 0.3000
	              K 0.0000
	           </S> 0.0000
	              A 0.0000
	           RIAA 0.0000
	          Gallo 0.0000
	              , 0.0000
	            FAQ 0.0000
	           AIAA 0.0000

             E.   491038   1 (8)
	             of 0.0000
	             us 0.0000
	              a 0.0000
	           </S> 0.0000
	              . 0.0000
	              , 0.0000
	              E 0.0000
	              L 0.0000

        PallAvS   491042 inf (9)
	        Pallavi 0.2000
	        Pallava 0.2000
	         Pallav 0.1000
	              , 0.0000
	          Miers 0.0000
	              I 0.0000
	           Pall 0.0000
	           </S> 0.0000
	           Hall 0.0000

   Phy/Iosiopus   491069   1 (6)
	   Phylloscopus 0.6000
	    Phyprosopus 0.1000
	           </S> 0.0000
	              a 0.0000
	              " 0.0000
	              , 0.0000

  f^ivrcgit/iis   491082 inf (9)
	        drivers 0.0000
	        scripts 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	          <UNK> 0.0000
	             is 0.0000
	            src 0.0000
	vareSelskap.cgi 0.0000

          i5tli   491233 inf (10)
	              , 0.0000
	           itil 0.0000
	              a 0.0000
	           </S> 0.0000
	              1 0.0000
	          ixtli 0.0000
	            and 0.0000
	           Atli 0.0000
	           2005 0.0000
	           into 0.0000

          3'ear   491274   1 (10)
	           year 0.9000
	           rear 0.3000
	           time 0.0000
	           </S> 0.0000
	            ear 0.0000
	              a 0.0000
	             of 0.0000
	              , 0.0000
	           name 0.0000
	              . 0.0000

        Tnlloch   491308   1 (9)
	        Tulloch 0.4000
	       Benlloch 0.1000
	            and 0.0000
	              , 0.0000
	           </S> 0.0000
	       Kavulich 0.0000
	         Taylor 0.0000
	             C. 0.0000
	              a 0.0000

           Ma}^   491335   1 (9)
	            May 1.0000
	        January 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	            the 0.0000
	             Ma 0.0000
	           lava 0.0000
	            Maa 0.0000

       TURDID.F   491386 inf (12)
	         TURYID 0.2000
	            rev 0.0000
	           side 0.0000
	             to 0.0000
	              s 0.0000
	           </S> 0.0000
	          TDIDF 0.0000
	            The 0.0000
	            Vol 0.0000
	              , 0.0000
	              p 0.0000
	              a 0.0000

      Subjaimly   491397   1 (5)
	      Subfamily 0.1000
	              , 0.0000
	           </S> 0.0000
	              I 0.0000
	              " 0.0000

           -SYL   491407 inf (7)
	            SYL 0.3000
	           WSYL 0.0000
	              , 0.0000
	            USA 0.0000
	      configure 0.0000
	              a 0.0000
	           </S> 0.0000

              I   491412 inf (6)
	             of 0.0000
	             In 0.0000
	             us 0.0000
	            the 0.0000
	             MI 0.0000
	             II 0.0000

          IIN.E   491414   1 (10)
	          think 0.0000
	            III 0.0000
	           IINS 0.0000
	           </S> 0.0000
	              J 0.0000
	           INEE 0.0000
	           said 0.0000
	              , 0.0000
	             'm 0.0000
	            IIN 0.0000

  Phy//oscop!is   491448   1 (6)
	   Phylloscopus 0.5000
	              I 0.0000
	              , 0.0000
	              " 0.0000
	              / 0.0000
	           </S> 0.0000

              N   491479 inf (10)
	             IN 0.5640
	              / 0.0000
	           This 0.0000
	             us 0.0000
	            the 0.0000
	             No 0.0000
	              " 0.0000
	              , 0.0000
	           </S> 0.0000
	             NN 0.0000

     lighthonse   491507   1 (9)
	     lighthouse 0.8000
	              , 0.0000
	         little 0.0000
	           time 0.0000
	       discount 0.0000
	           shot 0.0000
	          major 0.0000
	           </S> 0.0000
	     lightcones 0.0000

       TURDIL)^   491552 inf (12)
	            The 0.2000
	            rev 0.0000
	              D 0.0000
	              a 0.0000
	              , 0.0000
	              s 0.0000
	           side 0.0000
	              p 0.0000
	           </S> 0.0000
	              ) 0.0000
	             to 0.0000
	            Vol 0.0000

            SYL   491574 inf (7)
	            SYL 0.7075
	              , 0.0000
	            See 0.0000
	      configure 0.0000
	             us 0.0000
	              a 0.0000
	           </S> 0.0000

              I   491578   1 (7)
	              I 1.0000
	           </S> 0.0000
	              , 0.0000
	             us 0.0000
	          canal 0.0000
	            the 0.0000
	              - 0.0000

         'IIN.E   491580 inf (10)
	              J 0.0000
	           said 0.0000
	           </S> 0.0000
	             'm 0.0000
	           EINE 0.0000
	            and 0.0000
	              , 0.0000
	            IIN 0.0000
	         PRINCE 0.0000
	          think 0.0000

  Phylloscopiis   491620   1 (6)
	   Phylloscopus 0.7000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	              " 0.0000
	 Phylloscopidae 0.0000

     viridaiius   491634 inf (10)
	     viridariis 0.3000
	      viridamus 0.1000
	         Friday 0.1000
	              , 0.0000
	              a 0.0000
	     viridarium 0.0000
	      configure 0.0000
	        viridas 0.0000
	           </S> 0.0000
	      viridarii 0.0000

          Blvth   491646 inf (6)
	            But 0.0000
	          Blyth 0.0000
	             pp 0.0000
	            Blv 0.0000
	            the 0.0000
	              i 0.0000

Siitherlandshire   491758   1 (9)
	Sutherlandshire 0.2000
	           </S> 0.0000
	            The 0.0000
	      Australia 0.0000
	              s 0.0000
	          <UNK> 0.0000
	              a 0.0000
	           PRES 0.0000
	              - 0.0000

       couiinou   491818 inf (13)
	        cominou 0.2000
	       couinons 0.1000
	           most 0.0000
	              a 0.0000
	       coutiaou 0.0000
	       Whomping 0.0000
	              . 0.0000
	         couina 0.0000
	        company 0.0000
	           </S> 0.0000
	              , 0.0000
	        counion 0.0000
	          major 0.0000

          fouud   491847   1 (8)
	          found 0.8000
	           foud 0.1000
	            not 0.0000
	         killed 0.0000
	              , 0.0000
	            fou 0.0000
	              a 0.0000
	           </S> 0.0000

      Shetlauds   491890   1 (10)
	      Shetlands 0.9000
	       Shetland 0.6000
	           </S> 0.0000
	              , 0.0000
	            war 0.0000
	    Netherlands 0.0000
	           same 0.0000
	             US 0.0000
	          world 0.0000
	          State 0.0000

         Fnmtlx   491986   1 (8)
	              " 0.0000
	         Family 0.0000
	         Ccnmtl 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	            Fnm 0.0000
	         Fantax 0.0000

             TL   491995 inf (8)
	              a 0.0000
	              . 0.0000
	           mail 0.0000
	              s 0.0000
	           </S> 0.0000
	             TL 0.0000
	             To 0.0000
	             to 0.0000

          ^RDID   491998 inf (10)
	              - 0.0000
	              a 0.0000
	          ARDIS 0.0000
	              , 0.0000
	              ) 0.0000
	            DID 0.0000
	             us 0.0000
	            DVD 0.0000
	            RDI 0.0000
	           </S> 0.0000

              .   492003   1 (5)
	              . 1.0000
	              , 0.0000
	            the 0.0000
	             us 0.0000
	           </S> 0.0000

             E.   492005 inf (8)
	              " 0.0000
	             us 0.0000
	             of 0.0000
	             El 0.0000
	              , 0.0000
	              I 0.0000
	              . 0.0000
	           </S> 0.0000

 Sii/^/,u>n/\-S   492009 inf (6)
	          Smith 0.1000
	           Side 0.0000
	             Am 0.0000
	           </S> 0.0000
	              , 0.0000
	              A 0.0000

              J   492024   1 (7)
	             J. 0.7000
	           </S> 0.0000
	             NJ 0.0000
	             JJ 0.0000
	            the 0.0000
	             us 0.0000
	              , 0.0000

              Z   492026 inf (9)
	              & 0.2000
	              K 0.0000
	             us 0.0000
	             AZ 0.0000
	            the 0.0000
	              , 0.0000
	           </S> 0.0000
	             ZA 0.0000
	             ZZ 0.0000

            VLV   492030   1 (9)
	            VLV 0.7075
	            DVD 0.0000
	              a 0.0000
	              , 0.0000
	              K 0.0000
	           </S> 0.0000
	             us 0.0000
	            Med 0.0000
	      Financial 0.0000

              E   492035 inf (9)
	              / 0.0000
	             El 0.0000
	            the 0.0000
	           </S> 0.0000
	              " 0.0000
	              , 0.0000
	             us 0.0000
	             RE 0.0000
	             EE 0.0000

          Aidon   492060   1 (11)
	          Aedon 0.7000
	         Aidone 0.1000
	              a 0.0000
	          Aidoo 0.0000
	           </S> 0.0000
	           Aido 0.0000
	          Adino 0.0000
	              , 0.0000
	              " 0.0000
	              / 0.0000
	          Audio 0.0000

     (^alcnimAs   492066 inf (9)
	        scripts 0.3000
	           libs 0.2892
	   Applications 0.1000
	           </S> 0.0000
	      configure 0.0000
	        general 0.0000
	  mkinstalldirs 0.0000
	              a 0.0000
	              , 0.0000

       TURDID.E   492160 inf (11)
	         TURYID 0.1000
	            rev 0.0000
	              s 0.0000
	              , 0.0000
	           side 0.0000
	             to 0.0000
	              a 0.0000
	           </S> 0.0000
	              p 0.0000
	            Vol 0.0000
	            The 0.0000

 Siih/auiilySYL   492171 inf (9)
	              I 0.0000
	          While 0.0000
	          Since 0.0000
	              / 0.0000
	           </S> 0.0000
	           Only 0.0000
	              " 0.0000
	      Searching 0.0000
	              , 0.0000

              I   492186 inf (7)
	             us 0.0000
	             II 0.0000
	            the 0.0000
	           </S> 0.0000
	              , 0.0000
	             MI 0.0000
	             In 0.0000

          IIN^E   492188   1 (10)
	              , 0.0000
	          think 0.0000
	            III 0.0000
	           IINS 0.0000
	              J 0.0000
	           INEE 0.0000
	           said 0.0000
	           </S> 0.0000
	             'm 0.0000
	            IIN 0.0000

         Acdoii   492222   1 (12)
	           </S> 0.0000
	         Ardoin 0.0000
	           Acii 0.0000
	         Acodia 0.0000
	              " 0.0000
	              , 0.0000
	              / 0.0000
	         Acilii 0.0000
	              a 0.0000
	            Acd 0.0000
	          Audio 0.0000
	          Aedon 0.0000

     fnmiliaris   492229   1 (7)
	     familiaris 0.4000
	       miliaria 0.1000
	        miliari 0.0000
	          <UNK> 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000

           TURD   492304 inf (12)
	            TUR 0.3000
	              s 0.0000
	          DUART 0.0000
	           </S> 0.0000
	       friendly 0.0000
	              v 0.0000
	           TURN 0.0000
	            The 0.0000
	              > 0.0000
	              a 0.0000
	              , 0.0000
	             to 0.0000

             ID   492309   1 (9)
	             ID 1.0000
	              ' 0.0000
	           </S> 0.0000
	              , 0.0000
	             us 0.0000
	             In 0.0000
	              - 0.0000
	              a 0.0000
	         domain 0.0000

              ^   492312 inf (7)
	             by 0.4000
	             us 0.0000
	              , 0.0000
	          83701 0.0000
	           </S> 0.0000
	              : 0.0000
	            the 0.0000

            SYL   492327 inf (7)
	            SYL 0.7075
	           </S> 0.0000
	            See 0.0000
	              , 0.0000
	             us 0.0000
	              a 0.0000
	            org 0.0000

              I   492331   1 (7)
	              I 1.0000
	           </S> 0.0000
	              , 0.0000
	             us 0.0000
	          canal 0.0000
	            the 0.0000
	              - 0.0000

           IIN^   492333   1 (9)
	            IIN 0.1000
	           IINS 0.0000
	           said 0.0000
	             'm 0.0000
	              , 0.0000
	              J 0.0000
	           </S> 0.0000
	          think 0.0000
	             IN 0.0000

       sckwarzi   492374   1 (7)
	       schwarzi 1.0000
	              , 0.0000
	           </S> 0.0000
	          swarz 0.0000
	        Schwarz 0.0000
	              a 0.0000
	      configure 0.0000

         Haigli   492481 inf (15)
	        Haigler 0.2000
	         Haugli 0.1000
	           Haig 0.1000
	       Chairman 0.0000
	        Speaker 0.0000
	           High 0.0000
	          Haili 0.0000
	           </S> 0.0000
	              , 0.0000
	      merchants 0.0000
	     Bertenshaw 0.0000
	              a 0.0000
	         Hagali 0.0000
	         Haigui 0.0000
	             J. 0.0000

             --   492496   1 (6)
	             of 0.0000
	              - 0.0000
	             us 0.0000
	            Guy 0.0000
	           </S> 0.0000
	              , 0.0000

             Tl   492499 inf (9)
	             Tl 0.1000
	             To 0.1000
	              , 0.0000
	          World 0.0000
	          <UNK> 0.0000
	           </S> 0.0000
	             us 0.0000
	              L 0.0000
	              a 0.0000

              '   492502   1 (7)
	              ' 1.0000
	            the 0.0000
	              - 0.0000
	              , 0.0000
	             -- 0.0000
	             us 0.0000
	           </S> 0.0000

           KDID   492503 inf (10)
	            DVD 0.1000
	              s 0.0000
	              , 0.0000
	           KDIC 0.0000
	           </S> 0.0000
	            KDI 0.0000
	              ) 0.0000
	       Estrange 0.0000
	           KDDI 0.0000
	              a 0.0000

              .   492507   1 (7)
	              . 1.0000
	           </S> 0.0000
	            the 0.0000
	           2004 0.0000
	              ' 0.0000
	              , 0.0000
	             us 0.0000

             E.   492509 inf (9)
	              , 0.0000
	              " 0.0000
	             us 0.0000
	             of 0.0000
	              / 0.0000
	             El 0.0000
	              I 0.0000
	              . 0.0000
	           </S> 0.0000

 Su/ifaniuy-SVL   492513 inf (10)
	           </S> 0.2000
	            and 0.1000
	              ' 0.0000
	  config.status 0.0000
	              A 0.0000
	    Publication 0.0000
	        Stanley 0.0000
	              , 0.0000
	              / 0.0000
	              - 0.0000

              I   492528 inf (7)
	             II 0.1000
	           </S> 0.0000
	             MI 0.0000
	            the 0.0000
	              , 0.0000
	             us 0.0000
	             In 0.0000

              '   492530 inf (5)
	             'm 0.4000
	           </S> 0.0000
	             us 0.0000
	            the 0.0000
	              , 0.0000

           ILWF   492531 inf (11)
	              a 0.0000
	              ) 0.0000
	            not 0.0000
	           IWFL 0.0000
	             it 0.0000
	           ILWU 0.0000
	           </S> 0.0000
	              , 0.0000
	              s 0.0000
	            ILW 0.0000
	             In 0.0000

       Cetti'vS   492538 inf (8)
	         Cettia 0.2000
	              / 0.0000
	              I 0.0000
	          Cetti 0.0000
	        Settiva 0.0000
	              " 0.0000
	           </S> 0.0000
	              , 0.0000

        Warrlkr   492547 inf (8)
	        Warrior 0.1000
	           Warr 0.0000
	           </S> 0.0000
	              , 0.0000
	          <UNK> 0.0000
	         Warral 0.0000
	              a 0.0000
	       Warkalki 0.0000

         Cetfin   492557   1 (11)
	         Cettia 0.6000
	        Jetfins 0.0000
	         Ceftin 0.0000
	              / 0.0000
	         Cetlin 0.0000
	           </S> 0.0000
	              " 0.0000
	              , 0.0000
	              I 0.0000
	         Celtic 0.0000
	          Cetin 0.0000

         ccttii   492564 inf (12)
	        cutting 0.1000
	            tii 0.0000
	              , 0.0000
	      accattivi 0.0000
	         cuttie 0.0000
	          citii 0.0000
	              a 0.0000
	      configure 0.0000
	         Vettii 0.0000
	           </S> 0.0000
	            cti 0.0000
	         Cettia 0.0000

           Ma}'   492617   1 (9)
	            May 1.0000
	             Ma 0.0000
	              a 0.0000
	            the 0.0000
	              , 0.0000
	           lava 0.0000
	            Maa 0.0000
	        January 0.0000
	           </S> 0.0000

        TURDID^   493057 inf (12)
	         TURYID 0.1000
	            rev 0.0000
	           TURI 0.0000
	           side 0.0000
	              s 0.0000
	              a 0.0000
	            The 0.0000
	           </S> 0.0000
	              p 0.0000
	            Vol 0.0000
	              , 0.0000
	             to 0.0000

            SYL   493078 inf (6)
	            SYL 0.7075
	            See 0.0000
	             us 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000

          VIIN^   493082 inf (8)
	           VIII 0.2000
	            VII 0.1000
	              , 0.0000
	           </S> 0.0000
	          canal 0.0000
	            VIN 0.0000
	              - 0.0000
	              I 0.0000

     polyglolla   493123 inf (8)
	    polygonella 0.3000
	       polyglot 0.2000
	           </S> 0.0000
	              , 0.0000
	      configure 0.0000
	           pool 0.0000
	       polygala 0.0000
	              a 0.0000

    Lighthoi:se   493281 inf (8)
	     Lighthouse 1.0000
	          Light 0.1000
	             of 0.0000
	              M 0.0000
	              , 0.0000
	           </S> 0.0000
	         Island 0.0000
	           Road 0.0000

             Au   493737 inf (8)
	             Au 0.1363
	              , 0.0000
	              a 0.0000
	             us 0.0000
	              / 0.0000
	             AM 0.0000
	              " 0.0000
	           </S> 0.0000

  Christclinrch   493863   1 (11)
	   Christchurch 0.4000
	        version 0.0000
	              0 0.0000
	              , 0.0000
	              a 0.0000
	           that 0.0000
	            all 0.0000
	           your 0.0000
	           </S> 0.0000
	            the 0.0000
	             us 0.0000

   Charterhonse   493975   1 (10)
	   Charterhouse 0.6000
	    Netherlands 0.0000
	           data 0.0000
	         number 0.0000
	           </S> 0.0000
	           same 0.0000
	          world 0.0000
	           next 0.0000
	              , 0.0000
	       Internet 0.0000

       Januar}'   494473   1 (11)
	        January 0.3000
	            the 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	            and 0.0000
	             A. 0.0000
	              x 0.0000
	         Januar 0.0000
	        Vermont 0.0000
	      therefore 0.0000

        Scill}'   494665   1 (10)
	         Scilly 0.9000
	         Scicli 0.0000
	             us 0.0000
	              a 0.0000
	          stock 0.0000
	              , 0.0000
	           </S> 0.0000
	            all 0.0000
	           2004 0.0000
	            the 0.0000

             TA   495103   1 (7)
	           </S> 0.0000
	             us 0.0000
	             TA 0.0000
	              a 0.0000
	             To 0.0000
	              - 0.0000
	              , 0.0000

         CILLID   495106 inf (10)
	         CIALIS 0.0000
	         DILLIC 0.0000
	              A 0.0000
	           </S> 0.0000
	            USA 0.0000
	           CILL 0.0000
	          Dewey 0.0000
	           City 0.0000
	              - 0.0000
	              , 0.0000

              .   495112   1 (5)
	              . 1.0000
	            the 0.0000
	              , 0.0000
	             us 0.0000
	           </S> 0.0000

             -E   495114 inf (9)
	             -- 0.1000
	             us 0.0000
	              / 0.0000
	              " 0.0000
	              , 0.0000
	             of 0.0000
	              - 0.0000
	              I 0.0000
	           </S> 0.0000

             j]   495145 inf (8)
	           </S> 0.0000
	             us 0.0000
	              " 0.0000
	              ] 0.0000
	             of 0.0000
	              , 0.0000
	             ja 0.0000
	              I 0.0000

            lot   495148   1 (6)
	            lot 1.0000
	            not 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	           lava 0.0000

             ac   495152   1 (7)
	             ac 0.2000
	           </S> 0.0000
	             at 0.0000
	              , 0.0000
	              I 0.0000
	             of 0.0000
	            arz 0.0000

           ilia   495155   1 (8)
	           ilia 0.9724
	           </S> 0.0000
	             in 0.0000
	              - 0.0000
	             dc 0.0000
	              , 0.0000
	              a 0.0000
	           alba 0.0000

       60/ra/is   495160 inf (8)
	         travis 0.1000
	              a 0.0000
	             is 0.0000
	          oasis 0.0000
	          kulik 0.0000
	              , 0.0000
	           </S> 0.0000
	  thunderstruck 0.0000

          .shot   495313   1 (8)
	           shot 0.7000
	           show 0.1000
	              , 0.0000
	              a 0.0000
	          Ashot 0.0000
	         killed 0.0000
	           </S> 0.0000
	            not 0.0000

             TA   495488   1 (7)
	           </S> 0.0000
	             us 0.0000
	              , 0.0000
	             TA 0.0000
	              - 0.0000
	              a 0.0000
	             To 0.0000

            CIL   495491   1 (8)
	            CIL 0.7075
	              - 0.0000
	              , 0.0000
	             us 0.0000
	              A 0.0000
	           </S> 0.0000
	              ' 0.0000
	             In 0.0000

              L   495495 inf (8)
	             La 0.0000
	             LL 0.0000
	            the 0.0000
	              , 0.0000
	  International 0.0000
	             FL 0.0000
	           </S> 0.0000
	             us 0.0000

            ID^   495497   1 (11)
	             ID 0.4000
	            IDE 0.0000
	              , 0.0000
	              ) 0.0000
	            IDD 0.0000
	           </S> 0.0000
	           Word 0.0000
	              s 0.0000
	              M 0.0000
	              A 0.0000
	             In 0.0000

  vulauoccphala   495540 inf (9)
	  Aulacocephala 0.3000
	              , 0.0000
	     particular 0.0000
	           alba 0.0000
	      configure 0.0000
	              a 0.0000
	          flava 0.0000
	      Motacilla 0.0000
	           </S> 0.0000

           Ma}-   495599   1 (8)
	            May 1.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	            Maa 0.0000
	           lava 0.0000
	             Ma 0.0000
	            the 0.0000

          ijtli   495604 inf (11)
	          ixtli 0.1000
	             18 0.0000
	           Atli 0.0000
	           site 0.0000
	           ijlt 0.0000
	              a 0.0000
	              , 0.0000
	           into 0.0000
	           </S> 0.0000
	            ijl 0.0000
	        Cejtlin 0.0000

         flaz'a   495641   1 (13)
	          flava 0.3000
	              , 0.0000
	    information 0.0000
	              . 0.0000
	          <UNK> 0.0000
	         Alauda 0.0000
	           faza 0.0000
	         family 0.0000
	            Act 0.0000
	           </S> 0.0000
	          fazla 0.0000
	              a 0.0000
	            fla 0.0000

      followiug   495664   1 (13)
	      following 1.0000
	    unfollowing 0.1000
	         follow 0.1000
	          major 0.0000
	              a 0.0000
	              , 0.0000
	              - 0.0000
	           </S> 0.0000
	      countries 0.0000
	             of 0.0000
	          years 0.0000
	        matches 0.0000
	       extremes 0.0000

             Fa   495676 inf (7)
	             Fa 0.8354
	              " 0.0000
	             at 0.0000
	              , 0.0000
	              I 0.0000
	           </S> 0.0000
	             us 0.0000

            ly-   495682   1 (9)
	             ly 0.1000
	              / 0.0000
	            lyx 0.0000
	           </S> 0.0000
	              s 0.0000
	             by 0.0000
	              , 0.0000
	            Map 0.0000
	              a 0.0000

             MO   495686 inf (7)
	             MO 0.8354
	              | 0.0000
	             My 0.0000
	              , 0.0000
	           </S> 0.0000
	             us 0.0000
	              a 0.0000

             TA   495689   1 (7)
	             TA 0.1000
	             us 0.0000
	              - 0.0000
	             To 0.0000
	              , 0.0000
	           </S> 0.0000
	    Grangeville 0.0000

           CILL   495692   1 (8)
	           CILL 0.9724
	              , 0.0000
	              A 0.0000
	             J. 0.0000
	           City 0.0000
	        Listing 0.0000
	           </S> 0.0000
	              - 0.0000

             ID   495697   1 (9)
	             ID 0.1000
	              , 0.0000
	             In 0.0000
	           site 0.0000
	             us 0.0000
	          <UNK> 0.0000
	              a 0.0000
	           </S> 0.0000
	             al 0.0000

              .   495699   1 (6)
	              . 1.0000
	           </S> 0.0000
	              : 0.0000
	             us 0.0000
	              , 0.0000
	            the 0.0000

             F.   495701 inf (9)
	              " 0.0000
	              s 0.0000
	              a 0.0000
	              , 0.0000
	             FL 0.0000
	           </S> 0.0000
	              . 0.0000
	              / 0.0000
	            For 0.0000

         SykEvS   495705 inf (9)
	          Sykes 0.4000
	            Syk 0.0000
	        Kennedy 0.0000
	              , 0.0000
	           </S> 0.0000
	      configure 0.0000
	          Smith 0.0000
	              A 0.0000
	             C. 0.0000

              '   495711   1 (5)
	              ' 1.0000
	              , 0.0000
	             us 0.0000
	           </S> 0.0000
	            the 0.0000

          2otli   495801 inf (10)
	          Hotel 0.0000
	          Kotli 0.0000
	             25 0.0000
	           otli 0.0000
	              1 0.0000
	           </S> 0.0000
	           2005 0.0000
	              a 0.0000
	              , 0.0000
	          wolfi 0.0000

             TA   495826   1 (7)
	           </S> 0.0000
	             us 0.0000
	             TA 0.0000
	              a 0.0000
	             To 0.0000
	              - 0.0000
	              , 0.0000

       CILLlDzE   495829 inf (9)
	             IL 0.3000
	              - 0.0000
	          Dewey 0.0000
	              A 0.0000
	              , 0.0000
	            USA 0.0000
	           IDEX 0.0000
	        College 0.0000
	           </S> 0.0000

          AvShy   495844 inf (11)
	           Avvy 0.0000
	              C 0.0000
	              e 0.0000
	             Av 0.0000
	            Shy 0.0000
	           </S> 0.0000
	          Avahi 0.0000
	            Avy 0.0000
	            All 0.0000
	            Red 0.0000
	              - 0.0000

          Sa\'I   495893 inf (6)
	           SaPI 0.0000
	            the 0.0000
	             pp 0.0000
	              i 0.0000
	             Sa 0.0000
	           have 0.0000

          /lava   496106 inf (10)
	           lava 0.3000
	              a 0.0000
	          <UNK> 0.0000
	           have 0.0000
	           </S> 0.0000
	        sources 0.0000
	          alava 0.0000
	              , 0.0000
	          Slava 0.0000
	        parties 0.0000

      nowadaj'S   496153   2 (8)
	        nowaday 0.3000
	              a 0.0000
	              ' 0.0000
	       nowadays 0.0000
	              . 0.0000
	              , 0.0000
	            new 0.0000
	           </S> 0.0000

        Scill3%   497115   1 (10)
	         Scilly 0.6000
	           late 0.0000
	            the 0.0000
	           </S> 0.0000
	              , 0.0000
	         Scicli 0.0000
	             us 0.0000
	          early 0.0000
	              a 0.0000
	           will 0.0000

In [148]:
report(RF_MODELS, 'RF-top3.t10')
    possibility   407374   1 (26)
	    possibility 1.0000
	    possibilita 0.1000
	    possibilite 0.1000
	     possibilis 0.1000
	         policy 0.0036
	              . 0.0000
	            the 0.0000
	              a 0.0000
	          <UNK> 0.0000
	              - 0.0000
	              > 0.0000
	    application 0.0000
	          issue 0.0000
	        quality 0.0000
	           </S> 0.0000
	       question 0.0000
	   sponsibility 0.0000
	           same 0.0000
	            end 0.0000
	  impossibility 0.0000
	           part 0.0000
	              I 0.0000
	            use 0.0000
	  Impossibility 0.0000
	         public 0.0000
	              , 0.0000

           niaj   407429  17 (32)
	              a 0.0369
	          niajn 0.0369
	           niaj 0.0369
	           Pica 0.0369
	           nias 0.0369
	           nian 0.0369
	            the 0.0369
	           nija 0.0369
	          began 0.0369
	          oniaj 0.0369
	              I 0.0369
	              \ 0.0369
	            nia 0.0369
	          nikaj 0.0369
	            cia 0.0369
	             'm 0.0059
	           have 0.0000
	           said 0.0000
	            may 0.0000
	              . 0.0000
	            say 0.0000
	              - 0.0000
	            new 0.0000
	              J 0.0000
	            was 0.0000
	           </S> 0.0000
	             am 0.0000
	              , 0.0000
	            and 0.0000
	            not 0.0000
	           name 0.0000
	             iu 0.0000

              '   407433 inf (18)
	           </S> 0.0369
	              a 0.0369
	            and 0.0369
	             to 0.0369
	           only 0.0369
	             us 0.0369
	            cia 0.0369
	             iu 0.0369
	              . 0.0369
	             of 0.0369
	              - 0.0369
	            not 0.0369
	              , 0.0369
	            the 0.0369
	           this 0.0369
	              ± 0.0059
	          <UNK> 0.0000
	              ¹ 0.0000

             bv   407472   2 (25)
	             vb 0.5000
	             by 0.0567
	           alba 0.0369
	            bov 0.0369
	              i 0.0369
	           blvd 0.0369
	            Abv 0.0369
	            Ibv 0.0369
	            bev 0.0369
	             bv 0.0369
	           bevy 0.0369
	              . 0.0059
	            the 0.0000
	            but 0.0000
	              - 0.0000
	              , 0.0000
	             iu 0.0000
	             us 0.0000
	              a 0.0000
	           </S> 0.0000
	             be 0.0000
	           that 0.0000
	             as 0.0000
	             to 0.0000
	              I 0.0000

            Mr.   407475   2 (23)
	              " 0.1000
	           More 0.0369
	             Mr 0.0369
	            arz 0.0369
	            cia 0.0369
	             My 0.0369
	              I 0.0369
	            Mrs 0.0369
	           Mrs. 0.0369
	         Andrew 0.0369
	        Barbara 0.0369
	            Mrz 0.0369
	           </S> 0.0059
	              , 0.0000
	             my 0.0000
	            the 0.0000
	            Mr. 0.0000
	             us 0.0000
	            are 0.0000
	              . 0.0000
	              a 0.0000
	              C 0.0000
	              - 0.0000

       llarting   407485 inf (24)
	        McMahon 0.0369
	             A. 0.0369
	       learning 0.0369
	              s 0.0369
	             J. 0.0369
	        lasting 0.0369
	      latrating 0.0369
	       clarting 0.0369
	        listing 0.0369
	        altring 0.0369
	        larking 0.0369
	       starting 0.0369
	              M 0.0369
	          llarg 0.0369
	        allting 0.0369
	        Karting 0.0369
	        parting 0.0369
	              , 0.0059
	              - 0.0000
	           coli 0.0000
	              : 0.0000
	           </S> 0.0000
	              A 0.0000
	              . 0.0000

            for   407494   1 (22)
	           </S> 0.0369
	            for 0.0369
	           from 0.0369
	           ford 0.0369
	           foro 0.0369
	              . 0.0369
	             A. 0.0369
	            For 0.0369
	             us 0.0369
	           form 0.0369
	            arz 0.0369
	            fro 0.0369
	              a 0.0369
	              - 0.0369
	              & 0.0369
	           forr 0.0369
	              , 0.0369
	            foo 0.0369
	            fog 0.0369
	            and 0.0369
	              M 0.0369
	              D 0.0369

         Oologj   407522   1 (30)
	        Beatles 0.0369
	         Oology 0.0369
	           olog 0.0369
	       zoologji 0.0369
	        Mammals 0.0369
	      Economics 0.0369
	       Oologist 0.0369
	         Online 0.0369
	              a 0.0369
	         Oolong 0.0369
	          Birds 0.0369
	              I 0.0369
	         Objlog 0.0369
	     Beekeepers 0.0369
	        Bankers 0.0369
	          Ooloi 0.0369
	           Olog 0.0369
	          World 0.0369
	     Chronology 0.0369
	          Orlov 0.0369
	          world 0.0369
	       Columbia 0.0059
	         Indian 0.0000
	              , 0.0000
	        Airways 0.0000
	           </S> 0.0000
	              - 0.0000
	         Virgin 0.0000
	            and 0.0000
	              . 0.0000

              '   407528   1 (14)
	            the 0.0369
	            and 0.0369
	              - 0.0369
	              ( 0.0369
	              , 0.0369
	              ' 0.0369
	             us 0.0369
	            cia 0.0369
	             iu 0.0369
	             of 0.0369
	            ... 0.0369
	              . 0.0369
	             's 0.0369
	           </S> 0.0369

           1S64   407547   1 (29)
	             US 0.0369
	              . 0.0369
	          April 0.0369
	           2003 0.0369
	              I 0.0369
	              , 0.0369
	           2004 0.0369
	           </S> 0.0369
	              1 0.0369
	            See 0.0369
	      therefore 0.0369
	           2005 0.0369
	           1864 0.0369
	           1969 0.0369
	           1965 0.0369
	           1994 0.0369
	              a 0.0369
	              ) 0.0369
	           1984 0.0369
	             16 0.0369
	            the 0.0059
	            too 0.0000
	              i 0.0000
	             it 0.0000
	          which 0.0000
	         though 0.0000
	             or 0.0000
	             we 0.0000
	        however 0.0000

              a   407553   1 (24)
	      September 0.0369
	              " 0.0369
	             as 0.0369
	           </S> 0.0369
	            May 0.0369
	            cia 0.0369
	          <UNK> 0.0369
	             La 0.0369
	             aa 0.0369
	              a 0.0369
	             at 0.0369
	            and 0.0369
	              ( 0.0369
	            aaa 0.0369
	           this 0.0186
	            the 0.0059
	          which 0.0012
	             of 0.0000
	             la 0.0000
	            one 0.0000
	             or 0.0000
	             us 0.0000
	             to 0.0000
	           lava 0.0000

         Ravens   407568   3 (24)
	        animals 0.4000
	           </S> 0.1000
	       Ravenser 0.0369
	           over 0.0369
	          Raves 0.0369
	         Ravenj 0.0369
	          avens 0.0369
	          Pales 0.0369
	      Ravennans 0.0369
	         Rivers 0.0369
	         Ravens 0.0369
	        Ravines 0.0369
	         Ravena 0.0369
	            the 0.0059
	              . 0.0000
	              a 0.0000
	              I 0.0000
	           have 0.0000
	           even 0.0000
	              - 0.0000
	             in 0.0000
	            and 0.0000
	              , 0.0000
	          Raven 0.0000

          which   407575  15 (23)
	          whith 0.0369
	        whiches 0.0369
	          whick 0.0369
	              N 0.0369
	         whiche 0.0369
	           chic 0.0369
	              a 0.0369
	           wich 0.0369
	          chich 0.0369
	          white 0.0369
	         wichiw 0.0369
	           Pica 0.0369
	              I 0.0369
	        Buffalo 0.0059
	           have 0.0000
	          which 0.0000
	              , 0.0000
	            and 0.0000
	           </S> 0.0000
	              - 0.0000
	              ' 0.0000
	              . 0.0000
	          while 0.0000

          built   407651   2 (27)
	             on 0.0541
	       requires 0.0369
	              ( 0.0369
	           </S> 0.0369
	          butil 0.0369
	           buil 0.0369
	              a 0.0369
	         ybuilt 0.0369
	          <UNK> 0.0369
	              " 0.0369
	          built 0.0369
	           best 0.0369
	              I 0.0369
	          build 0.0369
	            and 0.0369
	           buit 0.0369
	            but 0.0369
	          bulit 0.0369
	          buill 0.0369
	           with 0.0062
	            the 0.0059
	          which 0.0012
	           will 0.0000
	             or 0.0000
	              i 0.0000
	        rebuilt 0.0000
	           find 0.0000

           fern   407749  16 (27)
	              I 0.2833
	        markers 0.0369
	            3.2 0.0369
	            arz 0.0369
	          Aedon 0.0369
	              a 0.0369
	          ferny 0.0369
	              B 0.0369
	          right 0.0369
	          stand 0.0369
	           fers 0.0369
	            the 0.0369
	          ferne 0.0369
	           fere 0.0369
	              , 0.0059
	           from 0.0000
	            for 0.0000
	           fren 0.0000
	          ferns 0.0000
	           free 0.0000
	            and 0.0000
	              - 0.0000
	           </S> 0.0000
	           fern 0.0000
	        friends 0.0000
	            fer 0.0000
	              . 0.0000

           dead   407780   1 (27)
	           dead 0.8000
	             my 0.4533
	             de 0.1000
	          deade 0.0369
	           deda 0.0369
	          adead 0.0369
	           deae 0.0369
	            the 0.0059
	            day 0.0000
	          their 0.0000
	              : 0.0000
	          deads 0.0000
	           Read 0.0000
	          <UNK> 0.0000
	              a 0.0000
	            dea 0.0000
	             us 0.0000
	            cia 0.0000
	           that 0.0000
	           </S> 0.0000
	              - 0.0000
	           year 0.0000
	           data 0.0000
	              , 0.0000
	           dear 0.0000
	           this 0.0000
	           deal 0.0000

             On   407850   3 (25)
	            One 0.4236
	             an 0.3642
	             On 0.3477
	             Of 0.2649
	             on 0.0660
	             in 0.0634
	              I 0.0418
	             iu 0.0369
	            cia 0.0369
	            Ont 0.0369
	            Onn 0.0369
	             OF 0.0369
	             us 0.0369
	              a 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ] 0.0000
	              , 0.0000
	              . 0.0000
	              ) 0.0000
	            the 0.0000
	            and 0.0000
	             '' 0.0000

            two   407863  13 (22)
	             tw 0.0369
	            tow 0.0369
	           twos 0.0369
	           twon 0.0369
	              I 0.0369
	            twp 0.0369
	            twa 0.0369
	            cia 0.0369
	             iu 0.0369
	              a 0.0369
	            wot 0.0369
	              , 0.0059
	             to 0.0000
	           </S> 0.0000
	             us 0.0000
	            two 0.0000
	            the 0.0000
	              . 0.0000
	            top 0.0000
	              - 0.0000
	             of 0.0000
	            May 0.0000

           tlie   407886  10 (27)
	           Clie 0.1000
	           thie 0.1000
	              x 0.0369
	         outlie 0.0369
	          talie 0.0369
	          tliet 0.0369
	         tlieta 0.0369
	           teie 0.0369
	           teil 0.0369
	            the 0.0059
	              a 0.0000
	           tile 0.0000
	              . 0.0000
	           alba 0.0000
	           time 0.0000
	            cia 0.0000
	            lie 0.0000
	            tle 0.0000
	             iu 0.0000
	              - 0.0000
	           </S> 0.0000
	           this 0.0000
	           trie 0.0000
	           your 0.0000
	            tie 0.0000
	          their 0.0000
	              , 0.0000

           nest   407891   3 (27)
	           best 0.2000
	            new 0.1000
	         region 0.0369
	           Code 0.0369
	             us 0.0369
	           area 0.0369
	           ness 0.0369
	          nests 0.0369
	          neste 0.0369
	              a 0.0369
	            nes 0.0369
	          cases 0.0369
	             of 0.0369
	           nets 0.0369
	           nese 0.0369
	           nest 0.0369
	           need 0.0369
	          <UNK> 0.0059
	              - 0.0000
	           same 0.0000
	              . 0.0000
	           </S> 0.0000
	           case 0.0000
	              , 0.0000
	          world 0.0000
	           West 0.0000
	        country 0.0000

           l)ut   407938   1 (24)
	           lout 0.0369
	           laut 0.0369
	           ljut 0.0369
	             in 0.0369
	           luut 0.0369
	              I 0.0369
	             by 0.0369
	              . 0.0369
	           lutu 0.0369
	           lava 0.0369
	             iu 0.0369
	              a 0.0369
	             us 0.0369
	              - 0.0369
	              , 0.0369
	           list 0.0369
	             ut 0.0369
	           last 0.0369
	            but 0.0369
	            lut 0.0369
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	              } 0.0000

            the   407943   1 (17)
	              ) 0.0369
	              " 0.0369
	            thy 0.0369
	            tho 0.0369
	            The 0.0369
	           thee 0.0369
	            the 0.0369
	              } 0.0369
	             to 0.0369
	           </S> 0.0369
	           they 0.0369
	           them 0.0369
	            cia 0.0369
	             iu 0.0369
	          <UNK> 0.0369
	             us 0.0369
	            teh 0.0369

            l)y   408009  13 (25)
	              ) 0.0369
	           lava 0.0369
	             ly 0.0369
	             yl 0.0369
	            Pyi 0.0369
	            ley 0.0369
	              A 0.0369
	            loy 0.0369
	           lyly 0.0369
	              I 0.0369
	            All 0.0369
	              , 0.0059
	             us 0.0000
	             by 0.0000
	            the 0.0000
	             is 0.0000
	           </S> 0.0000
	              - 0.0000
	              a 0.0000
	           with 0.0000
	            all 0.0000
	             to 0.0000
	            may 0.0000
	              . 0.0000
	            lay 0.0000

       visitors   408013   1 (23)
	        visitor 0.0369
	       visitour 0.0369
	              , 0.0369
	            the 0.0369
	       visitobs 0.0369
	      visitours 0.0369
	              ( 0.0369
	       visiters 0.0369
	     viscivorus 0.0369
	           </S> 0.0369
	       visitors 0.0369
	           this 0.0369
	              I 0.0369
	              . 0.0369
	            mp3 0.0369
	     revisitors 0.0369
	              a 0.0369
	          fists 0.0369
	      disturbed 0.0369
	     visitators 0.0369
	             it 0.0369
	       Visitors 0.0369
	        vinitor 0.0369

       hatclied   408045  18 (34)
	       included 0.3683
	        latched 0.1000
	      disclosed 0.0369
	        ashamed 0.0369
	      hatchlike 0.0369
	     hatchelled 0.0369
	          there 0.0369
	           here 0.0369
	           able 0.0369
	       hatelike 0.0369
	       Ratcliff 0.0369
	      hatcheted 0.0369
	        hatlike 0.0369
	       accepted 0.0369
	          clied 0.0369
	         Matcli 0.0369
	             be 0.0059
	        include 0.0000
	             to 0.0000
	            the 0.0000
	           work 0.0000
	              a 0.0000
	            for 0.0000
	             in 0.0000
	          hated 0.0000
	              - 0.0000
	              . 0.0000
	           have 0.0000
	           know 0.0000
	       hatching 0.0000
	        hatched 0.0000
	          exist 0.0000
	              , 0.0000
	           </S> 0.0000

        wliieli   408093  25 (36)
	        Fligeli 0.0369
	           </S> 0.0369
	         lielie 0.0369
	      therefore 0.0369
	              I 0.0369
	        writing 0.0369
	         ligili 0.0369
	          <UNK> 0.0369
	         Eagles 0.0369
	              x 0.0369
	          lieli 0.0369
	            and 0.0369
	              a 0.0369
	              y 0.0369
	           ieli 0.0369
	            but 0.0369
	        Bengals 0.0369
	              " 0.0369
	              ( 0.0369
	        iljieli 0.0369
	            DEF 0.0369
	           well 0.0369
	         glieli 0.0369
	            the 0.0059
	          which 0.0012
	         though 0.0000
	           wiel 0.0000
	              i 0.0000
	             or 0.0000
	          wiele 0.0000
	         liseli 0.0000
	          wlite 0.0000
	           weli 0.0000
	            too 0.0000
	           will 0.0000
	          kieli 0.0000

       liowever   408102  15 (25)
	          lieve 0.7000
	           like 0.1000
	        lievere 0.0369
	           over 0.0369
	              y 0.0369
	      therefore 0.0369
	              x 0.0369
	        However 0.0369
	       violeter 0.0369
	          <UNK> 0.0369
	              0 0.0369
	       Blowover 0.0369
	              , 0.0369
	            the 0.0059
	           were 0.0000
	         liever 0.0000
	         though 0.0000
	              e 0.0000
	          which 0.0000
	              i 0.0000
	             or 0.0000
	            too 0.0000
	        lowlier 0.0000
	        however 0.0000
	        nowever 0.0000

   considerable   408116  13 (24)
	 inconsiderable 0.0369
	    considerata 0.0369
	  considerabile 0.0369
	        contact 0.0369
	         course 0.0369
	          could 0.0369
	  considerables 0.0369
	              - 0.0369
	            and 0.0369
	              I 0.0369
	           they 0.0369
	              a 0.0059
	             no 0.0000
	             my 0.0000
	             he 0.0000
	           been 0.0000
	            the 0.0000
	              . 0.0000
	   considerably 0.0000
	             to 0.0000
	          their 0.0000
	              , 0.0000
	   considerable 0.0000
	           </S> 0.0000

           1894   408190 inf (22)
	        Germany 0.0369
	           1994 0.0369
	              x 0.0369
	        poverty 0.0369
	             of 0.0369
	           1984 0.0369
	           1989 0.0369
	             us 0.0369
	     California 0.0369
	            the 0.0059
	           time 0.0000
	          place 0.0000
	              , 0.0000
	           your 0.0000
	          stock 0.0000
	           </S> 0.0000
	            and 0.0000
	              - 0.0000
	              a 0.0000
	              . 0.0000
	           this 0.0000
	              1 0.0000

             In   408196   1 (18)
	             In 0.5538
	             It 0.0900
	             If 0.0570
	              I 0.0418
	            Inn 0.0369
	             us 0.0369
	              a 0.0369
	             iu 0.0369
	            cia 0.0369
	            Inc 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ] 0.0000
	              . 0.0000
	              ) 0.0000
	              , 0.0000

         Ravens   408222  13 (26)
	          Pales 0.9000
	          Raves 0.4000
	         Ravena 0.2000
	            egg 0.0369
	         Family 0.0369
	       Ravenser 0.0369
	         Ravenj 0.0369
	      Ravennans 0.0369
	          avens 0.0369
	          newly 0.0369
	              a 0.0059
	           have 0.0038
	            not 0.0000
	            the 0.0000
	              . 0.0000
	        Ravines 0.0000
	          Raven 0.0000
	           even 0.0000
	           </S> 0.0000
	          River 0.0000
	              , 0.0000
	         Ravens 0.0000
	              - 0.0000
	         Parent 0.0000
	         Rating 0.0000
	            Day 0.0000

        hatched   408229   2 (21)
	        Watches 0.2000
	             Oh 0.0369
	       Thatched 0.0369
	        hatchet 0.0369
	      hatcheted 0.0369
	         rather 0.0369
	        catched 0.0369
	       hatchery 0.0369
	        hatches 0.0369
	        Kitchen 0.0369
	        History 0.0369
	        Journal 0.0369
	              a 0.0369
	              I 0.0369
	       thatched 0.0369
	        hatched 0.0369
	        Buffalo 0.0059
	           </S> 0.0000
	              . 0.0000
	              , 0.0000
	              - 0.0000

           five   408241   9 (23)
	          fives 0.8000
	           fine 0.7000
	           vife 0.0369
	            cia 0.0369
	           Pica 0.0369
	           fiev 0.0369
	          fiver 0.0369
	             of 0.0059
	              . 0.0000
	              - 0.0000
	            the 0.0000
	              , 0.0000
	           </S> 0.0000
	           file 0.0000
	              I 0.0000
	           lava 0.0000
	          field 0.0000
	            for 0.0000
	           find 0.0000
	           five 0.0000
	             to 0.0000
	           free 0.0000
	              a 0.0000

            Mr.   408266   3 (21)
	             My 0.5980
	              I 0.0418
	              a 0.0369
	             Mr 0.0369
	            arz 0.0369
	            cia 0.0369
	            Mrs 0.0369
	            Mrz 0.0369
	            Mrk 0.0369
	             us 0.0369
	            are 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              , 0.0000
	            the 0.0000
	              ] 0.0000
	              . 0.0000
	           More 0.0000
	              ) 0.0000

        Coniyus   408276 inf (37)
	              A 0.7000
	          Conio 0.0369
	              M 0.0369
	        Conifur 0.0369
	        Conicum 0.0369
	         Cionus 0.0369
	        Cronius 0.0369
	          Conic 0.0369
	        Cinclus 0.0369
	         Lanius 0.0369
	       Cydonius 0.0369
	           Coni 0.0369
	              F 0.0369
	        Cosinus 0.0369
	       Conleyus 0.0369
	          Conus 0.0369
	        Congius 0.0369
	         Chafee 0.0369
	          Bacon 0.0369
	         Conics 0.0369
	         Conies 0.0369
	             22 0.0369
	         Comics 0.0369
	         Corvus 0.0369
	        Conibos 0.0369
	             23 0.0369
	              , 0.0059
	          Smith 0.0000
	              . 0.0000
	           </S> 0.0000
	              ( 0.0000
	          <UNK> 0.0000
	              - 0.0000
	       Continue 0.0000
	         Irvine 0.0000
	       Colonius 0.0000
	         Census 0.0000

       Lyveudeu   408288 inf (29)
	       Lieudieu 0.0369
	         veureu 0.0369
	              . 0.0369
	       Lavendel 0.0369
	         vendeu 0.0369
	          order 0.0369
	           need 0.0369
	          Rhode 0.0369
	         Lovedu 0.0369
	              I 0.0369
	      Lavaudieu 0.0369
	      precursor 0.0369
	          Lyude 0.0369
	        Loverde 0.0369
	          vedeu 0.0369
	            the 0.0059
	              , 0.0000
	           time 0.0000
	           </S> 0.0000
	             it 0.0000
	           your 0.0000
	            New 0.0000
	       Lavender 0.0000
	         course 0.0000
	              - 0.0000
	             us 0.0000
	              a 0.0000
	           this 0.0000
	           them 0.0000

             S.   408298 inf (25)
	             SC 0.0369
	            but 0.0369
	            SSS 0.0369
	           SSSS 0.0369
	            cia 0.0369
	          <UNK> 0.0369
	            and 0.0369
	             So 0.0369
	              a 0.0369
	              " 0.0369
	             SS 0.0369
	              I 0.0369
	             St 0.0369
	           </S> 0.0369
	             US 0.0369
	              ( 0.0369
	          south 0.0369
	            the 0.0059
	          which 0.0012
	             to 0.0000
	             of 0.0000
	             us 0.0000
	             iu 0.0000
	              i 0.0000
	             or 0.0000

        Buzzard   408354   1 (23)
	       Buzzards 0.1000
	        Buzzard 0.1000
	           were 0.0369
	         Buzdar 0.0369
	        sensors 0.0369
	           said 0.0369
	         Buzzar 0.0369
	              i 0.0369
	            are 0.0177
	            the 0.0059
	          <UNK> 0.0000
	              I 0.0000
	            was 0.0000
	              , 0.0000
	           </S> 0.0000
	              ( 0.0000
	              - 0.0000
	           have 0.0000
	            has 0.0000
	              a 0.0000
	        support 0.0000
	          other 0.0000
	           more 0.0000

          taken   408362   3 (24)
	      submitted 0.8000
	              . 0.0382
	             us 0.0369
	         takene 0.0369
	        payment 0.0369
	          Pales 0.0369
	         takens 0.0369
	              a 0.0369
	       provided 0.0369
	         Father 0.0369
	          takes 0.0369
	          taker 0.0369
	              I 0.0369
	           take 0.0369
	          taken 0.0369
	      conceived 0.0369
	           they 0.0369
	         takken 0.0369
	              , 0.0059
	           then 0.0000
	              - 0.0000
	           </S> 0.0000
	             's 0.0000
	            the 0.0000

   aggressively   408442   1 (26)
	   aggressively 0.1000
	             us 0.0369
	              A 0.0369
	    egressively 0.0369
	      available 0.0369
	 unaggressively 0.0369
	             be 0.0369
	           also 0.0369
	   Aggressively 0.0369
	   regressively 0.0369
	    aggressives 0.0369
	           that 0.0059
	              . 0.0000
	              , 0.0000
	     aggressive 0.0000
	              i 0.0000
	             is 0.0000
	              I 0.0000
	             so 0.0000
	            the 0.0000
	             to 0.0000
	              - 0.0000
	             it 0.0000
	            are 0.0000
	           </S> 0.0000
	           this 0.0000

           tame   408456  15 (26)
	           tama 0.5225
	          tamed 0.1000
	           tami 0.1000
	           Baya 0.0369
	          tamme 0.0369
	            but 0.0369
	          <UNK> 0.0369
	        usually 0.0369
	              a 0.0369
	              " 0.0369
	           </S> 0.0369
	              I 0.0369
	            the 0.0059
	          which 0.0012
	           time 0.0000
	           team 0.0000
	   particularly 0.0000
	            tam 0.0000
	           them 0.0000
	            who 0.0000
	          tamer 0.0000
	           sala 0.0000
	           tame 0.0000
	             or 0.0000
	              i 0.0000
	           lava 0.0000

        Buzzard   408484  14 (28)
	             's 0.0369
	         Buzzar 0.0369
	         Buzdar 0.0369
	           with 0.0369
	            was 0.0369
	           auto 0.0369
	            are 0.0369
	              , 0.0369
	              a 0.0369
	           said 0.0369
	              I 0.0369
	       question 0.0369
	           </S> 0.0059
	           same 0.0000
	            one 0.0000
	           rest 0.0000
	           most 0.0000
	          <UNK> 0.0000
	       Buzzards 0.0000
	        Bullard 0.0000
	             US 0.0000
	              - 0.0000
	          first 0.0000
	           fact 0.0000
	      following 0.0000
	           year 0.0000
	        problem 0.0000
	        Buzzard 0.0000

       remained   408492   2 (20)
	            was 0.3000
	      remaindre 0.0369
	        romaine 0.0369
	       retained 0.0369
	      remainder 0.0369
	       remained 0.0369
	       required 0.0369
	        remaine 0.0369
	              I 0.0369
	         review 0.0369
	       remainer 0.0369
	              a 0.0369
	              , 0.0059
	             of 0.0000
	           </S> 0.0000
	             's 0.0000
	             is 0.0000
	              - 0.0000
	          Email 0.0000
	              . 0.0000

       obdurate   408501  13 (23)
	       accurate 0.2833
	              - 0.0369
	        obdurat 0.0369
	        operate 0.0369
	      obdurated 0.0369
	       obturata 0.0369
	       obturate 0.0369
	      obduraret 0.0369
	       obdurato 0.0369
	       obaurata 0.0369
	      obdurates 0.0369
	             in 0.0059
	           that 0.0000
	            the 0.0000
	              . 0.0000
	          there 0.0000
	       obdurate 0.0000
	              a 0.0000
	      unchanged 0.0000
	        outside 0.0000
	         silent 0.0000
	              , 0.0000
	           </S> 0.0000

         full}'   408514   8 (24)
	           over 0.6000
	            ful 0.3000
	         credit 0.0369
	          fulla 0.0369
	         nearly 0.0369
	             as 0.0369
	            the 0.0059
	          fulls 0.0000
	              . 0.0000
	           your 0.0000
	         fuller 0.0000
	           full 0.0000
	          about 0.0000
	           </S> 0.0000
	             up 0.0000
	             us 0.0000
	              - 0.0000
	            all 0.0000
	         public 0.0000
	              a 0.0000
	              , 0.0000
	           this 0.0000
	          fully 0.0000
	          these 0.0000

      instantly   408819   8 (24)
	      distantly 0.1000
	         insert 0.0369
	      instantan 0.0369
	      enstantly 0.0369
	     instauntly 0.0369
	     instantlie 0.0369
	           </S> 0.0059
	              - 0.0000
	        install 0.0000
	            was 0.0000
	              n 0.0000
	              a 0.0000
	      instantly 0.0000
	       instance 0.0000
	              ) 0.0000
	              I 0.0000
	              , 0.0000
	        instant 0.0000
	              N 0.0000
	             is 0.0000
	              s 0.0000
	              A 0.0000
	          <UNK> 0.0000
	              . 0.0000

         dashed   408829  19 (28)
	          based 0.3000
	          dased 0.0369
	              s 0.0369
	         dasher 0.0369
	              A 0.0369
	           Serv 0.0369
	     selectable 0.0369
	          ashed 0.0369
	         Passer 0.0369
	            day 0.0369
	       dashedly 0.0369
	      presented 0.0369
	              I 0.0369
	         dashes 0.0369
	        Yedashe 0.0369
	              ' 0.0369
	         dashee 0.0369
	              . 0.0059
	           </S> 0.0000
	           date 0.0000
	              ! 0.0000
	         dashed 0.0000
	           with 0.0000
	            and 0.0000
	              - 0.0000
	         online 0.0000
	              , 0.0000
	              a 0.0000

          after   408928   1 (26)
	            The 0.0369
	          aftre 0.0369
	          <UNK> 0.0369
	              I 0.0369
	          after 0.0369
	         Passer 0.0369
	           afte 0.0369
	              A 0.0369
	         afther 0.0369
	           </S> 0.0369
	              " 0.0369
	          aften 0.0369
	              ( 0.0369
	   Bedfordshire 0.0369
	         Rafter 0.0369
	          aftel 0.0369
	         afters 0.0369
	            are 0.0369
	           with 0.0062
	            the 0.0059
	          which 0.0012
	             or 0.0000
	          other 0.0000
	         rafter 0.0000
	            you 0.0000
	              i 0.0000

         flying   408934  10 (27)
	         Flying 0.2000
	        flyting 0.0369
	         faying 0.0369
	        flyings 0.0369
	       flyingly 0.0369
	           just 0.0369
	            and 0.0369
	         flingy 0.0369
	            the 0.0059
	              , 0.0000
	          using 0.0000
	          lying 0.0000
	              I 0.0000
	              - 0.0000
	           only 0.0000
	         frying 0.0000
	         flying 0.0000
	              a 0.0000
	          about 0.0000
	            all 0.0000
	           find 0.0000
	          fling 0.0000
	          being 0.0000
	           </S> 0.0000
	             an 0.0000
	              . 0.0000
	            his 0.0000

          hotly   408978  18 (25)
	           holy 0.3233
	          hotty 0.1000
	          holly 0.1000
	         hostly 0.0369
	            but 0.0369
	           </S> 0.0369
	          Hotly 0.0369
	           otly 0.0369
	              - 0.0369
	         lothly 0.0369
	        toothly 0.0369
	              ( 0.0369
	              I 0.0369
	          <UNK> 0.0369
	            and 0.0369
	          World 0.0369
	              a 0.0369
	          hotly 0.0250
	            the 0.0059
	          which 0.0012
	             or 0.0000
	           home 0.0000
	            how 0.0000
	           help 0.0000
	              i 0.0000

            b}'   408992   6 (15)
	             be 0.2000
	             bb 0.0369
	             br 0.0369
	            cia 0.0369
	             iu 0.0369
	             by 0.0059
	             in 0.0000
	           </S> 0.0000
	              - 0.0000
	              . 0.0000
	             us 0.0000
	              a 0.0000
	              , 0.0000
	            but 0.0000
	          after 0.0000

              '   408996 inf (12)
	             us 0.0369
	              - 0.0369
	             of 0.0369
	            and 0.0369
	              a 0.0369
	              . 0.0369
	              , 0.0369
	           </S> 0.0369
	            the 0.0369
	             me 0.0369
	            cia 0.0369
	             iu 0.0369

              '   409003 inf (19)
	           when 0.0559
	             A. 0.0369
	          <UNK> 0.0369
	            and 0.0369
	              a 0.0369
	             Th 0.0369
	             J. 0.0369
	           Grin 0.0369
	           </S> 0.0369
	              " 0.0369
	              ( 0.0369
	            the 0.0059
	          which 0.0012
	             of 0.0000
	            she 0.0000
	             or 0.0000
	           then 0.0000
	             to 0.0000
	             us 0.0000

       alighted   409014  13 (26)
	          after 0.1000
	          based 0.0369
	              ' 0.0369
	      alighteth 0.0369
	           also 0.0369
	       slighted 0.0369
	              s 0.0369
	      lighthead 0.0369
	              A 0.0369
	     daylighted 0.0369
	         dawned 0.0369
	              , 0.0059
	              . 0.0000
	            the 0.0000
	         alight 0.0000
	       blighted 0.0000
	            all 0.0000
	        appears 0.0000
	           </S> 0.0000
	       alighted 0.0000
	             be 0.0000
	       appeared 0.0000
	              - 0.0000
	        lighted 0.0000
	         appear 0.0000
	              I 0.0000

      bristling   409074   1 (23)
	      Bristling 0.0369
	       brisling 0.0369
	              i 0.0369
	        Listing 0.0369
	          being 0.0369
	    bristlingly 0.0369
	      brustling 0.0369
	      bristling 0.0369
	         during 0.0369
	      brittling 0.0369
	     bristlings 0.0369
	          years 0.0369
	         months 0.0369
	              , 0.0059
	              a 0.0000
	           </S> 0.0000
	         duster 0.0000
	              - 0.0000
	              I 0.0000
	            bed 0.0000
	              . 0.0000
	             of 0.0000
	            boa 0.0000

           bird   409109   2 (29)
	            big 0.3000
	           birt 0.0369
	          Night 0.0369
	          birdi 0.0369
	    Association 0.0369
	            arz 0.0369
	          birdy 0.0369
	      draperies 0.0369
	           Pica 0.0369
	           biro 0.0369
	     Department 0.0369
	              I 0.0369
	        drapery 0.0369
	             be 0.0369
	        Society 0.0369
	           brid 0.0369
	            cia 0.0369
	            bir 0.0369
	           bird 0.0369
	              , 0.0059
	              . 0.0000
	           </S> 0.0000
	             by 0.0000
	          birds 0.0000
	              a 0.0000
	            and 0.0000
	              - 0.0000
	             of 0.0000
	            but 0.0000

            was   409122  14 (22)
	           wasp 0.0369
	             wa 0.0369
	           wasa 0.0369
	              a 0.0369
	             us 0.0369
	            arz 0.0369
	           waas 0.0369
	            way 0.0369
	           same 0.0369
	            cia 0.0369
	            war 0.0369
	           wash 0.0369
	             's 0.0059
	            and 0.0000
	            was 0.0000
	           </S> 0.0000
	              . 0.0000
	              I 0.0000
	              - 0.0000
	             we 0.0000
	              , 0.0000
	            has 0.0000

       tempered   409136   1 (29)
	       temperet 0.0369
	        tremped 0.0369
	      impressed 0.0369
	     experience 0.0369
	     temperedly 0.0369
	              - 0.0369
	          their 0.0369
	            off 0.0369
	       temperer 0.0369
	       tempered 0.0369
	       familiar 0.0369
	     retempered 0.0369
	        tempere 0.0369
	             up 0.0369
	       temperei 0.0369
	              , 0.0059
	             to 0.0000
	              I 0.0000
	              . 0.0000
	          there 0.0000
	              a 0.0000
	             by 0.0000
	        pleased 0.0000
	           they 0.0000
	        written 0.0000
	             in 0.0000
	            the 0.0000
	           </S> 0.0000
	            not 0.0000

        caution   409162   1 (25)
	        caution 0.4500
	     discretion 0.4000
	        caption 0.0369
	      cautionna 0.0369
	        cautior 0.0369
	       Location 0.0369
	       cautione 0.0369
	         canton 0.0369
	           dose 0.0369
	         finish 0.0369
	              I 0.0369
	             of 0.0369
	       cautions 0.0369
	         cautio 0.0369
	       cautioni 0.0369
	              a 0.0369
	        section 0.0369
	              , 0.0059
	              - 0.0000
	            and 0.0000
	              . 0.0000
	        country 0.0000
	     discipline 0.0000
	           food 0.0000
	           </S> 0.0000

             he   409172   1 (21)
	            hey 0.0369
	             eh 0.0369
	              a 0.0369
	             us 0.0369
	             iu 0.0369
	            cia 0.0369
	            heh 0.0369
	            her 0.0369
	            the 0.0369
	             he 0.0369
	            hee 0.0369
	             hi 0.0369
	             hr 0.0369
	              . 0.0369
	              I 0.0369
	              , 0.0369
	              - 0.0369
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	              } 0.0000

        Buzzard   409271  10 (28)
	         threat 0.0369
	        ability 0.0369
	          years 0.0369
	         Buzzar 0.0369
	         intent 0.0369
	    opportunity 0.0369
	        support 0.0369
	         Buzdar 0.0369
	           </S> 0.0059
	          Board 0.0000
	          <UNK> 0.0000
	              ' 0.0000
	           time 0.0000
	           need 0.0000
	              " 0.0000
	              - 0.0000
	           user 0.0000
	       Buzzards 0.0000
	        Bullard 0.0000
	          world 0.0000
	        buzzard 0.0000
	            way 0.0000
	          first 0.0000
	           same 0.0000
	        Hazzard 0.0000
	      following 0.0000
	          right 0.0000
	        Buzzard 0.0000

  consternation   409303   1 (28)
	  consternation 0.8000
	         dismay 0.0369
	          threw 0.0369
	         horror 0.0369
	         smiled 0.0369
	        delight 0.0369
	              i 0.0369
	         online 0.0369
	   consternatio 0.0369
	 consternationi 0.0369
	 consternatione 0.0369
	            the 0.0059
	             he 0.0000
	              a 0.0000
	          other 0.0000
	           more 0.0000
	              ( 0.0000
	          <UNK> 0.0000
	            she 0.0000
	              , 0.0000
	    information 0.0000
	            his 0.0000
	        contact 0.0000
	           </S> 0.0000
	           then 0.0000
	              - 0.0000
	           used 0.0000
	              I 0.0000

         sprang   409317   3 (24)
	           than 1.0000
	              a 0.3000
	         sprang 0.0369
	         sprank 0.0369
	         sprant 0.0369
	             us 0.0369
	          items 0.0369
	        sprangt 0.0369
	        spranga 0.0369
	        sprangs 0.0369
	        ratings 0.0369
	         spring 0.0369
	            can 0.0369
	             up 0.0369
	         looked 0.0369
	             of 0.0059
	            and 0.0000
	              I 0.0000
	              . 0.0000
	              , 0.0000
	              - 0.0000
	            the 0.0000
	           </S> 0.0000
	             it 0.0000

             He   409332   1 (23)
	             He 0.8274
	              I 0.0418
	             eH 0.0369
	              a 0.0369
	             iu 0.0369
	            cia 0.0369
	             Hi 0.0369
	             be 0.0369
	            Hey 0.0369
	            Hee 0.0369
	             us 0.0369
	             HP 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	             we 0.0000
	              ) 0.0000
	            Her 0.0000
	              . 0.0000
	              , 0.0000
	             he 0.0000
	              ] 0.0000

           liis   409453  15 (31)
	           Pica 0.6000
	            lis 0.3000
	           lisi 0.0369
	          litis 0.0369
	          linis 0.0369
	           liss 0.0369
	         liliis 0.0369
	            lii 0.0369
	           liif 0.0369
	           liiv 0.0369
	          liisi 0.0369
	           liin 0.0369
	          aliis 0.0369
	            the 0.0059
	          their 0.0000
	           line 0.0000
	            her 0.0000
	              a 0.0000
	            its 0.0000
	           </S> 0.0000
	           your 0.0000
	              , 0.0000
	              - 0.0000
	            his 0.0000
	           this 0.0000
	              . 0.0000
	            our 0.0000
	           list 0.0000
	           like 0.0000
	            cia 0.0000
	           lava 0.0000

        laurels   409458   1 (24)
	              . 0.0369
	        product 0.0369
	            web 0.0369
	       laureles 0.0369
	        laurels 0.0369
	       shoulder 0.0369
	         laurel 0.0369
	        Laurels 0.0369
	              a 0.0369
	         levels 0.0369
	        aureola 0.0369
	         laurea 0.0369
	        seventh 0.0369
	              I 0.0369
	           site 0.0369
	         market 0.0369
	        laureus 0.0369
	        laureas 0.0369
	          areas 0.0369
	           </S> 0.0059
	              - 0.0000
	            his 0.0000
	          <UNK> 0.0000
	              , 0.0000

          would   409640  12 (22)
	          wolfi 0.0369
	           wood 0.0369
	          world 0.0369
	          wouls 0.0369
	         Twould 0.0369
	             DT 0.0369
	         wouled 0.0369
	         woulda 0.0369
	           woul 0.0369
	              I 0.0369
	              , 0.0059
	           </S> 0.0000
	             of 0.0000
	             's 0.0000
	              - 0.0000
	             is 0.0000
	          would 0.0000
	           Song 0.0000
	           will 0.0000
	             at 0.0000
	              . 0.0000
	          could 0.0000

           beak   409695  13 (25)
	            bea 0.1000
	              . 0.0369
	            cia 0.0369
	            and 0.0369
	          beaks 0.0369
	          beaky 0.0369
	            ... 0.0369
	              - 0.0369
	              a 0.0369
	           bake 0.0369
	           beka 0.0369
	           good 0.0059
	              , 0.0000
	      important 0.0000
	           beak 0.0000
	           </S> 0.0000
	           much 0.0000
	           bear 0.0000
	             be 0.0000
	           best 0.0000
	           back 0.0000
	           been 0.0000
	           beat 0.0000
	           busy 0.0000
	           well 0.0000

              '   409753   1 (17)
	              ' 1.0000
	             us 0.0369
	            cia 0.0369
	             iu 0.0369
	            've 0.0369
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ] 0.0000
	            the 0.0000
	             of 0.0000
	              . 0.0000
	            and 0.0000
	              / 0.0000
	              ) 0.0000
	             '' 0.0000
	              , 0.0000

      furtively   409822  10 (25)
	      Furtively 0.0369
	       slightly 0.0369
	       furtives 0.0369
	              . 0.0369
	            and 0.0369
	          start 0.0369
	              i 0.0369
	        started 0.0369
	            the 0.0059
	              a 0.0000
	   figuratively 0.0000
	            one 0.0000
	      furtively 0.0000
	              - 0.0000
	              , 0.0000
	             in 0.0000
	        Privacy 0.0000
	       Services 0.0000
	        furtive 0.0000
	           </S> 0.0000
	             to 0.0000
	          other 0.0000
	       services 0.0000
	              I 0.0000
	           then 0.0000

       tweaking   409832   4 (23)
	              - 0.7000
	           </S> 0.0964
	             to 0.0500
	              I 0.0369
	       breaking 0.0369
	          their 0.0369
	             of 0.0369
	    twinemaking 0.0369
	           take 0.0369
	       Tweaking 0.0369
	             us 0.0369
	      tweakings 0.0369
	              a 0.0369
	       tweaking 0.0369
	       twerking 0.0369
	              , 0.0059
	             in 0.0000
	              . 0.0000
	            for 0.0000
	             at 0.0000
	            the 0.0000
	         around 0.0000
	           that 0.0000

        Buzzard   409845  10 (27)
	        student 0.0369
	     subscriber 0.0369
	         Buzdar 0.0369
	        swallow 0.0369
	           swan 0.0369
	          women 0.0369
	         nation 0.0369
	         Buzzar 0.0369
	           </S> 0.0059
	          first 0.0000
	           eBay 0.0000
	          state 0.0000
	              - 0.0000
	           user 0.0000
	       Buzzards 0.0000
	              " 0.0000
	          world 0.0000
	        buzzard 0.0000
	          Board 0.0000
	      following 0.0000
	          <UNK> 0.0000
	           year 0.0000
	              ' 0.0000
	        Hazzard 0.0000
	        Bullard 0.0000
	        Buzzard 0.0000
	           same 0.0000

             's   409852  10 (15)
	             of 0.8000
	              ' 0.4000
	              I 0.0369
	             iu 0.0369
	             us 0.0369
	              s 0.0369
	              a 0.0369
	             so 0.0369
	              , 0.0059
	             is 0.0000
	           </S> 0.0000
	             's 0.0000
	             as 0.0000
	              - 0.0000
	              . 0.0000

        attacks   409930   4 (22)
	              a 0.8000
	         others 0.7000
	             at 0.7000
	            are 0.0369
	           also 0.0369
	         stacks 0.0369
	         attack 0.0369
	          tacks 0.0369
	              I 0.0369
	      attackers 0.0369
	        attacks 0.0369
	        attackt 0.0369
	         States 0.0369
	           post 0.0059
	           </S> 0.0000
	              e 0.0000
	             us 0.0000
	              - 0.0000
	            and 0.0000
	             me 0.0000
	              . 0.0000
	              , 0.0000

        Buzzard   409968   8 (27)
	         nation 0.0369
	         Buzzar 0.0369
	         Buzdar 0.0369
	        student 0.0369
	          women 0.0369
	           team 0.0369
	           </S> 0.0059
	      following 0.0000
	           year 0.0000
	              ' 0.0000
	          first 0.0000
	           city 0.0000
	          state 0.0000
	              - 0.0000
	        buzzard 0.0000
	          Board 0.0000
	       Buzzards 0.0000
	           same 0.0000
	              " 0.0000
	          world 0.0000
	           eBay 0.0000
	        Bullard 0.0000
	          <UNK> 0.0000
	        Hazzard 0.0000
	        Buzzard 0.0000
	        country 0.0000
	           user 0.0000

             's   409975  11 (17)
	             of 0.8000
	              ' 0.4000
	             ss 0.0369
	             P. 0.0369
	             so 0.0369
	             iu 0.0369
	              a 0.0369
	              I 0.0369
	             us 0.0369
	              , 0.0059
	              - 0.0000
	             's 0.0000
	            and 0.0000
	              . 0.0000
	             is 0.0000
	           </S> 0.0000
	             as 0.0000

         wretch   410108   2 (25)
	              ? 0.2000
	         wretch 0.0369
	       wretched 0.0369
	        sources 0.0369
	         wrench 0.0369
	         French 0.0369
	         wratch 0.0369
	           were 0.0369
	             is 0.0369
	              a 0.0369
	          which 0.0369
	        wretche 0.0369
	          retch 0.0369
	         wrecht 0.0369
	          wreth 0.0369
	    elsewhither 0.0059
	              I 0.0000
	              - 0.0000
	              ) 0.0000
	              ! 0.0000
	           with 0.0000
	              . 0.0000
	           </S> 0.0000
	              , 0.0000
	           face 0.0000

        denuded   410116   3 (27)
	             do 0.1010
	           they 0.0755
	      denudated 0.0369
	              a 0.0369
	        denuded 0.0369
	              " 0.0369
	            and 0.0369
	         winner 0.0369
	         number 0.0369
	          Grace 0.0369
	              A 0.0369
	        denuder 0.0369
	        denudes 0.0369
	        Denuded 0.0369
	         denude 0.0369
	      undenuded 0.0369
	              I 0.0369
	          under 0.0369
	     regardless 0.0369
	            the 0.0059
	          which 0.0012
	           some 0.0000
	             or 0.0000
	             of 0.0000
	            who 0.0000
	            one 0.0000
	         dundee 0.0000

       Hitherto   410161 inf (21)
	        Hethert 0.0369
	          Hitto 0.0369
	         Higher 0.0369
	        Highest 0.0369
	              a 0.0369
	        Hittero 0.0369
	       hitherto 0.0369
	      thitherto 0.0369
	      whitherto 0.0369
	          Hithe 0.0369
	      Hatherton 0.0369
	           </S> 0.0059
	              / 0.0000
	              ) 0.0000
	              - 0.0000
	              " 0.0000
	              ] 0.0000
	              A 0.0000
	              , 0.0000
	              I 0.0000
	              . 0.0000

          might   410230   1 (23)
	         mighty 0.0369
	          would 0.0369
	          night 0.0369
	           high 0.0369
	         mihtig 0.0369
	          might 0.0369
	          right 0.0369
	           will 0.0369
	          minor 0.0369
	         rights 0.0369
	          micht 0.0369
	         mighta 0.0369
	              a 0.0369
	        mitighi 0.0369
	              I 0.0369
	              , 0.0059
	             of 0.0000
	            was 0.0000
	              . 0.0000
	             's 0.0000
	              - 0.0000
	           </S> 0.0000
	             is 0.0000

          being   410334  15 (20)
	              . 0.0382
	         beinge 0.0369
	           bein 0.0369
	          thing 0.0369
	           been 0.0369
	              a 0.0369
	              I 0.0369
	         beeing 0.0369
	            bad 0.0369
	         beings 0.0369
	           best 0.0369
	          beint 0.0369
	          beina 0.0369
	              , 0.0059
	           </S> 0.0000
	              - 0.0000
	             's 0.0000
	          field 0.0000
	          being 0.0000
	             of 0.0000

         Comyns   410383  22 (32)
	         Comins 0.3000
	        Company 0.1000
	         Corvus 0.0369
	        Cynomys 0.0369
	           term 0.0369
	              - 0.0369
	              a 0.0369
	              I 0.0369
	              . 0.0369
	             C. 0.0369
	          paper 0.0369
	          Commy 0.0369
	       Comments 0.0369
	             De 0.0369
	       Commynes 0.0369
	          Womyn 0.0369
	        chapter 0.0369
	          women 0.0369
	       students 0.0369
	        section 0.0369
	       Chairman 0.0059
	              B 0.0000
	         Comyns 0.0000
	          Comyn 0.0000
	         Rogers 0.0000
	              , 0.0000
	      President 0.0000
	            and 0.0000
	          Jones 0.0000
	             J. 0.0000
	           </S> 0.0000
	        Speaker 0.0000

              '   410389   8 (13)
	             's 1.0000
	              - 0.2000
	             us 0.0369
	             J. 0.0369
	             A. 0.0369
	            the 0.0369
	              , 0.0059
	              . 0.0000
	           </S> 0.0000
	            and 0.0000
	           Carr 0.0000
	             of 0.0000
	              ' 0.0000

            Mr.   410481   3 (21)
	             My 0.5980
	              I 0.0418
	             us 0.0369
	            Mrs 0.0369
	            arz 0.0369
	            cia 0.0369
	            Mrz 0.0369
	            Mrk 0.0369
	              a 0.0369
	            are 0.0369
	             Mr 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	           More 0.0000
	              ) 0.0000
	              . 0.0000
	            but 0.0000
	              , 0.0000
	              ] 0.0000

        Frohawk   410485   2 (23)
	         Mohawk 0.2000
	              . 0.0369
	         Fohawk 0.0369
	        frohawk 0.0369
	          Froha 0.0369
	       frohawks 0.0369
	        Frohawk 0.0369
	              / 0.0369
	              ) 0.0369
	       Chairman 0.0059
	              , 0.0000
	          <UNK> 0.0000
	              T 0.0000
	        Speaker 0.0000
	      President 0.0000
	          Frank 0.0000
	          Freak 0.0000
	             M. 0.0000
	              B 0.0000
	              X 0.0000
	           Bush 0.0000
	             J. 0.0000
	           </S> 0.0000

            saw   410493   2 (22)
	             's 0.1000
	             sa 0.0369
	            swa 0.0369
	             so 0.0369
	             np 0.0369
	           saws 0.0369
	           sawn 0.0369
	           said 0.0369
	            NNP 0.0369
	           sala 0.0369
	            cia 0.0369
	            say 0.0369
	             us 0.0369
	            see 0.0369
	              I 0.0369
	            sat 0.0369
	              - 0.0369
	            saw 0.0369
	           1898 0.0059
	              . 0.0000
	              , 0.0000
	           </S> 0.0000

           tlie   410531   1 (32)
	         tlieta 0.0369
	              , 0.0369
	           time 0.0369
	              - 0.0369
	            the 0.0369
	            tie 0.0369
	             iu 0.0369
	              . 0.0369
	           </S> 0.0369
	            tle 0.0369
	           tile 0.0369
	            cia 0.0369
	           teil 0.0369
	              A 0.0369
	          least 0.0369
	           thie 0.0369
	           Clie 0.0369
	          tliet 0.0369
	           alba 0.0369
	           risk 0.0369
	              a 0.0369
	           teie 0.0369
	           this 0.0369
	         outlie 0.0369
	          talie 0.0369
	            all 0.0369
	            lie 0.0369
	           your 0.0059
	           work 0.0000
	          which 0.0000
	              x 0.0000
	           trie 0.0000

          mouth   410536   2 (23)
	            end 0.1000
	            top 0.0369
	              a 0.0369
	         mouths 0.0369
	          muhto 0.0369
	          maura 0.0369
	              I 0.0369
	          mouth 0.0369
	     University 0.0369
	       outmouth 0.0369
	         mouthy 0.0369
	          moute 0.0369
	          mouta 0.0369
	          <UNK> 0.0059
	              , 0.0000
	              . 0.0000
	           time 0.0000
	           most 0.0000
	           more 0.0000
	              - 0.0000
	          South 0.0000
	           </S> 0.0000
	           same 0.0000

          Devon   410558   2 (27)
	          David 0.8000
	           Devo 0.0369
	        Devonne 0.0369
	            Dec 0.0369
	              s 0.0369
	          Denov 0.0369
	          Aedon 0.0369
	           even 0.0369
	          Devol 0.0369
	          Devos 0.0369
	              H 0.0369
	              G 0.0369
	              S 0.0369
	              U 0.0369
	              T 0.0369
	         Devons 0.0369
	         Devona 0.0369
	              a 0.0369
	          Devon 0.0369
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	              - 0.0000
	              I 0.0000
	              . 0.0000
	              A 0.0000
	              , 0.0000

           they   410597   1 (19)
	          theyr 0.0369
	              d 0.0369
	          thewy 0.0369
	              - 0.0369
	              S 0.0369
	            the 0.0369
	           them 0.0369
	          tythe 0.0369
	              . 0.0369
	           they 0.0369
	           then 0.0369
	              a 0.0369
	              , 0.0369
	          Athey 0.0369
	          tehty 0.0369
	           </S> 0.0059
	              " 0.0000
	              } 0.0000
	              ) 0.0000

Fa>,iilv-C0RJ7D.-E   410685 inf (21)
	          alive 0.0369
	      available 0.0369
	        friends 0.0369
	              a 0.0369
	       FileName 0.0369
	           have 0.0369
	         family 0.0369
	           will 0.0369
	          since 0.0369
	           </S> 0.0059
	              I 0.0000
	              , 0.0000
	             -- 0.0000
	          While 0.0000
	              A 0.0000
	              / 0.0000
	              ) 0.0000
	              " 0.0000
	              ] 0.0000
	              . 0.0000
	              - 0.0000

              .   410703   1 (15)
	            and 0.0369
	              ) 0.0369
	              - 0.0369
	              . 0.0369
	          a.out 0.0369
	              , 0.0369
	          .deps 0.0369
	             iu 0.0369
	           </S> 0.0369
	            cia 0.0369
	             of 0.0369
	             us 0.0369
	             .. 0.0369
	          <UNK> 0.0369
	            the 0.0369

        Corviis   410725   3 (25)
	              , 0.2000
	              ] 0.1000
	        Corvida 0.0369
	         Corvus 0.0369
	        Corsiva 0.0369
	        Corvair 0.0369
	          Coris 0.0369
	         Corvin 0.0369
	         Corvid 0.0369
	        Corvids 0.0369
	         Comics 0.0369
	        Collins 0.0369
	        Corvina 0.0369
	          Corvi 0.0369
	          Corps 0.0369
	              a 0.0369
	      Corvision 0.0369
	           </S> 0.0059
	              / 0.0000
	              " 0.0000
	              A 0.0000
	              . 0.0000
	              - 0.0000
	              ) 0.0000
	              I 0.0000

        iOfoiic   410733 inf (25)
	              ) 0.0369
	             is 0.0369
	              n 0.0369
	        infoibi 0.0369
	              a 0.0369
	              . 0.0369
	        include 0.0369
	          <UNK> 0.0369
	              - 0.0369
	        infoibo 0.0369
	              I 0.0369
	         infonc 0.0369
	        infodis 0.0369
	        infodit 0.0369
	        infoiba 0.0369
	           </S> 0.0369
	          folic 0.0369
	          Ofori 0.0369
	      configure 0.0369
	              , 0.0369
	         Oforia 0.0369
	vareSelskap.cgi 0.0369
	          ionic 0.0369
	          iodic 0.0369
	         ironic 0.0369

              ,   410740 inf (8)
	             of 0.0369
	             to 0.0369
	             us 0.0369
	            and 0.0369
	             in 0.0369
	            the 0.0369
	            cia 0.0369
	             iu 0.0369

           Linn   410742   2 (25)
	             pp 0.1857
	            Lin 0.0369
	   respectively 0.0369
	              { 0.0369
	           Linn 0.0369
	            cia 0.0369
	           Pica 0.0369
	           Lini 0.0369
	            and 0.0369
	           Link 0.0369
	           Line 0.0369
	              x 0.0369
	           List 0.0369
	           Find 0.0369
	          Linne 0.0369
	          Linna 0.0369
	            the 0.0059
	          which 0.0012
	            too 0.0000
	           find 0.0000
	              i 0.0000
	             or 0.0000
	             of 0.0000
	              e 0.0000
	          minor 0.0000

             IN   410749   2 (23)
	             In 0.5538
	             IN 0.2559
	             It 0.0900
	             If 0.0570
	              I 0.0418
	             iu 0.0369
	            INC 0.0369
	            INT 0.0369
	             NI 0.0369
	             us 0.0369
	            IIN 0.0369
	            INN 0.0369
	             J. 0.0369
	              a 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ] 0.0000
	              . 0.0000
	              , 0.0000
	              / 0.0000
	              ) 0.0000

        Siberia   410752   1 (26)
	       Siberian 0.0369
	         Siberi 0.0369
	         Sierra 0.0369
	          forms 0.0369
	        Siberia 0.0369
	        cinerea 0.0369
	        riparia 0.0369
	        linaria 0.0369
	        Liberia 0.0369
	        Jackson 0.0369
	       Siberiae 0.0369
	         Saberi 0.0369
	       Siberiam 0.0369
	        service 0.0369
	        Siberie 0.0369
	            THE 0.0059
	        Nigeria 0.0000
	              , 0.0000
	          <UNK> 0.0000
	           </S> 0.0000
	          STOCK 0.0000
	              ) 0.0000
	              - 0.0000
	              A 0.0000
	       CONTRACT 0.0000
	              . 0.0000

        Seebohm   410774   1 (28)
	        Seebohm 1.0000
	        Sexbomb 0.0369
	         Sembol 0.0369
	          <UNK> 0.0369
	          topic 0.0369
	           plan 0.0369
	         report 0.0369
	           need 0.0369
	       Beerbohm 0.0369
	       Seeboden 0.0369
	           </S> 0.0369
	           John 0.0369
	         Seeham 0.0369
	            the 0.0059
	              a 0.0000
	             me 0.0000
	           cars 0.0000
	           Sebo 0.0000
	            you 0.0000
	            say 0.0000
	             be 0.0000
	             do 0.0000
	          Seebe 0.0000
	            get 0.0000
	            him 0.0000
	           Seeb 0.0000
	        Seebach 0.0000
	             us 0.0000

          Ijdng   410824  20 (30)
	             In 0.7000
	     sandwiched 0.0369
	          Icing 0.0369
	         Idling 0.0369
	        divided 0.0369
	        Ijdanak 0.0369
	         Injong 0.0369
	          Ijdan 0.0369
	            Ing 0.0369
	             Ij 0.0369
	          Cjdns 0.0369
	          Ajdna 0.0369
	          djing 0.0369
	             ng 0.0369
	representatives 0.0369
	          Ising 0.0369
	              i 0.0369
	            Idg 0.0369
	              . 0.0059
	          India 0.0000
	              a 0.0000
	             dn 0.0000
	             's 0.0000
	              I 0.0000
	              - 0.0000
	            and 0.0000
	           </S> 0.0000
	          Index 0.0000
	              , 0.0000
	          lying 0.0000

        between   410830   1 (16)
	       betweene 0.0369
	            the 0.0369
	              a 0.0369
	         bergen 0.0369
	              I 0.0369
	           </S> 0.0369
	              - 0.0369
	            and 0.0369
	              , 0.0369
	           East 0.0369
	        Between 0.0369
	        betwene 0.0369
	         better 0.0369
	       betweens 0.0369
	              . 0.0369
	        between 0.0369

        Yenesay   410838 inf (36)
	           them 0.7265
	        Kenesaw 0.5000
	        Renesas 0.0369
	         Enesay 0.0369
	          Yenya 0.0369
	      Australia 0.0369
	        Chicago 0.0369
	           Yens 0.0369
	         Yeesha 0.0369
	        Yenesis 0.0369
	        Yenegoa 0.0369
	         Yenets 0.0369
	              A 0.0369
	         Benesa 0.0369
	         Kenesa 0.0369
	        Yanesen 0.0369
	          Yesan 0.0369
	           Asia 0.0369
	            the 0.0059
	         energy 0.0000
	            you 0.0000
	              , 0.0000
	            now 0.0000
	        General 0.0000
	              - 0.0000
	         Israel 0.0000
	              1 0.0000
	        Genesis 0.0000
	              a 0.0000
	           </S> 0.0000
	          <UNK> 0.0000
	              . 0.0000
	            two 0.0000
	             us 0.0000
	             it 0.0000
	        general 0.0000

      Westwards   410968 inf (22)
	           What 0.5000
	              a 0.0369
	          where 0.0369
	      restwards 0.0369
	        because 0.0369
	       Westward 0.0369
	      Australia 0.0369
	            and 0.0369
	    Westerwalds 0.0369
	            but 0.0369
	       Westword 0.0369
	      westwards 0.0369
	       Westways 0.0369
	           </S> 0.0059
	              ) 0.0000
	              I 0.0000
	              " 0.0000
	              . 0.0000
	              ] 0.0000
	              A 0.0000
	              , 0.0000
	              - 0.0000

             he   410978   1 (22)
	            heh 0.0369
	             eh 0.0369
	              n 0.0369
	             hi 0.0369
	             us 0.0369
	             he 0.0369
	      configure 0.0369
	             iu 0.0369
	            cia 0.0369
	          <UNK> 0.0369
	              ) 0.0369
	             hr 0.0369
	            hee 0.0369
	              a 0.0369
	            her 0.0369
	            hey 0.0369
	              , 0.0059
	            the 0.0000
	           </S> 0.0000
	              . 0.0000
	              - 0.0000
	           from 0.0000

        Caspian   411082  13 (31)
	        Cassian 1.0000
	        Chapman 0.1000
	         ground 0.0369
	       Atlantic 0.0369
	           road 0.0369
	           line 0.0369
	        Caspiar 0.0369
	          river 0.0369
	       Caspiane 0.0369
	     collection 0.0369
	           </S> 0.0059
	           same 0.0037
	        Caspian 0.0000
	           City 0.0000
	         cassia 0.0000
	              ' 0.0000
	          world 0.0000
	              - 0.0000
	              " 0.0000
	        Capital 0.0000
	            way 0.0000
	          first 0.0000
	           case 0.0000
	       Caspians 0.0000
	        Capsian 0.0000
	           time 0.0000
	      following 0.0000
	          <UNK> 0.0000
	       Canadian 0.0000
	           last 0.0000
	         Caspia 0.0000

         Hooded   411133   1 (30)
	          House 0.8000
	          Hotel 0.8000
	         Hooded 0.8000
	         Hoodie 0.4000
	           Hoed 0.0369
	             E. 0.0369
	          seals 0.0369
	           ants 0.0369
	            sea 0.0369
	            the 0.0059
	              - 0.0000
	          their 0.0000
	         Hoofed 0.0000
	           Hode 0.0000
	         hooded 0.0000
	              : 0.0000
	           this 0.0000
	            New 0.0000
	          Homes 0.0000
	              a 0.0000
	           Hood 0.0000
	         wooded 0.0000
	           </S> 0.0000
	              , 0.0000
	             us 0.0000
	         people 0.0000
	         Hooked 0.0000
	          <UNK> 0.0000
	           Home 0.0000
	          which 0.0000

         spread   411273   2 (20)
	           area 0.1000
	        spreads 0.0369
	              I 0.0369
	         spreag 0.0369
	         spreda 0.0369
	        spready 0.0369
	          great 0.0369
	         spread 0.0369
	         spinas 0.0369
	         Flying 0.0369
	         stream 0.0369
	         behind 0.0369
	              a 0.0369
	              , 0.0059
	           </S> 0.0000
	              . 0.0000
	            and 0.0000
	           read 0.0000
	             of 0.0000
	              - 0.0000

    interbreeds   411392   2 (23)
	           into 0.1000
	  interbreeders 0.0369
	     associated 0.0369
	              I 0.0369
	    interpretis 0.0369
	             us 0.0369
	    interbreeds 0.0369
	          along 0.0369
	      interbred 0.0369
	              a 0.0369
	           text 0.0369
	   interbreeder 0.0369
	      interbeds 0.0369
	          there 0.0369
	              . 0.0059
	             is 0.0000
	           </S> 0.0000
	     interbreed 0.0000
	             of 0.0000
	              - 0.0000
	              , 0.0000
	            not 0.0000
	          other 0.0000

         Hooded   411413  10 (31)
	         Hoofed 0.1000
	       Trammell 0.0369
	           Hoed 0.0369
	            hip 0.0369
	            Old 0.0369
	           word 0.0369
	            Jim 0.0369
	           </S> 0.0059
	           same 0.0037
	         hooded 0.0000
	           Hood 0.0000
	       original 0.0000
	           Home 0.0000
	              - 0.0000
	           time 0.0000
	              " 0.0000
	      following 0.0000
	         Hoodie 0.0000
	           Hode 0.0000
	          <UNK> 0.0000
	         Hoover 0.0000
	         wooded 0.0000
	          Hotel 0.0000
	            top 0.0000
	         Holder 0.0000
	         Hooded 0.0000
	          first 0.0000
	         Hooked 0.0000
	            new 0.0000
	          House 0.0000
	              ' 0.0000

        Yenesay   411456 inf (36)
	        Kenesaw 0.1000
	         Benesa 0.0369
	         Kenesa 0.0369
	         sticky 0.0369
	          tight 0.0369
	         Yenets 0.0369
	          Yenya 0.0369
	     procedures 0.0369
	        Yenegoa 0.0369
	           best 0.0369
	         Enesay 0.0369
	              i 0.0369
	        Yenesis 0.0369
	          Yesan 0.0369
	        Yanesen 0.0369
	          Weser 0.0369
	            new 0.0369
	            the 0.0059
	              I 0.0000
	          click 0.0000
	            its 0.0000
	          <UNK> 0.0000
	              ( 0.0000
	         others 0.0000
	       services 0.0000
	              a 0.0000
	              - 0.0000
	            one 0.0000
	          other 0.0000
	           Yens 0.0000
	           more 0.0000
	     conditions 0.0000
	              , 0.0000
	        Renesas 0.0000
	         Yeesha 0.0000
	           </S> 0.0000

              (   411464   1 (14)
	              . 0.0369
	            the 0.0369
	           such 0.0369
	             iu 0.0369
	             us 0.0369
	              ( 0.0369
	            cia 0.0369
	             it 0.0369
	           </S> 0.0369
	              - 0.0369
	             of 0.0369
	            and 0.0369
	              , 0.0369
	           long 0.0369

    intergrades   411514   2 (23)
	           </S> 0.5000
	   integrerades 0.0369
	      offspring 0.0369
	      parallels 0.0369
	    integrardes 0.0369
	    differences 0.0369
	    intergrades 0.0369
	    intergraded 0.0369
	     intergrade 0.0369
	   similarities 0.0369
	     intervales 0.0369
	             of 0.0059
	          years 0.0000
	          other 0.0000
	              . 0.0000
	          parts 0.0000
	              , 0.0000
	              - 0.0000
	      important 0.0000
	    interesting 0.0000
	         people 0.0000
	              a 0.0000
	          items 0.0000

          these   411622   1 (21)
	          these 0.0369
	              . 0.0369
	         London 0.0369
	          there 0.0369
	              , 0.0369
	          thesp 0.0369
	          thesi 0.0369
	              a 0.0369
	              - 0.0369
	         theses 0.0369
	           thes 0.0369
	          thees 0.0369
	            Art 0.0369
	         thesem 0.0369
	          those 0.0369
	              I 0.0369
	            the 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000
	              " 0.0000

       Histor}'   411751  14 (22)
	          Hotel 0.0369
	          istor 0.0369
	           site 0.0369
	       historie 0.0369
	             of 0.0369
	       Historia 0.0369
	              I 0.0369
	          Hisor 0.0369
	      Historist 0.0369
	        Histrio 0.0369
	       Historis 0.0369
	              a 0.0369
	      Resources 0.0059
	        History 0.0000
	              . 0.0000
	       Language 0.0000
	           </S> 0.0000
	            Gas 0.0000
	           Home 0.0000
	              - 0.0000
	       Historic 0.0000
	              , 0.0000

         branch   411760   1 (23)
	              - 0.0369
	          black 0.0369
	         branch 0.0369
	         Branch 0.0369
	         French 0.0369
	              . 0.0369
	      anabranch 0.0369
	            Day 0.0369
	            and 0.0369
	          branc 0.0369
	         Museum 0.0369
	         branco 0.0369
	     Foundation 0.0369
	            Act 0.0369
	              A 0.0369
	           </S> 0.0369
	        brancha 0.0369
	         branca 0.0369
	         France 0.0369
	        branche 0.0369
	        branchy 0.0369
	              : 0.0369
	              , 0.0369

         Museum   411775  12 (24)
	          Music 0.4000
	        Museums 0.1000
	      WebMuseum 0.0369
	         Muzeum 0.0369
	          Musem 0.0369
	              - 0.0369
	           year 0.0369
	        Musaeum 0.0369
	         Museme 0.0369
	       property 0.0369
	            the 0.0059
	           time 0.0000
	            you 0.0000
	              . 0.0000
	              a 0.0000
	              i 0.0000
	         Museum 0.0000
	           used 0.0000
	              , 0.0000
	         museum 0.0000
	            use 0.0000
	           </S> 0.0000
	              I 0.0000
	             is 0.0000

             In   411803   1 (21)
	             In 0.5538
	             It 0.0900
	             If 0.0570
	              I 0.0418
	            Inn 0.0369
	              a 0.0369
	            Inc 0.0369
	             iu 0.0369
	            cia 0.0369
	         London 0.0369
	             us 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              . 0.0000
	              , 0.0000
	              ) 0.0000
	            the 0.0000
	              ] 0.0000
	            and 0.0000

       disliked   411843   2 (28)
	              . 0.1000
	        dislike 0.0369
	              I 0.0369
	       distineo 0.0369
	            new 0.0369
	           used 0.0369
	     undisliked 0.0369
	       disliked 0.0369
	       disliker 0.0369
	     dislikened 0.0369
	       dislikes 0.0369
	       business 0.0369
	          owing 0.0369
	      dislinked 0.0369
	             up 0.0369
	         online 0.0369
	          major 0.0369
	              , 0.0059
	          known 0.0000
	             to 0.0000
	             in 0.0000
	              - 0.0000
	           </S> 0.0000
	              a 0.0000
	         famous 0.0000
	            due 0.0000
	          proud 0.0000
	             be 0.0000

           both   411868   1 (26)
	            and 0.0369
	          bothe 0.0369
	           hobt 0.0369
	              I 0.0369
	       followed 0.0369
	          <UNK> 0.0369
	              ( 0.0369
	              a 0.0369
	              " 0.0369
	           both 0.0369
	            bot 0.0369
	             by 0.0369
	           </S> 0.0369
	           bots 0.0369
	           boty 0.0369
	       seconded 0.0369
	          booth 0.0369
	            but 0.0369
	        written 0.0369
	          bothy 0.0369
	      published 0.0369
	           with 0.0062
	            the 0.0059
	          which 0.0012
	             or 0.0000
	              i 0.0000

            yet   411905   1 (22)
	              I 0.0369
	             us 0.0369
	           year 0.0369
	           yett 0.0369
	            you 0.0369
	            yet 0.0369
	            Pyi 0.0369
	            cia 0.0369
	              , 0.0369
	              . 0.0369
	            get 0.0369
	            yes 0.0369
	            yea 0.0369
	             ye 0.0369
	           yeti 0.0369
	           yete 0.0369
	              a 0.0369
	           </S> 0.0059
	              " 0.0000
	          <UNK> 0.0000
	              } 0.0000
	              ) 0.0000

       becoming   411990   1 (31)
	          <UNK> 0.0369
	              I 0.0369
	              x 0.0369
	      Australia 0.0369
	      becomings 0.0369
	           </S> 0.0369
	              ( 0.0369
	              " 0.0369
	              a 0.0369
	       Scotland 0.0369
	            and 0.0369
	        because 0.0369
	     becomingly 0.0369
	       becoming 0.0369
	       Becoming 0.0369
	      therefore 0.0369
	           Home 0.0369
	       besoming 0.0369
	         online 0.0369
	    Aberystwyth 0.0369
	              y 0.0369
	   honeymooners 0.0369
	              , 0.0369
	            the 0.0059
	     unbecoming 0.0000
	          which 0.0000
	            who 0.0000
	              i 0.0000
	         though 0.0000
	            too 0.0000
	             or 0.0000

      decidedly   412009   1 (23)
	      Decidedly 0.0369
	         decide 0.0369
	           does 0.0369
	              I 0.0369
	          <UNK> 0.0369
	              a 0.0369
	              " 0.0369
	           </S> 0.0369
	      decidedly 0.0369
	    undecidedly 0.0369
	            did 0.0369
	        decided 0.0369
	        because 0.0369
	      deciderla 0.0369
	            the 0.0059
	            who 0.0000
	             is 0.0000
	              i 0.0000
	           that 0.0000
	       docilely 0.0000
	          which 0.0000
	           with 0.0000
	             or 0.0000

       commoner   412019   1 (28)
	              - 0.0369
	         number 0.0369
	      commonere 0.0369
	       commoned 0.0369
	         corone 0.0369
	       commotes 0.0369
	       commoner 0.0369
	      commoners 0.0369
	        commone 0.0369
	              I 0.0369
	            was 0.0369
	            are 0.0369
	       commoney 0.0369
	      commoneri 0.0369
	          could 0.0369
	       resulted 0.0369
	      commoneor 0.0369
	           more 0.0059
	           that 0.0000
	              a 0.0000
	      different 0.0000
	           </S> 0.0000
	              . 0.0000
	              , 0.0000
	        lacking 0.0000
	            and 0.0000
	            not 0.0000
	            the 0.0000

             in   412090   1 (21)
	              , 0.0369
	           that 0.0369
	            inn 0.0369
	            int 0.0369
	            inc 0.0369
	             is 0.0369
	            iin 0.0369
	            cia 0.0369
	             in 0.0369
	              . 0.0369
	              - 0.0369
	              I 0.0369
	             it 0.0369
	              a 0.0369
	             iu 0.0369
	             us 0.0369
	             ni 0.0369
	           </S> 0.0059
	              ) 0.0000
	              " 0.0000
	              } 0.0000

      Shetlands   412212   9 (23)
	              , 0.1000
	       Shetland 0.1000
	      shetlands 0.0369
	         phrase 0.0369
	         Canada 0.0369
	    Shetlandish 0.0369
	    Shetlanders 0.0369
	            the 0.0059
	              e 0.0000
	          <UNK> 0.0000
	            any 0.0000
	       Scotland 0.0000
	              ( 0.0000
	             in 0.0000
	           more 0.0000
	              a 0.0000
	           </S> 0.0000
	         change 0.0000
	      Shetlands 0.0000
	            not 0.0000
	              - 0.0000
	          their 0.0000
	           some 0.0000

             In   412223   1 (17)
	             In 0.5538
	             It 0.0900
	             If 0.0570
	              I 0.0418
	            Inc 0.0369
	             us 0.0369
	             iu 0.0369
	            cia 0.0369
	            Inn 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              , 0.0000
	              . 0.0000
	              ) 0.0000
	              ] 0.0000

        Carrion   412270   2 (29)
	        version 0.1000
	      Education 0.0369
	             co 0.0369
	           part 0.0369
	      Carrionly 0.0369
	        carrion 0.0369
	        Carnion 0.0369
	        Carreon 0.0369
	         secret 0.0369
	              E 0.0369
	              Y 0.0369
	          Ahead 0.0369
	              I 0.0369
	       Archives 0.0369
	        Journal 0.0369
	        Carrion 0.0369
	        Sprague 0.0369
	         Carrio 0.0369
	         Carion 0.0369
	        Company 0.0369
	              A 0.0369
	         Health 0.0369
	            and 0.0059
	             of 0.0000
	              , 0.0000
	           </S> 0.0000
	             is 0.0000
	              . 0.0000
	              - 0.0000

       purplish   412301   1 (19)
	       purplish 0.0369
	        publish 0.0369
	        pyralis 0.0369
	        purpose 0.0369
	       Purplish 0.0369
	       surprise 0.0369
	              - 0.0369
	       purpling 0.0369
	              , 0.0369
	              a 0.0369
	      purpliest 0.0369
	         purple 0.0369
	              . 0.0369
	          white 0.0369
	     purplishly 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	              " 0.0000

          above   412310  16 (24)
	          <UNK> 0.9000
	              . 0.7000
	          about 0.0369
	         aboven 0.0369
	          alone 0.0369
	           able 0.0369
	         Labove 0.0369
	           Love 0.0369
	              } 0.0369
	          prove 0.0369
	          abode 0.0369
	          aboue 0.0369
	        aboveda 0.0369
	        arborea 0.0369
	              - 0.0059
	        flowers 0.0000
	           blue 0.0000
	          above 0.0000
	          brown 0.0000
	            red 0.0000
	              , 0.0000
	          color 0.0000
	           </S> 0.0000
	              ) 0.0000

            the   412361   1 (18)
	              a 0.0369
	            the 0.0369
	            teh 0.0369
	              I 0.0369
	           they 0.0369
	            thy 0.0369
	           them 0.0369
	            cia 0.0369
	             iu 0.0369
	           thee 0.0369
	            tho 0.0369
	              , 0.0369
	              . 0.0369
	             us 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	              " 0.0000

      similarly   412371   1 (18)
	       similary 0.0369
	      similarly 0.0369
	        similar 0.0369
	   dissimilarly 0.0369
	       similare 0.0369
	           site 0.0369
	    unsimilarly 0.0369
	     similarily 0.0369
	              , 0.0059
	              . 0.0000
	             of 0.0000
	           will 0.0000
	              I 0.0000
	         should 0.0000
	              - 0.0000
	           </S> 0.0000
	              a 0.0000
	            and 0.0000

         tinted   412381  20 (29)
	       employed 0.7000
	        tainted 0.4000
	        tintend 0.0369
	         tinten 0.0369
	         tinter 0.0369
	     pestilence 0.0369
	   grasshoppers 0.0369
	         Winter 0.0369
	          birds 0.0369
	         eagles 0.0369
	         United 0.0369
	        stinted 0.0369
	              I 0.0369
	          tinte 0.0369
	          times 0.0369
	       untinted 0.0369
	         tinned 0.0369
	         tinded 0.0369
	             to 0.0059
	         tinted 0.0000
	              - 0.0000
	           </S> 0.0000
	              , 0.0000
	       situated 0.0000
	            the 0.0000
	       affected 0.0000
	              a 0.0000
	              . 0.0000
	           time 0.0000

           bill   412390   1 (23)
	           will 0.0369
	           bild 0.0369
	           bile 0.0369
	           bili 0.0369
	              , 0.0369
	              . 0.0369
	           bill 0.0369
	            cia 0.0369
	           sala 0.0369
	           Pica 0.0369
	            bil 0.0369
	              a 0.0369
	        windows 0.0369
	              - 0.0369
	          bills 0.0369
	          billy 0.0369
	            big 0.0369
	           file 0.0369
	              I 0.0369
	           </S> 0.0059
	              ) 0.0000
	              " 0.0000
	              } 0.0000

           iris   412412   1 (25)
	          irish 0.0369
	            and 0.0369
	              . 0.0369
	          irisa 0.0369
	            irs 0.0369
	             is 0.0369
	             iu 0.0369
	            cia 0.0369
	            arz 0.0369
	             it 0.0369
	            iri 0.0369
	              a 0.0369
	           iris 0.0369
	          iiris 0.0369
	              , 0.0369
	            its 0.0369
	           irie 0.0369
	           irin 0.0369
	             in 0.0369
	              - 0.0369
	           dark 0.0369
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	              } 0.0000

            her   412525   1 (19)
	              a 0.0369
	           hero 0.0369
	             us 0.0369
	            arz 0.0369
	            cia 0.0369
	            hey 0.0369
	            het 0.0369
	             he 0.0369
	              I 0.0369
	           herr 0.0369
	              , 0.0369
	           here 0.0369
	              - 0.0369
	            her 0.0369
	              . 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	              " 0.0000

       ajipears   412534  20 (28)
	           </S> 0.4438
	          needs 0.0369
	         spears 0.0369
	         Spears 0.0369
	           year 0.0369
	         japers 0.0369
	          pears 0.0369
	        appeard 0.0369
	         avipes 0.0369
	         piears 0.0369
	         seemed 0.0369
	          years 0.0369
	          apear 0.0369
	          moves 0.0369
	             us 0.0369
	          apers 0.0369
	          ajars 0.0369
	        appeare 0.0369
	              . 0.0059
	              , 0.0000
	              I 0.0000
	              a 0.0000
	             to 0.0000
	        appears 0.0000
	             is 0.0000
	              - 0.0000
	            and 0.0000
	            are 0.0000

             to   412543   1 (20)
	            not 0.0369
	            top 0.0369
	              a 0.0369
	             of 0.0369
	           will 0.0369
	             us 0.0369
	           </S> 0.0369
	            too 0.0369
	             iu 0.0369
	            cia 0.0369
	              I 0.0369
	            the 0.0369
	              - 0.0369
	             to 0.0369
	          amend 0.0369
	             th 0.0369
	             tv 0.0369
	              . 0.0369
	              , 0.0369
	             ot 0.0369

          Young   412627   1 (22)
	          Young 1.0000
	          Yount 0.0369
	          Yound 0.0369
	           Youn 0.0369
	         Youngs 0.0369
	        Younger 0.0369
	          young 0.0369
	        Youngun 0.0369
	        Youngou 0.0369
	              a 0.0369
	           </S> 0.0059
	              ) 0.0000
	            You 0.0000
	              I 0.0000
	              . 0.0000
	             '' 0.0000
	              " 0.0000
	              ] 0.0000
	              - 0.0000
	              A 0.0000
	           Your 0.0000
	              , 0.0000

          gloss   412651  20 (32)
	           good 1.0000
	          Close 0.9000
	         glossy 0.1000
	            for 0.0369
	          gloso 0.0369
	     trademarks 0.0369
	             to 0.0369
	     nationwide 0.0369
	         glossa 0.0369
	          power 0.0369
	             us 0.0369
	         rights 0.0369
	     adaptation 0.0369
	             in 0.0369
	          merit 0.0369
	           glos 0.0369
	          glose 0.0369
	          glosa 0.0369
	            the 0.0059
	           </S> 0.0000
	      amendment 0.0000
	              - 0.0000
	           also 0.0000
	         notice 0.0000
	     permission 0.0000
	          group 0.0000
	              . 0.0000
	          gloss 0.0000
	           most 0.0000
	            any 0.0000
	              , 0.0000
	              a 0.0000

             As   412713   3 (24)
	             In 0.5538
	             At 0.3536
	             As 0.2611
	              I 0.0418
	            AAs 0.0369
	             sA 0.0369
	            Ass 0.0369
	              a 0.0369
	             iu 0.0369
	            cia 0.0369
	             us 0.0369
	             AM 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ] 0.0000
	              / 0.0000
	              , 0.0000
	            Ask 0.0000
	             as 0.0000
	              . 0.0000
	             is 0.0000
	              ) 0.0000

     h3-bridize   412784  15 (25)
	     hibridizei 0.0369
	      hibridize 0.0369
	          <UNK> 0.0369
	      hibridiza 0.0369
	      Hybridize 0.0369
	              , 0.0369
	           talk 0.0369
	           </S> 0.0369
	              : 0.0369
	           tune 0.0369
	          speak 0.0369
	          trade 0.0369
	     hybridizes 0.0369
	            the 0.0059
	      hybridize 0.0000
	             us 0.0000
	           home 0.0000
	            get 0.0000
	             be 0.0000
	        provide 0.0000
	           have 0.0000
	     hybridized 0.0000
	              a 0.0000
	           move 0.0000
	            his 0.0000

         freely   412795   1 (26)
	              , 0.0369
	          feely 0.0369
	             us 0.0369
	         freely 0.0369
	           from 0.0369
	           </S> 0.0369
	       unfreely 0.0369
	            the 0.0369
	         freezy 0.0369
	          reely 0.0369
	         Greely 0.0369
	            you 0.0369
	              - 0.0369
	             in 0.0369
	              . 0.0369
	          ferly 0.0369
	         finely 0.0369
	             it 0.0369
	         freety 0.0369
	          refly 0.0369
	              a 0.0369
	           free 0.0369
	              I 0.0369
	       freendly 0.0369
	          hotel 0.0369
	         family 0.0369

         Hooded   412811   9 (31)
	         Hoofed 0.1000
	      knowledge 0.0369
	           Hoed 0.0369
	            hip 0.0369
	            Jim 0.0369
	         newest 0.0369
	           </S> 0.0059
	           same 0.0037
	            new 0.0000
	         Hooked 0.0000
	           Hode 0.0000
	         Holder 0.0000
	          Hotel 0.0000
	              ' 0.0000
	         Hoodie 0.0000
	       original 0.0000
	              - 0.0000
	         Holden 0.0000
	           Home 0.0000
	      following 0.0000
	              " 0.0000
	          <UNK> 0.0000
	         hooded 0.0000
	           Hood 0.0000
	          first 0.0000
	          House 0.0000
	          other 0.0000
	         latest 0.0000
	         Hoover 0.0000
	         Hooded 0.0000
	         wooded 0.0000

           Herr   412887   1 (25)
	           </S> 0.0369
	          Herrn 0.0369
	          Herre 0.0369
	            and 0.0369
	           Herr 0.0369
	            arz 0.0369
	              " 0.0369
	             A. 0.0369
	              a 0.0369
	           Here 0.0369
	              I 0.0369
	          <UNK> 0.0369
	           Help 0.0369
	            Her 0.0369
	             M. 0.0369
	            but 0.0369
	           Hero 0.0369
	              ( 0.0369
	            the 0.0059
	          which 0.0012
	             or 0.0000
	           were 0.0000
	           here 0.0000
	              i 0.0000
	      including 0.0000

          Gatke   412892 inf (28)
	            and 0.1000
	              a 0.0369
	        Gatokae 0.0369
	          Latke 0.0369
	           that 0.0369
	          Gatte 0.0369
	           make 0.0369
	           Date 0.0369
	        Gataket 0.0369
	         Gasket 0.0369
	        Gaskets 0.0369
	             as 0.0369
	          Gatka 0.0369
	           take 0.0369
	           Gate 0.0369
	          latke 0.0369
	              I 0.0369
	          Gatae 0.0369
	              , 0.0059
	             M. 0.0000
	              - 0.0000
	              . 0.0000
	             in 0.0000
	          Gates 0.0000
	           </S> 0.0000
	            the 0.0000
	            der 0.0000
	              W 0.0000

       shrewdly   412898   1 (16)
	             C. 0.0369
	        shrewly 0.0369
	          Ringe 0.0369
	              . 0.0369
	              - 0.0369
	         shrewd 0.0369
	           said 0.0369
	       shrewdly 0.0369
	             J. 0.0369
	              a 0.0369
	       shrewder 0.0369
	          shrew 0.0369
	        shrewdy 0.0369
	              , 0.0059
	          Corp. 0.0000
	           </S> 0.0000

        pairing   412967   2 (29)
	             my 0.6000
	            are 0.0369
	         pairin 0.0369
	       apairing 0.0369
	            was 0.0369
	         people 0.0369
	              - 0.0369
	         paring 0.0369
	         pagina 0.0369
	        paining 0.0369
	          first 0.0369
	        parring 0.0369
	       pairings 0.0369
	             is 0.0369
	              . 0.0369
	              I 0.0369
	             us 0.0369
	        pairing 0.0369
	            the 0.0059
	          their 0.0000
	          these 0.0000
	              a 0.0000
	           </S> 0.0000
	            not 0.0000
	              , 0.0000
	            its 0.0000
	           this 0.0000
	          never 0.0000
	            his 0.0000

         having   412975  14 (20)
	           </S> 0.2000
	           have 0.1000
	              I 0.1000
	         Irving 0.0369
	        Shaving 0.0369
	        haveing 0.0369
	         hating 0.0369
	          items 0.0369
	           fact 0.0369
	        havings 0.0369
	         making 0.0369
	         havina 0.0369
	             of 0.0059
	              a 0.0000
	         Rating 0.0000
	              - 0.0000
	              . 0.0000
	              , 0.0000
	         having 0.0000
	            the 0.0000

         3'ears   413019   5 (26)
	          Years 0.5000
	        dollars 0.0369
	          great 0.0369
	            the 0.0059
	          <UNK> 0.0000
	           time 0.0000
	           ears 0.0000
	           year 0.0000
	             it 0.0000
	          Bears 0.0000
	           them 0.0000
	             us 0.0000
	            ear 0.0000
	          years 0.0000
	              , 0.0000
	          rears 0.0000
	          their 0.0000
	           </S> 0.0000
	              - 0.0000
	          tears 0.0000
	           this 0.0000
	              : 0.0000
	          Sears 0.0000
	              a 0.0000
	         people 0.0000
	          sears 0.0000

            for   413174   1 (22)
	           from 0.0369
	           ford 0.0369
	              a 0.0369
	             us 0.0369
	            foo 0.0369
	              , 0.0369
	              . 0.0369
	              I 0.0369
	           forr 0.0369
	            arz 0.0369
	            cia 0.0369
	            fro 0.0369
	             of 0.0369
	            For 0.0369
	            fog 0.0369
	           form 0.0369
	           foro 0.0369
	              - 0.0369
	            for 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000

          the}'   413182   1 (21)
	           they 0.2950
	          theet 0.0369
	          thete 0.0369
	              . 0.0369
	             us 0.0369
	            you 0.0059
	            and 0.0000
	              ( 0.0000
	             it 0.0000
	              - 0.0000
	           them 0.0000
	              a 0.0000
	          their 0.0000
	              I 0.0000
	             he 0.0000
	           </S> 0.0000
	              , 0.0000
	           thee 0.0000
	          there 0.0000
	              i 0.0000
	            the 0.0000

       reverted   413274   3 (22)
	       reported 0.1000
	            mp3 0.1000
	        everted 0.0369
	       reserved 0.0369
	        reverte 0.0369
	     revertende 0.0369
	      revertens 0.0369
	       revertes 0.0369
	       reverted 0.0369
	        revered 0.0369
	       revetted 0.0369
	       referred 0.0369
	       reverter 0.0369
	              I 0.0369
	              . 0.0059
	              , 0.0000
	              ) 0.0000
	              a 0.0000
	             of 0.0000
	              - 0.0000
	           </S> 0.0000
	         eminem 0.0000

    colouration   413429   2 (22)
	           </S> 0.6000
	       colorati 0.0369
	   colourations 0.0369
	  colourational 0.0369
	    colouration 0.0369
	       colorato 0.0369
	      colorator 0.0369
	    Colouration 0.0369
	              , 0.0059
	          thing 0.0000
	        concept 0.0000
	          terms 0.0000
	              - 0.0000
	            and 0.0000
	    application 0.0000
	         enough 0.0000
	              . 0.0000
	     coloration 0.0000
	           plan 0.0000
	          steps 0.0000
	       question 0.0000
	       solution 0.0000

    gradational   413478   1 (24)
	          final 0.0369
	        various 0.0369
	   graduational 0.0369
	              a 0.0369
	             of 0.0369
	  aggradational 0.0369
	    gradational 0.0369
	  gradationally 0.0369
	      gradation 0.0369
	          early 0.0369
	             to 0.0369
	     gradations 0.0369
	    information 0.0369
	              I 0.0369
	         access 0.0059
	              - 0.0000
	           </S> 0.0000
	          local 0.0000
	              e 0.0000
	         number 0.0000
	              , 0.0000
	           free 0.0000
	              . 0.0000
	           data 0.0000

         stages   413490   1 (25)
	        stagers 0.0369
	          state 0.0369
	              - 0.0369
	         levels 0.0369
	         stages 0.0369
	          Pales 0.0369
	         stores 0.0369
	              a 0.0369
	       domestic 0.0369
	         States 0.0369
	         staged 0.0369
	         stager 0.0369
	         estage 0.0369
	         tagest 0.0369
	             of 0.0369
	        stagese 0.0369
	        estages 0.0369
	          stage 0.0369
	       contacts 0.0059
	        contact 0.0000
	           </S> 0.0000
	             to 0.0000
	              X 0.0000
	              , 0.0000
	              . 0.0000

          gre}'   413512  10 (30)
	           greg 1.0000
	          gregg 0.3000
	        medical 0.0369
	          white 0.0369
	              A 0.0369
	        ratings 0.0369
	         yellow 0.0369
	         church 0.0369
	            the 0.0059
	            red 0.0000
	           </S> 0.0000
	           grew 0.0000
	           grey 0.0000
	          great 0.0000
	           this 0.0000
	           free 0.0000
	           gree 0.0000
	          <UNK> 0.0000
	              , 0.0000
	           time 0.0000
	              - 0.0000
	            gre 0.0000
	          their 0.0000
	              : 0.0000
	             us 0.0000
	    information 0.0000
	           life 0.0000
	          group 0.0000
	              a 0.0000
	          green 0.0000

            and   413518   1 (17)
	              I 0.0369
	           aand 0.0369
	            and 0.0369
	              - 0.0369
	           anda 0.0369
	             an 0.0369
	              . 0.0369
	            gay 0.0369
	           </S> 0.0369
	            arz 0.0369
	             us 0.0369
	            any 0.0369
	           andy 0.0369
	              a 0.0369
	            ant 0.0369
	              , 0.0369
	           alba 0.0369

      Pheasants   413618   2 (24)
	      pheasants 0.9000
	              I 0.0369
	            was 0.0369
	              a 0.0369
	            sub 0.0369
	      Pheasants 0.0369
	              C 0.0369
	           they 0.0369
	       Pheasant 0.0369
	            non 0.0369
	             is 0.0369
	       Peasants 0.0369
	           when 0.0369
	       Pheisant 0.0369
	     Pheasantry 0.0369
	              - 0.0059
	         months 0.0000
	           </S> 0.0000
	              , 0.0000
	          years 0.0000
	          major 0.0000
	             of 0.0000
	              . 0.0000
	           year 0.0000

              -   413628   9 (13)
	             -- 0.7000
	              . 0.1000
	            the 0.0369
	           year 0.0369
	            cia 0.0369
	             iu 0.0369
	             us 0.0369
	        Forever 0.0059
	            and 0.0000
	              , 0.0000
	              - 0.0000
	           </S> 0.0000
	             of 0.0000

      cuIchicKs   413633 inf (31)
	              . 0.4000
	              ( 0.0667
	         course 0.0369
	         Hughes 0.0369
	        crispus 0.0369
	      palustris 0.0369
	      companies 0.0369
	              a 0.0369
	        sources 0.0369
	             is 0.0369
	              I 0.0369
	       services 0.0369
	       culchies 0.0369
	         Reichl 0.0369
	          Busch 0.0369
	        Pearson 0.0369
	        Richard 0.0369
	        courses 0.0369
	       vulgaris 0.0369
	              , 0.0059
	          vivax 0.0000
	          Smith 0.0000
	              A 0.0000
	             J. 0.0000
	              ) 0.0000
	           </S> 0.0000
	          <UNK> 0.0000
	              - 0.0000
	          Diddy 0.0000
	          Price 0.0000
	     falciparum 0.0000

             P.   413644   1 (25)
	             J. 0.0369
	            PPP 0.0369
	          <UNK> 0.0369
	              | 0.0369
	           </S> 0.0369
	              A 0.0369
	            and 0.0369
	             P. 0.0369
	              " 0.0369
	          Ph.D. 0.0369
	             A. 0.0369
	             MD 0.0369
	             PP 0.0369
	             PM 0.0369
	           work 0.0369
	             PC 0.0369
	              a 0.0369
	            the 0.0059
	          which 0.0012
	             of 0.0000
	             to 0.0000
	           your 0.0000
	             or 0.0000
	              i 0.0000
	            you 0.0000

     /oi-qna/us   413647 inf (39)
	              . 0.4000
	              ( 0.0667
	            the 0.0369
	       Druschel 0.0369
	          ovale 0.0369
	        Karlton 0.0369
	           know 0.0369
	             in 0.0369
	       business 0.0369
	       Frasconi 0.0369
	          pages 0.0369
	       Domingos 0.0369
	           your 0.0369
	       Krishnan 0.0369
	             on 0.0369
	             is 0.0369
	           Moin 0.0369
	           time 0.0369
	              I 0.0369
	    surrondings 0.0369
	            use 0.0369
	           name 0.0369
	         amarus 0.0369
	        contact 0.0369
	             M. 0.0369
	       Raghavan 0.0369
	              a 0.0369
	              , 0.0059
	     gingivalis 0.0000
	              - 0.0000
	              A 0.0000
	           </S> 0.0000
	          Diddy 0.0000
	     aeruginosa 0.0000
	        Journal 0.0000
	          <UNK> 0.0000
	            and 0.0000
	          Smith 0.0000
	             J. 0.0000

    vtrsicoloi-   413666   2 (29)
	              . 0.2500
	   versicoloris 0.0369
	           like 0.0369
	     versicolor 0.0369
	    versicolour 0.0369
	        service 0.0369
	    information 0.0369
	          books 0.0369
	   versicoloria 0.0369
	    versicolori 0.0369
	              a 0.0369
	            the 0.0369
	             on 0.0369
	             us 0.0369
	              I 0.0369
	       services 0.0369
	              , 0.0059
	          Diddy 0.0000
	           </S> 0.0000
	          Price 0.0000
	     falciparum 0.0000
	              - 0.0000
	              ( 0.0000
	              ) 0.0000
	          <UNK> 0.0000
	          Smith 0.0000
	             J. 0.0000
	              A 0.0000
	     aeruginosa 0.0000

     interbreed   413690  12 (24)
	      interbred 0.4000
	              - 0.0369
	     Interbreed 0.0369
	              I 0.0369
	    interbreeds 0.0369
	             us 0.0369
	           roam 0.0369
	     interpreta 0.0369
	           into 0.0369
	   interbreeder 0.0369
	             be 0.0059
	     interbreed 0.0000
	            has 0.0000
	              . 0.0000
	           </S> 0.0000
	       required 0.0000
	       included 0.0000
	            can 0.0000
	            the 0.0000
	              a 0.0000
	              , 0.0000
	        include 0.0000
	             to 0.0000
	       includes 0.0000

         freely   413701   1 (25)
	         freely 0.2000
	           </S> 0.1000
	         finely 0.0369
	          reely 0.0369
	           from 0.0369
	     abundantly 0.0369
	       unfreely 0.0369
	         freezy 0.0369
	          feely 0.0369
	         freety 0.0369
	             us 0.0369
	          refly 0.0369
	         Greely 0.0369
	           Free 0.0369
	          ferly 0.0369
	           free 0.0369
	       freendly 0.0369
	              I 0.0369
	           with 0.0059
	              . 0.0000
	              - 0.0000
	              , 0.0000
	            the 0.0000
	              a 0.0000
	             to 0.0000

    intergrades   413728   1 (20)
	     intervales 0.0369
	    intergraded 0.0369
	   integrerades 0.0369
	           that 0.0369
	           FAIL 0.0369
	     intergrade 0.0369
	    intergrades 0.0369
	    integrardes 0.0369
	         images 0.0369
	              a 0.0369
	         others 0.0369
	              . 0.0059
	              , 0.0000
	         series 0.0000
	              - 0.0000
	           </S> 0.0000
	    information 0.0000
	        variety 0.0000
	            and 0.0000
	          hours 0.0000

            are   413740  21 (26)
	            and 0.1000
	            arm 0.0369
	            arz 0.0369
	            aer 0.0369
	            art 0.0369
	           alba 0.0369
	           aare 0.0369
	             at 0.0369
	             us 0.0369
	           area 0.0369
	       controls 0.0369
	        torture 0.0369
	           ares 0.0369
	              a 0.0369
	             ar 0.0369
	          calls 0.0369
	           aree 0.0369
	              I 0.0369
	              - 0.0369
	           with 0.0059
	           </S> 0.0000
	              . 0.0000
	              , 0.0000
	             of 0.0000
	            are 0.0000
	        between 0.0000

       distinct   413760  15 (24)
	           only 0.6000
	     distinctis 0.0369
	            one 0.0369
	      distincts 0.0369
	      distincti 0.0369
	      distincte 0.0369
	      distincta 0.0369
	           list 0.0369
	            and 0.0369
	     surprising 0.0369
	         within 0.0369
	              I 0.0369
	           with 0.0369
	             be 0.0059
	       distinct 0.0000
	              a 0.0000
	           </S> 0.0000
	           have 0.0000
	              - 0.0000
	            yet 0.0000
	        support 0.0000
	            the 0.0000
	              . 0.0000
	              , 0.0000

         sports   413840   2 (26)
	            the 0.0500
	         review 0.0369
	         spinas 0.0369
	          sport 0.0369
	        sportas 0.0369
	            one 0.0369
	              I 0.0369
	        esports 0.0369
	        Esports 0.0369
	         should 0.0369
	           more 0.0369
	         sporty 0.0369
	         sporto 0.0369
	        sportis 0.0369
	          spots 0.0369
	         sports 0.0369
	           that 0.0059
	        receipt 0.0000
	           </S> 0.0000
	         leader 0.0000
	              , 0.0000
	              . 0.0000
	              a 0.0000
	              - 0.0000
	           some 0.0000
	         master 0.0000

    intergrades   413895   3 (25)
	    information 0.1000
	       anything 0.1000
	    integrardes 0.0369
	              I 0.0369
	             us 0.0369
	    intergrades 0.0369
	   integrerades 0.0369
	             me 0.0369
	         copies 0.0369
	     intergrade 0.0369
	        because 0.0369
	           into 0.0369
	            why 0.0369
	    intergraded 0.0369
	              a 0.0059
	              - 0.0000
	              , 0.0000
	             to 0.0000
	        results 0.0000
	     executable 0.0000
	            any 0.0000
	           </S> 0.0000
	             it 0.0000
	              . 0.0000
	            the 0.0000

      reproduce   413936   1 (20)
	     reproducer 0.0369
	          major 0.0369
	        product 0.0369
	      reproduce 0.0369
	       products 0.0369
	       earliest 0.0369
	         people 0.0369
	     reproduces 0.0369
	       reprobus 0.0369
	     reproduced 0.0369
	           best 0.0369
	         finest 0.0369
	              , 0.0059
	             in 0.0000
	              . 0.0000
	            and 0.0000
	              a 0.0000
	              - 0.0000
	              I 0.0000
	           </S> 0.0000

        Barbaiy   414010  16 (29)
	          Barba 0.8000
	         Barbar 0.7000
	        Barbari 0.2000
	       Barbaise 0.0369
	          great 0.0369
	            GNU 0.0369
	              a 0.0369
	       Barbaira 0.0369
	          major 0.0369
	            and 0.0369
	        Barbair 0.0369
	              . 0.0369
	              , 0.0369
	           </S> 0.0059
	           same 0.0037
	           area 0.0000
	       Barbados 0.0000
	           eBay 0.0000
	           page 0.0000
	              " 0.0000
	           most 0.0000
	          first 0.0000
	          world 0.0000
	        Barbara 0.0000
	      Barbarity 0.0000
	         public 0.0000
	        Barbary 0.0000
	          <UNK> 0.0000
	              - 0.0000

         Turtle   414018   1 (20)
	              - 0.0369
	              , 0.0369
	       Turlutte 0.0369
	             of 0.0369
	          first 0.0369
	              A 0.0369
	           </S> 0.0369
	              . 0.0369
	         Turdus 0.0369
	         Turtle 0.0369
	              a 0.0369
	         little 0.0369
	          Turle 0.0369
	            non 0.0369
	              I 0.0369
	        KTurtle 0.0369
	              e 0.0369
	        Turtles 0.0369
	         Tuttle 0.0369
	          would 0.0369

        fertile   414068   5 (21)
	            and 0.6000
	           </S> 0.2000
	              " 0.1000
	        service 0.1000
	       fertiles 0.0369
	       fertilem 0.0369
	        fertile 0.0369
	        fertili 0.0369
	         fertil 0.0369
	        Service 0.0369
	             to 0.0059
	           that 0.0000
	              ' 0.0000
	              , 0.0000
	              . 0.0000
	       benefits 0.0000
	             of 0.0000
	              I 0.0000
	              a 0.0000
	           file 0.0000
	              - 0.0000

       Bengalee   414096  10 (27)
	             as 0.0369
	        message 0.0369
	              , 0.0369
	      Heptarchy 0.0369
	       Bengalen 0.0369
	              . 0.0369
	         Health 0.0369
	           </S> 0.0059
	           same 0.0037
	           time 0.0000
	          whole 0.0000
	              " 0.0000
	         Bengal 0.0000
	       Internet 0.0000
	          first 0.0000
	         people 0.0000
	      Bengalees 0.0000
	       Bengalee 0.0000
	         future 0.0000
	          <UNK> 0.0000
	              - 0.0000
	       Bangalee 0.0000
	      Bangalore 0.0000
	              ' 0.0000
	        Bentley 0.0000
	      Bengalese 0.0000
	          world 0.0000

        Carrion   414128   1 (31)
	        Carrion 0.9000
	         Carrio 0.1000
	          years 0.0369
	              a 0.0369
	        Carnion 0.0369
	           long 0.0369
	             so 0.0369
	              I 0.0369
	           well 0.0369
	            non 0.0369
	            mid 0.0369
	          major 0.0369
	              i 0.0369
	          three 0.0369
	            are 0.0369
	            the 0.0369
	      Carrionly 0.0369
	             45 0.0369
	           </S> 0.0059
	           same 0.0037
	          <UNK> 0.0000
	            two 0.0000
	          first 0.0000
	         Carion 0.0000
	      following 0.0000
	           most 0.0000
	              " 0.0000
	              - 0.0000
	        carrion 0.0000
	           City 0.0000
	        Carreon 0.0000

      resembles   414141   3 (23)
	             of 0.5000
	         Corvus 0.2000
	     resemblers 0.0369
	              a 0.0369
	              I 0.0369
	      resembles 0.0369
	           read 0.0369
	     ressembles 0.0369
	       business 0.0369
	             us 0.0369
	        Peebles 0.0369
	     resemblest 0.0369
	        between 0.0369
	      resembled 0.0369
	       resemble 0.0369
	      resembler 0.0369
	           </S> 0.0059
	              . 0.0000
	            and 0.0000
	              - 0.0000
	             's 0.0000
	             in 0.0000
	              , 0.0000

     inhabiting   414162  19 (26)
	       habiting 0.0369
	         online 0.0369
	     enhabiting 0.0369
	              ( 0.0369
	           </S> 0.0369
	             J. 0.0369
	              a 0.0369
	         weakly 0.0369
	    inhabitting 0.0369
	              " 0.0369
	            but 0.0369
	            and 0.0369
	              x 0.0369
	          <UNK> 0.0369
	              I 0.0369
	   reinhabiting 0.0369
	   coinhabiting 0.0369
	            the 0.0059
	      including 0.0000
	          which 0.0000
	     inhibiting 0.0000
	     inhabiting 0.0000
	             or 0.0000
	            its 0.0000
	           with 0.0000
	        inhabit 0.0000

        similar   414173   2 (21)
	           some 0.3000
	         should 0.0369
	              I 0.0369
	              B 0.0369
	         simila 0.0369
	           will 0.0369
	              - 0.0369
	       similars 0.0369
	       similari 0.0369
	          corax 0.0369
	       similary 0.0369
	        similan 0.0369
	        similat 0.0369
	        similar 0.0369
	            the 0.0059
	            and 0.0000
	           </S> 0.0000
	           this 0.0000
	              a 0.0000
	              . 0.0000
	              , 0.0000

         haunts   414181  12 (28)
	       articles 0.6000
	          hauns 0.0369
	         haunty 0.0369
	         shunta 0.0369
	          hasta 0.0369
	    predicament 0.0369
	         Counts 0.0369
	        chaunts 0.0369
	         Vaults 0.0369
	          haunt 0.0369
	             to 0.0059
	          hours 0.0000
	              , 0.0000
	           vein 0.0000
	          means 0.0000
	           </S> 0.0000
	              . 0.0000
	           hand 0.0000
	            way 0.0000
	         County 0.0000
	          hunts 0.0000
	              - 0.0000
	         haunts 0.0000
	          units 0.0000
	          books 0.0000
	          items 0.0000
	        results 0.0000
	      interests 0.0000

             In   414252   1 (18)
	             In 0.5538
	             It 0.0900
	             If 0.0570
	              I 0.0418
	            Inc 0.0369
	              a 0.0369
	             us 0.0369
	             iu 0.0369
	            cia 0.0369
	            Inn 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              , 0.0000
	              . 0.0000
	              ] 0.0000
	              ) 0.0000

      predatory   414259  14 (24)
	          place 0.1118
	              - 0.0369
	              I 0.0369
	             to 0.0369
	     prediatory 0.0369
	      predatori 0.0369
	         report 0.0369
	      predatore 0.0369
	              . 0.0369
	        product 0.0369
	              , 0.0369
	    depredatory 0.0369
	            own 0.0059
	           </S> 0.0000
	       predator 0.0000
	     affiliates 0.0000
	      predatory 0.0000
	           name 0.0000
	      predators 0.0000
	          first 0.0000
	       products 0.0000
	           best 0.0000
	       Predator 0.0000
	              a 0.0000

         cpiite   414297  20 (35)
	           Site 0.3000
	        kopiite 0.0369
	          liite 0.0369
	           piit 0.0369
	      copiapite 0.0369
	     altogether 0.0369
	         cepiti 0.0369
	      capissite 0.0369
	        ceppite 0.0369
	          viite 0.0369
	       entirely 0.0369
	              I 0.0369
	          cepit 0.0369
	         capita 0.0369
	           pite 0.0369
	         capite 0.0369
	         citite 0.0369
	         chiite 0.0369
	             be 0.0059
	           </S> 0.0000
	           cite 0.0000
	           city 0.0000
	           site 0.0000
	           know 0.0000
	          quite 0.0000
	       intended 0.0000
	              . 0.0000
	           have 0.0000
	             to 0.0000
	          spite 0.0000
	              - 0.0000
	              a 0.0000
	            get 0.0000
	              , 0.0000
	           take 0.0000

           both   414321   1 (26)
	              ( 0.0369
	       seconded 0.0369
	           hobt 0.0369
	              I 0.0369
	           boty 0.0369
	           both 0.0369
	            but 0.0369
	           </S> 0.0369
	              " 0.0369
	          bothe 0.0369
	          bothy 0.0369
	            and 0.0369
	             by 0.0369
	              a 0.0369
	          <UNK> 0.0369
	      published 0.0369
	           bots 0.0369
	          booth 0.0369
	            bot 0.0369
	           with 0.0062
	            the 0.0059
	          which 0.0012
	     especially 0.0000
	             if 0.0000
	              i 0.0000
	             or 0.0000

       shepherd   414329   1 (24)
	       shepherd 0.5000
	       Shepherd 0.3000
	            sea 0.0369
	            day 0.0369
	        members 0.0369
	             us 0.0369
	      shepherde 0.0369
	          small 0.0369
	          state 0.0369
	           land 0.0369
	            the 0.0059
	           </S> 0.0000
	            law 0.0000
	              . 0.0000
	          phone 0.0000
	              , 0.0000
	              a 0.0000
	          <UNK> 0.0000
	              e 0.0000
	              - 0.0000
	              : 0.0000
	          their 0.0000
	      shepherds 0.0000
	          other 0.0000

           Ever   414355   4 (23)
	          Every 1.0000
	           Even 0.7000
	              I 0.0418
	           Evre 0.0369
	          Evere 0.0369
	              a 0.0369
	      shuffling 0.0369
	           Ever 0.0369
	           were 0.0369
	           Eves 0.0369
	            Eve 0.0369
	          Evers 0.0369
	           here 0.0369
	           over 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              . 0.0000
	              ] 0.0000
	            the 0.0000
	              ) 0.0000
	              , 0.0000

            b}'   414416   7 (21)
	             be 0.3000
	             br 0.0369
	             bb 0.0369
	            cia 0.0369
	             iu 0.0369
	              . 0.0059
	              ' 0.0000
	              I 0.0000
	             in 0.0000
	           </S> 0.0000
	          quite 0.0000
	           with 0.0000
	              - 0.0000
	             as 0.0000
	             us 0.0000
	          using 0.0000
	            but 0.0000
	              a 0.0000
	             on 0.0000
	              , 0.0000
	             by 0.0000

          Tliat   414480 inf (25)
	             In 0.5538
	           This 0.3358
	              I 0.0418
	           Tlia 0.0369
	          aliat 0.0369
	          Tital 0.0369
	           alba 0.0369
	            cia 0.0369
	          Triat 0.0369
	          Thiat 0.0369
	         Talita 0.0369
	          Talit 0.0369
	           liat 0.0369
	            Tli 0.0369
	              a 0.0369
	           list 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              . 0.0000
	          Click 0.0000
	              ) 0.0000
	              ] 0.0000
	              , 0.0000

           this   414486   1 (21)
	          <UNK> 0.0369
	              g 0.0369
	            thi 0.0369
	           tish 0.0369
	           that 0.0369
	          thisn 0.0369
	             iu 0.0369
	              a 0.0369
	           </S> 0.0369
	           thin 0.0369
	            cia 0.0369
	          thish 0.0369
	             us 0.0369
	              , 0.0369
	            the 0.0369
	              ) 0.0369
	           this 0.0369
	              . 0.0369
	           thie 0.0369
	              n 0.0369
	              - 0.0369

          seems   414513   1 (23)
	          seems 0.5000
	           that 0.0583
	             us 0.0369
	           seed 0.0369
	            sex 0.0369
	        beseems 0.0369
	        meseems 0.0369
	          seeme 0.0369
	         Heemse 0.0369
	           sees 0.0369
	             to 0.0059
	            see 0.0000
	            and 0.0000
	             of 0.0000
	              - 0.0000
	           seem 0.0000
	            the 0.0000
	              a 0.0000
	           </S> 0.0000
	              . 0.0000
	              I 0.0000
	           some 0.0000
	              , 0.0000

        dispute   414565  10 (24)
	       disputes 0.5000
	       confused 0.0369
	             us 0.0369
	     associated 0.0369
	        include 0.0369
	         useful 0.0369
	        disputa 0.0369
	        disputo 0.0369
	              , 0.0059
	       disputed 0.0000
	              - 0.0000
	             be 0.0000
	           </S> 0.0000
	           does 0.0000
	              . 0.0000
	              I 0.0000
	        dispute 0.0000
	              i 0.0000
	             it 0.0000
	             to 0.0000
	           with 0.0000
	            the 0.0000
	            you 0.0000
	              a 0.0000

           Gull   414580  10 (34)
	        product 0.0369
	              , 0.0369
	      physician 0.0369
	              . 0.0369
	         sunset 0.0369
	          video 0.0369
	        TypeKey 0.0369
	            few 0.0097
	           </S> 0.0059
	            day 0.0000
	         friend 0.0000
	           Gulf 0.0000
	             us 0.0000
	           will 0.0000
	           Gulp 0.0000
	              - 0.0000
	           Gold 0.0000
	           full 0.0000
	           week 0.0000
	           sala 0.0000
	            lot 0.0000
	           Gulu 0.0000
	            All 0.0000
	           Gull 0.0000
	          Gulls 0.0000
	           Full 0.0000
	           July 0.0000
	            Gul 0.0000
	             iu 0.0000
	         second 0.0000
	          Gully 0.0000
	            new 0.0000
	       question 0.0000
	         single 0.0000

           Hawk   414601  12 (27)
	            How 0.6000
	           Haws 0.0369
	           time 0.0369
	              I 0.0369
	          Hawke 0.0369
	           Baya 0.0369
	             of 0.0369
	           Hawn 0.0369
	          thing 0.0369
	          Hawks 0.0369
	              , 0.0059
	            and 0.0000
	       business 0.0000
	           lava 0.0000
	              . 0.0000
	           Hawk 0.0000
	           Home 0.0000
	         amount 0.0000
	           </S> 0.0000
	              - 0.0000
	            one 0.0000
	         number 0.0000
	           make 0.0000
	           sala 0.0000
	           bowl 0.0000
	              a 0.0000
	           town 0.0000

       combiued   414651  14 (34)
	         terror 0.0369
	      terrorist 0.0369
	         combes 0.0369
	       surprise 0.0369
	        cymbium 0.0369
	       combinad 0.0369
	          heart 0.0369
	       comburei 0.0369
	         combis 0.0369
	     uncombined 0.0369
	       possible 0.0369
	       personal 0.0369
	           </S> 0.0059
	          <UNK> 0.0000
	              ) 0.0000
	            few 0.0000
	        comment 0.0000
	              " 0.0000
	       complete 0.0000
	       combined 0.0000
	       specific 0.0000
	       combines 0.0000
	          small 0.0000
	              - 0.0000
	          major 0.0000
	         member 0.0000
	            lot 0.0000
	         single 0.0000
	          combi 0.0000
	        combine 0.0000
	         combed 0.0000
	        company 0.0000
	       combiner 0.0000
	            new 0.0000

         attack   414660   1 (23)
	           back 0.0369
	           atta 0.0369
	          guest 0.0369
	         attack 0.0369
	           time 0.0369
	              - 0.0369
	          basis 0.0369
	              , 0.0369
	          click 0.0369
	              a 0.0369
	         attach 0.0369
	        attacks 0.0369
	        attackt 0.0369
	         atacak 0.0369
	           </S> 0.0369
	            ago 0.0369
	              . 0.0369
	          Black 0.0369
	           Back 0.0369
	         attaco 0.0369
	             of 0.0369
	        account 0.0369
	              I 0.0369

           fare   414736  12 (25)
	           have 0.6000
	            the 0.5000
	          fared 0.1000
	           faer 0.0369
	            arz 0.0369
	           lava 0.0369
	           sala 0.0369
	           fart 0.0369
	           frae 0.0369
	          fares 0.0369
	              , 0.0059
	             to 0.0000
	             be 0.0000
	              - 0.0000
	            for 0.0000
	           free 0.0000
	           </S> 0.0000
	            far 0.0000
	           farm 0.0000
	           fare 0.0000
	            are 0.0000
	              a 0.0000
	              . 0.0000
	           make 0.0000
	              I 0.0000

         badl3^   414741  13 (19)
	              a 0.3000
	          below 0.1000
	           back 0.0369
	         badall 0.0369
	           made 0.0369
	          badli 0.0369
	          badlu 0.0369
	         badley 0.0369
	           bald 0.0369
	              I 0.0369
	         badala 0.0369
	              . 0.0059
	              - 0.0000
	           </S> 0.0000
	              i 0.0000
	              , 0.0000
	            the 0.0000
	             to 0.0000
	          badly 0.0000

           Lord   414748   1 (21)
	           Love 0.0369
	              a 0.0369
	              - 0.0369
	          Lodro 0.0369
	           Lori 0.0369
	           Lore 0.0369
	          Lorrd 0.0369
	              , 0.0369
	           work 0.0369
	              . 0.0369
	              I 0.0369
	          Lords 0.0369
	          Lorde 0.0369
	           More 0.0369
	           </S> 0.0369
	           Lord 0.0369
	          Loxia 0.0369
	          corax 0.0369
	            arz 0.0369
	            the 0.0369
	           more 0.0369

        Lilford   414753 inf (17)
	        Ledford 0.0369
	         Liquor 0.0369
	        Wilford 0.0369
	        Linford 0.0369
	        Lidford 0.0369
	             of 0.0059
	             Of 0.0000
	           Lord 0.0000
	              , 0.0000
	        Lifford 0.0000
	              I 0.0000
	              - 0.0000
	             's 0.0000
	        Milford 0.0000
	           </S> 0.0000
	        Gilford 0.0000
	              . 0.0000

       observes   414761   1 (25)
	            the 0.0369
	            War 0.0369
	          Lizzy 0.0369
	       observer 0.0369
	        observe 0.0369
	              a 0.0369
	       observes 0.0369
	       observee 0.0369
	           said 0.0369
	         server 0.0369
	             us 0.0369
	      observees 0.0369
	       observed 0.0369
	      observest 0.0369
	       reserved 0.0369
	       Reserved 0.0369
	              I 0.0369
	              V 0.0059
	              - 0.0000
	              . 0.0000
	             RJ 0.0000
	              , 0.0000
	           </S> 0.0000
	             's 0.0000
	              R 0.0000

           saj^   414798   2 (27)
	            saj 0.6000
	            say 0.0970
	       describe 0.0369
	              , 0.0369
	    participate 0.0369
	           saja 0.0369
	           sjaj 0.0369
	          speak 0.0369
	          <UNK> 0.0369
	           sajt 0.0369
	           saje 0.0369
	           </S> 0.0369
	              : 0.0369
	            the 0.0059
	              a 0.0000
	          major 0.0000
	           work 0.0000
	             be 0.0000
	             so 0.0000
	           lava 0.0000
	           play 0.0000
	           said 0.0000
	           sala 0.0000
	           stay 0.0000
	            get 0.0000
	           same 0.0000
	            use 0.0000

             in   414803   1 (20)
	            iin 0.0369
	            inc 0.0369
	            cia 0.0369
	           wise 0.0369
	              . 0.0369
	              I 0.0369
	             it 0.0369
	            inn 0.0369
	             ni 0.0369
	            the 0.0369
	             is 0.0369
	              a 0.0369
	            int 0.0369
	             in 0.0369
	             us 0.0369
	              , 0.0369
	             iu 0.0369
	           </S> 0.0369
	              - 0.0369
	              : 0.0369

            His   414835   1 (23)
	            His 1.0000
	            Hip 0.3642
	              I 0.0418
	           Hist 0.0369
	              a 0.0369
	             Hi 0.0369
	            Him 0.0369
	            cia 0.0369
	             iu 0.0369
	            his 0.0369
	             us 0.0369
	            Hsi 0.0369
	            its 0.0369
	           Hiss 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ] 0.0000
	              . 0.0000
	             is 0.0000
	              , 0.0000
	              ) 0.0000

        noxious   414872   1 (34)
	      innoxious 0.0369
	        noxious 0.0369
	        nodosus 0.0369
	              I 0.0369
	      noxiously 0.0369
	           next 0.0369
	        nubicus 0.0369
	       complete 0.0369
	              - 0.0369
	      dispensed 0.0369
	              . 0.0369
	         noious 0.0369
	        Noxious 0.0369
	        moxious 0.0369
	         noxios 0.0369
	             us 0.0369
	            not 0.0369
	            now 0.0369
	         noxius 0.0369
	            for 0.0059
	   coincidental 0.0000
	         visual 0.0000
	             in 0.0000
	              a 0.0000
	             to 0.0000
	             on 0.0000
	           </S> 0.0000
	          local 0.0000
	              , 0.0000
	            out 0.0000
	             of 0.0000
	      obnoxious 0.0000
	      voluntary 0.0000
	       cosmetic 0.0000

      captivity   414939   1 (24)
	      captivity 0.8298
	            any 0.1000
	      Captivity 0.0902
	           with 0.0369
	              x 0.0369
	             us 0.0369
	      Raptivity 0.0369
	     captivitas 0.0369
	       captivat 0.0369
	        private 0.0369
	      captivait 0.0369
	            the 0.0059
	          which 0.0000
	           case 0.0000
	           your 0.0000
	              - 0.0000
	        captivi 0.0000
	              . 0.0000
	              a 0.0000
	           this 0.0000
	          their 0.0000
	           </S> 0.0000
	              , 0.0000
	        captiva 0.0000

         offers   414949   1 (20)
	         offert 0.0369
	         offere 0.0369
	        offerse 0.0369
	        offersi 0.0369
	          offer 0.0369
	         refers 0.0369
	         offres 0.0369
	         offers 0.0369
	          order 0.0369
	          other 0.0369
	              I 0.0176
	              . 0.0059
	             of 0.0000
	            and 0.0000
	            for 0.0000
	              - 0.0000
	           over 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000

       natixral   414987   1 (31)
	        natural 0.3000
	              / 0.1000
	          crime 0.0369
	              - 0.0369
	       naturali 0.0369
	        naturae 0.0369
	          natia 0.0369
	            and 0.0369
	        conduct 0.0369
	         natira 0.0369
	              I 0.0369
	       latieran 0.0369
	       naitural 0.0369
	              a 0.0369
	      nationaal 0.0369
	          natir 0.0369
	        nadiral 0.0369
	            own 0.0059
	           </S> 0.0000
	           most 0.0000
	           name 0.0000
	              , 0.0000
	       National 0.0000
	       rational 0.0000
	           wife 0.0000
	       national 0.0000
	              . 0.0000
	           life 0.0000
	              " 0.0000
	             or 0.0000
	         family 0.0000

           evil   414996   1 (21)
	          email 0.0369
	              , 0.0369
	           each 0.0369
	              - 0.0369
	          evill 0.0369
	           evli 0.0369
	           even 0.0369
	              . 0.0369
	           evil 0.0369
	            cia 0.0369
	             iu 0.0369
	            Pyi 0.0369
	            evi 0.0369
	              I 0.0369
	              a 0.0369
	            and 0.0369
	          evils 0.0369
	           edit 0.0369
	           </S> 0.0369
	           evin 0.0369
	           evit 0.0369

        Carriou   415035   1 (32)
	        Carrion 0.9000
	         Carrio 0.1000
	             so 0.0369
	              a 0.0369
	       Carriola 0.0369
	              , 0.0369
	              X 0.0369
	              F 0.0369
	            and 0.0369
	          group 0.0369
	            non 0.0369
	         Cariou 0.0369
	          major 0.0369
	              A 0.0369
	              I 0.0369
	              . 0.0369
	            pre 0.0369
	            are 0.0369
	           disc 0.0369
	           </S> 0.0059
	           same 0.0037
	      Carriacou 0.0000
	          world 0.0000
	           most 0.0000
	        Carrizo 0.0000
	          first 0.0000
	            two 0.0000
	           eBay 0.0000
	        Caribou 0.0000
	         Carrie 0.0000
	              - 0.0000
	           City 0.0000

              -   415042   1 (11)
	            and 0.0369
	            the 0.0369
	             us 0.0369
	           </S> 0.0369
	              . 0.0369
	              - 0.0369
	             -- 0.0369
	            cia 0.0369
	              , 0.0369
	             of 0.0369
	             iu 0.0369

           Crow   415043   8 (28)
	              s 0.0369
	           that 0.0369
	       wrapping 0.0369
	          which 0.0369
	           this 0.0369
	              - 0.0079
	           </S> 0.0059
	           Crop 0.0000
	         Coorow 0.0000
	             to 0.0000
	            now 0.0000
	           From 0.0000
	              ) 0.0000
	            arz 0.0000
	            the 0.0000
	          Crowe 0.0000
	           Crow 0.0000
	           Cron 0.0000
	              . 0.0000
	              a 0.0000
	          based 0.0000
	          Crown 0.0000
	              A 0.0000
	              I 0.0000
	           year 0.0000
	           from 0.0000
	             up 0.0000
	          <UNK> 0.0000

          wings   415102  18 (32)
	           wins 0.4000
	              I 0.0369
	              . 0.0369
	              , 0.0369
	           loan 0.0369
	        absence 0.0369
	         swingi 0.0369
	         spinas 0.0369
	         Swings 0.0369
	              - 0.0369
	          winge 0.0369
	            and 0.0369
	         winges 0.0369
	       fabulous 0.0369
	      processes 0.0369
	          wingy 0.0369
	            own 0.0059
	           wing 0.0000
	          first 0.0000
	            the 0.0000
	           next 0.0000
	        members 0.0000
	         swings 0.0000
	           </S> 0.0000
	          minor 0.0000
	          wings 0.0000
	              a 0.0000
	           will 0.0000
	     affiliates 0.0000
	           want 0.0000
	           with 0.0000
	           wine 0.0000

      regularly   415108   2 (20)
	             so 0.1250
	    irregularly 0.0369
	          right 0.0369
	      regularny 0.0369
	      regularis 0.0369
	      regularly 0.0369
	         report 0.0369
	      Regularly 0.0369
	      tegularly 0.0369
	          banks 0.0369
	        regular 0.0369
	              , 0.0059
	              - 0.0000
	              a 0.0000
	             to 0.0000
	              I 0.0000
	           </S> 0.0000
	              . 0.0000
	            and 0.0000
	          would 0.0000

           when   415136   1 (21)
	              . 0.0369
	           whey 0.0369
	           whet 0.0369
	          their 0.0369
	              , 0.0369
	            his 0.0369
	          wheen 0.0369
	          whens 0.0369
	          whenu 0.0369
	              I 0.0369
	           Then 0.0369
	            who 0.0369
	          wehen 0.0369
	           when 0.0369
	           were 0.0369
	              a 0.0369
	              - 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	              " 0.0000

         wheels   415174   2 (26)
	          wheel 0.4000
	         wheely 0.0369
	          weels 0.0369
	         shewel 0.0369
	             us 0.0369
	       wheelset 0.0369
	              - 0.0369
	          Wheel 0.0369
	        awheels 0.0369
	         wheels 0.0369
	              I 0.0369
	          welsh 0.0369
	     dispatched 0.0059
	          takes 0.0000
	              a 0.0000
	              . 0.0000
	             be 0.0000
	          while 0.0000
	           does 0.0000
	          where 0.0000
	              , 0.0000
	           when 0.0000
	           </S> 0.0000
	             is 0.0000
	            not 0.0000
	          ships 0.0000

          walks   415222  20 (34)
	           well 0.1000
	             me 0.0369
	             us 0.0369
	          lawks 0.0369
	          Pales 0.0369
	          wolfi 0.0369
	           sala 0.0369
	        rewalks 0.0369
	        bywalks 0.0369
	            out 0.0369
	           wals 0.0369
	          walke 0.0369
	          walka 0.0369
	         minors 0.0369
	           more 0.0369
	         waulks 0.0369
	              A 0.0369
	         broken 0.0369
	            the 0.0059
	             is 0.0000
	           that 0.0000
	           </S> 0.0000
	            way 0.0000
	              I 0.0000
	       directly 0.0000
	           case 0.0000
	            was 0.0000
	           will 0.0000
	              . 0.0000
	           walk 0.0000
	              - 0.0000
	          walks 0.0000
	              , 0.0000
	              a 0.0000

          leaps   415248  18 (30)
	          lepas 0.6000
	           leap 0.2000
	              " 0.0369
	          leapa 0.0369
	        upleaps 0.0369
	              a 0.0369
	            put 0.0369
	            and 0.0369
	              I 0.0369
	           </S> 0.0369
	          <UNK> 0.0369
	       Cavalier 0.0369
	            but 0.0369
	       outleaps 0.0369
	       straight 0.0369
	            the 0.0059
	          which 0.0012
	          elaps 0.0000
	        elegans 0.0000
	           laps 0.0000
	         please 0.0000
	           last 0.0000
	              i 0.0000
	           leas 0.0000
	          leaps 0.0000
	             or 0.0000
	           lava 0.0000
	          years 0.0000
	           year 0.0000
	          leapt 0.0000

          wings   415279   4 (29)
	           want 0.7000
	              - 0.5000
	           wing 0.3000
	          wings 0.2000
	           with 0.2000
	           year 0.0369
	         swingi 0.0369
	         spinas 0.0369
	           hour 0.0369
	        century 0.0369
	              I 0.0369
	          minor 0.0369
	         Swings 0.0369
	          winge 0.0369
	          wingy 0.0369
	         swings 0.0369
	           wins 0.0369
	         winges 0.0369
	            the 0.0059
	           will 0.0000
	              . 0.0000
	             up 0.0000
	              a 0.0000
	             in 0.0000
	          until 0.0000
	           </S> 0.0000
	              , 0.0000
	           fire 0.0000
	           wine 0.0000

   nidification   415329   1 (29)
	   nidification 1.0000
	       delivery 0.0369
	              I 0.0369
	   Nidification 0.0369
	           most 0.0369
	    nidificator 0.0369
	           view 0.0369
	  nidifications 0.0369
	   nudification 0.0369
	      thousands 0.0369
	     submission 0.0369
	        arrival 0.0369
	 nidificational 0.0369
	              . 0.0369
	            the 0.0059
	          their 0.0000
	   codification 0.0000
	           this 0.0000
	              a 0.0000
	             us 0.0000
	  acidification 0.0000
	           </S> 0.0000
	    information 0.0000
	           some 0.0000
	              - 0.0000
	       American 0.0000
	            one 0.0000
	      Education 0.0000
	              , 0.0000

          Iwade   415539   1 (27)
	              a 0.0369
	              , 0.0369
	           </S> 0.0369
	          Iwase 0.0369
	   Ancestry.com 0.0369
	           step 0.0369
	          Swade 0.0369
	          Iwade 0.0369
	           made 0.0369
	           have 0.0369
	          <UNK> 0.0369
	          least 0.0369
	        Iwadare 0.0369
	        Iwadate 0.0369
	              . 0.0369
	            the 0.0369
	          Iwate 0.0369
	          Index 0.0369
	             or 0.0369
	              - 0.0369
	           your 0.0059
	           work 0.0000
	              y 0.0000
	             us 0.0000
	              x 0.0000
	          which 0.0000
	           wade 0.0000

           near   415545   1 (24)
	           need 0.0369
	           near 0.0369
	            top 0.0369
	           time 0.0369
	          neare 0.0369
	            cia 0.0369
	              3 0.0369
	              I 0.0369
	          nears 0.0369
	            end 0.0369
	           neat 0.0369
	            nea 0.0369
	            arz 0.0369
	           year 0.0369
	           neal 0.0369
	           nera 0.0369
	       position 0.0369
	            new 0.0369
	              a 0.0369
	              , 0.0059
	       Kearsney 0.0000
	           </S> 0.0000
	              . 0.0000
	              - 0.0000

         Sheppy   415550 inf (25)
	          Sheep 1.0000
	           Shop 0.1000
	           post 0.0369
	        Sheppey 0.0369
	         Sheepy 0.0369
	        Shepley 0.0369
	        Sheppee 0.0369
	           eppy 0.0369
	         Shappy 0.0369
	           Shep 0.0369
	            the 0.0059
	              . 0.0000
	         Cheppy 0.0000
	            She 0.0000
	              , 0.0000
	              I 0.0000
	            you 0.0000
	             us 0.0000
	              - 0.0000
	           term 0.0000
	          <UNK> 0.0000
	          happy 0.0000
	           </S> 0.0000
	         future 0.0000
	              a 0.0000

      consisted   415558   1 (25)
	           </S> 0.0369
	         online 0.0369
	              I 0.0369
	              a 0.0369
	              " 0.0369
	      consisten 0.0369
	      consistes 0.0369
	       consiste 0.0369
	          north 0.0369
	      consisted 0.0369
	         system 0.0369
	            but 0.0369
	            and 0.0369
	     regardless 0.0369
	       condiste 0.0369
	    consistende 0.0369
	          south 0.0369
	           site 0.0369
	            the 0.0059
	           some 0.0000
	              i 0.0000
	             or 0.0000
	          which 0.0000
	            one 0.0000
	             of 0.0000

         tliree   415571  14 (30)
	          tiler 0.2000
	           lire 0.1000
	         telier 0.0369
	         triler 0.0369
	          siree 0.0369
	       filliree 0.0369
	          needy 0.0369
	         livree 0.0369
	         twires 0.0369
	         twired 0.0369
	         tairez 0.0369
	              . 0.0369
	            the 0.0059
	          there 0.0000
	          tyres 0.0000
	              a 0.0000
	           this 0.0000
	          hiree 0.0000
	           tire 0.0000
	              , 0.0000
	             us 0.0000
	          their 0.0000
	              - 0.0000
	           tree 0.0000
	           </S> 0.0000
	            two 0.0000
	      tuliptree 0.0000
	          Tiree 0.0000
	            our 0.0000
	          three 0.0000

           full   415578   1 (25)
	            ful 0.0369
	              . 0.0369
	           fule 0.0369
	           full 0.0369
	              e 0.0369
	         medium 0.0369
	         rufula 0.0369
	           from 0.0369
	              - 0.0369
	            for 0.0369
	            mid 0.0369
	          fulls 0.0369
	           sala 0.0369
	           anti 0.0369
	           </S> 0.0369
	              A 0.0369
	          fully 0.0369
	              , 0.0369
	              a 0.0369
	              I 0.0369
	            flu 0.0369
	            non 0.0369
	            and 0.0369
	           fuld 0.0369
	             us 0.0369

       yolkless   415608   1 (26)
	        Colless 0.0369
	           your 0.0369
	       yolkless 0.0369
	         yokels 0.0369
	            the 0.0369
	       yokeless 0.0369
	       yolkiest 0.0369
	              I 0.0369
	       milkless 0.0369
	       walkless 0.0369
	          yolks 0.0369
	          yoles 0.0369
	            you 0.0369
	             us 0.0369
	           know 0.0369
	           this 0.0369
	      yolkiness 0.0369
	              , 0.0059
	              - 0.0000
	           part 0.0000
	       business 0.0000
	              . 0.0000
	            and 0.0000
	              a 0.0000
	           </S> 0.0000
	           step 0.0000

            one   415617   1 (26)
	              - 0.0369
	             us 0.0369
	              . 0.0369
	           oner 0.0369
	           onen 0.0369
	           ones 0.0369
	            one 0.0369
	        hunting 0.0369
	            cia 0.0369
	             iu 0.0369
	           onee 0.0369
	            oen 0.0369
	             of 0.0369
	         medium 0.0369
	           fast 0.0369
	          large 0.0369
	            ont 0.0369
	              , 0.0369
	            ons 0.0369
	         breeds 0.0369
	              I 0.0369
	              a 0.0369
	           </S> 0.0369
	             on 0.0369
	           eggs 0.0059
	            egg 0.0000

             it   415761   1 (23)
	              . 0.0369
	            ith 0.0369
	              s 0.0369
	             is 0.0369
	             iu 0.0369
	            iti 0.0369
	             it 0.0369
	            iit 0.0369
	              , 0.0369
	             in 0.0369
	              - 0.0369
	              a 0.0369
	            itt 0.0369
	          which 0.0369
	            the 0.0369
	           year 0.0369
	             us 0.0369
	            its 0.0369
	              I 0.0369
	             ti 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000

              -   415835 inf (17)
	          where 0.0793
	            and 0.0369
	            cia 0.0369
	          <UNK> 0.0369
	           </S> 0.0369
	              ( 0.0369
	              " 0.0369
	              a 0.0369
	            but 0.0369
	           with 0.0062
	            the 0.0059
	          which 0.0012
	             iu 0.0000
	             or 0.0000
	             to 0.0000
	             of 0.0000
	             us 0.0000

            but   415857   1 (21)
	             by 0.0369
	             be 0.0369
	              , 0.0369
	           butt 0.0369
	             bu 0.0369
	            tub 0.0369
	             iu 0.0369
	            buy 0.0369
	            bus 0.0369
	              a 0.0369
	              - 0.0369
	              I 0.0369
	           buts 0.0369
	             P. 0.0369
	              . 0.0369
	            but 0.0369
	             us 0.0369
	           </S> 0.0059
	              } 0.0000
	              " 0.0000
	              ) 0.0000

             J.   415912 inf (23)
	              I 0.0418
	             us 0.0369
	            JJJ 0.0369
	             iu 0.0369
	            cia 0.0369
	              a 0.0369
	             JR 0.0369
	             JP 0.0369
	             JD 0.0369
	             JJ 0.0369
	              A 0.0328
	             to 0.0265
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	            Jan 0.0000
	              ) 0.0000
	            the 0.0000
	              ] 0.0000
	             of 0.0000
	              . 0.0000
	            and 0.0000
	              , 0.0000

         Pilley   415918   1 (30)
	        Pilsley 0.0369
	         Pilkey 0.0369
	         Pilley 0.0369
	          Pales 0.0369
	             21 0.0369
	         Pillen 0.0369
	             J. 0.0369
	         Breaux 0.0369
	             22 0.0369
	             23 0.0369
	          Pille 0.0369
	             A. 0.0369
	           </S> 0.0059
	              , 0.0000
	           Hill 0.0000
	        Johnson 0.0000
	         Miller 0.0000
	         filled 0.0000
	              A 0.0000
	          <UNK> 0.0000
	              . 0.0000
	              ( 0.0000
	         Pixley 0.0000
	         Valley 0.0000
	            The 0.0000
	              - 0.0000
	         Piller 0.0000
	          Smith 0.0000
	              I 0.0000
	              C 0.0000

      Zoologist   415940   1 (22)
	      Zoologist 1.0000
	      otologist 0.0369
	      Zoologies 0.0369
	              s 0.0369
	         Please 0.0369
	       oologist 0.0369
	             us 0.0369
	          could 0.0369
	           good 0.0369
	              - 0.0235
	           </S> 0.0059
	              I 0.0000
	              , 0.0000
	              ) 0.0000
	              . 0.0000
	              x 0.0000
	     Zoologists 0.0000
	      zoologist 0.0000
	              A 0.0000
	          <UNK> 0.0000
	              " 0.0000
	              a 0.0000

              "   415950   1 (19)
	           </S> 0.0369
	              , 0.0369
	              § 0.0369
	              ¶ 0.0369
	              I 0.0369
	            cia 0.0369
	            and 0.0369
	              ¹ 0.0369
	          <UNK> 0.0369
	              ( 0.0369
	              - 0.0369
	              " 0.0369
	            the 0.0059
	          which 0.0012
	             or 0.0000
	             iu 0.0000
	             us 0.0000
	             of 0.0000
	          since 0.0000

        meadows   416056   1 (28)
	        meadows 0.9000
	         Meadow 0.6000
	        Windows 0.3000
	        meadowy 0.0369
	        Meadows 0.0369
	          woods 0.0369
	              a 0.0369
	     meadowless 0.0369
	      locations 0.0369
	         meados 0.0369
	     businesses 0.0369
	             of 0.0059
	          parts 0.0000
	          minor 0.0000
	              - 0.0000
	              . 0.0000
	           time 0.0000
	          areas 0.0000
	         meadow 0.0000
	          other 0.0000
	          point 0.0000
	           </S> 0.0000
	            way 0.0000
	        members 0.0000
	          major 0.0000
	              , 0.0000
	          years 0.0000
	          cases 0.0000

           dead   416119   1 (29)
	           dead 0.8000
	             de 0.1000
	       popsicle 0.0369
	      unsecured 0.0369
	          deade 0.0369
	        walking 0.0369
	           deae 0.0369
	           deda 0.0369
	          adead 0.0369
	            the 0.0059
	              - 0.0000
	           deal 0.0000
	          their 0.0000
	            day 0.0000
	           dear 0.0000
	           data 0.0000
	              , 0.0000
	           Read 0.0000
	              a 0.0000
	           this 0.0000
	          <UNK> 0.0000
	            cia 0.0000
	          deads 0.0000
	           year 0.0000
	             us 0.0000
	            dea 0.0000
	            two 0.0000
	              : 0.0000
	           </S> 0.0000

              -   416144   4 (14)
	            cia 0.0369
	             iu 0.0369
	              , 0.0059
	            and 0.0000
	         silage 0.0000
	           </S> 0.0000
	             us 0.0000
	      clippings 0.0000
	              - 0.0000
	          roots 0.0000
	              . 0.0000
	             -- 0.0000
	            the 0.0000
	             of 0.0000

       tussocks   416145   1 (28)
	       tussocks 1.0000
	            fed 0.0369
	       tussocky 0.0369
	     tussockers 0.0369
	    medications 0.0369
	          roots 0.0369
	           this 0.0369
	            two 0.0369
	            new 0.0369
	              s 0.0369
	        through 0.0369
	            use 0.0369
	      thussocks 0.0369
	           root 0.0369
	              , 0.0369
	           </S> 0.0059
	              a 0.0000
	              - 0.0000
	              A 0.0000
	          <UNK> 0.0000
	             to 0.0000
	             up 0.0000
	        tussock 0.0000
	           mail 0.0000
	           time 0.0000
	              . 0.0000
	            the 0.0000
	              I 0.0000

         neatly   416226  11 (23)
	           neat 0.7000
	           next 0.7000
	        netplay 0.0369
	           neal 0.0369
	              a 0.0369
	         nextly 0.0369
	         Neatly 0.0369
	         Heatly 0.0369
	       unneatly 0.0369
	              , 0.0059
	              - 0.0000
	           that 0.0000
	         really 0.0000
	              . 0.0000
	           such 0.0000
	         nearly 0.0000
	             is 0.0000
	           </S> 0.0000
	           like 0.0000
	              I 0.0000
	            and 0.0000
	         neatly 0.0000
	           near 0.0000

       smoothed   416233   3 (28)
	           tied 0.7000
	             in 0.6000
	       smoothed 0.1000
	         advice 0.0369
	        smoothe 0.0369
	          other 0.0369
	       smoother 0.0369
	     smoothened 0.0369
	         broken 0.0369
	              t 0.0369
	          twice 0.0369
	        methods 0.0369
	        soothed 0.0369
	     unsmoothed 0.0369
	        spotted 0.0369
	       smoothes 0.0369
	           into 0.0059
	           </S> 0.0000
	           laid 0.0000
	            the 0.0000
	       together 0.0000
	             as 0.0000
	              - 0.0000
	            and 0.0000
	              a 0.0000
	              , 0.0000
	         stores 0.0000
	              . 0.0000

         number   416257   1 (25)
	         number 1.0000
	        gathers 0.0369
	        nnumber 0.0369
	         numbre 0.0369
	          price 0.0369
	          comes 0.0369
	           need 0.0369
	         numbed 0.0369
	        numbers 0.0369
	       benefits 0.0369
	        numbere 0.0369
	              , 0.0059
	              I 0.0000
	           </S> 0.0000
	              a 0.0000
	           were 0.0000
	              - 0.0000
	             is 0.0000
	          under 0.0000
	            are 0.0000
	             of 0.0000
	           come 0.0000
	              . 0.0000
	            and 0.0000
	          hatch 0.0000

         clutch   416304  16 (31)
	          Dutch 0.9000
	         Clutch 0.0369
	         clunch 0.0369
	             of 0.0369
	          cutch 0.0369
	         cultch 0.0369
	            ago 0.0369
	              I 0.0369
	         crutch 0.0369
	           time 0.0369
	       clutches 0.0369
	        clutcht 0.0369
	     boringness 0.0369
	          click 0.0369
	            and 0.0059
	      urination 0.0000
	              . 0.0000
	          basis 0.0000
	         change 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	      travelers 0.0000
	         clutch 0.0000
	           much 0.0000
	              - 0.0000
	        speaker 0.0000
	        visitor 0.0000
	           such 0.0000
	          flyer 0.0000
	    contributor 0.0000

            the   416412   1 (19)
	              I 0.0369
	              , 0.0369
	             us 0.0369
	            the 0.0369
	              a 0.0369
	            CPS 0.0369
	            cia 0.0369
	             iu 0.0369
	            teh 0.0369
	           they 0.0369
	           thee 0.0369
	            thy 0.0369
	            tho 0.0369
	              . 0.0369
	           them 0.0369
	           </S> 0.0059
	              } 0.0000
	              " 0.0000
	              ) 0.0000

        consist   416499   2 (25)
	      gradients 0.2500
	        consist 0.0369
	              a 0.0369
	       consiste 0.0369
	           case 0.0369
	         course 0.0369
	       consisti 0.0369
	           form 0.0369
	      fractions 0.0369
	           list 0.0369
	         middle 0.0369
	        because 0.0369
	             of 0.0059
	              n 0.0000
	       function 0.0000
	            and 0.0000
	              p 0.0000
	         matrix 0.0000
	              . 0.0000
	   distribution 0.0000
	        contact 0.0000
	       consists 0.0000
	              - 0.0000
	              , 0.0000
	           </S> 0.0000

           some   416578   1 (24)
	            and 0.0369
	            som 0.0369
	          somer 0.0369
	           home 0.0369
	           sala 0.0369
	          comix 0.0369
	           same 0.0369
	          somme 0.0369
	              . 0.0369
	              , 0.0369
	           some 0.0369
	           soem 0.0369
	           soma 0.0369
	           soms 0.0369
	              a 0.0369
	           Home 0.0369
	              - 0.0369
	              I 0.0369
	          somes 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	              " 0.0000
	          <UNK> 0.0000

           Crow   416676   8 (22)
	          Crown 0.8000
	           From 0.8000
	           from 0.1000
	            arz 0.0369
	         Coorow 0.0369
	    constitutes 0.0369
	             is 0.0059
	              a 0.0000
	           </S> 0.0000
	           Crop 0.0000
	           Crow 0.0000
	            now 0.0000
	           site 0.0000
	              , 0.0000
	              . 0.0000
	           page 0.0000
	          would 0.0000
	              - 0.0000
	            was 0.0000
	           will 0.0000
	           Cron 0.0000
	          Crowe 0.0000

          pairs   416681   2 (30)
	              - 0.4000
	          paire 0.0369
	          pairt 0.0369
	         paires 0.0369
	           true 0.0369
	         hungry 0.0369
	          paris 0.0369
	           pars 0.0369
	           pair 0.0369
	          parva 0.0369
	          Parus 0.0369
	          maura 0.0369
	            not 0.0369
	        repairs 0.0369
	              a 0.0369
	         apairs 0.0369
	         pairas 0.0369
	              I 0.0369
	          parsi 0.0369
	          pairs 0.0369
	           </S> 0.0059
	              , 0.0000
	           part 0.0000
	           aims 0.0000
	           past 0.0000
	             is 0.0000
	           said 0.0000
	             's 0.0000
	           page 0.0000
	              . 0.0000

        figured   416726   3 (24)
	         figure 1.0000
	        figures 0.8000
	        figured 0.2000
	           site 0.0369
	              a 0.0369
	      defigured 0.0369
	        figuren 0.0369
	              I 0.0369
	      refigured 0.0369
	        appears 0.0369
	           feed 0.0369
	      figuredly 0.0369
	         figura 0.0369
	              . 0.0059
	            are 0.0000
	              - 0.0000
	              , 0.0000
	            for 0.0000
	             of 0.0000
	           from 0.0000
	             is 0.0000
	             in 0.0000
	           </S> 0.0000
	          found 0.0000

          figs.   416748   2 (22)
	            fig 0.8000
	           figs 0.1000
	           </S> 0.0369
	              ( 0.0369
	          figos 0.0369
	          <UNK> 0.0369
	          figis 0.0369
	            and 0.0369
	         fisgig 0.0369
	              a 0.0369
	              I 0.0369
	              " 0.0369
	            the 0.0059
	          which 0.0012
	          first 0.0000
	             we 0.0000
	              i 0.0000
	         please 0.0000
	           figa 0.0000
	             or 0.0000
	          right 0.0000
	           find 0.0000

            233   416754 inf (23)
	             32 0.4000
	            2-3 0.3000
	              , 0.1000
	              A 0.0500
	             iu 0.0369
	              - 0.0369
	              a 0.0369
	              . 0.0369
	           bowl 0.0369
	             of 0.0369
	          plate 0.0369
	         plates 0.0369
	            the 0.0369
	            cia 0.0369
	            and 0.0369
	             us 0.0369
	              1 0.0059
	              3 0.0000
	           </S> 0.0000
	             33 0.0000
	              2 0.0000
	              I 0.0000
	             23 0.0000

           Farn   416784   3 (33)
	           Fran 0.6000
	           Free 0.2000
	          Farna 0.0369
	              I 0.0369
	           Farn 0.0369
	            arz 0.0369
	             to 0.0369
	         Museum 0.0369
	         museum 0.0369
	           sala 0.0369
	          Libby 0.0369
	              a 0.0369
	           year 0.0369
	          world 0.0369
	              A 0.0369
	          Farne 0.0369
	         seller 0.0369
	              - 0.0369
	              . 0.0369
	           lava 0.0369
	       Chairman 0.0059
	      President 0.0000
	              , 0.0000
	          Smith 0.0000
	        Speaker 0.0000
	            For 0.0000
	           </S> 0.0000
	          <UNK> 0.0000
	           Farm 0.0000
	           Bush 0.0000
	            Far 0.0000
	           Fare 0.0000
	           From 0.0000

             's   416788   1 (15)
	             's 0.6000
	              I 0.0369
	             ss 0.0369
	             J. 0.0369
	             A. 0.0369
	             us 0.0369
	             as 0.0369
	             so 0.0369
	           </S> 0.0059
	              ' 0.0000
	              . 0.0000
	           Wang 0.0000
	              , 0.0000
	              - 0.0000
	             is 0.0000

            236   416807 inf (22)
	       separate 0.0369
	       shipping 0.0369
	              . 0.0369
	            the 0.0059
	            use 0.0000
	              , 0.0000
	              a 0.0000
	             us 0.0000
	           more 0.0000
	              - 0.0000
	             iu 0.0000
	           </S> 0.0000
	             it 0.0000
	             to 0.0000
	          other 0.0000
	            cia 0.0000
	              I 0.0000
	             of 0.0000
	    information 0.0000
	            and 0.0000
	           then 0.0000
	              2 0.0000

        Frohawk   416828   1 (32)
	          world 0.0369
	        country 0.0369
	       Basefsky 0.0369
	          Froha 0.0369
	       frohawks 0.0369
	        Frohawk 0.0369
	         nation 0.0369
	        program 0.0369
	      Hatherley 0.0369
	           from 0.0369
	             A. 0.0369
	              . 0.0369
	              a 0.0369
	              - 0.0369
	        frohawk 0.0369
	          other 0.0369
	           that 0.0369
	         Fohawk 0.0369
	              I 0.0369
	              A 0.0369
	       Chairman 0.0059
	        Speaker 0.0000
	            and 0.0000
	           Bush 0.0000
	             M. 0.0000
	          <UNK> 0.0000
	      President 0.0000
	              , 0.0000
	           </S> 0.0000
	          Smith 0.0000
	             .. 0.0000
	             J. 0.0000

             my   416840   1 (21)
	             my 0.0369
	              , 0.0369
	            mmy 0.0369
	              I 0.0369
	             iu 0.0369
	            Pyi 0.0369
	              a 0.0369
	             by 0.0369
	              - 0.0369
	             me 0.0369
	             mm 0.0369
	            myy 0.0369
	             us 0.0369
	              . 0.0369
	            myc 0.0369
	            mya 0.0369
	             ym 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	              " 0.0000

 characteristic   416876  11 (26)
	           good 0.0369
	       scalable 0.0369
	          lucky 0.0369
	              I 0.0369
	          close 0.0369
	          large 0.0369
	        revoked 0.0369
	        warrant 0.0369
	characteristica 0.0369
	            the 0.0059
	              , 0.0000
	              e 0.0000
	           </S> 0.0000
	              - 0.0000
	characteristics 0.0000
	          <UNK> 0.0000
	           more 0.0000
	        contact 0.0000
	         change 0.0000
	              a 0.0000
	 characteristic 0.0000
	            are 0.0000
	        service 0.0000
	             is 0.0000
	            not 0.0000
	              ( 0.0000

   representing   416910  15 (29)
	    representin 0.0369
	     representi 0.0369
	  repraesentans 0.0369
	              I 0.0369
	   Representing 0.0369
	      different 0.0369
	         online 0.0369
	             us 0.0369
	           here 0.0369
	     presetting 0.0369
	        between 0.0369
	            out 0.0369
	          major 0.0369
	            the 0.0059
	           </S> 0.0000
	        reading 0.0000
	              - 0.0000
	             in 0.0000
	    considering 0.0000
	     presenting 0.0000
	             of 0.0000
	              . 0.0000
	             it 0.0000
	             to 0.0000
	              , 0.0000
	              a 0.0000
	      something 0.0000
	              ) 0.0000
	   representing 0.0000

            but   417255   1 (19)
	             bu 0.0369
	           buts 0.0369
	             be 0.0369
	              . 0.0369
	            tub 0.0369
	             iu 0.0369
	              a 0.0369
	              , 0.0369
	            buy 0.0369
	            bus 0.0369
	             P. 0.0369
	            but 0.0369
	           butt 0.0369
	             us 0.0369
	             by 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000
	              " 0.0000

       mollusca   417327   2 (27)
	       molluscs 0.9000
	       mollusca 0.2000
	              a 0.1097
	GreatOutdoors.com 0.0369
	           Iraq 0.0369
	       mollusco 0.0369
	             us 0.0369
	          music 0.0369
	      molluscas 0.0369
	        molusca 0.0369
	            the 0.0059
	          <UNK> 0.0000
	           them 0.0000
	         August 0.0000
	              - 0.0000
	           </S> 0.0000
	      molluscan 0.0000
	         Friday 0.0000
	              . 0.0000
	           this 0.0000
	              , 0.0000
	             it 0.0000
	        Tuesday 0.0000
	        mollusc 0.0000
	         Monday 0.0000
	           such 0.0000
	            him 0.0000

       Sheppard   417411   2 (26)
	        Richard 0.1000
	       sheppard 0.0369
	           Food 0.0369
	              a 0.0369
	         Search 0.0369
	       Shephard 0.0369
	       national 0.0369
	             US 0.0369
	              . 0.0369
	       Sheppard 0.0369
	          their 0.0369
	       Software 0.0369
	        parties 0.0369
	          State 0.0369
	              - 0.0369
	     Sheppardia 0.0369
	           </S> 0.0059
	             M. 0.0000
	              , 0.0000
	             J. 0.0000
	          <UNK> 0.0000
	           Bush 0.0000
	             A. 0.0000
	           John 0.0000
	        Shepard 0.0000
	        Shubert 0.0000

        Whitear   417424 inf (37)
	         Whiter 0.4000
	         myself 0.0369
	          itear 0.0369
	          woman 0.0369
	       policies 0.0369
	           year 0.0369
	        reviews 0.0369
	       violence 0.0369
	            tax 0.0369
	        vMentor 0.0369
	      Whitetara 0.0369
	        Whitean 0.0369
	       Whiteash 0.0369
	        Whiteia 0.0369
	              i 0.0369
	           pans 0.0369
	             us 0.0369
	           poll 0.0369
	            the 0.0059
	      Whiteacre 0.0000
	              ( 0.0000
	            was 0.0000
	           more 0.0000
	      Whitehair 0.0000
	              a 0.0000
	          other 0.0000
	     Whiteheart 0.0000
	          <UNK> 0.0000
	      Whiteware 0.0000
	          White 0.0000
	              , 0.0000
	           with 0.0000
	              - 0.0000
	         others 0.0000
	           </S> 0.0000
	              I 0.0000
	           this 0.0000

              )   417431   1 (13)
	              ) 0.0369
	       provided 0.0369
	            the 0.0369
	             of 0.0369
	      submitted 0.0369
	             us 0.0369
	             iu 0.0369
	            cia 0.0369
	            and 0.0059
	              , 0.0000
	              . 0.0000
	           </S> 0.0000
	              - 0.0000

          stale   417511   1 (24)
	              a 0.0369
	              - 0.0369
	          shall 0.0369
	          state 0.0369
	          stale 0.0369
	           stal 0.0369
	           sala 0.0369
	          Pales 0.0369
	              . 0.0369
	            the 0.0369
	         staled 0.0369
	         stales 0.0369
	          still 0.0369
	          stael 0.0369
	          throw 0.0369
	              s 0.0369
	              , 0.0369
	          stall 0.0369
	          stalk 0.0369
	              I 0.0369
	           </S> 0.0059
	              ) 0.0000
	              " 0.0000
	              } 0.0000

           fish   417517  16 (24)
	          first 0.4000
	          fishi 0.0369
	          fishs 0.0369
	          fishy 0.0369
	              } 0.0369
	             us 0.0369
	            fis 0.0369
	           fine 0.0369
	            cia 0.0369
	           Pica 0.0369
	           fist 0.0369
	           find 0.0369
	           make 0.0369
	           fisk 0.0369
	              . 0.0059
	              - 0.0000
	              , 0.0000
	            and 0.0000
	           file 0.0000
	      responses 0.0000
	           fish 0.0000
	           fast 0.0000
	           </S> 0.0000
	              ) 0.0000

        carrion   417548   1 (29)
	        carrion 0.7000
	        Carrion 0.1000
	        carrito 0.0369
	       carrions 0.0369
	              . 0.0369
	            and 0.0369
	        carinon 0.0369
	           part 0.0369
	          worst 0.0369
	            out 0.0369
	          women 0.0369
	          blown 0.0369
	         carino 0.0369
	        service 0.0369
	       carrinho 0.0369
	            the 0.0059
	              I 0.0000
	       services 0.0000
	              - 0.0000
	            one 0.0000
	        carryon 0.0000
	         carbon 0.0000
	             it 0.0000
	            can 0.0000
	            use 0.0000
	              a 0.0000
	           most 0.0000
	              , 0.0000
	           </S> 0.0000

       devoured   417573  12 (24)
	           very 0.5071
	       Devoured 0.0369
	         devour 0.0369
	     undevoured 0.0369
	       devourer 0.0369
	          items 0.0369
	          never 0.0369
	         decore 0.0369
	       reserved 0.0369
	     indevoured 0.0369
	            not 0.0059
	        welcome 0.0000
	           here 0.0000
	      available 0.0000
	       required 0.0000
	              a 0.0000
	              . 0.0000
	           </S> 0.0000
	       devoured 0.0000
	              : 0.0000
	            the 0.0000
	       detoured 0.0000
	              , 0.0000
	           also 0.0000

      greedil}'   417582   5 (26)
	           them 0.8000
	            for 0.7000
	              - 0.4000
	             to 0.2000
	      available 0.0369
	        reedily 0.0369
	         winner 0.0369
	          great 0.0369
	       greedier 0.0369
	      greediest 0.0369
	         people 0.0369
	           real 0.0369
	           here 0.0369
	       greedily 0.0369
	      important 0.0369
	           free 0.0369
	        however 0.0369
	             by 0.0059
	             in 0.0000
	            the 0.0000
	             us 0.0000
	             it 0.0000
	              . 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000

              ,   417591   1 (12)
	           </S> 0.0369
	              . 0.0369
	             of 0.0369
	              a 0.0369
	            the 0.0369
	             us 0.0369
	            and 0.0369
	              , 0.0369
	             an 0.0369
	              : 0.0369
	            cia 0.0369
	             iu 0.0369

             as   417593   1 (24)
	              I 0.0369
	             as 0.0369
	            ask 0.0369
	            aas 0.0369
	        working 0.0369
	          works 0.0369
	              " 0.0369
	            arz 0.0369
	            and 0.0369
	            ass 0.0369
	           work 0.0369
	             an 0.0369
	             at 0.0369
	           very 0.0369
	            the 0.0059
	          which 0.0012
	             us 0.0000
	             of 0.0000
	             oh 0.0000
	             iu 0.0000
	              i 0.0000
	             he 0.0000
	             sa 0.0000
	             or 0.0000

            lie   417652 inf (27)
	            his 0.3000
	             iu 0.0369
	            lib 0.0369
	            lei 0.0369
	           lieu 0.0369
	              a 0.0369
	           lava 0.0369
	              i 0.0369
	            cia 0.0369
	            lil 0.0369
	             li 0.0369
	           liee 0.0369
	              . 0.0059
	             of 0.0000
	             it 0.0000
	           lies 0.0000
	              - 0.0000
	           </S> 0.0000
	          there 0.0000
	           like 0.0000
	            lie 0.0000
	              I 0.0000
	            and 0.0000
	            the 0.0000
	           this 0.0000
	         months 0.0000
	              , 0.0000

         weakly   417729   2 (22)
	              . 0.8000
	         weakly 0.2000
	           were 0.0369
	         Weakly 0.0369
	             us 0.0369
	              I 0.0369
	          wealy 0.0369
	          weaky 0.0369
	              - 0.0369
	        bleakly 0.0369
	          short 0.0369
	           will 0.0369
	             as 0.0059
	         weekly 0.0000
	          other 0.0000
	              , 0.0000
	           weak 0.0000
	           well 0.0000
	            the 0.0000
	           </S> 0.0000
	              a 0.0000
	           that 0.0000

           half   417736   3 (30)
	           have 0.8000
	              a 0.1000
	           hall 0.0369
	           half 0.0369
	            had 0.0369
	            has 0.0369
	              I 0.0369
	           lava 0.0369
	           hill 0.0369
	          shall 0.0369
	           halt 0.0369
	           sala 0.0369
	              s 0.0369
	          halfe 0.0369
	          halfs 0.0369
	           hlaf 0.0369
	              A 0.0369
	            hal 0.0369
	          halfa 0.0369
	        similar 0.0059
	            the 0.0000
	          <UNK> 0.0000
	              , 0.0000
	           self 0.0000
	           </S> 0.0000
	             as 0.0000
	            non 0.0000
	              - 0.0000
	              . 0.0000
	            and 0.0000

              -   417740   1 (11)
	              - 0.3333
	            cia 0.0369
	             iu 0.0369
	             of 0.0059
	              a 0.0000
	            and 0.0000
	           </S> 0.0000
	              , 0.0000
	              . 0.0000
	            the 0.0000
	             us 0.0000

            Mr.   417792   3 (22)
	             My 0.5980
	              I 0.0418
	            Mrs 0.0369
	            Mrz 0.0369
	            Mrk 0.0369
	              a 0.0369
	             us 0.0369
	            arz 0.0369
	            cia 0.0369
	             Mr 0.0369
	            are 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ) 0.0000
	              ] 0.0000
	            the 0.0000
	             of 0.0000
	              , 0.0000
	              . 0.0000
	           More 0.0000

             V.   417799 inf (22)
	             to 0.7000
	             Li 0.2000
	             VI 0.1000
	             VT 0.0369
	             M. 0.0369
	             J. 0.0369
	       Flanagan 0.0369
	             A. 0.0369
	             VV 0.0369
	             's 0.0369
	             VA 0.0369
	             TV 0.0369
	              , 0.0059
	              A 0.0000
	              . 0.0000
	              - 0.0000
	             .. 0.0000
	             of 0.0000
	           </S> 0.0000
	              I 0.0000
	          <UNK> 0.0000
	             in 0.0000

          Aplin   417802   1 (31)
	         Apelin 0.0369
	           Alin 0.0369
	        ROBERTS 0.0369
	          Aplin 0.0369
	          Alpin 0.0369
	          Aedon 0.0369
	         Binder 0.0369
	        Aplinki 0.0369
	         Asplin 0.0369
	             J. 0.0369
	          Aplio 0.0369
	          Aplia 0.0369
	           plin 0.0369
	        Appling 0.0369
	             M. 0.0369
	         Alpini 0.0369
	           </S> 0.0059
	          Allen 0.0000
	              C 0.0000
	              1 0.0000
	             .. 0.0000
	       Jacobson 0.0000
	         Merkey 0.0000
	              , 0.0000
	              A 0.0000
	          <UNK> 0.0000
	              - 0.0000
	              . 0.0000
	              I 0.0000
	          Apple 0.0000
	          April 0.0000

      Zoologist   417810   1 (22)
	      Zoologist 1.0000
	      otologist 0.0369
	              s 0.0369
	      Zoologies 0.0369
	             us 0.0369
	         Please 0.0369
	           good 0.0369
	          could 0.0369
	       oologist 0.0369
	              - 0.0235
	           </S> 0.0059
	              , 0.0000
	              " 0.0000
	              . 0.0000
	              A 0.0000
	     Zoologists 0.0000
	      zoologist 0.0000
	              I 0.0000
	              ) 0.0000
	              x 0.0000
	          <UNK> 0.0000
	              a 0.0000

              "   417820   1 (19)
	              , 0.0369
	           </S> 0.0369
	              § 0.0369
	          until 0.0369
	              ¶ 0.0369
	              I 0.0369
	            cia 0.0369
	              ¹ 0.0369
	              ( 0.0369
	              - 0.0369
	            and 0.0369
	              " 0.0369
	          <UNK> 0.0369
	            the 0.0059
	          which 0.0012
	             of 0.0000
	             or 0.0000
	             iu 0.0000
	             us 0.0000

         bridle   417914   3 (23)
	         bridge 0.6000
	              ) 0.6000
	            ... 0.0369
	             of 0.0369
	        bridled 0.0369
	              - 0.0369
	        bridles 0.0369
	         bridel 0.0369
	              e 0.0369
	         bridle 0.0369
	              a 0.0369
	      fashioned 0.0369
	          Title 0.0369
	          Price 0.0369
	          price 0.0369
	           with 0.0369
	              I 0.0369
	        railway 0.0059
	           fish 0.0000
	              . 0.0000
	           </S> 0.0000
	            and 0.0000
	              , 0.0000

      .standing   417926   2 (22)
	              a 0.5000
	       standing 0.1000
	     instanding 0.0369
	          spots 0.0369
	        listing 0.0369
	     upstanding 0.0369
	     opstanding 0.0369
	      stranding 0.0369
	       training 0.0369
	      standings 0.0369
	       building 0.0369
	       Standing 0.0369
	              , 0.0059
	              . 0.0023
	              ( 0.0000
	             or 0.0000
	              I 0.0000
	              - 0.0000
	            and 0.0000
	           </S> 0.0000
	              : 0.0000
	             is 0.0000

           near   417936   1 (21)
	          nears 0.0369
	            nea 0.0369
	             of 0.0369
	            the 0.0369
	              - 0.0369
	           neat 0.0369
	           neal 0.0369
	              I 0.0369
	           year 0.0369
	           </S> 0.0369
	            arz 0.0369
	            cia 0.0369
	           need 0.0369
	              . 0.0369
	            new 0.0369
	              , 0.0369
	           near 0.0369
	          neare 0.0369
	            and 0.0369
	           nera 0.0369
	              a 0.0369

    Clattercutt   417955 inf (22)
	            his 0.8000
	              I 0.0369
	             E. 0.0369
	        Central 0.0369
	     University 0.0369
	    Clattercote 0.0369
	     Clattercot 0.0369
	        College 0.0369
	          Clark 0.0369
	            the 0.0059
	          <UNK> 0.0000
	          water 0.0000
	              a 0.0000
	              - 0.0000
	          their 0.0000
	           this 0.0000
	              , 0.0000
	       Contents 0.0000
	           </S> 0.0000
	             us 0.0000
	           your 0.0000
	              : 0.0000

      Reservoir   417967   1 (19)
	           </S> 0.0369
	              I 0.0369
	              - 0.0369
	        America 0.0369
	              . 0.0369
	            and 0.0369
	              a 0.0369
	      Reservoir 0.0369
	           that 0.0369
	          world 0.0369
	           room 0.0369
	         screen 0.0369
	              , 0.0369
	     Reservoire 0.0369
	       research 0.0369
	          mouth 0.0369
	        Reserve 0.0369
	     Reservoirs 0.0369
	       services 0.0369

            has   417977  14 (21)
	             in 0.7000
	            had 0.3000
	             us 0.0369
	           haas 0.0369
	           Open 0.0369
	            cia 0.0369
	            arz 0.0369
	            hat 0.0369
	            his 0.0369
	           hash 0.0369
	           hast 0.0369
	             ha 0.0369
	           </S> 0.0059
	           Dogs 0.0000
	              , 0.0000
	            may 0.0000
	            has 0.0000
	              A 0.0000
	              . 0.0000
	             as 0.0000
	              - 0.0000

        Carrion   418032  11 (30)
	           part 0.0369
	           self 0.0369
	              e 0.0369
	            non 0.0369
	          years 0.0369
	          minor 0.0369
	              x 0.0369
	        Carnion 0.0369
	      Carrionly 0.0369
	            the 0.0059
	        Service 0.0000
	              a 0.0000
	          <UNK> 0.0000
	            two 0.0000
	         Carion 0.0000
	           high 0.0000
	          three 0.0000
	        Carreon 0.0000
	          their 0.0000
	        service 0.0000
	              , 0.0000
	              3 0.0000
	              - 0.0000
	         Carrio 0.0000
	           this 0.0000
	        Carrion 0.0000
	        carrion 0.0000
	              : 0.0000
	             us 0.0000
	           </S> 0.0000

              -   418039   7 (12)
	            the 0.3000
	            and 0.2000
	              . 0.1000
	             us 0.0369
	            cia 0.0369
	           </S> 0.0059
	             of 0.0000
	             M. 0.0000
	              / 0.0000
	              , 0.0000
	             -- 0.0000
	              - 0.0000

          Crows   418040   1 (31)
	          Crows 0.9000
	           down 0.5000
	           Cows 0.4000
	         esteem 0.0369
	              s 0.0369
	       Crowstep 0.0369
	          being 0.0369
	         shirts 0.0369
	              - 0.0079
	           </S> 0.0059
	          Crown 0.0000
	        Crowson 0.0000
	              I 0.0000
	              a 0.0000
	           rows 0.0000
	              A 0.0000
	          Crowe 0.0000
	           time 0.0000
	            the 0.0000
	           from 0.0000
	              ) 0.0000
	         Corvus 0.0000
	             up 0.0000
	             to 0.0000
	              . 0.0000
	           From 0.0000
	          <UNK> 0.0000
	           Crow 0.0000
	           mail 0.0000
	         Crowds 0.0000
	         Crowns 0.0000

            One   418111   1 (24)
	            One 0.4236
	             On 0.3477
	              I 0.0418
	             us 0.0369
	              a 0.0369
	           Ones 0.0369
	           Onex 0.0369
	           Onen 0.0369
	            cia 0.0369
	             iu 0.0369
	            new 0.0369
	            Ont 0.0369
	            Ono 0.0369
	            one 0.0369
	           Onne 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ) 0.0000
	            and 0.0000
	              . 0.0000
	              , 0.0000
	              ] 0.0000

          toads   418205  21 (32)
	           than 0.7000
	          trade 0.6000
	          books 0.3000
	           that 0.1000
	           toad 0.0369
	            and 0.0369
	           page 0.0369
	              I 0.0369
	          doats 0.0369
	          torax 0.0369
	          todas 0.0369
	           toas 0.0369
	       toadskin 0.0369
	       toadship 0.0369
	              - 0.0369
	        article 0.0369
	              a 0.0369
	          toady 0.0369
	           tods 0.0369
	          years 0.0059
	            new 0.0000
	      companies 0.0000
	          times 0.0000
	        reasons 0.0000
	       national 0.0000
	          toads 0.0000
	              , 0.0000
	             of 0.0000
	            top 0.0000
	              . 0.0000
	          major 0.0000
	           </S> 0.0000

         partly   418233   3 (24)
	         paltry 1.0000
	         portly 0.4000
	         partly 0.1000
	              , 0.0768
	         Hartly 0.0369
	        prattly 0.0369
	         partay 0.0369
	          parly 0.0369
	          parva 0.0369
	          artly 0.0369
	           soul 0.0369
	         people 0.0369
	             of 0.0059
	              a 0.0000
	           para 0.0000
	           part 0.0000
	           page 0.0000
	             's 0.0000
	              . 0.0000
	              - 0.0000
	          party 0.0000
	              I 0.0000
	             or 0.0000
	           </S> 0.0000

        fledged   418240   2 (22)
	           open 0.0917
	             us 0.0369
	              s 0.0369
	          white 0.0369
	           more 0.0369
	         fledge 0.0369
	         ledged 0.0369
	        fledges 0.0369
	        fledged 0.0369
	              I 0.0369
	        because 0.0059
	           </S> 0.0000
	              . 0.0000
	         cloudy 0.0000
	           free 0.0000
	              a 0.0000
	            for 0.0000
	            the 0.0000
	              , 0.0000
	           from 0.0000
	            due 0.0000
	              - 0.0000

       nestling   418248   1 (23)
	             to 0.0369
	              I 0.0369
	       nettling 0.0369
	      nesteling 0.0369
	            the 0.0369
	              a 0.0369
	     nestlingly 0.0369
	       nestling 0.0369
	       Nestling 0.0369
	        Listing 0.0369
	              - 0.0369
	             14 0.0369
	        nesting 0.0369
	              , 0.0059
	           </S> 0.0000
	        version 0.0000
	              . 0.0000
	         global 0.0000
	         online 0.0000
	         member 0.0000
	      nestlings 0.0000
	           Unix 0.0000
	              e 0.0000

          finch   418257   1 (28)
	          since 0.0369
	           finc 0.0369
	           fish 0.0369
	          finch 0.0369
	          minor 0.0369
	           Pica 0.0369
	         finche 0.0369
	           Unix 0.0369
	          first 0.0369
	          finca 0.0369
	         empire 0.0369
	         flinch 0.0369
	           fine 0.0369
	         kernel 0.0369
	          finco 0.0369
	        finches 0.0369
	           find 0.0369
	             in 0.0059
	              - 0.0000
	           </S> 0.0000
	              . 0.0000
	          stage 0.0000
	              , 0.0000
	             of 0.0000
	             on 0.0000
	         period 0.0000
	              a 0.0000
	          birds 0.0000

           also   418264   2 (30)
	             on 0.0541
	           alba 0.0369
	          <UNK> 0.0369
	          allos 0.0369
	          Pales 0.0369
	            arz 0.0369
	            and 0.0369
	        winning 0.0369
	          alsof 0.0369
	              , 0.0369
	           alse 0.0369
	           alsi 0.0369
	         within 0.0369
	            all 0.0369
	            als 0.0369
	           </S> 0.0369
	          aliso 0.0369
	           also 0.0369
	              x 0.0369
	           with 0.0062
	            the 0.0059
	          which 0.0012
	          falso 0.0000
	              i 0.0000
	             or 0.0000
	            foo 0.0000
	           from 0.0000
	          while 0.0000
	           laso 0.0000
	           last 0.0000

      Partridge   418328  13 (26)
	     Partridges 0.6000
	      Cartridge 0.1000
	          cover 0.0369
	          Fauna 0.0369
	        service 0.0369
	          Flora 0.0369
	              i 0.0369
	          Cover 0.0369
	        Corolla 0.0369
	       training 0.0369
	    Partridgean 0.0369
	            the 0.0059
	              I 0.0000
	              a 0.0000
	          <UNK> 0.0000
	           </S> 0.0000
	           more 0.0000
	         others 0.0000
	              , 0.0000
	              - 0.0000
	       services 0.0000
	       Services 0.0000
	        Privacy 0.0000
	          other 0.0000
	      Partridge 0.0000
	              ( 0.0000

         showed   418365   1 (30)
	         showed 0.6000
	           ways 0.0369
	          shoed 0.0369
	              I 0.0369
	          sowed 0.0369
	       unshowed 0.0369
	       thinking 0.0369
	       reshowed 0.0369
	         showen 0.0369
	            the 0.0059
	         shower 0.0000
	       shadowed 0.0000
	          hopes 0.0000
	              , 0.0000
	             to 0.0000
	          those 0.0000
	           mind 0.0000
	           fact 0.0000
	          order 0.0000
	              - 0.0000
	          short 0.0000
	         should 0.0000
	        writing 0.0000
	              . 0.0000
	           </S> 0.0000
	           time 0.0000
	           this 0.0000
	       showered 0.0000
	              a 0.0000
	           some 0.0000

          perch   418402   3 (28)
	           were 0.6000
	              - 0.2000
	       possible 0.0369
	              I 0.0369
	          scale 0.0369
	          perch 0.0369
	          parva 0.0369
	          percy 0.0369
	             do 0.0369
	        percher 0.0369
	             us 0.0369
	           perc 0.0369
	        kitchen 0.0369
	         perche 0.0369
	         Search 0.0369
	          perce 0.0369
	         percha 0.0369
	              i 0.0369
	             by 0.0059
	          sites 0.0000
	              . 0.0000
	           road 0.0000
	           </S> 0.0000
	             it 0.0000
	            the 0.0000
	           part 0.0000
	              , 0.0000
	              a 0.0000

           wing   418425   4 (27)
	           wind 0.4333
	          wings 0.2000
	              a 0.1000
	           want 0.0369
	         wining 0.0369
	          wingi 0.0369
	           Pica 0.0369
	          winge 0.0369
	          minor 0.0369
	            cia 0.0369
	              E 0.0369
	           book 0.0369
	           wing 0.0369
	           wine 0.0369
	             of 0.0059
	           with 0.0000
	           </S> 0.0000
	              I 0.0000
	              , 0.0000
	           sign 0.0000
	          signs 0.0000
	          <UNK> 0.0000
	            win 0.0000
	          heart 0.0000
	           will 0.0000
	              . 0.0000
	              - 0.0000

      hurriedly   418485   1 (25)
	      hurriedly 0.8000
	        hurried 0.4000
	    unhurriedly 0.0369
	     flurriedly 0.0369
	       hurriede 0.0369
	            had 0.0369
	       provided 0.0369
	           held 0.0369
	      Curriella 0.0369
	          heard 0.0369
	      hurrieden 0.0369
	             be 0.0059
	           help 0.0000
	           been 0.0000
	              , 0.0000
	           seen 0.0000
	           have 0.0000
	        provide 0.0000
	              a 0.0000
	           </S> 0.0000
	            the 0.0000
	             to 0.0000
	            yet 0.0000
	              - 0.0000
	              . 0.0000

         croaks   418547   1 (24)
	         croaks 0.9000
	              . 0.1000
	           case 0.0369
	             he 0.0369
	         crooks 0.0369
	        cromaks 0.0369
	          Books 0.0369
	          coaks 0.0369
	         croaky 0.0369
	         rockas 0.0369
	         effect 0.0369
	              , 0.0059
	              a 0.0000
	           from 0.0000
	          croak 0.0000
	              - 0.0000
	           </S> 0.0000
	          cries 0.0000
	         shouts 0.0000
	          cross 0.0000
	          voice 0.0000
	            and 0.0000
	             to 0.0000
	              I 0.0000

      expressed   418554   1 (19)
	    reexpressed 0.0369
	      expressen 0.0369
	        Express 0.0369
	        effects 0.0369
	       expected 0.0369
	      expressed 0.0369
	    unexpressed 0.0369
	       expresse 0.0369
	              i 0.0369
	      Expressed 0.0369
	      expresses 0.0369
	              . 0.0059
	              ( 0.0000
	              a 0.0000
	              - 0.0000
	           </S> 0.0000
	              I 0.0000
	              , 0.0000
	            and 0.0000

     banqueting   418603  11 (22)
	       Anquetin 0.0369
	        January 0.0369
	              a 0.0369
	      residence 0.0369
	     Banqueting 0.0369
	    banquetings 0.0369
	              I 0.0369
	              - 0.0369
	            RPG 0.0369
	            own 0.0059
	              . 0.0000
	          right 0.0000
	             or 0.0000
	       business 0.0000
	           wife 0.0000
	           face 0.0000
	    banquetting 0.0000
	            way 0.0000
	              , 0.0000
	           back 0.0000
	           </S> 0.0000
	     banqueting 0.0000

          ample   418693   1 (24)
	          ample 0.7000
	          maple 0.6000
	             an 0.4667
	           that 0.2000
	         sample 0.0910
	              - 0.0369
	              I 0.0369
	           ampl 0.0369
	         amplae 0.0369
	          amply 0.0369
	          ampli 0.0369
	         amples 0.0369
	         ampler 0.0369
	             as 0.0059
	              a 0.0000
	              , 0.0000
	       material 0.0000
	              . 0.0000
	          other 0.0000
	            all 0.0000
	            are 0.0000
	             am 0.0000
	            and 0.0000
	           </S> 0.0000

           Only   418732  18 (24)
	             On 0.3477
	              I 0.0418
	              a 0.0369
	       choosing 0.0369
	           sala 0.0369
	            Oly 0.0369
	          Onley 0.0369
	          Onlay 0.0369
	           inly 0.0369
	           only 0.0369
	           Oily 0.0369
	           Orly 0.0369
	        OnlySee 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ) 0.0000
	              , 0.0000
	           Only 0.0000
	         Online 0.0000
	              / 0.0000
	              . 0.0000
	              ] 0.0000

          Crows   418788   2 (27)
	         Crowns 0.7000
	          Crows 0.3000
	           Cows 0.1000
	        Crowson 0.0369
	         Corvus 0.0369
	         Crowds 0.0369
	           feet 0.0369
	              a 0.0369
	       Crowstep 0.0369
	          Crowe 0.0369
	              I 0.0369
	              - 0.0059
	              , 0.0000
	              . 0.0000
	           Crow 0.0000
	           from 0.0000
	             of 0.0000
	           rows 0.0000
	          major 0.0000
	          years 0.0000
	          weeks 0.0000
	          Crown 0.0000
	           days 0.0000
	           </S> 0.0000
	           From 0.0000
	           down 0.0000
	          Cross 0.0000

    considering   418840  12 (27)
	  reconsidering 0.9000
	     considerin 0.1000
	   considerings 0.0369
	              . 0.0369
	         within 0.0369
	    considerint 0.0369
	         suburb 0.0369
	            and 0.0369
	    considerino 0.0369
	              i 0.0369
	            the 0.0059
	              , 0.0000
	             we 0.0000
	             it 0.0000
	           more 0.0000
	            use 0.0000
	    considering 0.0000
	              a 0.0000
	             in 0.0000
	            for 0.0000
	           </S> 0.0000
	             by 0.0000
	            can 0.0000
	              - 0.0000
	             to 0.0000
	           that 0.0000
	              I 0.0000

       wildfowl   418923  12 (24)
	         medium 0.0369
	       wildlife 0.0369
	       concerns 0.0369
	              I 0.0369
	     wildfowled 0.0369
	       Wildfowl 0.0369
	              . 0.0369
	      wildfowls 0.0369
	              i 0.0369
	            DVD 0.0369
	            the 0.0059
	             it 0.0000
	       wildfowl 0.0000
	              a 0.0000
	           with 0.0000
	           will 0.0000
	           they 0.0000
	              - 0.0000
	            you 0.0000
	          other 0.0000
	              , 0.0000
	           more 0.0000
	           </S> 0.0000
	        without 0.0000

         j'oung   418947   1 (31)
	          young 0.9000
	         around 0.4000
	          found 0.0619
	          Loung 0.0369
	         ujjong 0.0369
	           joug 0.0369
	          joune 0.0369
	           Tits 0.0369
	         jagung 0.0369
	          jungo 0.0369
	         jejuni 0.0369
	         jugong 0.0369
	              , 0.0369
	           jong 0.0369
	              . 0.0369
	           jung 0.0369
	            own 0.0059
	        posters 0.0000
	          lives 0.0000
	        website 0.0000
	       children 0.0000
	           </S> 0.0000
	     respective 0.0000
	           time 0.0000
	          Young 0.0000
	      customers 0.0000
	           work 0.0000
	         ground 0.0000
	              " 0.0000
	        content 0.0000
	           best 0.0000

        Carrion   419033   1 (29)
	        Carrion 0.9000
	         Carrio 0.1000
	            sub 0.0369
	              , 0.0369
	              A 0.0369
	        Carnion 0.0369
	            non 0.0369
	              x 0.0369
	          three 0.0369
	          trade 0.0369
	           long 0.0369
	            mid 0.0369
	           well 0.0369
	              : 0.0369
	              i 0.0369
	          years 0.0369
	      Carrionly 0.0369
	           </S> 0.0059
	           same 0.0037
	          first 0.0000
	           City 0.0000
	         Carion 0.0000
	              - 0.0000
	            two 0.0000
	        carrion 0.0000
	        Carreon 0.0000
	       American 0.0000
	          <UNK> 0.0000
	      following 0.0000

   considerable   419114   1 (22)
	 inconsiderable 0.1000
	   considerable 0.1000
	        General 0.0369
	        Contact 0.0369
	       November 0.0369
	  considerables 0.0369
	              , 0.0369
	        Tickets 0.0369
	  considerabile 0.0369
	           </S> 0.0059
	              A 0.0000
	              a 0.0000
	              [ 0.0000
	              : 0.0000
	            The 0.0000
	            the 0.0000
	   considerably 0.0000
	              " 0.0000
	              I 0.0000
	              . 0.0000
	              - 0.0000
	          <UNK> 0.0000

        numbers   419129  19 (26)
	              a 0.0369
	            you 0.0369
	              : 0.0369
	       numberas 0.0369
	      numberers 0.0369
	            not 0.0369
	        members 0.0369
	           will 0.0369
	       Enumbers 0.0369
	       Inumbers 0.0369
	       violence 0.0369
	        numbere 0.0369
	              - 0.0369
	        further 0.0369
	       numberes 0.0369
	              I 0.0369
	        numbero 0.0369
	         amount 0.0059
	           time 0.0000
	         number 0.0000
	           </S> 0.0000
	      abasement 0.0000
	              . 0.0000
	              , 0.0000
	         Number 0.0000
	        numbers 0.0000

         arrive   419137   2 (22)
	        article 0.7000
	         arrive 0.3000
	          shown 0.3000
	        arriver 0.0369
	        arrives 0.0369
	         update 0.0369
	         africa 0.0369
	         arrivo 0.0369
	       arrivera 0.0369
	          based 0.0369
	         arriva 0.0369
	             of 0.0059
	          above 0.0000
	            are 0.0000
	              - 0.0000
	           </S> 0.0000
	              , 0.0000
	        arrived 0.0000
	         listed 0.0000
	              I 0.0000
	              . 0.0000
	              a 0.0000

        Seebohm   419178   1 (24)
	           Sebo 0.0369
	           Seeb 0.0369
	        Sexbomb 0.0369
	          Seebe 0.0369
	        Seebohm 0.0369
	        Sheboon 0.0369
	       Seeboden 0.0369
	        Seebach 0.0369
	         Seeham 0.0369
	       Beerbohm 0.0369
	              a 0.0369
	           </S> 0.0059
	              , 0.0000
	              ] 0.0000
	            See 0.0000
	              - 0.0000
	           Some 0.0000
	              " 0.0000
	              . 0.0000
	              ) 0.0000
	         Select 0.0000
	              A 0.0000
	             It 0.0000
	              I 0.0000

             's   419185   1 (18)
	             's 0.8000
	             ss 0.0369
	             '' 0.0369
	             iu 0.0369
	             so 0.0369
	            cia 0.0369
	             us 0.0369
	              a 0.0369
	              , 0.0059
	              N 0.0000
	             is 0.0000
	       Rowntree 0.0000
	              - 0.0000
	             as 0.0000
	           </S> 0.0000
	          <UNK> 0.0000
	              . 0.0000
	              ) 0.0000

        Bonhote   419344 inf (37)
	       Bonhomme 0.8000
	        summary 0.0369
	              I 0.0369
	              a 0.0369
	         Bonete 0.0369
	         Bonate 0.0369
	         nonhot 0.0369
	          world 0.0369
	       nonhotel 0.0369
	           Bote 0.0369
	              . 0.0369
	        example 0.0369
	        Bonmots 0.0369
	           list 0.0369
	           hote 0.0369
	              - 0.0369
	            not 0.0369
	         Bonthe 0.0369
	             it 0.0369
	             to 0.0369
	      Amonhotep 0.0369
	              A 0.0369
	           into 0.0369
	        Benhote 0.0369
	       Chairman 0.0059
	              , 0.0000
	           </S> 0.0000
	           Bush 0.0000
	             J. 0.0000
	      President 0.0000
	          Bohot 0.0000
	           John 0.0000
	          Smith 0.0000
	          <UNK> 0.0000
	        Speaker 0.0000
	             M. 0.0000
	          Boote 0.0000

             's   419351  15 (17)
	              - 0.2000
	             A. 0.0369
	              . 0.0369
	          hopes 0.0369
	             so 0.0369
	             as 0.0369
	             J. 0.0369
	              I 0.0369
	             is 0.0369
	             us 0.0369
	             ss 0.0369
	              ' 0.0369
	              a 0.0369
	              , 0.0059
	         Foster 0.0000
	           </S> 0.0000
	             's 0.0000

   communicated   419366   2 (23)
	             or 0.1000
	           </S> 0.0369
	            but 0.0369
	            can 0.0369
	              " 0.0369
	   communicated 0.0369
	         online 0.0369
	      knowledge 0.0369
	   communicatee 0.0369
	          under 0.0369
	 uncommunicated 0.0369
	   communicates 0.0369
	              a 0.0369
	            and 0.0369
	 incommunicated 0.0369
	    communicate 0.0369
	              I 0.0369
	          <UNK> 0.0369
	            the 0.0059
	 excommunicated 0.0000
	              i 0.0000
	          which 0.0000
	             it 0.0000

       November   419379   2 (23)
	           more 0.1000
	       Novembro 0.0369
	       Nobember 0.0369
	              I 0.0369
	      Novembers 0.0369
	      Novembery 0.0369
	       November 0.0369
	       Novumbra 0.0369
	       provides 0.0369
	          other 0.0369
	       Novembre 0.0369
	             to 0.0059
	            and 0.0000
	             by 0.0000
	              - 0.0000
	              . 0.0000
	           over 0.0000
	           </S> 0.0000
	           with 0.0000
	              , 0.0000
	            the 0.0000
	        clearly 0.0000
	              a 0.0000

           1896   419393 inf (29)
	            see 0.1000
	           said 0.1000
	             us 0.0369
	              I 0.0369
	              s 0.0369
	              , 0.0369
	           1976 0.0369
	             as 0.0369
	           2003 0.0369
	           </S> 0.0369
	           1966 0.0369
	          visit 0.0369
	         writes 0.0369
	            and 0.0369
	          after 0.0369
	           2004 0.0369
	           2005 0.0369
	              . 0.0369
	              a 0.0369
	           1986 0.0369
	           1989 0.0369
	           1996 0.0369
	              - 0.0369
	            the 0.0059
	              i 0.0000
	             or 0.0000
	          which 0.0000
	             in 0.0000
	             of 0.0000

        Carrion   419418   2 (27)
	        carrion 0.7000
	        Carrion 0.1000
	         Carion 0.1000
	              e 0.0369
	      Carrionly 0.0369
	          White 0.0369
	              t 0.0369
	              i 0.0369
	        Carnion 0.0369
	           self 0.0369
	        service 0.0369
	            Red 0.0369
	            are 0.0177
	            the 0.0059
	         Carrio 0.0000
	           more 0.0000
	           from 0.0000
	          other 0.0000
	          <UNK> 0.0000
	              a 0.0000
	              , 0.0000
	              ( 0.0000
	              I 0.0000
	        Carreon 0.0000
	              - 0.0000
	            non 0.0000
	           </S> 0.0000

              -   419425   9 (14)
	            the 0.3000
	            and 0.2000
	              . 0.1000
	             us 0.0369
	       Counting 0.0369
	          lined 0.0369
	            cia 0.0369
	           </S> 0.0059
	              / 0.0000
	             of 0.0000
	             -- 0.0000
	             M. 0.0000
	              , 0.0000
	              - 0.0000

          Crows   419426   1 (37)
	          Crows 0.9000
	           down 0.5000
	           Cows 0.4000
	           site 0.0369
	              s 0.0369
	             is 0.0369
	       Crowstep 0.0369
	          there 0.0369
	             we 0.0369
	          which 0.0369
	        matches 0.0369
	            ups 0.0369
	           they 0.0369
	              - 0.0079
	           </S> 0.0059
	           rows 0.0000
	             up 0.0000
	             to 0.0000
	              I 0.0000
	           mail 0.0000
	         Corvus 0.0000
	           time 0.0000
	         Crowds 0.0000
	         Crowns 0.0000
	           Crow 0.0000
	             it 0.0000
	          Crowe 0.0000
	          <UNK> 0.0000
	              ) 0.0000
	            the 0.0000
	              . 0.0000
	           From 0.0000
	        Crowson 0.0000
	              a 0.0000
	           from 0.0000
	          Crown 0.0000
	              A 0.0000

            the   419461   1 (19)
	             as 0.0369
	           them 0.0369
	             us 0.0369
	              I 0.0369
	            cia 0.0369
	             iu 0.0369
	              . 0.0369
	           thee 0.0369
	            teh 0.0369
	           they 0.0369
	            thy 0.0369
	            tho 0.0369
	            the 0.0369
	              a 0.0369
	              , 0.0369
	           </S> 0.0059
	              ) 0.0000
	              " 0.0000
	              } 0.0000

           when   419477   8 (21)
	          wheen 0.0369
	          whens 0.0369
	          whenu 0.0369
	          wehen 0.0369
	           whey 0.0369
	           whet 0.0369
	            flu 0.0059
	           Then 0.0000
	           when 0.0000
	        feeders 0.0000
	             of 0.0000
	              I 0.0000
	            who 0.0000
	             is 0.0000
	              . 0.0000
	           were 0.0000
	              - 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	             in 0.0000

        actions   419562  14 (25)
	       auctions 0.7000
	        cations 0.0369
	       Factions 0.0369
	              I 0.0369
	        actione 0.0369
	              a 0.0369
	        product 0.0369
	       actionis 0.0369
	       actiones 0.0369
	        against 0.0369
	        actioni 0.0369
	        Nations 0.0369
	             to 0.0059
	              - 0.0000
	              ( 0.0000
	           </S> 0.0000
	              , 0.0000
	              . 0.0000
	             on 0.0000
	            and 0.0000
	          about 0.0000
	        actions 0.0000
	         action 0.0000
	            for 0.0000
	       factions 0.0000

          moves   419593  16 (31)
	             of 0.0369
	         movest 0.0369
	         emoves 0.0369
	          mouse 0.0369
	          mover 0.0369
	         Corvus 0.0369
	           most 0.0369
	              . 0.0369
	       noticing 0.0369
	             's 0.0369
	         movese 0.0369
	             us 0.0369
	              I 0.0369
	          Pales 0.0369
	             be 0.0059
	           </S> 0.0000
	        noticed 0.0000
	          moves 0.0000
	            had 0.0000
	           move 0.0000
	           more 0.0000
	             to 0.0000
	              , 0.0000
	            any 0.0000
	            for 0.0000
	              a 0.0000
	          moved 0.0000
	            the 0.0000
	             in 0.0000
	           over 0.0000
	              - 0.0000

           bird   419625  19 (32)
	           body 0.1000
	             be 0.1000
	            but 0.0917
	           brid 0.0369
	           Pica 0.0369
	            arz 0.0369
	           birt 0.0369
	           biro 0.0369
	          birdy 0.0369
	         attack 0.0369
	        Expanse 0.0369
	     Collection 0.0369
	             of 0.0369
	          birdi 0.0369
	              I 0.0369
	        Society 0.0369
	            bir 0.0369
	         Soviet 0.0059
	              , 0.0000
	          birds 0.0000
	       Yugoslav 0.0000
	              - 0.0000
	              " 0.0000
	            big 0.0000
	            cia 0.0000
	           </S> 0.0000
	      president 0.0000
	             by 0.0000
	           bird 0.0000
	          <UNK> 0.0000
	              . 0.0000
	             is 0.0000

           Grey   419631   9 (31)
	          Greys 0.5000
	           Gery 0.1000
	           ICTY 0.0369
	          Greya 0.0369
	           Grye 0.0369
	         Corvus 0.0369
	         Sheryl 0.0369
	          <UNK> 0.0059
	              1 0.0000
	            arz 0.0000
	           Grey 0.0000
	              s 0.0000
	            Get 0.0000
	             if 0.0000
	              ( 0.0000
	              2 0.0000
	           Grew 0.0000
	           Greg 0.0000
	             or 0.0000
	              - 0.0000
	              a 0.0000
	              A 0.0000
	           Free 0.0000
	            the 0.0000
	           free 0.0000
	            Gre 0.0000
	            The 0.0000
	              ) 0.0000
	           </S> 0.0000
	              I 0.0000
	              b 0.0000

           Crow   419636  14 (24)
	          Crown 0.3167
	              A 0.0369
	    biographies 0.0369
	          corax 0.0369
	           Crop 0.0369
	              a 0.0369
	           Cron 0.0369
	            arz 0.0369
	         Coorow 0.0369
	              I 0.0369
	          Suede 0.0369
	          Crowe 0.0369
	           </S> 0.0059
	          Green 0.0000
	              . 0.0000
	              ) 0.0000
	           From 0.0000
	              , 0.0000
	            Car 0.0000
	           Crow 0.0000
	           from 0.0000
	              - 0.0000
	             Co 0.0000
	          <UNK> 0.0000

         aviary   419722   1 (26)
	         aviary 0.8000
	             of 0.4000
	          every 0.1000
	              I 0.0369
	              a 0.0369
	         vivary 0.0369
	            are 0.0369
	         aviara 0.0369
	          aviar 0.0369
	          State 0.0369
	        ability 0.0369
	          viary 0.0369
	       aviatory 0.0369
	         aviare 0.0369
	          right 0.0369
	             or 0.0059
	              . 0.0000
	        January 0.0000
	         family 0.0000
	              , 0.0000
	             to 0.0000
	          world 0.0000
	          thing 0.0000
	          avian 0.0000
	           </S> 0.0000
	              - 0.0000

Familx-C0K]'I1K-E   419777 inf (21)
	           will 0.6000
	          again 0.0369
	         Submit 0.0369
	         normal 0.0369
	           file 0.0369
	       diameter 0.0369
	          basis 0.0369
	             10 0.0369
	              ) 0.0333
	           </S> 0.0059
	              - 0.0000
	              I 0.0000
	              A 0.0000
	           said 0.0000
	          <UNK> 0.0000
	              . 0.0000
	              , 0.0000
	             -- 0.0000
	              a 0.0000
	              C 0.0000
	            and 0.0000

              .   419794   1 (15)
	              : 0.0369
	       13.99CAD 0.0369
	           etc. 0.0369
	              - 0.0369
	             us 0.0369
	              . 0.0369
	            ... 0.0369
	            the 0.0369
	           </S> 0.0369
	            and 0.0369
	              , 0.0369
	              " 0.0369
	            cia 0.0369
	             iu 0.0369
	             of 0.0369

        Collins   419815   1 (26)
	      Collinson 0.0369
	              a 0.0369
	        College 0.0369
	         corone 0.0369
	        Collins 0.0369
	        selling 0.0369
	         Collin 0.0369
	         Collis 0.0369
	         Coming 0.0369
	       Collines 0.0369
	       Collings 0.0369
	       Collison 0.0369
	         Corvus 0.0369
	        Colling 0.0369
	        Colline 0.0369
	           </S> 0.0059
	             In 0.0000
	              - 0.0000
	              / 0.0000
	              " 0.0000
	              ) 0.0000
	              I 0.0000
	              . 0.0000
	              A 0.0000
	              ] 0.0000
	              , 0.0000

          comix   419823   4 (27)
	              . 0.5250
	              - 0.3683
	         coming 0.1000
	        commixt 0.0369
	              C 0.0369
	          80523 0.0369
	         commix 0.0369
	          comix 0.0369
	          corax 0.0369
	            cia 0.0369
	              A 0.0369
	          comic 0.0369
	           comi 0.0369
	              a 0.0369
	          comin 0.0369
	        comixes 0.0369
	        comixed 0.0369
	              , 0.0059
	         Avenue 0.0000
	     Publishers 0.0000
	          <UNK> 0.0000
	              ) 0.0000
	             FS 0.0000
	           </S> 0.0000
	         Street 0.0000
	           come 0.0000
	          comes 0.0000

           LiNN   419830 inf (35)
	             pp 0.1857
	           </S> 0.0369
	           List 0.0369
	            yes 0.0369
	             Li 0.0369
	           yeah 0.0369
	           LiON 0.0369
	            NiL 0.0369
	            cia 0.0369
	           Pica 0.0369
	          LLiNK 0.0369
	     bestiality 0.0369
	            LNN 0.0369
	         Wagner 0.0369
	          <UNK> 0.0369
	          beast 0.0369
	      zoophilia 0.0369
	          Miami 0.0369
	              , 0.0369
	      Melbourne 0.0369
	              " 0.0369
	   respectively 0.0369
	              a 0.0369
	           LiNK 0.0369
	           LiNa 0.0369
	              x 0.0369
	           with 0.0062
	            the 0.0059
	          which 0.0012
	           will 0.0000
	            you 0.0000
	            too 0.0000
	             iu 0.0000
	              i 0.0000
	             or 0.0000

              .   419834   1 (16)
	            the 0.0369
	              - 0.0369
	          comix 0.0369
	            ... 0.0369
	           </S> 0.0369
	              £ 0.0369
	             us 0.0369
	             of 0.0369
	         hentai 0.0369
	         stoich 0.0369
	            sex 0.0369
	            cia 0.0369
	              . 0.0369
	            and 0.0369
	              , 0.0369
	              a 0.0369

              "   419837 inf (15)
	              ( 0.0910
	            cia 0.0369
	             iu 0.0369
	             us 0.0369
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              , 0.0000
	              ) 0.0000
	          <UNK> 0.0000
	            the 0.0000
	              . 0.0000
	              ] 0.0000
	             of 0.0000
	            and 0.0000

          ^OUND   419841 inf (26)
	             OU 0.9000
	           FUND 0.1000
	              a 0.0369
	            OUN 0.0369
	            OND 0.0369
	        popular 0.0369
	           UODN 0.0369
	          ROUNB 0.0369
	           BUND 0.0369
	              I 0.0369
	          GOUNN 0.0369
	         spread 0.0369
	           </S> 0.0059
	           YOUR 0.0000
	            YOU 0.0000
	            UND 0.0000
	              " 0.0000
	              x 0.0000
	              ) 0.0000
	              , 0.0000
	              . 0.0000
	              > 0.0000
	           UNDO 0.0000
	            AND 0.0000
	          COUNT 0.0000
	              - 0.0000

     throughout   419847   1 (17)
	              , 0.0369
	           </S> 0.0369
	              s 0.0369
	              . 0.0369
	              a 0.0369
	              I 0.0369
	              " 0.0369
	    throughputs 0.0369
	              - 0.0369
	        through 0.0369
	              2 0.0369
	     throughout 0.0369
	       throughs 0.0369
	              A 0.0369
	     throughput 0.0369
	              3 0.0369
	          <UNK> 0.0369

         Europe   419858   1 (23)
	         Europe 0.7000
	          Europ 0.3000
	         Euorpe 0.0369
	         middle 0.0369
	           hope 0.0369
	        Europea 0.0369
	        Europes 0.0369
	         corone 0.0369
	          south 0.0369
	         Europs 0.0369
	          Euros 0.0369
	          major 0.0369
	            the 0.0059
	            all 0.0000
	         Europa 0.0000
	       European 0.0000
	           this 0.0000
	              , 0.0000
	             an 0.0000
	           </S> 0.0000
	              a 0.0000
	              . 0.0000
	              - 0.0000

           loug   419879  17 (36)
	            lou 0.6000
	           lout 0.3000
	          lough 0.0369
	         loughs 0.0369
	              I 0.0369
	             iu 0.0369
	           logu 0.0369
	          world 0.0369
	    Mississippi 0.0369
	        country 0.0369
	           city 0.0369
	           page 0.0369
	         lougre 0.0369
	           year 0.0369
	          luogo 0.0369
	            the 0.0059
	             it 0.0000
	           your 0.0000
	            log 0.0000
	              a 0.0000
	           </S> 0.0000
	           long 0.0000
	            you 0.0000
	           ulog 0.0000
	              - 0.0000
	            and 0.0000
	           loup 0.0000
	              . 0.0000
	           Your 0.0000
	           this 0.0000
	              , 0.0000
	        bidding 0.0000
	           that 0.0000
	           loud 0.0000
	             us 0.0000
	           lava 0.0000

              .   419883   1 (12)
	            the 0.0369
	            ... 0.0369
	              - 0.0369
	            and 0.0369
	             of 0.0369
	              . 0.0369
	            cia 0.0369
	              , 0.0369
	             us 0.0369
	             iu 0.0369
	          <UNK> 0.0059
	           </S> 0.0000

            10°   419885 inf (19)
	              I 0.0418
	             us 0.0369
	            cia 0.0369
	             iu 0.0369
	              1 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	             of 0.0000
	              ) 0.0000
	              . 0.0000
	            the 0.0000
	           Also 0.0000
	      ChangeLog 0.0000
	        However 0.0000
	              , 0.0000
	              ] 0.0000
	            and 0.0000

              ,   419888   1 (14)
	     autogen.sh 0.0369
	            and 0.0369
	          <UNK> 0.0369
	             iu 0.0369
	             us 0.0369
	           </S> 0.0369
	            cia 0.0369
	              ) 0.0369
	             of 0.0369
	              . 0.0369
	              , 0.0369
	      configure 0.0369
	              - 0.0369
	            the 0.0369

            and   419890   2 (23)
	           tako 0.2000
	           beat 0.0369
	            ant 0.0369
	              " 0.0369
	            any 0.0369
	           andy 0.0369
	           anda 0.0369
	        drepper 0.0369
	            arz 0.0369
	           alba 0.0369
	          <UNK> 0.0369
	              s 0.0369
	            and 0.0369
	             an 0.0369
	           </S> 0.0369
	              , 0.0369
	              I 0.0369
	           aand 0.0369
	            the 0.0059
	          which 0.0012
	            per 0.0000
	              i 0.0000
	             or 0.0000

             iu   419894   1 (20)
	             in 0.0689
	      southeast 0.0369
	       northern 0.0369
	              . 0.0369
	            iun 0.0369
	           uiui 0.0369
	            the 0.0059
	              , 0.0000
	             us 0.0000
	           </S> 0.0000
	             ui 0.0000
	            ius 0.0000
	             iu 0.0000
	            cia 0.0000
	              - 0.0000
	            and 0.0000
	             is 0.0000
	              I 0.0000
	              a 0.0000
	             it 0.0000

           Asia   419897   2 (25)
	             it 1.0000
	           Asia 0.0369
	            cia 0.0369
	           said 0.0369
	           that 0.0369
	           Asie 0.0369
	          Asiad 0.0369
	          Assia 0.0369
	            Asi 0.0369
	             As 0.0369
	              I 0.0369
	           Asif 0.0369
	           sala 0.0369
	            All 0.0369
	           Asai 0.0369
	          Asian 0.0369
	           </S> 0.0059
	              , 0.0000
	              a 0.0000
	            the 0.0000
	          <UNK> 0.0000
	              s 0.0000
	              - 0.0000
	            and 0.0000
	              . 0.0000

        extends   419902  16 (21)
	         events 0.7000
	       extended 0.5000
	         extend 0.3000
	      coextends 0.0369
	        extendi 0.0369
	        textend 0.0369
	        extenta 0.0369
	       extensor 0.0369
	         extent 0.0369
	      extendens 0.0369
	        extende 0.0369
	       extendes 0.0369
	       extendis 0.0369
	        extensa 0.0369
	           </S> 0.0059
	        extends 0.0000
	              . 0.0000
	            and 0.0000
	              , 0.0000
	        Pacific 0.0000
	              - 0.0000

              I   419910 inf (26)
	             of 0.7000
	             us 0.4000
	            and 0.3000
	             HI 0.0369
	             MI 0.0369
	             WI 0.0369
	           IIII 0.0369
	            cia 0.0369
	             iu 0.0369
	              : 0.0369
	             If 0.0369
	             It 0.0369
	        Pacific 0.0369
	            III 0.0369
	             II 0.0369
	         pupils 0.0369
	              - 0.0369
	       students 0.0369
	         rights 0.0369
	             to 0.0059
	            the 0.0000
	             In 0.0000
	              . 0.0000
	           from 0.0000
	              , 0.0000
	           </S> 0.0000

              '   419912 inf (22)
	         headed 0.0369
	            cia 0.0369
	          drove 0.0369
	             'm 0.0059
	            and 0.0000
	              . 0.0000
	             of 0.0000
	           went 0.0000
	             am 0.0000
	           have 0.0000
	              , 0.0000
	            'll 0.0000
	            was 0.0000
	             'd 0.0000
	           </S> 0.0000
	              - 0.0000
	           just 0.0000
	             iu 0.0000
	            've 0.0000
	            the 0.0000
	             us 0.0000
	           live 0.0000

      Turkestan   419923  11 (26)
	     Turkestani 0.0369
	     Tuerkistan 0.0369
	        England 0.0369
	           view 0.0369
	        Toronto 0.0369
	        Baghdad 0.0369
	              A 0.0369
	       students 0.0369
	          great 0.0369
	            the 0.0059
	      Turkistan 0.0000
	              - 0.0000
	             it 0.0000
	            The 0.0000
	             us 0.0000
	              a 0.0000
	          <UNK> 0.0000
	              : 0.0000
	      Turkestan 0.0000
	           time 0.0000
	         Turkes 0.0000
	              , 0.0000
	           </S> 0.0000
	           this 0.0000
	          their 0.0000
	           them 0.0000

      Palestine   419997   1 (22)
	      Palestine 0.9000
	             us 0.1000
	         online 0.0369
	     Palestinec 0.0369
	      Palestino 0.0369
	           been 0.0369
	          Laden 0.0369
	              I 0.0369
	      Palestina 0.0369
	      Palestien 0.0369
	    Palestinean 0.0369
	            the 0.0059
	              - 0.0000
	           that 0.0000
	              . 0.0000
	              , 0.0000
	             it 0.0000
	           </S> 0.0000
	              a 0.0000
	              e 0.0000
	           time 0.0000
	           them 0.0000

       Examples   420019  14 (21)
	        Example 0.8000
	              , 0.1000
	              a 0.0369
	             us 0.0369
	        example 0.0369
	           East 0.0369
	      Treasures 0.0369
	            and 0.0369
	      JExamples 0.0369
	       examples 0.0369
	      Exemplars 0.0369
	         Europe 0.0369
	           </S> 0.0059
	              ] 0.0000
	              " 0.0000
	       Examples 0.0000
	              - 0.0000
	              I 0.0000
	              A 0.0000
	              . 0.0000
	              ) 0.0000

       replaced   420075   1 (24)
	       required 0.0369
	        gelding 0.0369
	       replaced 0.0369
	       replacer 0.0369
	        replace 0.0369
	       replicad 0.0369
	       declined 0.0369
	      preplaced 0.0369
	             us 0.0369
	        relaced 0.0369
	          backs 0.0369
	              a 0.0369
	           tone 0.0369
	              I 0.0369
	       replaces 0.0369
	        related 0.0369
	              , 0.0059
	         clouds 0.0000
	              . 0.0000
	              - 0.0000
	           mare 0.0000
	             or 0.0000
	          place 0.0000
	           </S> 0.0000

     capcllauns   420125 inf (30)
	        callans 0.0369
	           1895 0.0369
	             J. 0.0369
	           1907 0.0369
	            the 0.0369
	     capillaris 0.0369
	       capelans 0.0369
	       capellas 0.0369
	              a 0.0369
	     cabillauds 0.0369
	             A. 0.0369
	      capellane 0.0369
	      calculans 0.0369
	        account 0.0369
	        because 0.0369
	     capellanes 0.0369
	     capillatus 0.0369
	       capillas 0.0369
	           </S> 0.0059
	              . 0.0000
	     Department 0.0000
	        elegans 0.0000
	              I 0.0000
	              " 0.0000
	             .. 0.0000
	              - 0.0000
	              A 0.0000
	          <UNK> 0.0000
	              , 0.0000
	             to 0.0000

              ;   420136   1 (11)
	           </S> 0.0369
	              . 0.0369
	              s 0.0369
	             A. 0.0369
	              - 0.0369
	            and 0.0369
	            the 0.0369
	             us 0.0369
	              ; 0.0369
	              , 0.0369
	             of 0.0369

            but   420138   1 (20)
	           butt 0.0369
	            but 0.0369
	            the 0.0369
	            tub 0.0369
	             iu 0.0369
	            cia 0.0369
	           buts 0.0369
	            But 0.0369
	             be 0.0369
	            buy 0.0369
	            bus 0.0369
	             by 0.0369
	             us 0.0369
	             bu 0.0369
	           </S> 0.0059
	          <UNK> 0.0000
	              ) 0.0000
	              ] 0.0000
	              " 0.0000
	              } 0.0000

       Siberian   420142   7 (22)
	        Siberia 0.7000
	       Siberiae 0.0369
	       Siberiam 0.0369
	      Siberians 0.0369
	           wild 0.0369
	              I 0.0059
	             it 0.0000
	          there 0.0000
	          these 0.0000
	              " 0.0000
	            the 0.0000
	              , 0.0000
	              i 0.0000
	             no 0.0000
	       Siberian 0.0000
	           were 0.0000
	              a 0.0000
	          <UNK> 0.0000
	             if 0.0000
	          their 0.0000
	        Serbian 0.0000
	           </S> 0.0000

          birds   420151  24 (34)
	            Sea 0.8000
	        Huskies 0.2000
	        Ginseng 0.2000
	           bids 0.0369
	          there 0.0369
	              a 0.0369
	         birdes 0.0369
	           they 0.0369
	        birdsit 0.0369
	            not 0.0369
	          Parus 0.0369
	         Turdus 0.0369
	          First 0.0369
	              i 0.0369
	              I 0.0369
	            you 0.0369
	            the 0.0369
	         Vbirds 0.0369
	          birdy 0.0369
	          birda 0.0369
	             by 0.0369
	         bridds 0.0369
	          Husky 0.0059
	              - 0.0000
	      Orchestra 0.0000
	              . 0.0000
	       Accentor 0.0000
	          birds 0.0000
	           bird 0.0000
	             is 0.0000
	          first 0.0000
	              , 0.0000
	           </S> 0.0000
	         tigers 0.0000

          birds   420201   1 (31)
	           that 0.0369
	  administrator 0.0369
	            you 0.0369
	         birdes 0.0369
	          Parus 0.0369
	              I 0.0369
	             of 0.0369
	           bids 0.0369
	         Turdus 0.0369
	          birdy 0.0369
	          birda 0.0369
	         Vbirds 0.0369
	        birdsit 0.0369
	          birds 0.0369
	              a 0.0369
	              i 0.0369
	          being 0.0369
	         bridds 0.0369
	       speakers 0.0369
	           Gulf 0.0059
	              , 0.0000
	              ( 0.0000
	           Wars 0.0000
	             by 0.0000
	           bird 0.0000
	          first 0.0000
	              . 0.0000
	              - 0.0000
	            rug 0.0000
	           </S> 0.0000
	         Empire 0.0000

              -   420249   3 (17)
	             J. 0.0369
	              s 0.0369
	              - 0.0235
	           </S> 0.0059
	          <UNK> 0.0000
	            she 0.0000
	             of 0.0000
	            and 0.0000
	             he 0.0000
	              ] 0.0000
	             us 0.0000
	              ) 0.0000
	              , 0.0000
	           said 0.0000
	             -- 0.0000
	              . 0.0000
	            the 0.0000

     Sceboli??!   420251 inf (36)
	        replied 0.0369
	              c 0.0369
	            REV 0.0369
	         Cicero 0.0369
	           Sale 0.0369
	         Choice 0.0369
	              s 0.0369
	          above 0.0369
	            Vol 0.0369
	           side 0.0369
	              ! 0.0369
	              o 0.0369
	              , 0.0369
	         People 0.0369
	  Subordination 0.0369
	             ed 0.0369
	           says 0.0369
	             el 0.0369
	           John 0.0369
	              ? 0.0369
	           said 0.0369
	        service 0.0369
	          below 0.0369
	           </S> 0.0059
	          <UNK> 0.0000
	              a 0.0000
	            the 0.0000
	              I 0.0000
	              " 0.0000
	            old 0.0000
	            Feb 0.0000
	              A 0.0000
	             up 0.0000
	              - 0.0000
	          Click 0.0000
	              . 0.0000

              .   420261   1 (16)
	              " 0.0369
	             of 0.0369
	            ... 0.0369
	             us 0.0369
	           </S> 0.0369
	             iu 0.0369
	            the 0.0369
	         pencil 0.0369
	              . 0.0369
	            and 0.0369
	              = 0.0369
	         Rogers 0.0369
	             W. 0.0369
	              , 0.0369
	            cia 0.0369
	              - 0.0369

             An   420264   1 (20)
	             An 1.0000
	             As 0.2611
	             in 0.0634
	              I 0.0418
	             nA 0.0369
	             AM 0.0369
	            Ann 0.0369
	             us 0.0369
	             iu 0.0369
	            cia 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ) 0.0000
	              . 0.0000
	              ] 0.0000
	            Any 0.0000
	            And 0.0000
	              , 0.0000

        England   420297   1 (23)
	        Englnad 0.0369
	         Englan 0.0369
	          place 0.0369
	        England 0.0369
	    programmers 0.0369
	        English 0.0369
	       Englands 0.0369
	      Englaland 0.0369
	        Englund 0.0369
	            the 0.0059
	             be 0.0000
	            all 0.0000
	            get 0.0000
	              a 0.0000
	            you 0.0000
	           land 0.0000
	            try 0.0000
	           that 0.0000
	             us 0.0000
	            use 0.0000
	           read 0.0000
	        include 0.0000
	             do 0.0000

         whilst   420379   1 (22)
	            dog 0.0369
	          which 0.0369
	           mate 0.0369
	          whils 0.0369
	        whistle 0.0369
	        whilest 0.0369
	              - 0.0369
	         whylst 0.0369
	              a 0.0369
	          while 0.0369
	      developed 0.0369
	         whilst 0.0369
	              , 0.0369
	              . 0.0369
	          whist 0.0369
	         Whilst 0.0369
	          white 0.0369
	              I 0.0369
	           </S> 0.0059
	              " 0.0000
	              } 0.0000
	              ) 0.0000

     Throughout   420440 inf (21)
	              A 0.1000
	              I 0.1000
	   Throughabout 0.0369
	     Throughput 0.0369
	     throughout 0.0369
	   Thoroughwort 0.0369
	    Thoroughput 0.0369
	              a 0.0369
	     throughput 0.0369
	        Through 0.0369
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	            The 0.0000
	              / 0.0000
	              ] 0.0000
	          There 0.0000
	              , 0.0000
	           That 0.0000
	              - 0.0000
	              . 0.0000

  interbreeding   420529  17 (25)
	     interbreed 0.3167
	              a 0.0369
	          <UNK> 0.0369
	       stirring 0.0369
	           </S> 0.0369
	              " 0.0369
	            but 0.0369
	              x 0.0369
	        working 0.0369
	  Interbreeding 0.0369
	              I 0.0369
	            and 0.0369
	    interbreeds 0.0369
	              ( 0.0369
	         online 0.0369
	            the 0.0059
	   interceeding 0.0000
	          other 0.0000
	  interblending 0.0000
	   interbedding 0.0000
	          which 0.0000
	             or 0.0000
	  interbreeding 0.0000
	          there 0.0000
	            who 0.0000

   occasionally   420543   2 (22)
	              - 0.2000
	   occasionally 0.0369
	     occasional 0.0369
	       together 0.0369
	   occasionably 0.0369
	              I 0.0369
	     originated 0.0369
	   Occasionally 0.0369
	  occassionally 0.0369
	           only 0.0369
	        contact 0.0369
	            one 0.0369
	              a 0.0369
	        closely 0.0369
	           with 0.0059
	              , 0.0000
	            and 0.0000
	        between 0.0000
	            the 0.0000
	           </S> 0.0000
	         freely 0.0000
	              . 0.0000

        Carrion   420565   1 (26)
	        Carrion 0.9000
	         Carrio 0.1000
	          price 0.0369
	      Carrionly 0.0369
	              I 0.0369
	           long 0.0369
	              A 0.0369
	              E 0.0369
	            non 0.0369
	        Carnion 0.0369
	          built 0.0369
	            mid 0.0369
	            pre 0.0369
	           </S> 0.0059
	           same 0.0037
	              - 0.0000
	              " 0.0000
	         Carion 0.0000
	        Carreon 0.0000
	      following 0.0000
	            two 0.0000
	          first 0.0000
	          <UNK> 0.0000
	           City 0.0000
	       American 0.0000
	        carrion 0.0000

       countr}^   420592  14 (24)
	        countre 0.0369
	       couotron 0.0369
	        countor 0.0369
	          South 0.0369
	       countrey 0.0369
	            can 0.0369
	       countrie 0.0369
	              a 0.0369
	         manner 0.0369
	          would 0.0369
	              I 0.0369
	             of 0.0369
	         Soviet 0.0059
	        counter 0.0000
	              - 0.0000
	      president 0.0000
	              , 0.0000
	        Country 0.0000
	           </S> 0.0000
	              . 0.0000
	     Yugoslavia 0.0000
	        country 0.0000
	          count 0.0000
	           case 0.0000

            and   420601   1 (17)
	              - 0.0369
	              . 0.0369
	           aand 0.0369
	            ant 0.0369
	              , 0.0369
	             an 0.0369
	            arz 0.0369
	           alba 0.0369
	            any 0.0369
	              a 0.0369
	           </S> 0.0369
	          Union 0.0369
	           andy 0.0369
	           anda 0.0369
	             of 0.0369
	            and 0.0369
	             us 0.0369

         Hooded   420628   5 (28)
	          Hotel 0.8000
	           Home 0.6000
	          House 0.5000
	              - 0.1888
	           poor 0.0369
	            The 0.0369
	           Hood 0.0369
	         Hoodie 0.0369
	           Hoed 0.0369
	         hooded 0.0369
	           Hode 0.0369
	         Holder 0.0369
	          white 0.0369
	         Hoofed 0.0369
	              I 0.0369
	             is 0.0369
	         Hooded 0.0369
	             DT 0.0369
	         Hooked 0.0369
	     homeowners 0.0369
	             of 0.0059
	              " 0.0000
	         wooded 0.0000
	       response 0.0000
	       American 0.0000
	           </S> 0.0000
	              , 0.0000
	              . 0.0000

      remainder   420744   1 (21)
	       reminder 0.0369
	    remaindered 0.0369
	              , 0.0369
	              - 0.0369
	           some 0.0369
	              x 0.0369
	      retainder 0.0369
	              a 0.0369
	              I 0.0369
	              . 0.0369
	      remaindre 0.0369
	      remainder 0.0369
	      Remainder 0.0369
	       remained 0.0369
	    remainderer 0.0369
	     remainders 0.0369
	           Type 0.0369
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	              } 0.0000

        plumage   420757   1 (21)
	        plumage 0.8000
	              x 0.0369
	       plumaged 0.0369
	       plumagem 0.0369
	            the 0.0059
	            his 0.0000
	         please 0.0000
	              , 0.0000
	          <UNK> 0.0000
	            our 0.0000
	              : 0.0000
	          their 0.0000
	          place 0.0000
	           this 0.0000
	              - 0.0000
	              a 0.0000
	           </S> 0.0000
	         plumas 0.0000
	           page 0.0000
	       plumages 0.0000
	             us 0.0000

           ashy   420765   2 (28)
	             as 0.1000
	             us 0.0369
	            any 0.0369
	           ashy 0.0369
	   professional 0.0369
	            arz 0.0369
	              e 0.0369
	            non 0.0369
	              I 0.0369
	          washy 0.0369
	          Bashy 0.0369
	          yasha 0.0369
	              A 0.0369
	           five 0.0369
	           alba 0.0369
	           ashe 0.0369
	            ash 0.0369
	              C 0.0369
	           anti 0.0369
	          three 0.0369
	          hashy 0.0369
	           asha 0.0369
	              , 0.0059
	           </S> 0.0000
	              - 0.0000
	            and 0.0000
	              . 0.0000
	           also 0.0000

       becoming   420855   1 (24)
	              a 0.0369
	           </S> 0.0369
	              ( 0.0369
	       Becoming 0.0369
	        because 0.0369
	          <UNK> 0.0369
	       besoming 0.0369
	              I 0.0369
	      becomings 0.0369
	            and 0.0369
	              " 0.0369
	       becoming 0.0369
	          being 0.0369
	         online 0.0369
	            but 0.0369
	     becomingly 0.0369
	            the 0.0059
	              i 0.0000
	          which 0.0000
	           with 0.0000
	           some 0.0000
	     unbecoming 0.0000
	            was 0.0000
	             or 0.0000

           bill   420895   1 (25)
	           bill 0.0369
	            the 0.0369
	              n 0.0369
	              , 0.0369
	              I 0.0369
	            bil 0.0369
	            cia 0.0369
	           sala 0.0369
	           Pica 0.0369
	              a 0.0369
	             of 0.0369
	           file 0.0369
	              - 0.0369
	           bile 0.0369
	           bili 0.0369
	             by 0.0369
	          bills 0.0369
	          billy 0.0369
	           bild 0.0369
	              . 0.0369
	           will 0.0369
	           </S> 0.0059
	              } 0.0000
	              " 0.0000
	              ) 0.0000

           iris   420916   1 (25)
	            iri 0.0369
	             in 0.0369
	          irisa 0.0369
	              . 0.0369
	             iu 0.0369
	            cia 0.0369
	            arz 0.0369
	            its 0.0369
	              - 0.0369
	            irs 0.0369
	             is 0.0369
	            and 0.0369
	              a 0.0369
	           very 0.0369
	           iris 0.0369
	          iiris 0.0369
	              , 0.0369
	          irish 0.0369
	           irie 0.0369
	           irin 0.0369
	              x 0.0369
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	              } 0.0000

        browner   420971   1 (24)
	        browner 0.8000
	            and 0.0369
	          based 0.0369
	       brownier 0.0369
	        Browner 0.0369
	        forgets 0.0369
	        bewoner 0.0369
	          being 0.0369
	       browbone 0.0369
	              . 0.0369
	              - 0.0369
	              I 0.0059
	             it 0.0000
	              a 0.0000
	        browser 0.0000
	              i 0.0000
	              , 0.0000
	           also 0.0000
	           </S> 0.0000
	            not 0.0000
	        browned 0.0000
	         before 0.0000
	            the 0.0000
	           this 0.0000

           bill   421015  16 (33)
	          bills 0.3000
	            bil 0.2000
	         better 0.0369
	        weather 0.0369
	              . 0.0369
	              , 0.0369
	              I 0.0369
	            the 0.0369
	          tumor 0.0369
	         result 0.0369
	            and 0.0369
	         target 0.0369
	              a 0.0369
	           </S> 0.0059
	           same 0.0037
	              - 0.0000
	           Pica 0.0000
	             be 0.0000
	           bill 0.0000
	          billy 0.0000
	           bild 0.0000
	          first 0.0000
	           bili 0.0000
	           will 0.0000
	           bile 0.0000
	             by 0.0000
	          world 0.0000
	         system 0.0000
	      following 0.0000
	           user 0.0000
	           sala 0.0000
	            cia 0.0000
	            big 0.0000

        broader   421035  13 (23)
	            not 0.1053
	        broaden 0.0458
	         roader 0.0369
	         broder 0.0369
	        broadel 0.0369
	         brader 0.0369
	              - 0.0369
	            and 0.0369
	        boarder 0.0369
	              . 0.0369
	        brodera 0.0369
	              I 0.0059
	        because 0.0000
	        broader 0.0000
	          order 0.0000
	            the 0.0000
	           only 0.0000
	              a 0.0000
	         before 0.0000
	              i 0.0000
	              , 0.0000
	           </S> 0.0000
	             it 0.0000

          lower   421082   1 (19)
	          lower 0.2000
	           more 0.1000
	          other 0.0369
	           lowe 0.0369
	              a 0.0369
	          rowel 0.0369
	          lowes 0.0369
	          lowed 0.0369
	        lowerer 0.0369
	         lowery 0.0369
	              I 0.0369
	         lowers 0.0369
	           than 0.0059
	              . 0.0000
	              - 0.0000
	            and 0.0000
	              , 0.0000
	           </S> 0.0000
	           long 0.0000

        Hoodies   421174   2 (21)
	          model 0.9000
	           from 0.0369
	        goodies 0.0369
	              a 0.0369
	         Hoodie 0.0369
	         Donors 0.0369
	          Hoodi 0.0369
	        Hodgies 0.0369
	        Hodites 0.0369
	        Hoodies 0.0369
	              I 0.0369
	         Hoodia 0.0369
	           </S> 0.0059
	      countries 0.0000
	         Review 0.0000
	            and 0.0000
	         Movies 0.0000
	        Journal 0.0000
	              - 0.0000
	              , 0.0000
	              . 0.0000

     southwards   421182   2 (19)
	              n 0.5000
	         design 0.0369
	             of 0.0369
	      southward 0.0369
	     mouthwards 0.0369
	        website 0.0369
	          South 0.0369
	     southwards 0.0369
	        Journal 0.0369
	    southwardly 0.0369
	      Southward 0.0369
	           </S> 0.0059
	          Youth 0.0000
	              , 0.0000
	              | 0.0000
	              - 0.0000
	            are 0.0000
	              . 0.0000
	              T 0.0000

     visitation   421254   1 (26)
	     visitation 0.8000
	              a 0.0369
	        section 0.0369
	         Policy 0.0369
	     newsletter 0.0369
	    visitations 0.0369
	    visitationi 0.0369
	     department 0.0369
	          deals 0.0369
	      vilitatis 0.0369
	              e 0.0369
	        content 0.0369
	        version 0.0369
	    information 0.0369
	      visitatio 0.0369
	    visitatione 0.0369
	            and 0.0059
	          basis 0.0000
	     variations 0.0000
	             to 0.0000
	        changes 0.0000
	              . 0.0000
	       specials 0.0000
	           </S> 0.0000
	              , 0.0000
	              - 0.0000

        Royston   421332  18 (28)
	         Ryston 0.0369
	 interrogations 0.0369
	              I 0.0369
	         Legend 0.0369
	      Roystonea 0.0369
	              . 0.0369
	        Moyston 0.0369
	         Roston 0.0369
	              a 0.0369
	     Roystoneae 0.0369
	              , 0.0369
	        Roysten 0.0369
	        Rosston 0.0369
	              A 0.0369
	           Lady 0.0369
	         Ballot 0.0369
	           </S> 0.0059
	        Rolston 0.0000
	         system 0.0000
	              - 0.0000
	        Royston 0.0000
	           most 0.0000
	              " 0.0000
	      following 0.0000
	          North 0.0000
	         Royton 0.0000
	            New 0.0000
	          first 0.0000

           Crow   421355   3 (29)
	            now 0.4000
	         Shrike 0.1000
	           Crow 0.0369
	          Crowe 0.0369
	         period 0.0369
	           From 0.0369
	          basis 0.0369
	           Cron 0.0369
	            arz 0.0369
	             is 0.0369
	           Crop 0.0369
	      Cisticola 0.0369
	          Crown 0.0369
	    Camaroptera 0.0369
	              I 0.0369
	          Storm 0.0369
	         Coorow 0.0369
	        sources 0.0369
	             by 0.0059
	              . 0.0000
	           from 0.0000
	              - 0.0000
	           </S> 0.0000
	             up 0.0000
	              , 0.0000
	              ) 0.0000
	              a 0.0000
	            off 0.0000
	     securities 0.0000

       arriving   421431   1 (28)
	            are 0.0369
	         arrivi 0.0369
	       Arriving 0.0369
	       arrivino 0.0369
	            and 0.0369
	     rearriving 0.0369
	     unarriving 0.0369
	           </S> 0.0369
	       arriving 0.0369
	            but 0.0369
	              $ 0.0369
	    information 0.0369
	          <UNK> 0.0369
	              I 0.0369
	          wrote 0.0369
	              " 0.0369
	       arriding 0.0369
	         arving 0.0369
	            the 0.0059
	          which 0.0012
	              i 0.0000
	         raving 0.0000
	             or 0.0000
	            who 0.0000
	           will 0.0000
	           what 0.0000
	              e 0.0000
	          using 0.0000

           They   421562   1 (20)
	           They 1.0000
	           This 0.3358
	              I 0.0418
	           Them 0.0369
	          Theys 0.0369
	          Theyr 0.0369
	              a 0.0369
	           Tehy 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	            The 0.0131
	           </S> 0.0059
	           they 0.0000
	           Then 0.0000
	            the 0.0000
	              . 0.0000
	              , 0.0000
	             '' 0.0000
	              ) 0.0000

       frequent   421567   2 (23)
	        request 0.9000
	       frequent 0.5000
	        present 0.2000
	           Came 0.0369
	          cater 0.0369
	       frequens 0.0369
	      frequents 0.0369
	      frequente 0.0369
	              . 0.0369
	     frequentis 0.0369
	       frendens 0.0369
	     frequenter 0.0369
	              ) 0.0369
	            are 0.0059
	         recent 0.0000
	            're 0.0000
	           </S> 0.0000
	           were 0.0000
	           have 0.0000
	              , 0.0000
	        provide 0.0000
	           also 0.0000
	           look 0.0000

         broads   421598   1 (30)
	         broads 0.9000
	         brodas 0.0369
	          major 0.0369
	              , 0.0369
	          story 0.0369
	        broadus 0.0369
	     references 0.0369
	          terms 0.0369
	            hip 0.0369
	           </S> 0.0059
	           same 0.0037
	          brown 0.0000
	          broad 0.0000
	         boards 0.0000
	           time 0.0000
	          roads 0.0000
	           book 0.0000
	          world 0.0000
	            day 0.0000
	           best 0.0000
	         breads 0.0000
	          brads 0.0000
	         people 0.0000
	      following 0.0000
	              - 0.0000
	          Board 0.0000
	          first 0.0000
	          <UNK> 0.0000
	              " 0.0000
	          break 0.0000

        Norfolk   421831  10 (23)
	        Norfork 0.3000
	        norfolk 0.1000
	           sure 0.0369
	      Norfolkia 0.0369
	           work 0.0369
	      something 0.0369
	       ensuring 0.0369
	       yourself 0.0369
	            the 0.0059
	           more 0.0000
	        Norwalk 0.0000
	            you 0.0000
	              , 0.0000
	           your 0.0000
	              . 0.0000
	           </S> 0.0000
	        Norfolk 0.0000
	              a 0.0000
	              - 0.0000
	           this 0.0000
	             us 0.0000
	         people 0.0000
	          those 0.0000

         leaves   421869  12 (21)
	        leavest 0.0369
	         around 0.0369
	         Beaver 0.0369
	           lava 0.0369
	          Pales 0.0369
	        cleaves 0.0369
	         leaved 0.0369
	         leaven 0.0369
	         llaves 0.0369
	        leavees 0.0369
	              . 0.0059
	           </S> 0.0000
	          least 0.0000
	         leaves 0.0000
	         Please 0.0000
	          leave 0.0000
	              - 0.0000
	          level 0.0000
	            for 0.0000
	             of 0.0000
	              , 0.0000

             iu   421892  13 (25)
	           with 0.2000
	              I 0.0369
	            ius 0.0369
	            iun 0.0369
	             iu 0.0369
	           uiui 0.0369
	            cia 0.0369
	              a 0.0369
	             ui 0.0369
	           that 0.0369
	              i 0.0369
	              . 0.0059
	      scheduled 0.0000
	             of 0.0000
	            can 0.0000
	             is 0.0000
	              , 0.0000
	              - 0.0000
	             us 0.0000
	             on 0.0000
	             to 0.0000
	             in 0.0000
	             it 0.0000
	          about 0.0000
	           </S> 0.0000

       probably   421955   2 (21)
	            was 1.0000
	      probabley 0.0369
	       probabla 0.0369
	        program 0.0369
	       probable 0.0369
	       provably 0.0369
	        process 0.0369
	       probably 0.0369
	       programs 0.0369
	         online 0.0369
	        probabl 0.0369
	     improbably 0.0369
	      probabile 0.0369
	              , 0.0059
	             of 0.0000
	             's 0.0000
	              I 0.0000
	           </S> 0.0000
	              a 0.0000
	              - 0.0000
	              . 0.0000

        pr\-ing   422066   3 (35)
	           prin 1.0000
	        probing 0.9000
	         prying 0.6000
	        griping 0.5000
	              , 0.0369
	             to 0.0369
	       prigging 0.0369
	         piring 0.0369
	              A 0.0369
	        enemies 0.0369
	          pling 0.0369
	        mailing 0.0369
	         clutch 0.0369
	          being 0.0369
	         public 0.0369
	              . 0.0369
	          point 0.0369
	         paring 0.0369
	         poring 0.0369
	              - 0.0369
	              I 0.0369
	            own 0.0059
	              a 0.0000
	        effects 0.0000
	         spring 0.0000
	         Spring 0.0000
	           </S> 0.0000
	     affiliates 0.0000
	        present 0.0000
	        display 0.0000
	           ring 0.0000
	        pricing 0.0000
	           ping 0.0000
	        proving 0.0000
	       original 0.0000

          e\'es   422074   1 (24)
	           </S> 0.0369
	           ewes 0.0369
	           eres 0.0369
	           even 0.0369
	             or 0.0369
	           were 0.0369
	              , 0.0369
	           esse 0.0369
	          Pales 0.0369
	              . 0.0369
	           list 0.0369
	          edges 0.0369
	           eses 0.0369
	            ese 0.0369
	           eyes 0.0369
	           else 0.0369
	              - 0.0369
	           form 0.0369
	            ees 0.0369
	          esses 0.0369
	              a 0.0369
	             es 0.0369
	           does 0.0369
	          elves 0.0369

            and   422080   1 (18)
	             at 0.0369
	           aand 0.0369
	             of 0.0369
	            ant 0.0369
	            any 0.0369
	            can 0.0369
	            the 0.0369
	            arz 0.0369
	           alba 0.0369
	             us 0.0369
	            Jan 0.0369
	           andy 0.0369
	           anda 0.0369
	             an 0.0369
	             do 0.0369
	             as 0.0369
	            and 0.0369
	             no 0.0369

    carnivorons   422084  10 (22)
	          their 0.2000
	              i 0.0369
	      carnivoro 0.0369
	     carnivoras 0.0369
	       carnivor 0.0369
	     carnivoros 0.0369
	         online 0.0369
	  materialistic 0.0369
	            the 0.0059
	    carnivorous 0.0000
	       Services 0.0000
	              - 0.0000
	              , 0.0000
	              ( 0.0000
	          other 0.0000
	              a 0.0000
	              I 0.0000
	           </S> 0.0000
	    carnivorans 0.0000
	           more 0.0000
	          <UNK> 0.0000
	            can 0.0000

   propensities   422096   1 (21)
	   propensiones 0.0369
	   propensitude 0.0369
	     propensity 0.0369
	           </S> 0.0369
	   Propensities 0.0369
	           more 0.0369
	             on 0.0369
	      propensis 0.0369
	             us 0.0369
	         people 0.0369
	      pronities 0.0369
	              a 0.0369
	              . 0.0369
	            the 0.0369
	              ) 0.0369
	              , 0.0369
	       products 0.0369
	        process 0.0369
	   propensities 0.0369
	              I 0.0369
	              - 0.0369

       liowever   422121  19 (31)
	          lieve 0.7000
	           like 0.1000
	        However 0.0369
	       violeter 0.0369
	           over 0.0369
	              , 0.0369
	         indeed 0.0369
	              - 0.0369
	           </S> 0.0369
	       Blowover 0.0369
	          major 0.0369
	      therefore 0.0369
	              . 0.0369
	        lievere 0.0369
	              I 0.0369
	         winner 0.0369
	              a 0.0369
	            the 0.0059
	          which 0.0000
	        nowever 0.0000
	             or 0.0000
	        however 0.0000
	             of 0.0000
	         though 0.0000
	             to 0.0000
	         liever 0.0000
	           were 0.0000
	              i 0.0000
	            too 0.0000
	             no 0.0000
	        lowlier 0.0000

              j   422232   3 (22)
	             us 0.3000
	            the 0.1000
	          world 0.0369
	             ja 0.0369
	             jp 0.0369
	             dj 0.0369
	             iu 0.0369
	              e 0.0369
	             ij 0.0369
	           been 0.0369
	            cia 0.0369
	          years 0.0369
	             je 0.0369
	             Dj 0.0369
	           fees 0.0059
	            and 0.0000
	              . 0.0000
	              - 0.0000
	           </S> 0.0000
	            non 0.0000
	             of 0.0000
	              , 0.0000

              -   422233   1 (16)
	              - 0.7645
	              ) 0.2018
	           hear 0.0369
	       behaving 0.0369
	            cia 0.0369
	             iu 0.0369
	             -1 0.0369
	           </S> 0.0059
	              , 0.0000
	             -- 0.0000
	            the 0.0000
	              . 0.0000
	             of 0.0000
	             us 0.0000
	              = 0.0000
	            and 0.0000

           ears   422234   3 (32)
	            ear 0.6179
	           earl 0.3000
	           ears 0.1921
	          sears 0.1000
	              s 0.0369
	        sending 0.0369
	           side 0.0369
	          graph 0.0369
	          earst 0.0369
	          earsh 0.0369
	              - 0.0079
	           </S> 0.0059
	           lava 0.0000
	              . 0.0000
	              ) 0.0000
	           time 0.0000
	            out 0.0000
	             to 0.0000
	          years 0.0000
	            arz 0.0000
	           each 0.0000
	           eBay 0.0000
	              A 0.0000
	           earn 0.0000
	           mail 0.0000
	              I 0.0000
	             up 0.0000
	            the 0.0000
	          <UNK> 0.0000
	              a 0.0000
	           eras 0.0000
	              1 0.0000

            vSt   422287   6 (37)
	            vet 0.9000
	             me 0.3000
	             vt 0.3000
	            not 0.3000
	            USA 0.3000
	            vat 0.1000
	             St 0.1000
	            Stv 0.0369
	            nSt 0.0369
	            MSt 0.0369
	           Sony 0.0369
	           Svit 0.0369
	           Svmt 0.0369
	           DStv 0.0369
	            Svt 0.0369
	            the 0.0059
	           Svet 0.0000
	            cia 0.0000
	          <UNK> 0.0000
	              $ 0.0000
	              a 0.0000
	             Eq 0.0000
	           CliC 0.0000
	              . 0.0000
	              : 0.0000
	             iu 0.0000
	             us 0.0000
	             it 0.0000
	            you 0.0000
	             at 0.0000
	            vit 0.0000
	              - 0.0000
	           this 0.0000
	           </S> 0.0000
	              , 0.0000
	              1 0.0000
	             to 0.0000

              .   422290   1 (15)
	          Saint 0.0369
	             us 0.0369
	             of 0.0369
	            ... 0.0369
	            the 0.0369
	              . 0.0369
	             to 0.0369
	              , 0.0369
	             iu 0.0369
	            and 0.0369
	            cia 0.0369
	           </S> 0.0369
	             St 0.0369
	            St. 0.0369
	              - 0.0059

           John   422292   2 (24)
	           That 1.0000
	           John 0.1327
	           June 0.1000
	             It 0.0900
	              I 0.0418
	            Joh 0.0369
	          Johnn 0.0369
	           Jhon 0.0369
	           Joho 0.0369
	           Johl 0.0369
	          Johno 0.0369
	          Johns 0.0369
	          Johny 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              / 0.0000
	              ) 0.0000
	              ] 0.0000
	              . 0.0000
	            Jan 0.0000
	          There 0.0000
	              , 0.0000

       Mora}',"   422329 inf (24)
	       Exercise 0.0369
	        Society 0.0369
	         Modern 0.0369
	         Motion 0.0369
	             us 0.0369
	              x 0.0369
	         Mobile 0.0369
	       Maryland 0.0369
	       Colorado 0.0369
	   Contemporary 0.0369
	          March 0.0369
	          Brief 0.0369
	           work 0.0369
	            the 0.0059
	            for 0.0000
	              . 0.0000
	           </S> 0.0000
	              , 0.0000
	           your 0.0000
	           more 0.0000
	              a 0.0000
	           this 0.0000
	              - 0.0000
	             or 0.0000

             p.   422338 inf (18)
	             us 0.0369
	            cia 0.0369
	              a 0.0369
	             to 0.0369
	             pc 0.0369
	            ppp 0.0369
	            per 0.0369
	              - 0.0369
	             of 0.0369
	              | 0.0369
	           </S> 0.0369
	             iu 0.0369
	             pm 0.0369
	              : 0.0369
	             pp 0.0369
	             up 0.0369
	              , 0.0369
	              . 0.0369

    newlj'-boru   422359 inf (26)
	            one 0.1000
	       Yourself 0.0369
	          never 0.0369
	              s 0.0369
	            not 0.0369
	             no 0.0369
	      wonderful 0.0369
	         nearly 0.0369
	            now 0.0369
	              A 0.0369
	    unfortunate 0.0369
	          About 0.0369
	           </S> 0.0059
	            the 0.0000
	            you 0.0000
	              - 0.0000
	             us 0.0000
	              . 0.0000
	              a 0.0000
	             me 0.0000
	              ) 0.0000
	            for 0.0000
	              , 0.0000
	             or 0.0000
	          about 0.0000
	            all 0.0000

          lambs   422371   1 (27)
	           game 0.0369
	              a 0.0369
	           </S> 0.0369
	           labs 0.0369
	          lambs 0.0369
	         blamas 0.0369
	           lava 0.0369
	           alba 0.0369
	          Parus 0.0369
	          lambo 0.0369
	         lambas 0.0369
	       children 0.0369
	           lamb 0.0369
	              , 0.0369
	      processes 0.0369
	          Games 0.0369
	           ambs 0.0369
	          large 0.0369
	              - 0.0369
	         lambis 0.0369
	         lambes 0.0369
	       lambskin 0.0369
	              . 0.0369
	             to 0.0369
	            law 0.0369
	          lamba 0.0369
	           last 0.0369

             It   422450   3 (21)
	             In 0.5538
	            Its 0.3584
	             It 0.0900
	             If 0.0570
	              I 0.0418
	             us 0.0369
	              a 0.0369
	             iu 0.0369
	            cia 0.0369
	            Ito 0.0369
	           well 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	             '' 0.0000
	            the 0.0000
	              , 0.0000
	              . 0.0000
	              ] 0.0000
	              ) 0.0000

         )-oung   422462  12 (25)
	            oun 1.0000
	          goung 0.0369
	          small 0.0369
	           goun 0.0369
	           male 0.0369
	        poverty 0.0369
	          Loung 0.0369
	             us 0.0369
	           sage 0.0369
	        various 0.0369
	            the 0.0059
	          found 0.0000
	          going 0.0000
	        January 0.0000
	              a 0.0000
	              - 0.0000
	         amoung 0.0000
	         ground 0.0000
	           </S> 0.0000
	           this 0.0000
	              . 0.0000
	          Young 0.0000
	              , 0.0000
	         around 0.0000
	          young 0.0000

         grouse   422469   1 (21)
	              I 0.0369
	         groups 0.0369
	        groused 0.0369
	        animals 0.0369
	         grouse 0.0369
	         ground 0.0369
	    hitchhikers 0.0369
	         grouss 0.0369
	              , 0.0369
	              - 0.0369
	              1 0.0369
	             22 0.0369
	          minds 0.0369
	        grouses 0.0369
	         grousy 0.0369
	        grouser 0.0369
	              a 0.0369
	              . 0.0369
	           site 0.0369
	           </S> 0.0369
	          group 0.0369

          vcr}'   422509   1 (26)
	           very 0.8295
	             cr 0.4000
	             vr 0.1000
	           vary 0.1000
	            not 0.0564
	            crv 0.0369
	           vrch 0.0369
	      extremely 0.0369
	              - 0.0369
	              I 0.0369
	            vcs 0.0369
	            are 0.0369
	          varca 0.0369
	          vchod 0.0369
	          vacri 0.0369
	              a 0.0059
	           from 0.0000
	           used 0.0000
	           </S> 0.0000
	              , 0.0000
	              . 0.0000
	            the 0.0000
	          virus 0.0000
	           more 0.0000
	             vc 0.0000
	       provided 0.0000

    destructive   422515   1 (20)
	              , 0.0369
	  destructively 0.0369
	          going 0.0369
	              - 0.0369
	    destructive 0.0369
	    destructivi 0.0369
	       designed 0.0369
	       possible 0.0369
	              . 0.0369
	       required 0.0369
	   destructivae 0.0369
	        because 0.0369
	           </S> 0.0369
	              a 0.0369
	              I 0.0369
	       intended 0.0369
	   destructives 0.0369
	             to 0.0369
	    destructiva 0.0369
	    destructivo 0.0369

             In   422549   1 (19)
	             In 0.5538
	             It 0.0900
	             If 0.0570
	              I 0.0418
	            Inn 0.0369
	         things 0.0369
	             iu 0.0369
	            cia 0.0369
	             us 0.0369
	            Inc 0.0369
	              a 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              . 0.0000
	              , 0.0000
	              ) 0.0000
	              ] 0.0000

        certain   422552   8 (19)
	        curtain 0.2000
	        cernait 0.0369
	       certains 0.0369
	       certaine 0.0369
	        Bertani 0.0369
	        Certhia 0.0369
	            the 0.0059
	              . 0.0000
	           this 0.0000
	        certain 0.0000
	           </S> 0.0000
	              - 0.0000
	              a 0.0000
	       addition 0.0000
	        contain 0.0000
	      certainly 0.0000
	              / 0.0000
	              A 0.0000
	              , 0.0000

        feeding   422560   1 (25)
	        feeding 0.7000
	          being 0.2000
	              I 0.1000
	      refeeding 0.0369
	              - 0.0369
	         feeing 0.0369
	        section 0.0369
	        natural 0.0369
	       feedings 0.0369
	              a 0.0369
	      defending 0.0369
	          first 0.0369
	        fending 0.0369
	        Feeding 0.0369
	           that 0.0059
	              . 0.0000
	         stores 0.0000
	        feeling 0.0000
	          cases 0.0000
	  circumstances 0.0000
	           </S> 0.0000
	             to 0.0000
	              , 0.0000
	     conditions 0.0000
	     situations 0.0000

             No   422667   2 (25)
	            Not 0.4831
	             No 0.1700
	             NY 0.1327
	            Now 0.0765
	              I 0.0418
	           NoNo 0.0369
	             iu 0.0369
	          birds 0.0369
	            Noo 0.0369
	           fish 0.0369
	             us 0.0369
	              s 0.0369
	              a 0.0369
	              A 0.0328
	             to 0.0265
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              , 0.0000
	            the 0.0000
	             NO 0.0000
	              ) 0.0000
	          <UNK> 0.0000
	              . 0.0000
	             of 0.0000

           au}'   422708   1 (27)
	            any 0.1159
	            auf 0.1000
	           auau 0.0369
	            arz 0.0369
	          maura 0.0369
	              X 0.0369
	              . 0.0369
	         Trojan 0.0369
	              I 0.0369
	            aua 0.0369
	            the 0.0059
	            zip 0.0000
	            you 0.0000
	              a 0.0000
	             at 0.0000
	              - 0.0000
	           auto 0.0000
	           </S> 0.0000
	              , 0.0000
	            are 0.0000
	              ' 0.0000
	          other 0.0000
	              e 0.0000
	           alba 0.0000
	             au 0.0000
	            and 0.0000
	            aud 0.0000

           bird   422713   1 (24)
	              - 0.0369
	            can 0.0369
	            you 0.0369
	           birt 0.0369
	              . 0.0369
	           biro 0.0369
	           bird 0.0369
	           brid 0.0369
	              a 0.0369
	           Pica 0.0369
	            arz 0.0369
	              I 0.0369
	             be 0.0369
	           </S> 0.0369
	          birdi 0.0369
	              , 0.0369
	             to 0.0369
	            but 0.0369
	            cia 0.0369
	              i 0.0369
	          birdy 0.0369
	             by 0.0369
	          birds 0.0369
	            bir 0.0369

          leave   422718   3 (25)
	             to 0.5500
	         leaves 0.4000
	          leave 0.3000
	          least 0.0369
	           leav 0.0369
	         leaved 0.0369
	          llave 0.0369
	           lava 0.0369
	         builds 0.0369
	          flaps 0.0369
	          leavy 0.0369
	          leavz 0.0369
	         leavee 0.0369
	            flu 0.0059
	             in 0.0000
	              a 0.0000
	              . 0.0000
	              - 0.0000
	          level 0.0000
	            and 0.0000
	           love 0.0000
	              I 0.0000
	           </S> 0.0000
	              , 0.0000
	           from 0.0000

         Hooded   422743   7 (28)
	         Hoofed 0.1000
	       intended 0.0369
	              . 0.0369
	           Hoed 0.0369
	           </S> 0.0059
	           same 0.0037
	           Home 0.0000
	         hooded 0.0000
	           Hood 0.0000
	          House 0.0000
	         Hooded 0.0000
	           Hode 0.0000
	      following 0.0000
	         Hoover 0.0000
	         Hooked 0.0000
	         Holder 0.0000
	          first 0.0000
	         Hoodie 0.0000
	            one 0.0000
	          Hotel 0.0000
	          <UNK> 0.0000
	              " 0.0000
	         Holden 0.0000
	          whole 0.0000
	         wooded 0.0000
	              - 0.0000
	          other 0.0000
	            way 0.0000

          often   422814   3 (20)
	          other 0.8000
	          after 0.8000
	          often 0.2000
	         soften 0.0369
	         oftens 0.0369
	         ofteon 0.0369
	          foten 0.0369
	          offen 0.0369
	           ofte 0.0369
	          ofter 0.0369
	             of 0.0059
	              - 0.0000
	           </S> 0.0000
	              I 0.0000
	              . 0.0000
	              , 0.0000
	             is 0.0000
	              a 0.0000
	            can 0.0000
	            one 0.0000

             iu   422847  10 (23)
	              a 0.2000
	           over 0.1000
	            ius 0.0369
	            iun 0.0369
	             iu 0.0369
	           uiui 0.0369
	            cia 0.0369
	             ui 0.0369
	              , 0.0059
	              . 0.0000
	             is 0.0000
	         inside 0.0000
	            and 0.0000
	             of 0.0000
	             on 0.0000
	             us 0.0000
	           from 0.0000
	              - 0.0000
	              I 0.0000
	           </S> 0.0000
	             it 0.0000
	             in 0.0000
	             at 0.0000

            All   422874   1 (22)
	            All 0.1921
	              I 0.0418
	            Ali 0.0369
	             Al 0.0369
	             us 0.0369
	            all 0.0369
	           alba 0.0369
	            cia 0.0369
	           Alle 0.0369
	              a 0.0369
	            Alt 0.0369
	           Ally 0.0369
	           high 0.0369
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              , 0.0000
	              ] 0.0000
	              ) 0.0000
	              . 0.0000
	             '' 0.0000
	            And 0.0000

           seem   422884  12 (26)
	            was 0.3000
	           some 0.1000
	           been 0.1000
	       reserved 0.0369
	           sala 0.0369
	             us 0.0369
	           seme 0.0369
	       Reserved 0.0369
	          seeme 0.0369
	              A 0.0369
	              , 0.0059
	              - 0.0000
	            see 0.0000
	           seem 0.0000
	            are 0.0000
	           seek 0.0000
	            and 0.0000
	           have 0.0000
	              . 0.0000
	              I 0.0000
	              a 0.0000
	          seems 0.0000
	           </S> 0.0000
	           were 0.0000
	           seen 0.0000
	            eye 0.0000

        Peewits   422908   1 (25)
	            try 0.0369
	        teewits 0.0369
	              . 0.0369
	        Peewits 0.0369
	        quickly 0.0369
	            and 0.0369
	              i 0.0369
	           said 0.0369
	       holidays 0.0369
	    destination 0.0369
	        service 0.0369
	            the 0.0059
	             it 0.0000
	           more 0.0000
	              a 0.0000
	           </S> 0.0000
	              I 0.0000
	          Peets 0.0000
	         Peewit 0.0000
	              - 0.0000
	           with 0.0000
	              , 0.0000
	          would 0.0000
	            its 0.0000
	        peewits 0.0000

          Gulls   422917   1 (31)
	            all 0.0369
	              x 0.0369
	              ( 0.0369
	           </S> 0.0369
	           Gull 0.0369
	          Gulls 0.0369
	          Pales 0.0369
	              I 0.0369
	            and 0.0369
	   honeymooners 0.0369
	          Gully 0.0369
	          Gulli 0.0369
	      therefore 0.0369
	           Glus 0.0369
	              " 0.0369
	          <UNK> 0.0369
	        Gullies 0.0369
	              y 0.0369
	            All 0.0369
	          Gulus 0.0369
	              a 0.0369
	            the 0.0059
	          which 0.0012
	            too 0.0000
	           will 0.0000
	           ulls 0.0000
	         though 0.0000
	             or 0.0000
	              i 0.0000
	          rufus 0.0000
	             us 0.0000

      Redshanks   422924   1 (25)
	          Terns 0.0369
	          worms 0.0369
	      Redshanks 0.0369
	       workflow 0.0369
	          <UNK> 0.0369
	         Redsan 0.0369
	      workshops 0.0369
	              a 0.0369
	         labbes 0.0369
	       Redshank 0.0369
	          terns 0.0369
	      redshanks 0.0369
	              y 0.0369
	              , 0.0369
	          years 0.0369
	              x 0.0369
	      therefore 0.0369
	            the 0.0059
	           that 0.0000
	           what 0.0000
	         though 0.0000
	             or 0.0000
	          which 0.0000
	              i 0.0000
	            too 0.0000

           etc.   422935   1 (22)
	            etc 0.8000
	           etc. 0.4900
	              y 0.0369
	              , 0.0369
	            Jen 0.0369
	           Pica 0.0369
	              t 0.0369
	              0 0.0369
	              x 0.0369
	          <UNK> 0.0369
	      therefore 0.0369
	            the 0.0059
	          which 0.0012
	            too 0.0000
	           etch 0.0000
	           tect 0.0000
	             or 0.0000
	           eBay 0.0000
	           even 0.0000
	         though 0.0000
	           each 0.0000
	              i 0.0000

         attack   422941   2 (25)
	           like 0.0600
	          <UNK> 0.0369
	           </S> 0.0369
	         attack 0.0369
	         atacak 0.0369
	              - 0.0369
	         attach 0.0369
	            and 0.0369
	           back 0.0369
	        attackt 0.0369
	             at 0.0369
	              ) 0.0369
	              , 0.0369
	              I 0.0369
	        attacks 0.0369
	            but 0.0369
	         attaco 0.0369
	            the 0.0059
	             or 0.0000
	              e 0.0000
	           with 0.0000
	           etc. 0.0000
	           each 0.0000
	              i 0.0000
	          which 0.0000

      furiously   422953  12 (24)
	      seriously 0.8000
	    importantly 0.3000
	       furiosum 0.0369
	      foliously 0.0369
	     usuriously 0.0369
	       euonymus 0.0369
	              a 0.0369
	       furiosus 0.0369
	         furios 0.0369
	      fibrously 0.0369
	             of 0.0059
	      furiously 0.0000
	      important 0.0000
	           </S> 0.0000
	          major 0.0000
	         likely 0.0000
	      obviously 0.0000
	        curious 0.0000
	              . 0.0000
	        furious 0.0000
	        popular 0.0000
	              , 0.0000
	              - 0.0000
	      curiously 0.0000

           an\'   422963   1 (20)
	            ann 0.0369
	            ana 0.0369
	           anal 0.0369
	      plantings 0.0369
	         abroad 0.0369
	           alba 0.0369
	            arz 0.0369
	              a 0.0369
	             an 0.0369
	            any 0.0369
	             us 0.0369
	           anna 0.0369
	              . 0.0059
	           </S> 0.0000
	             to 0.0000
	              , 0.0000
	              - 0.0000
	            and 0.0000
	            the 0.0000
	              I 0.0000

           Crow   422968   1 (19)
	            the 0.0369
	            now 0.0369
	           from 0.0369
	           Crop 0.0369
	           Cron 0.0369
	              a 0.0369
	           From 0.0369
	           Crow 0.0369
	            arz 0.0369
	              . 0.0369
	              , 0.0369
	              - 0.0369
	            and 0.0369
	         Coorow 0.0369
	              I 0.0369
	           </S> 0.0369
	             us 0.0369
	          Crown 0.0369
	          Crowe 0.0369

          which   422973  14 (23)
	         Corvus 0.2000
	          thick 0.0369
	          whith 0.0369
	           wich 0.0369
	          chich 0.0369
	           chic 0.0369
	         wichiw 0.0369
	           Pica 0.0369
	        whiches 0.0369
	          claim 0.0369
	         whiche 0.0369
	          whick 0.0369
	           </S> 0.0059
	             's 0.0000
	              - 0.0000
	          which 0.0000
	          white 0.0000
	              : 0.0000
	              . 0.0000
	          while 0.0000
	          South 0.0000
	              , 0.0000
	           with 0.0000

        hunting   422988   1 (27)
	        hunting 0.1000
	     huntingtin 0.0369
	            not 0.0369
	       shunting 0.0369
	          being 0.0369
	       huntings 0.0369
	        hinting 0.0369
	     themselves 0.0369
	         huntin 0.0369
	        hutting 0.0369
	            the 0.0059
	          using 0.0000
	         during 0.0000
	              - 0.0000
	           </S> 0.0000
	        Hunting 0.0000
	             it 0.0000
	             us 0.0000
	             as 0.0000
	        hurting 0.0000
	             to 0.0000
	            fit 0.0000
	           your 0.0000
	              . 0.0000
	              I 0.0000
	              a 0.0000
	              , 0.0000

      destro3-s   423066   2 (27)
	          other 1.0000
	       destroys 0.7000
	          geese 0.0369
	       destrosi 0.0369
	      destrorso 0.0369
	          those 0.0369
	      destrosso 0.0369
	            and 0.0369
	          minor 0.0369
	      destruens 0.0369
	      destronas 0.0369
	              . 0.0369
	       destroso 0.0369
	        destroi 0.0369
	      destrozos 0.0369
	            the 0.0059
	              I 0.0000
	              a 0.0000
	           </S> 0.0000
	           more 0.0000
	              - 0.0000
	       Services 0.0000
	           from 0.0000
	           with 0.0000
	         destro 0.0000
	        destroy 0.0000
	              , 0.0000

          great   423076   1 (19)
	          greta 0.0369
	              - 0.0369
	          grean 0.0369
	              . 0.0369
	              , 0.0369
	         greate 0.0369
	             us 0.0369
	              a 0.0369
	          great 0.0369
	         greats 0.0369
	           </S> 0.0369
	       security 0.0369
	            get 0.0369
	              I 0.0369
	          phone 0.0369
	           free 0.0369
	            the 0.0369
	      telephone 0.0369
	          greav 0.0369

        osprc}'   423187  14 (24)
	              - 0.5000
	        alcohol 0.0369
	         ospray 0.0369
	         ospice 0.0369
	              I 0.0369
	           over 0.0369
	         sprcha 0.0369
	        ospreys 0.0369
	          order 0.0369
	              . 0.0369
	        implied 0.0369
	            and 0.0369
	            the 0.0059
	            not 0.0000
	              e 0.0000
	           </S> 0.0000
	              a 0.0000
	           both 0.0000
	      otherwise 0.0000
	         osprey 0.0000
	              , 0.0000
	           more 0.0000
	          other 0.0000
	            zip 0.0000

         happen   423216  15 (27)
	            has 0.8000
	            not 0.3000
	            had 0.1000
	              s 0.0369
	        happend 0.0369
	       guardian 0.0369
	         happed 0.0369
	         happer 0.0369
	           seem 0.0369
	          right 0.0369
	          hapen 0.0369
	        happena 0.0369
	          guide 0.0369
	              , 0.0059
	         happen 0.0000
	            and 0.0000
	              I 0.0000
	            are 0.0000
	              . 0.0000
	              a 0.0000
	              " 0.0000
	              - 0.0000
	         appear 0.0000
	             is 0.0000
	           </S> 0.0000
	           have 0.0000
	        happens 0.0000

         Redcar   423276  10 (26)
	         Redcap 0.0369
	              = 0.0369
	    Underground 0.0369
	       Redecard 0.0369
	       Redcedar 0.0369
	         Nedcar 0.0369
	            God 0.0369
	         Austin 0.0369
	            the 0.0059
	              . 0.0000
	             us 0.0000
	              a 0.0000
	             an 0.0000
	           Home 0.0000
	           </S> 0.0000
	           Real 0.0000
	          Media 0.0000
	         Reidar 0.0000
	         Reader 0.0000
	              , 0.0000
	           Read 0.0000
	         Record 0.0000
	             it 0.0000
	         Redcar 0.0000
	              - 0.0000
	              $ 0.0000

      Zoologist   423286   1 (22)
	      Zoologist 1.0000
	   Cosmonautics 0.0369
	           lops 0.0369
	      otologist 0.0369
	         Please 0.0369
	      Zoologies 0.0369
	          could 0.0369
	       oologist 0.0369
	           good 0.0369
	              s 0.0369
	              - 0.0235
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	              , 0.0000
	          <UNK> 0.0000
	     Zoologists 0.0000
	              . 0.0000
	              A 0.0000
	      zoologist 0.0000
	              a 0.0000
	              I 0.0000

              "   423296   1 (20)
	           </S> 0.0369
	              , 0.0369
	              § 0.0369
	              ¶ 0.0369
	              I 0.0369
	            cia 0.0369
	              ¹ 0.0369
	              ( 0.0369
	          <UNK> 0.0369
	              - 0.0369
	              " 0.0369
	            and 0.0369
	            the 0.0059
	          which 0.0012
	             of 0.0000
	             or 0.0000
	             iu 0.0000
	             us 0.0000
	          since 0.0000
	            pub 0.0000

        Hoodies   423344  14 (27)
	         Hooded 0.8000
	         Hoodie 0.4000
	         Hoodia 0.2000
	         online 0.0369
	   publications 0.0369
	        Hodgies 0.0369
	          Hoodi 0.0369
	        Hodites 0.0369
	           Jews 0.0369
	        support 0.0369
	         photos 0.0369
	           good 0.0369
	            the 0.0059
	              a 0.0000
	              , 0.0000
	        Hoodies 0.0000
	          <UNK> 0.0000
	          their 0.0000
	              - 0.0000
	         people 0.0000
	              : 0.0000
	          water 0.0000
	           this 0.0000
	             us 0.0000
	        goodies 0.0000
	          those 0.0000
	           </S> 0.0000

        Messrs.   423390   2 (24)
	         messrs 0.3000
	         Messer 0.0369
	              , 0.0369
	              . 0.0369
	           2006 0.0369
	            and 0.0369
	           2004 0.0369
	              ( 0.0369
	         Messrs 0.0369
	          Messr 0.0369
	           2003 0.0369
	            but 0.0369
	              a 0.0369
	           2005 0.0369
	              I 0.0369
	        because 0.0369
	         search 0.0369
	        Messers 0.0369
	           </S> 0.0369
	            the 0.0059
	          which 0.0012
	              i 0.0000
	             or 0.0000
	           were 0.0000

             T.   423398  13 (25)
	            and 0.1000
	             of 0.0369
	              A 0.0369
	              a 0.0369
	              . 0.0369
	             To 0.0369
	             TV 0.0369
	              I 0.0369
	             TT 0.0369
	              - 0.0369
	              ( 0.0369
	           </S> 0.0059
	         Robert 0.0000
	        Jackson 0.0000
	              , 0.0000
	             A. 0.0000
	            The 0.0000
	             J. 0.0000
	          <UNK> 0.0000
	             T. 0.0000
	        William 0.0000
	            the 0.0000
	             M. 0.0000
	        Charles 0.0000
	           John 0.0000

        Pilling   423419   1 (30)
	           will 0.0369
	      Pillinger 0.0369
	        Pilning 0.0369
	             us 0.0369
	              a 0.0369
	             P. 0.0369
	           Last 0.0369
	        Pilling 0.0369
	        Pulling 0.0369
	          think 0.0369
	          Feels 0.0369
	        killing 0.0369
	             A. 0.0369
	              I 0.0369
	           Saxe 0.0369
	            the 0.0369
	            all 0.0369
	        Polling 0.0369
	        willing 0.0369
	        Partner 0.0369
	         Pillig 0.0369
	         Piling 0.0369
	       Prilling 0.0369
	              , 0.0059
	              . 0.0000
	          Scott 0.0000
	              A 0.0000
	        Kennedy 0.0000
	              - 0.0000
	           </S> 0.0000

        observe   423427   3 (24)
	              A 0.7000
	          email 0.2000
	       observer 0.0369
	       observee 0.0369
	       observed 0.0369
	             A. 0.0369
	        Updated 0.0369
	        observe 0.0369
	        observa 0.0369
	       reserved 0.0369
	        observo 0.0369
	          serve 0.0369
	             M. 0.0369
	           Like 0.0369
	             J. 0.0369
	              , 0.0059
	        Subject 0.0000
	              - 0.0000
	              S 0.0000
	              & 0.0000
	              a 0.0000
	          wrote 0.0000
	              . 0.0000
	           </S> 0.0000

        Hoodies   423443  17 (24)
	        goodies 0.1000
	        changes 0.0369
	              I 0.0369
	       comments 0.0369
	          Hoodi 0.0369
	        Hodites 0.0369
	         prices 0.0369
	         stakes 0.0369
	              X 0.0369
	              a 0.0369
	           Book 0.0369
	         people 0.0369
	              , 0.0369
	        Hodgies 0.0369
	              . 0.0369
	           </S> 0.0059
	           book 0.0000
	        Hoodies 0.0000
	              " 0.0000
	              - 0.0000
	        results 0.0000
	         Hoodie 0.0000
	      following 0.0000
	          first 0.0000

        largest   423476  13 (25)
	           such 0.3178
	     sufficient 0.0369
	        largets 0.0369
	     Australian 0.0369
	         larget 0.0369
	             us 0.0369
	              x 0.0369
	          great 0.0369
	        lagrest 0.0369
	     increasing 0.0369
	      enlargest 0.0369
	            the 0.0059
	              a 0.0000
	              , 0.0000
	              - 0.0000
	          pages 0.0000
	          large 0.0000
	         larges 0.0000
	           </S> 0.0000
	        largest 0.0000
	           this 0.0000
	           your 0.0000
	           last 0.0000
	        largess 0.0000
	              . 0.0000

          thick   423499   2 (26)
	           </S> 0.3533
	          thick 0.1000
	          trick 0.1000
	           cold 0.0369
	            hot 0.0369
	          major 0.0369
	            bad 0.0369
	         thicke 0.0369
	         thicks 0.0369
	           Pica 0.0369
	           warm 0.0369
	              . 0.0369
	         chilly 0.0369
	         tchick 0.0369
	      Hurricane 0.0369
	              : 0.0369
	      inclement 0.0369
	            the 0.0059
	          thing 0.0000
	              , 0.0000
	           peak 0.0000
	              a 0.0000
	          think 0.0000
	          which 0.0000
	           this 0.0000
	            his 0.0000

        Seebohm   423552   1 (27)
	        Seebohm 1.0000
	         Seeham 0.0369
	           both 0.0369
	           rate 0.0369
	              [ 0.0369
	   HealthGrades 0.0369
	          <UNK> 0.0369
	              " 0.0369
	           John 0.0369
	       Seeboden 0.0369
	        Sexbomb 0.0369
	           </S> 0.0369
	       Beerbohm 0.0369
	         report 0.0369
	         Sembol 0.0369
	            the 0.0059
	            our 0.0000
	             us 0.0000
	             be 0.0000
	            use 0.0000
	           Sebo 0.0000
	        Seebach 0.0000
	          Seebe 0.0000
	              a 0.0000
	            get 0.0000
	             do 0.0000
	           Seeb 0.0000

           this   423560   2 (22)
	              " 0.0575
	          thisn 0.0369
	           this 0.0369
	            cia 0.0369
	          thish 0.0369
	           tish 0.0369
	           thie 0.0369
	              I 0.0369
	              a 0.0369
	             iu 0.0369
	             us 0.0369
	            the 0.0369
	           thin 0.0369
	           that 0.0369
	            thi 0.0369
	              , 0.0059
	       Rowntree 0.0000
	           </S> 0.0000
	              N 0.0000
	         report 0.0000
	              . 0.0000
	              - 0.0000

            b}'   423582   1 (21)
	             by 0.5000
	             br 0.0369
	              A 0.0369
	            not 0.0369
	            cia 0.0369
	             iu 0.0369
	              I 0.0369
	             bb 0.0369
	             be 0.0369
	             us 0.0369
	              - 0.0369
	             to 0.0059
	              . 0.0000
	           </S> 0.0000
	           from 0.0000
	            and 0.0000
	              a 0.0000
	              , 0.0000
	            but 0.0000
	            the 0.0000
	             in 0.0000

           da\-   423586   1 (21)
	              , 0.0369
	              - 0.0369
	           dada 0.0369
	            day 0.0369
	           date 0.0369
	         groups 0.0369
	           data 0.0369
	            the 0.0369
	            dad 0.0369
	            daa 0.0369
	              . 0.0369
	           lava 0.0369
	           sala 0.0369
	           Baya 0.0369
	             do 0.0369
	             da 0.0369
	          Dubai 0.0369
	              a 0.0369
	           </S> 0.0369
	           days 0.0369
	          blogs 0.0369

              ,   423590 inf (8)
	             of 0.0369
	             to 0.0369
	             us 0.0369
	            and 0.0369
	             in 0.0369
	            the 0.0369
	            cia 0.0369
	             iu 0.0369

            and   423592   1 (18)
	            any 0.0369
	           andy 0.0369
	           anda 0.0369
	            arz 0.0369
	           alba 0.0369
	              x 0.0369
	             an 0.0369
	            ant 0.0369
	            and 0.0369
	           aand 0.0369
	            the 0.0059
	          which 0.0012
	            you 0.0000
	           your 0.0000
	              i 0.0000
	             us 0.0000
	             or 0.0000
	             of 0.0000

          Gatke   423596 inf (31)
	            and 0.0369
	              i 0.0369
	          Gatte 0.0369
	     warranties 0.0369
	       policies 0.0369
	          Gatae 0.0369
	          which 0.0369
	        Gatokae 0.0369
	              . 0.0369
	        Gataket 0.0369
	            the 0.0059
	           </S> 0.0000
	              a 0.0000
	             he 0.0000
	        Gaskets 0.0000
	           Gate 0.0000
	          Latke 0.0000
	             it 0.0000
	          latke 0.0000
	          other 0.0000
	           Date 0.0000
	              - 0.0000
	              I 0.0000
	           make 0.0000
	          Gates 0.0000
	          Gatka 0.0000
	         Gasket 0.0000
	           data 0.0000
	            she 0.0000
	              , 0.0000
	           then 0.0000

           says   423602   1 (27)
	              I 0.0369
	            may 0.0369
	           sayd 0.0369
	            are 0.0369
	           ASIN 0.0369
	           Baya 0.0369
	              a 0.0369
	           aysa 0.0369
	        include 0.0369
	           lava 0.0369
	           said 0.0369
	            the 0.0369
	           sala 0.0369
	          sayst 0.0369
	             so 0.0369
	            say 0.0369
	              . 0.0369
	           saya 0.0369
	          aysay 0.0369
	             to 0.0369
	           says 0.0369
	             by 0.0369
	          sayso 0.0369
	              - 0.0369
	              , 0.0059
	          Corp. 0.0000
	           </S> 0.0000

      commences   423671   1 (23)
	      commences 0.5000
	      commenced 0.3000
	           will 0.1000
	       commence 0.0369
	        comense 0.0369
	              a 0.0369
	       comments 0.0369
	     commencest 0.0369
	       Comments 0.0369
	           home 0.0369
	           site 0.0369
	        comment 0.0369
	       comences 0.0369
	      commencer 0.0369
	              I 0.0369
	             of 0.0059
	             is 0.0000
	              . 0.0000
	             to 0.0000
	              - 0.0000
	           </S> 0.0000
	              , 0.0000
	        process 0.0000

            the   423775   1 (20)
	              a 0.0369
	            the 0.0369
	           them 0.0369
	              , 0.0369
	              . 0.0369
	            thy 0.0369
	            tho 0.0369
	             to 0.0369
	            cia 0.0369
	             iu 0.0369
	            and 0.0369
	            teh 0.0369
	           thee 0.0369
	             us 0.0369
	           they 0.0369
	           </S> 0.0059
	              ) 0.0000
	              " 0.0000
	              ] 0.0000
	              } 0.0000

     consisting   423825   1 (29)
	              a 0.0369
	     consistent 0.0369
	            out 0.0369
	              I 0.0369
	       consisti 0.0369
	    consistindo 0.0369
	         system 0.0369
	              " 0.0369
	     regardless 0.0369
	            and 0.0369
	     consistant 0.0369
	         online 0.0369
	          flock 0.0369
	              ( 0.0369
	            but 0.0369
	           list 0.0369
	   inconsisting 0.0369
	      consistis 0.0369
	           </S> 0.0369
	          <UNK> 0.0369
	     consisting 0.0369
	        costing 0.0369
	            the 0.0059
	             or 0.0000
	              i 0.0000
	          which 0.0000
	            one 0.0000
	           many 0.0000
	           some 0.0000

      continues   423893  14 (29)
	     continuers 0.8000
	      continued 0.7000
	    participate 0.0369
	     trademarks 0.0369
	      exercises 0.0369
	     continueis 0.0369
	         toying 0.0369
	              . 0.0369
	      omissions 0.0369
	            and 0.0369
	     continuest 0.0369
	      continuus 0.0369
	            the 0.0059
	             is 0.0000
	           </S> 0.0000
	           more 0.0000
	            not 0.0000
	       services 0.0000
	              - 0.0000
	           that 0.0000
	              I 0.0000
	       Services 0.0000
	       continue 0.0000
	              a 0.0000
	              , 0.0000
	        contact 0.0000
	           used 0.0000
	      continues 0.0000
	      continuer 0.0000

      scarcel}^   423988   2 (29)
	            now 0.4000
	       scarcely 0.1000
	              a 0.0369
	              : 0.0369
	     scarcelins 0.0369
	        scarcer 0.0369
	          share 0.0369
	      scarselle 0.0369
	      scarsella 0.0369
	         carcel 0.0369
	         sarcel 0.0369
	    participate 0.0369
	         scarce 0.0369
	       sarcelle 0.0369
	       scarcest 0.0369
	           live 0.0369
	             be 0.0059
	           also 0.0000
	         result 0.0000
	           help 0.0000
	              , 0.0000
	            not 0.0000
	              i 0.0000
	              . 0.0000
	              I 0.0000
	         search 0.0000
	            put 0.0000
	           </S> 0.0000
	          start 0.0000

         assume   424022   1 (26)
	       provided 0.0369
	             as 0.0369
	         assuma 0.0369
	         assumi 0.0369
	          asume 0.0369
	         assume 0.0369
	        assumes 0.0369
	        assumed 0.0369
	              - 0.0369
	            are 0.0369
	           </S> 0.0369
	              I 0.0369
	              " 0.0369
	          <UNK> 0.0369
	            and 0.0369
	              ( 0.0369
	              x 0.0369
	            the 0.0059
	          which 0.0012
	           same 0.0000
	             so 0.0000
	            you 0.0000
	     especially 0.0000
	             we 0.0000
	             or 0.0000
	              i 0.0000

     Heligoland   424113   2 (25)
	              a 0.2250
	             us 0.0369
	        Firefox 0.0369
	     Helgioland 0.0369
	     Heligoland 0.0369
	         people 0.0369
	        company 0.0369
	           them 0.0369
	          fader 0.0369
	              I 0.0369
	   Heligolandic 0.0369
	   Heligolander 0.0369
	         around 0.0369
	      Helgoland 0.0369
	        changes 0.0369
	              - 0.0059
	           over 0.0000
	              . 0.0000
	        section 0.0000
	           </S> 0.0000
	              , 0.0000
	             it 0.0000
	           that 0.0000
	       sections 0.0000
	            the 0.0000

     migrations   424255   2 (33)
	    combination 0.7000
	          first 0.0369
	         number 0.0369
	   immigrations 0.0369
	           many 0.0369
	        options 0.0369
	            was 0.0369
	    migrationis 0.0369
	          price 0.0369
	     migrationi 0.0369
	      migratory 0.0369
	     migrations 0.0369
	    migrationes 0.0369
	        example 0.0369
	            are 0.0369
	          group 0.0369
	              ) 0.0369
	    emigrations 0.0369
	     migratione 0.0369
	          think 0.0369
	              , 0.0059
	      migration 0.0000
	            set 0.0000
	              - 0.0000
	             is 0.0000
	           </S> 0.0000
	        version 0.0000
	       features 0.0000
	            and 0.0000
	              . 0.0000
	              e 0.0000
	              a 0.0000
	        message 0.0000

          eight   424346   1 (20)
	         eighth 0.0369
	         eighty 0.0369
	              A 0.0369
	            few 0.0369
	       neighbor 0.0369
	         height 0.0369
	          eight 0.0369
	          eighe 0.0369
	         rights 0.0369
	              , 0.0059
	           high 0.0000
	              - 0.0000
	            the 0.0000
	             to 0.0000
	              I 0.0000
	              a 0.0000
	          right 0.0000
	            and 0.0000
	           </S> 0.0000
	              . 0.0000

         extend   424442   1 (22)
	         extend 0.4000
	          after 0.0369
	         extent 0.0369
	        extende 0.0369
	          world 0.0369
	        extendi 0.0369
	            Act 0.0369
	           city 0.0369
	        textend 0.0369
	          exter 0.0369
	             of 0.0059
	              . 0.0000
	            and 0.0000
	              , 0.0000
	              a 0.0000
	           </S> 0.0000
	        extends 0.0000
	              - 0.0000
	              I 0.0000
	           even 0.0000
	           Send 0.0000
	              ) 0.0000

          while   424450   1 (23)
	        licence 0.0369
	         whilie 0.0369
	              , 0.0369
	              - 0.0369
	     moratorium 0.0369
	          whill 0.0369
	          Chile 0.0369
	          while 0.0369
	          whilk 0.0369
	              a 0.0369
	        passing 0.0369
	         whiles 0.0369
	         whiled 0.0369
	           will 0.0369
	            ban 0.0369
	          white 0.0369
	          which 0.0369
	          hwile 0.0369
	              . 0.0369
	           </S> 0.0059
	              " 0.0000
	              } 0.0000
	              ) 0.0000

simultaneous!}'   424481  23 (29)
	         photos 0.0369
	            and 0.0369
	              " 0.0369
	    regulations 0.0369
	         prices 0.0369
	           easy 0.0369
	             an 0.0369
	         online 0.0369
	           </S> 0.0369
	              a 0.0369
	         simple 0.0369
	     statistics 0.0369
	   simultaneous 0.0369
	          <UNK> 0.0369
	         should 0.0369
	       complete 0.0369
	              I 0.0369
	       services 0.0369
	              , 0.0369
	              ( 0.0369
	            but 0.0369
	            the 0.0059
	            you 0.0000
	              i 0.0000
	          which 0.0000
	          would 0.0000
	             or 0.0000
	 simultaneously 0.0000
	           some 0.0000

            and   424497   1 (20)
	              , 0.0369
	          shown 0.0369
	           </S> 0.0369
	             is 0.0369
	            ant 0.0369
	              a 0.0369
	             it 0.0369
	           andy 0.0369
	            the 0.0369
	            and 0.0369
	            arz 0.0369
	            any 0.0369
	             us 0.0369
	              . 0.0369
	           anda 0.0369
	              I 0.0369
	             an 0.0369
	           alba 0.0369
	           aand 0.0369
	              - 0.0369

    Bremerhaven   424554   1 (19)
	              . 0.0369
	      remenaven 0.0369
	    Summerhaven 0.0369
	    practicable 0.0369
	      Berehaven 0.0369
	     Bremerhavn 0.0369
	    Bremerhaven 0.0369
	        America 0.0369
	              a 0.0059
	              - 0.0000
	       possible 0.0000
	       required 0.0000
	            the 0.0000
	           well 0.0000
	              I 0.0000
	      important 0.0000
	           </S> 0.0000
	              , 0.0000
	              i 0.0000

             as   424567   1 (24)
	          <UNK> 0.0369
	             at 0.0369
	           </S> 0.0369
	              I 0.0369
	             as 0.0369
	            and 0.0369
	              a 0.0369
	            aas 0.0369
	            arz 0.0369
	              ( 0.0369
	            ass 0.0369
	              " 0.0369
	            ask 0.0369
	             an 0.0369
	            but 0.0369
	            the 0.0059
	          which 0.0012
	             iu 0.0000
	          there 0.0000
	             or 0.0000
	              i 0.0000
	            who 0.0000
	             sa 0.0000
	             us 0.0000

          plies   424618  21 (31)
	          place 0.7000
	              a 0.0369
	         pliers 0.0369
	       attracts 0.0369
	      conducted 0.0369
	          Pales 0.0369
	           View 0.0369
	          piles 0.0369
	       Calcutta 0.0369
	         pliest 0.0369
	           plie 0.0369
	        replies 0.0369
	             us 0.0369
	              I 0.0369
	        located 0.0369
	          plise 0.0369
	       features 0.0369
	          plier 0.0369
	           page 0.0369
	              . 0.0059
	              , 0.0000
	           </S> 0.0000
	      scheduled 0.0000
	          plans 0.0000
	             to 0.0000
	            the 0.0000
	          plied 0.0000
	             be 0.0000
	          plies 0.0000
	           like 0.0000
	              - 0.0000

             We   424666   1 (22)
	             We 0.3532
	              I 0.0418
	             WA 0.0369
	             us 0.0369
	             WI 0.0369
	            WWe 0.0369
	            Wed 0.0369
	             iu 0.0369
	            cia 0.0369
	              a 0.0369
	             be 0.0369
	            Wee 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              } 0.0000
	              . 0.0000
	              ) 0.0000
	             '' 0.0000
	              , 0.0000
	            Web 0.0000

      migration   424680  15 (32)
	          total 0.8000
	       migrator 0.8000
	     migratione 0.0369
	       vertical 0.0369
	     migrationi 0.0369
	     migraation 0.0369
	         weekly 0.0369
	              . 0.0369
	       migratio 0.0369
	         market 0.0369
	       migratum 0.0369
	              , 0.0369
	         screen 0.0369
	           </S> 0.0059
	          major 0.0000
	          small 0.0000
	            few 0.0000
	      migratory 0.0000
	        million 0.0000
	            new 0.0000
	            lot 0.0000
	           free 0.0000
	     migrations 0.0000
	              - 0.0000
	           wide 0.0000
	           good 0.0000
	     registered 0.0000
	        minimum 0.0000
	      migration 0.0000
	         chance 0.0000
	         single 0.0000
	       question 0.0000

         column   424690   2 (25)
	         period 0.2000
	              I 0.0369
	          score 0.0369
	        columna 0.0369
	        colonum 0.0369
	        variety 0.0369
	         columb 0.0369
	            res 0.0369
	         column 0.0369
	              a 0.0369
	          colum 0.0369
	         Forums 0.0369
	      trademark 0.0369
	        columns 0.0369
	          range 0.0369
	         colony 0.0369
	             of 0.0059
	             to 0.0000
	              . 0.0000
	              - 0.0000
	          could 0.0000
	           path 0.0000
	              , 0.0000
	           </S> 0.0000
	           come 0.0000

           Herr   424753   1 (21)
	           Herr 0.7000
	              - 0.0235
	           </S> 0.0059
	          Herre 0.0000
	              A 0.0000
	           Hero 0.0000
	              ) 0.0000
	              I 0.0000
	            arz 0.0000
	           Help 0.0000
	            and 0.0000
	              a 0.0000
	              ] 0.0000
	           Here 0.0000
	          Herrn 0.0000
	           were 0.0000
	           here 0.0000
	              . 0.0000
	              , 0.0000
	          <UNK> 0.0000
	            Her 0.0000

          Gatke   424758 inf (29)
	            and 0.1000
	              A 0.0369
	          Gatte 0.0369
	        Gatokae 0.0369
	          Latke 0.0369
	          latke 0.0369
	             he 0.0369
	          Games 0.0369
	              I 0.0369
	           take 0.0369
	        Gaskets 0.0369
	              a 0.0369
	        Gataket 0.0369
	           then 0.0369
	          Gatae 0.0369
	         Gasket 0.0369
	          water 0.0369
	          Gatka 0.0369
	           Gate 0.0369
	              , 0.0059
	              - 0.0000
	          <UNK> 0.0000
	            der 0.0000
	             M. 0.0000
	          Gates 0.0000
	              . 0.0000
	              ) 0.0000
	              " 0.0000
	           </S> 0.0000

       proceeds   424764   1 (18)
	              " 0.0369
	             J. 0.0369
	          Ringe 0.0369
	              a 0.0369
	       proceded 0.0369
	      proceeded 0.0369
	      processed 0.0369
	       proceeds 0.0369
	        proceed 0.0369
	              - 0.0369
	       procedes 0.0369
	              . 0.0369
	        procedo 0.0369
	             C. 0.0369
	     proceedest 0.0369
	              , 0.0059
	          Corp. 0.0000
	           </S> 0.0000

   nevertheless   424932   1 (21)
	             us 0.0369
	            the 0.0369
	          there 0.0369
	   Nevertheless 0.0369
	              . 0.0369
	            too 0.0369
	        address 0.0369
	              , 0.0369
	  nethertheless 0.0369
	              I 0.0369
	           here 0.0369
	          night 0.0369
	   nevertheless 0.0369
	              a 0.0369
	              - 0.0369
	            now 0.0369
	           they 0.0369
	           </S> 0.0059
	              } 0.0000
	              " 0.0000
	              ) 0.0000

      important   424990  23 (30)
	     importante 0.2000
	             in 0.1021
	            and 0.0369
	      importans 0.0369
	              . 0.0369
	              s 0.0369
	            yes 0.0369
	              } 0.0369
	             as 0.0369
	     resolution 0.0369
	           </S> 0.0369
	     importanta 0.0369
	          first 0.0369
	              I 0.0369
	              , 0.0369
	              ( 0.0369
	      importano 0.0369
	    importantan 0.0369
	              a 0.0369
	   respectively 0.0369
	            the 0.0059
	          which 0.0012
	             or 0.0000
	      important 0.0000
	     importanti 0.0000
	            its 0.0000
	            for 0.0000
	     importants 0.0000
	             we 0.0000
	           more 0.0000

             as   425002   1 (19)
	             as 0.0369
	             sa 0.0369
	              , 0.0369
	             us 0.0369
	              I 0.0369
	             at 0.0369
	             an 0.0369
	            arz 0.0369
	             iu 0.0369
	              . 0.0369
	              a 0.0369
	            aas 0.0369
	            ass 0.0369
	              - 0.0369
	            ask 0.0369
	             of 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000

          Crows   425227  15 (30)
	           From 0.9000
	           rows 0.4000
	           Cows 0.3000
	              a 0.0369
	         Corvus 0.0369
	           best 0.0369
	        Crowson 0.0369
	              I 0.0369
	       variable 0.0369
	       Crowstep 0.0369
	          Crowe 0.0369
	         Crowds 0.0369
	              - 0.0369
	            are 0.0059
	         Crowns 0.0000
	        changes 0.0000
	         people 0.0000
	          Cross 0.0000
	           </S> 0.0000
	              , 0.0000
	            two 0.0000
	           from 0.0000
	           Crow 0.0000
	           down 0.0000
	            and 0.0000
	          Crows 0.0000
	         issues 0.0000
	         things 0.0000
	              . 0.0000
	          Crown 0.0000

       econom_v   425240  15 (30)
	        economi 0.9000
	        econome 0.8000
	       economia 0.5000
	           home 0.0369
	         middle 0.0369
	              , 0.0369
	              . 0.0369
	        wonders 0.0369
	        economo 0.0369
	         School 0.0369
	       oeconomi 0.0369
	      oeconomus 0.0369
	       economen 0.0369
	           </S> 0.0059
	      following 0.0000
	         number 0.0000
	              - 0.0000
	        economy 0.0000
	            use 0.0000
	       economic 0.0000
	           time 0.0000
	            end 0.0000
	           same 0.0000
	          world 0.0000
	         school 0.0000
	           case 0.0000
	           form 0.0000
	            top 0.0000
	          state 0.0000
	          first 0.0000

    Evcr\'where   425260   1 (24)
	            and 0.0369
	          where 0.0369
	        promote 0.0369
	          their 0.0369
	             us 0.0369
	     Everywhere 0.0369
	          there 0.0369
	            the 0.0369
	              a 0.0369
	           </S> 0.0059
	              ) 0.0000
	              ] 0.0000
	        However 0.0000
	              A 0.0000
	              - 0.0000
	              , 0.0000
	           Each 0.0000
	             In 0.0000
	              I 0.0000
	              . 0.0000
	              " 0.0000
	              \ 0.0000
	             '' 0.0000
	          There 0.0000

            the   425272   1 (17)
	           thee 0.0369
	          <UNK> 0.0369
	              n 0.0369
	              . 0.0369
	             iu 0.0369
	              , 0.0369
	              ) 0.0369
	           them 0.0369
	           </S> 0.0369
	            cia 0.0369
	            thy 0.0369
	            tho 0.0369
	           they 0.0369
	             us 0.0369
	              a 0.0369
	            teh 0.0369
	            the 0.0369

        creates   425296  11 (20)
	         create 0.6000
	       createsi 0.0369
	        creatas 0.0369
	          after 0.0369
	        cerates 0.0369
	      recreates 0.0369
	          State 0.0369
	        because 0.0369
	         crates 0.0369
	              , 0.0059
	              - 0.0000
	             in 0.0000
	        creates 0.0000
	        created 0.0000
	             of 0.0000
	              a 0.0000
	              I 0.0000
	           </S> 0.0000
	              . 0.0000
	            and 0.0000

      altliough   425421   2 (26)
	             on 0.2000
	              I 0.0369
	           </S> 0.0369
	            all 0.0369
	              " 0.0369
	          about 0.0369
	      anticough 0.0369
	          <UNK> 0.0369
	       although 0.0369
	       Although 0.0369
	              , 0.0369
	      allthough 0.0369
	        Ellough 0.0369
	            the 0.0059
	             if 0.0000
	              e 0.0000
	            for 0.0000
	           with 0.0000
	             or 0.0000
	              i 0.0000
	             in 0.0000
	          while 0.0000
	        through 0.0000
	          which 0.0000
	         though 0.0000
	        without 0.0000

          snuiU   425471 inf (29)
	          sunni 0.1000
	            the 0.0369
	        animals 0.0369
	       wildlife 0.0369
	          snuji 0.0369
	          Unsui 0.0369
	         animal 0.0369
	              I 0.0369
	         Unguis 0.0369
	          snuif 0.0369
	          snuit 0.0369
	           some 0.0369
	    merchandise 0.0369
	         snuite 0.0369
	              a 0.0369
	            snu 0.0369
	        aquatic 0.0369
	           than 0.0059
	          major 0.0000
	      countries 0.0000
	    information 0.0000
	              - 0.0000
	           </S> 0.0000
	              , 0.0000
	              . 0.0000
	          items 0.0000
	           said 0.0000
	        product 0.0000
	           such 0.0000

        species   425477   1 (21)
	         series 0.0369
	        especie 0.0369
	              , 0.0369
	              I 0.0369
	        species 0.0369
	              a 0.0369
	        suecica 0.0369
	       speciest 0.0369
	           info 0.0369
	             of 0.0369
	        speciei 0.0369
	           </S> 0.0369
	       especies 0.0369
	        speciem 0.0369
	        special 0.0369
	         specie 0.0369
	              . 0.0369
	              - 0.0369
	    medications 0.0369
	       specific 0.0369
	       speciesm 0.0369

   nevertheless   425572   1 (20)
	              I 0.0369
	            the 0.0369
	          these 0.0369
	   Nevertheless 0.0369
	             of 0.0369
	  nethertheless 0.0369
	              , 0.0369
	              . 0.0369
	          might 0.0369
	              a 0.0369
	   nevertheless 0.0369
	              - 0.0369
	             us 0.0369
	          every 0.0369
	          there 0.0369
	            and 0.0369
	             at 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000

            all   425585  13 (23)
	           true 0.2000
	             al 0.0369
	            alt 0.0369
	            als 0.0369
	            arz 0.0369
	           sala 0.0369
	            ala 0.0369
	           alba 0.0369
	              } 0.0369
	           ally 0.0369
	           alle 0.0369
	              , 0.0059
	              - 0.0000
	              . 0.0000
	              I 0.0000
	              a 0.0000
	            one 0.0000
	            are 0.0000
	          agree 0.0000
	           </S> 0.0000
	            all 0.0000
	             be 0.0000
	            and 0.0000

         Ital}'   425654   1 (27)
	          Italy 0.9000
	          Itala 0.2000
	         Italia 0.2000
	              I 0.0369
	           also 0.0369
	          Ialta 0.0369
	             us 0.0369
	            use 0.0369
	          value 0.0369
	             at 0.0369
	          which 0.0297
	            the 0.0059
	            all 0.0000
	              , 0.0000
	              . 0.0000
	         Italic 0.0000
	          Italo 0.0000
	            and 0.0000
	              - 0.0000
	           time 0.0000
	           this 0.0000
	           more 0.0000
	     particular 0.0000
	           that 0.0000
	              a 0.0000
	           Ital 0.0000
	           </S> 0.0000

         during   425661   1 (24)
	             of 0.0369
	          least 0.0369
	         Spring 0.0369
	         during 0.0369
	       duringly 0.0369
	       drugging 0.0369
	            the 0.0369
	          using 0.0369
	          durin 0.0369
	       drudging 0.0369
	         dubius 0.0369
	           than 0.0369
	         durino 0.0369
	             to 0.0369
	              - 0.0369
	          dring 0.0369
	              a 0.0369
	           </S> 0.0369
	          being 0.0369
	         During 0.0369
	              . 0.0369
	         daring 0.0369
	              , 0.0369
	          uring 0.0369

      migration   425681  15 (27)
	           year 0.0369
	           many 0.0369
	           more 0.0369
	       migratio 0.0369
	            pay 0.0369
	          cycle 0.0369
	     migraation 0.0369
	     migrationi 0.0369
	          month 0.0369
	     migratione 0.0369
	           week 0.0369
	             us 0.0369
	              I 0.0369
	            the 0.0059
	              . 0.0000
	              a 0.0000
	        package 0.0000
	           </S> 0.0000
	              , 0.0000
	     migrations 0.0000
	           with 0.0000
	        product 0.0000
	      migration 0.0000
	      migratory 0.0000
	              - 0.0000
	            set 0.0000
	    information 0.0000

      scarcel}'   425705   1 (27)
	       scarcely 0.4000
	            see 0.2000
	         carcel 0.0369
	            and 0.0369
	         scarce 0.0369
	           some 0.0369
	       sarcelle 0.0369
	         should 0.0369
	       scarcest 0.0369
	      scarselle 0.0369
	      scarsella 0.0369
	     scarcelins 0.0369
	         sarcel 0.0369
	        scarcer 0.0369
	             be 0.0059
	           like 0.0000
	          still 0.0000
	              . 0.0000
	            not 0.0000
	           have 0.0000
	           </S> 0.0000
	            you 0.0000
	              , 0.0000
	              I 0.0000
	              - 0.0000
	            the 0.0000
	              a 0.0000

          equal   425715   1 (22)
	           that 0.0369
	         equale 0.0369
	              . 0.0369
	          equae 0.0369
	           equa 0.0369
	             to 0.0369
	              a 0.0369
	          equal 0.0369
	          equam 0.0369
	         equall 0.0369
	              , 0.0369
	           eBay 0.0369
	          email 0.0369
	           Aqua 0.0369
	              - 0.0369
	           real 0.0369
	            the 0.0369
	         sexual 0.0369
	           </S> 0.0369
	             in 0.0369
	         equals 0.0369
	             us 0.0369

      destroyed   425756   1 (20)
	       destroys 0.0369
	      destroyed 0.0369
	     destroyest 0.0369
	      destroyer 0.0369
	      destroyen 0.0369
	             us 0.0369
	              I 0.0369
	    undestroyed 0.0369
	        through 0.0369
	           data 0.0369
	              . 0.0059
	             in 0.0000
	              - 0.0000
	            the 0.0000
	              , 0.0000
	           </S> 0.0000
	             of 0.0000
	           from 0.0000
	              a 0.0000
	         before 0.0000

            b}-   425766   8 (18)
	             -- 0.6000
	             bb 0.0369
	            cia 0.0369
	             iu 0.0369
	              I 0.0369
	             br 0.0369
	              . 0.0059
	             be 0.0000
	             in 0.0000
	         during 0.0000
	              - 0.0000
	              , 0.0000
	            all 0.0000
	             by 0.0000
	            but 0.0000
	             us 0.0000
	              a 0.0000
	           </S> 0.0000

            the   425770   1 (15)
	           they 0.0369
	            teh 0.0369
	            the 0.0369
	            tho 0.0369
	              I 0.0369
	              , 0.0369
	           </S> 0.0369
	              a 0.0369
	            cia 0.0369
	             iu 0.0369
	            thy 0.0369
	             us 0.0369
	              . 0.0369
	           them 0.0369
	           thee 0.0369

         Hooded   425774   7 (27)
	         Hoofed 0.1000
	      wonderful 0.0369
	            war 0.0369
	           Hoed 0.0369
	           </S> 0.0059
	           same 0.0037
	          <UNK> 0.0000
	              " 0.0000
	      following 0.0000
	          first 0.0000
	         Hoover 0.0000
	         Hoodie 0.0000
	          Hotel 0.0000
	         wooded 0.0000
	         Hooded 0.0000
	           Home 0.0000
	          House 0.0000
	              ' 0.0000
	              - 0.0000
	         Holder 0.0000
	           Hode 0.0000
	          world 0.0000
	         hooded 0.0000
	           Hood 0.0000
	           work 0.0000
	         Hooked 0.0000
	           time 0.0000

         during   425787  13 (24)
	             is 0.7000
	       duringly 0.0369
	          uring 0.0369
	          dring 0.0369
	       drugging 0.0369
	       drudging 0.0369
	         dubius 0.0369
	          durin 0.0369
	         durino 0.0369
	         daring 0.0369
	              $ 0.0369
	           </S> 0.0059
	              , 0.0000
	            are 0.0000
	         During 0.0000
	              A 0.0000
	            and 0.0000
	          doing 0.0000
	           Nest 0.0000
	              . 0.0000
	              - 0.0000
	              I 0.0000
	              a 0.0000
	         during 0.0000

         Hooded   425872   1 (27)
	          Hotel 0.8000
	         Hooded 0.8000
	         Hoodie 0.4000
	           Hoed 0.0369
	              A 0.0369
	              n 0.0369
	              . 0.0369
	             A. 0.0369
	             C. 0.0369
	            the 0.0059
	           each 0.0000
	           good 0.0000
	          their 0.0000
	           Hood 0.0000
	           </S> 0.0000
	              a 0.0000
	           Hode 0.0000
	              , 0.0000
	           this 0.0000
	         Hooked 0.0000
	         wooded 0.0000
	           Home 0.0000
	              - 0.0000
	         Hoofed 0.0000
	         hooded 0.0000
	            all 0.0000
	             us 0.0000

        becomes   425885   2 (20)
	            and 0.2000
	         become 0.0369
	              $ 0.0369
	        becomes 0.0369
	       becomers 0.0369
	        becomed 0.0369
	        becomer 0.0369
	        becomse 0.0369
	       becomest 0.0369
	         combes 0.0369
	           </S> 0.0059
	              A 0.0000
	              ( 0.0000
	           Nest 0.0000
	              I 0.0000
	         became 0.0000
	              . 0.0000
	              - 0.0000
	              a 0.0000
	              , 0.0000

        nowhere   425893  12 (21)
	          where 0.2000
	        readily 0.0369
	        noghere 0.0369
	       Knowhere 0.0369
	           most 0.0369
	       nowheres 0.0369
	        Powered 0.0369
	       northern 0.0369
	       onewhere 0.0369
	         nosher 0.0369
	              a 0.0059
	           </S> 0.0000
	              , 0.0000
	              . 0.0000
	           very 0.0000
	            the 0.0000
	        nowhere 0.0000
	           more 0.0000
	          there 0.0000
	              : 0.0000
	             an 0.0000

   prepondering   425918 inf (25)
	         lesser 0.0369
	              - 0.0369
	    preordering 0.0369
	   prerendering 0.0369
	      preponder 0.0369
	              e 0.0369
	           same 0.0369
	          major 0.0369
	   preponderant 0.0369
	        process 0.0369
	             as 0.0059
	          great 0.0000
	           </S> 0.0000
	              , 0.0000
	          cases 0.0000
	             an 0.0000
	      pondering 0.0000
	              a 0.0000
	          other 0.0000
	              . 0.0000
	       property 0.0000
	       products 0.0000
	         person 0.0000
	           that 0.0000
	 preponderating 0.0000

       quantity   425931   1 (21)
	              . 0.0369
	            the 0.0369
	        options 0.0369
	              I 0.0369
	              - 0.0369
	    disquantity 0.0369
	       Quantity 0.0369
	        quantum 0.0369
	       quantify 0.0369
	       quaintly 0.0369
	              , 0.0369
	         quanti 0.0369
	              a 0.0369
	           </S> 0.0369
	             as 0.0369
	      questions 0.0369
	       quantity 0.0369
	        quality 0.0369
	            way 0.0369
	              ( 0.0369
	         action 0.0369

     Heligoland   425946   1 (29)
	     Heligoland 0.9000
	     Helgioland 0.0369
	         France 0.0369
	   Heligolandic 0.0369
	   Heligolander 0.0369
	              I 0.0369
	              C 0.0369
	          could 0.0369
	          Sinai 0.0369
	             us 0.0369
	           were 0.0369
	             as 0.0369
	          whole 0.0369
	          would 0.0369
	            the 0.0059
	           this 0.0000
	     particular 0.0000
	           fact 0.0000
	            and 0.0000
	              , 0.0000
	              . 0.0000
	      Helgoland 0.0000
	          which 0.0000
	           </S> 0.0000
	              - 0.0000
	              a 0.0000
	           turn 0.0000
	           part 0.0000
	        writing 0.0000

            but   426031   1 (23)
	              . 0.0369
	             us 0.0369
	            the 0.0369
	           buts 0.0369
	             by 0.0369
	            buy 0.0369
	            but 0.0369
	             bu 0.0369
	             be 0.0369
	              , 0.0369
	              - 0.0369
	            tub 0.0369
	             iu 0.0369
	            cia 0.0369
	              | 0.0369
	            bus 0.0369
	           butt 0.0369
	              a 0.0369
	           </S> 0.0059
	          <UNK> 0.0000
	              ) 0.0000
	              " 0.0000
	              } 0.0000

         during   426110  12 (24)
	          durin 0.0369
	          these 0.0369
	         durino 0.0369
	          dring 0.0369
	       drugging 0.0369
	       drudging 0.0369
	         dubius 0.0369
	       duringly 0.0369
	          uring 0.0369
	         daring 0.0369
	              , 0.0059
	          using 0.0000
	              . 0.0000
	            the 0.0000
	              a 0.0000
	              I 0.0000
	              : 0.0000
	         During 0.0000
	         couple 0.0000
	            due 0.0000
	           </S> 0.0000
	              - 0.0000
	          Print 0.0000
	         during 0.0000

        impedes   426243  20 (27)
	             in 0.1021
	             on 0.0541
	              ( 0.0369
	              a 0.0369
	           </S> 0.0369
	     desimpedes 0.0369
	             as 0.0369
	          <UNK> 0.0369
	              x 0.0369
	       impeders 0.0369
	          under 0.0369
	              " 0.0369
	              I 0.0369
	        impides 0.0369
	        impeeds 0.0369
	            and 0.0369
	           with 0.0062
	            the 0.0059
	          which 0.0012
	            for 0.0000
	         impede 0.0000
	            its 0.0000
	             or 0.0000
	        impeder 0.0000
	        impedes 0.0000
	          these 0.0000
	        impeded 0.0000

            and   426262   1 (21)
	              ( 0.0369
	            and 0.0369
	           andy 0.0369
	           anda 0.0369
	             an 0.0369
	            any 0.0369
	           aand 0.0369
	           even 0.0369
	              I 0.0369
	            arz 0.0369
	              a 0.0369
	            ant 0.0369
	              - 0.0369
	              , 0.0369
	             us 0.0369
	            the 0.0369
	              . 0.0369
	           alba 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000

       impudent   426324  15 (22)
	              x 0.0369
	          under 0.0369
	            and 0.0369
	              I 0.0369
	              a 0.0369
	       imputent 0.0369
	      impudente 0.0369
	      impudenti 0.0369
	              " 0.0369
	       impudens 0.0369
	          <UNK> 0.0369
	           </S> 0.0369
	              ( 0.0369
	            the 0.0059
	             so 0.0000
	          which 0.0000
	       impudent 0.0000
	           such 0.0000
	            its 0.0000
	         please 0.0000
	             in 0.0000
	             or 0.0000

          thej^   426336   1 (20)
	           they 0.4283
	          kthej 0.0369
	          athje 0.0369
	            hej 0.0369
	          thyej 0.0369
	            tej 0.0369
	              a 0.0059
	          there 0.0000
	           well 0.0000
	          <UNK> 0.0000
	           </S> 0.0000
	            the 0.0000
	            you 0.0000
	              I 0.0000
	              : 0.0000
	          their 0.0000
	              i 0.0000
	              - 0.0000
	             we 0.0000
	              , 0.0000

            are   426342   1 (22)
	             as 0.0369
	           ares 0.0369
	            aer 0.0369
	              . 0.0369
	           area 0.0369
	           aare 0.0369
	              I 0.0369
	             us 0.0369
	            are 0.0369
	             ar 0.0369
	            arm 0.0369
	           alba 0.0369
	             at 0.0369
	            arz 0.0369
	            and 0.0369
	              a 0.0369
	            art 0.0369
	             is 0.0369
	           </S> 0.0369
	              , 0.0369
	           aree 0.0369
	              - 0.0369

            da3   426394  10 (25)
	            dad 0.7000
	             us 0.2000
	              i 0.0369
	            cia 0.0369
	            arz 0.0369
	              a 0.0369
	            das 0.0369
	            daa 0.0369
	              . 0.0059
	            day 0.0000
	       holidays 0.0000
	             it 0.0000
	            can 0.0000
	           </S> 0.0000
	            was 0.0000
	            BBQ 0.0000
	             da 0.0000
	         months 0.0000
	              I 0.0000
	              , 0.0000
	           term 0.0000
	             of 0.0000
	           days 0.0000
	             do 0.0000
	              - 0.0000

             's   426397   2 (21)
	              ' 0.5071
	            day 0.0369
	           fall 0.0369
	             ss 0.0369
	             as 0.0369
	           2003 0.0369
	              . 0.0369
	              I 0.0369
	             so 0.0369
	             iu 0.0369
	            cia 0.0369
	             us 0.0369
	             is 0.0369
	           2002 0.0369
	         winter 0.0369
	             's 0.0369
	              a 0.0369
	              : 0.0059
	              , 0.0000
	              - 0.0000
	           </S> 0.0000

         earl}^   426406   8 (23)
	            are 0.0369
	          earal 0.0369
	         before 0.0369
	           8:30 0.0369
	          earle 0.0369
	              I 0.0369
	            the 0.0059
	           eBay 0.0000
	          early 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	           each 0.0000
	          earls 0.0000
	             us 0.0000
	            and 0.0000
	          eagle 0.0000
	              $ 0.0000
	           earl 0.0000
	              8 0.0000
	              - 0.0000
	              . 0.0000
	            one 0.0000

           dawn   426413   1 (27)
	           data 0.0369
	           dawk 0.0369
	              - 0.0369
	           days 0.0369
	              , 0.0369
	              . 0.0369
	           </S> 0.0369
	           Baya 0.0369
	           dwan 0.0369
	           sala 0.0369
	          adawn 0.0369
	             pm 0.0369
	            daw 0.0369
	              % 0.0369
	              A 0.0369
	          dawns 0.0369
	          dawno 0.0369
	           dawg 0.0369
	           dawn 0.0369
	         Friday 0.0369
	        morning 0.0369
	             to 0.0369
	             am 0.0369
	              a 0.0369
	              I 0.0369
	           lava 0.0369
	            day 0.0369

        plunder   426433  11 (21)
	            not 0.1053
	            and 0.0369
	        pounder 0.0369
	       plundere 0.0369
	       plunders 0.0369
	              - 0.0369
	        plunger 0.0369
	          found 0.0369
	              . 0.0369
	              I 0.0059
	             in 0.0000
	      plundered 0.0000
	           also 0.0000
	              , 0.0000
	            the 0.0000
	              i 0.0000
	          under 0.0000
	             it 0.0000
	              a 0.0000
	           </S> 0.0000
	        plunder 0.0000

           Lark   426476   1 (35)
	           Lark 0.5000
	          Larks 0.3532
	           Lars 0.1000
	              , 0.0369
	     transition 0.0369
	          Larak 0.0369
	            arz 0.0369
	           some 0.0369
	    opportunity 0.0369
	              . 0.0369
	        airport 0.0369
	      beginning 0.0369
	     Commission 0.0369
	           </S> 0.0059
	           same 0.0037
	            way 0.0000
	           part 0.0000
	            top 0.0000
	            are 0.0000
	         Larkin 0.0000
	           sala 0.0000
	           user 0.0000
	          right 0.0000
	           Last 0.0000
	           Lara 0.0000
	           Park 0.0000
	           lava 0.0000
	          Lakar 0.0000
	      following 0.0000
	          first 0.0000
	            Lar 0.0000
	              - 0.0000
	            Law 0.0000
	           work 0.0000
	           time 0.0000

        Dresser   426495   9 (27)
	          Press 0.0667
	           here 0.0369
	       Dresseur 0.0369
	           UTMB 0.0369
	          there 0.0369
	              . 0.0369
	         eresse 0.0369
	          <UNK> 0.0059
	             or 0.0000
	              1 0.0000
	            and 0.0000
	              - 0.0000
	              3 0.0000
	              2 0.0000
	              s 0.0000
	              b 0.0000
	              I 0.0000
	              a 0.0000
	       Dressers 0.0000
	           </S> 0.0000
	       Dressler 0.0000
	         Passer 0.0000
	              ) 0.0000
	        Dresses 0.0000
	        Dresser 0.0000
	        Dressed 0.0000
	              A 0.0000

         wonder   426522  12 (25)
	       wondered 0.9000
	            the 0.5000
	         winter 0.4000
	          wonde 0.0369
	        thought 0.0369
	       wonderer 0.0369
	             us 0.0369
	         wonden 0.0369
	            say 0.0369
	         worden 0.0369
	              , 0.0059
	         danger 0.0000
	             to 0.0000
	              - 0.0000
	        wonders 0.0000
	           true 0.0000
	              . 0.0000
	           </S> 0.0000
	              I 0.0000
	         wonder 0.0000
	          would 0.0000
	              a 0.0000
	           were 0.0000
	             be 0.0000
	          under 0.0000

         Hooded   426572  10 (24)
	         Hoodie 0.0369
	             us 0.0369
	           Hoed 0.0369
	              C 0.0369
	           Hode 0.0369
	              . 0.0369
	         Hoofed 0.0369
	         Hooked 0.0369
	            the 0.0059
	              , 0.0000
	           </S> 0.0000
	         Hooded 0.0000
	             an 0.0000
	       Canadian 0.0000
	              a 0.0000
	          Hotel 0.0000
	           Home 0.0000
	           Hood 0.0000
	         wooded 0.0000
	            one 0.0000
	              - 0.0000
	         hooded 0.0000
	              I 0.0000
	           good 0.0000

           left   426586  17 (32)
	          lefts 0.4000
	              x 0.0369
	              " 0.0369
	         Corvus 0.0369
	            and 0.0369
	              , 0.0369
	              ( 0.0369
	      resulting 0.0369
	            The 0.0369
	        working 0.0369
	              A 0.0369
	            New 0.0369
	          <UNK> 0.0369
	        Magpies 0.0369
	            the 0.0059
	          which 0.0012
	            who 0.0000
	          while 0.0000
	             or 0.0000
	           lefa 0.0000
	          lefte 0.0000
	            new 0.0000
	            lef 0.0000
	           lift 0.0000
	          lefty 0.0000
	          leeft 0.0000
	            why 0.0000
	           like 0.0000
	   particularly 0.0000
	           lava 0.0000
	              i 0.0000
	           left 0.0000

             By   426605   2 (22)
	             My 0.5980
	             By 0.2436
	              I 0.0418
	             us 0.0369
	             iu 0.0369
	             BY 0.0369
	              s 0.0369
	            Byd 0.0369
	              a 0.0369
	            Bye 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	             by 0.0000
	             my 0.0000
	             '' 0.0000
	              , 0.0000
	              ) 0.0000
	              . 0.0000
	             Be 0.0000
	            the 0.0000

            bj^   426711  13 (24)
	         simply 0.0369
	             jb 0.0369
	            bja 0.0369
	            bjo 0.0369
	            bjt 0.0369
	            cia 0.0369
	             iu 0.0369
	           less 0.0369
	             bj 0.0369
	              - 0.0369
	              I 0.0369
	             in 0.0059
	            for 0.0000
	              , 0.0000
	            the 0.0000
	          those 0.0000
	              a 0.0000
	              . 0.0000
	             by 0.0000
	           </S> 0.0000
	             us 0.0000
	             be 0.0000
	            but 0.0000
	           when 0.0000

     abstaining   426715   1 (22)
	              I 0.0369
	              - 0.0369
	      attaining 0.0369
	            you 0.0369
	        abstain 0.0369
	             us 0.0369
	              . 0.0369
	        against 0.0369
	     abstaining 0.0369
	       staining 0.0369
	      abstinens 0.0369
	          about 0.0369
	     Abstaining 0.0369
	    abstringing 0.0369
	           </S> 0.0369
	       abstains 0.0369
	            the 0.0369
	          using 0.0369
	              a 0.0369
	         coming 0.0369
	              , 0.0369
	             to 0.0369

           an}-   426742  14 (22)
	             an 0.6000
	            and 0.2000
	              A 0.0369
	           anna 0.0369
	            arz 0.0369
	           very 0.0369
	             to 0.0369
	            ann 0.0369
	           anal 0.0369
	            ana 0.0369
	           alba 0.0369
	              I 0.0369
	            the 0.0059
	              a 0.0000
	              . 0.0000
	             it 0.0000
	              , 0.0000
	             us 0.0000
	              - 0.0000
	           your 0.0000
	            any 0.0000
	           </S> 0.0000

          small   426747   1 (19)
	              , 0.0369
	            and 0.0369
	              I 0.0369
	          shall 0.0369
	              - 0.0369
	          smale 0.0369
	          smalt 0.0369
	           smal 0.0369
	           </S> 0.0369
	          world 0.0369
	          smala 0.0369
	          smalm 0.0369
	          small 0.0369
	           sala 0.0369
	          still 0.0369
	         smalls 0.0369
	              . 0.0369
	              a 0.0369
	         smalle 0.0369

      shrubbery   426753   6 (18)
	        rubbery 1.0000
	      Shrubbery 0.0369
	      shrubbier 0.0369
	      scrubbery 0.0369
	              , 0.0059
	              . 0.0000
	            and 0.0000
	         screen 0.0000
	       business 0.0000
	        shrubby 0.0000
	         number 0.0000
	              a 0.0000
	         groups 0.0000
	              - 0.0000
	         rubber 0.0000
	      shrubbery 0.0000
	        numbers 0.0000
	           </S> 0.0000

       songster   426838   1 (26)
	       singster 0.0369
	          after 0.0369
	       songster 0.0369
	        include 0.0369
	     songstress 0.0369
	       Songster 0.0369
	           over 0.0369
	             us 0.0369
	              I 0.0369
	             on 0.0369
	           from 0.0369
	      songsters 0.0369
	             of 0.0369
	            the 0.0369
	              , 0.0059
	            set 0.0000
	            for 0.0000
	             as 0.0000
	            and 0.0000
	              - 0.0000
	              a 0.0000
	            way 0.0000
	       sinister 0.0000
	              . 0.0000
	       business 0.0000
	           </S> 0.0000

              a   426847   3 (17)
	             at 0.3800
	              - 0.1000
	             us 0.0369
	             La 0.0369
	            cia 0.0369
	             aa 0.0369
	           lava 0.0369
	             la 0.0369
	              a 0.0369
	            aaa 0.0369
	            the 0.0369
	              , 0.0059
	             as 0.0000
	             to 0.0000
	             of 0.0000
	              . 0.0000
	           </S> 0.0000

           nook   426856   3 (29)
	             of 0.5000
	          known 0.3000
	            cam 0.1000
	             no 0.1000
	           nook 0.1000
	            nok 0.0369
	           noon 0.0369
	     reputation 0.0369
	           noko 0.0369
	            noo 0.0369
	           noob 0.0369
	              I 0.0369
	          nooky 0.0369
	          point 0.0369
	          basis 0.0369
	         famous 0.0369
	              a 0.0369
	              . 0.0059
	           tool 0.0000
	          nooks 0.0000
	           </S> 0.0000
	             in 0.0000
	         agenda 0.0000
	           list 0.0000
	            now 0.0000
	         camera 0.0000
	            not 0.0000
	              , 0.0000
	              - 0.0000

          above   426875   1 (20)
	              , 0.0369
	         aboven 0.0369
	          alone 0.0369
	          above 0.0369
	         Labove 0.0369
	              I 0.0369
	            the 0.0369
	        aboveda 0.0369
	          abode 0.0369
	          aboue 0.0369
	              - 0.0369
	              a 0.0369
	              . 0.0369
	        arborea 0.0369
	           able 0.0369
	          about 0.0369
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	              } 0.0000

     compassing   426916   2 (27)
	          using 0.3000
	              - 0.0369
	              , 0.0369
	   accompassing 0.0369
	       reducing 0.0369
	       compassi 0.0369
	          being 0.0369
	            the 0.0369
	     compassing 0.0369
	              . 0.0369
	            all 0.0369
	      compassio 0.0369
	          least 0.0369
	         during 0.0369
	     compassion 0.0369
	           </S> 0.0369
	      improving 0.0369
	   incompassing 0.0369
	              a 0.0369
	   encompassing 0.0369
	     increasing 0.0369
	           your 0.0059
	              y 0.0000
	           work 0.0000
	             us 0.0000
	              x 0.0000
	          which 0.0000

         Hooded   426946   1 (25)
	          Hotel 0.8000
	          House 0.8000
	         Hooded 0.8000
	         Holder 0.4000
	         Hoodie 0.4000
	            Two 0.0369
	           Hoed 0.0369
	       property 0.0369
	            the 0.0059
	           Hode 0.0000
	         wooded 0.0000
	             us 0.0000
	              , 0.0000
	         Hoofed 0.0000
	         hooded 0.0000
	         Hooked 0.0000
	           Hood 0.0000
	          <UNK> 0.0000
	           this 0.0000
	          their 0.0000
	              a 0.0000
	           Home 0.0000
	              : 0.0000
	           </S> 0.0000
	              - 0.0000

   unsparingl}'   426959   1 (19)
	       Pullover 0.0369
	          Price 0.0369
	              $ 0.0369
	              s 0.0369
	         during 0.0369
	     immigrants 0.0369
	    unsparingly 0.0369
	           Find 0.0369
	      unsparing 0.0369
	           </S> 0.0059
	              I 0.0000
	              ) 0.0000
	           Nest 0.0000
	        Landing 0.0000
	              , 0.0000
	              - 0.0000
	              . 0.0000
	              a 0.0000
	              A 0.0000

              ,   426971   1 (11)
	            the 0.0369
	              , 0.0369
	            Cox 0.0369
	              . 0.0369
	             of 0.0369
	              - 0.0369
	             us 0.0369
	            and 0.0369
	           </S> 0.0369
	            cia 0.0369
	             iu 0.0369

          3'ear   426973  18 (24)
	            ear 0.5000
	           near 0.5000
	           </S> 0.0369
	          <UNK> 0.0369
	         Sydney 0.0369
	            NSW 0.0369
	           zoom 0.0369
	          arear 0.0369
	             CA 0.0369
	              " 0.0369
	              I 0.0369
	      resulting 0.0369
	              a 0.0369
	           Year 0.0369
	        zooming 0.0369
	            the 0.0059
	          which 0.0012
	           rear 0.0000
	          great 0.0000
	           year 0.0000
	             or 0.0000
	   particularly 0.0000
	              i 0.0000
	          their 0.0000

             in   426979   1 (19)
	            inc 0.0369
	           </S> 0.0369
	            and 0.0369
	            int 0.0369
	            inn 0.0369
	             in 0.0369
	            iin 0.0369
	            the 0.0369
	             it 0.0369
	              a 0.0369
	              , 0.0369
	              . 0.0369
	             is 0.0369
	            cia 0.0369
	             us 0.0369
	             ni 0.0369
	              I 0.0369
	             iu 0.0369
	              - 0.0369

            b}'   426992   1 (22)
	            but 0.0369
	             be 0.0369
	              a 0.0369
	              ' 0.0369
	            cia 0.0369
	          after 0.0369
	              . 0.0369
	             br 0.0369
	             by 0.0369
	              I 0.0369
	           </S> 0.0369
	            and 0.0369
	             bb 0.0369
	              , 0.0369
	           with 0.0062
	            the 0.0059
	          which 0.0012
	             we 0.0000
	             or 0.0000
	             iu 0.0000
	             us 0.0000
	              i 0.0000

            all   426996   1 (23)
	            the 0.0369
	            and 0.0369
	              . 0.0369
	            all 0.0369
	              , 0.0369
	             al 0.0369
	           </S> 0.0369
	           sala 0.0369
	           alle 0.0369
	            arz 0.0369
	              i 0.0369
	              I 0.0369
	            alt 0.0369
	              a 0.0369
	             in 0.0369
	              - 0.0369
	           alba 0.0369
	             of 0.0369
	             to 0.0369
	            als 0.0369
	            ala 0.0369
	           ally 0.0369
	            are 0.0369

   nidification   427039   2 (27)
	              " 0.2000
	       contents 0.0369
	              . 0.0369
	   nidification 0.0369
	   nudification 0.0369
	    nidificator 0.0369
	          value 0.0369
	 nidificational 0.0369
	              I 0.0369
	              a 0.0369
	              , 0.0369
	  nidifications 0.0369
	   Nidification 0.0369
	        content 0.0369
	           </S> 0.0059
	              - 0.0000
	       American 0.0000
	        results 0.0000
	          first 0.0000
	  acidification 0.0000
	  International 0.0000
	        purpose 0.0000
	    information 0.0000
	         number 0.0000
	     University 0.0000
	      following 0.0000
	   codification 0.0000

             in   427108   1 (21)
	              . 0.0369
	             in 0.0369
	             iu 0.0369
	             us 0.0369
	              a 0.0369
	              - 0.0369
	              , 0.0369
	            iin 0.0369
	            int 0.0369
	            inc 0.0369
	             is 0.0369
	            cia 0.0369
	            inn 0.0369
	             it 0.0369
	              I 0.0369
	             ni 0.0369
	           </S> 0.0059
	              ) 0.0000
	              " 0.0000
	          <UNK> 0.0000
	              } 0.0000

        Ireland   427111  11 (27)
	        Iceland 0.4000
	           many 0.2295
	             us 0.0369
	     Irelanders 0.0369
	              t 0.0369
	              x 0.0369
	           what 0.0369
	      Irelander 0.0369
	          which 0.0297
	            the 0.0059
	            and 0.0000
	           that 0.0000
	           your 0.0000
	         Irland 0.0000
	           fact 0.0000
	        Ireland 0.0000
	          place 0.0000
	              . 0.0000
	        ireland 0.0000
	              a 0.0000
	        Ierland 0.0000
	              , 0.0000
	           this 0.0000
	           </S> 0.0000
	              - 0.0000
	         reland 0.0000
	        Iveland 0.0000

            the   427182   1 (19)
	              , 0.0369
	            thy 0.0369
	           year 0.0369
	              a 0.0369
	              . 0.0369
	            tho 0.0369
	            teh 0.0369
	            the 0.0369
	            cia 0.0369
	             iu 0.0369
	           they 0.0369
	           them 0.0369
	           thee 0.0369
	             us 0.0369
	              I 0.0369
	           </S> 0.0059
	              } 0.0000
	              " 0.0000
	              ) 0.0000

         coroue   427223   1 (35)
	         corone 0.7000
	          group 0.3000
	          Group 0.2000
	          Forum 0.1000
	              A 0.1000
	           coro 0.0369
	         Corvus 0.0369
	           year 0.0369
	        corouns 0.0369
	         cornue 0.0369
	    information 0.0369
	          coroe 0.0369
	        corroeu 0.0369
	              a 0.0369
	          world 0.0369
	         coroun 0.0369
	           city 0.0369
	         corrue 0.0369
	          corou 0.0369
	       corouner 0.0369
	         correu 0.0369
	         coroou 0.0369
	           </S> 0.0059
	          Davis 0.0000
	        elegans 0.0000
	          <UNK> 0.0000
	        Sassoon 0.0000
	              I 0.0000
	          corax 0.0000
	            and 0.0000
	              , 0.0000
	          Smith 0.0000
	              . 0.0000
	             .. 0.0000
	              - 0.0000

            and   427231   1 (25)
	            CFP 0.0369
	           </S> 0.0369
	              " 0.0369
	           andy 0.0369
	           anda 0.0369
	            arz 0.0369
	           alba 0.0369
	              ( 0.0369
	             S. 0.0369
	            any 0.0369
	             an 0.0369
	              s 0.0369
	              C 0.0369
	            ant 0.0369
	             MD 0.0369
	              A 0.0369
	          <UNK> 0.0369
	           aand 0.0369
	            and 0.0369
	           this 0.0186
	            the 0.0059
	          which 0.0012
	          there 0.0000
	             it 0.0000
	             or 0.0000

      according   427313   1 (26)
	     camcording 0.0369
	              ( 0.0369
	      accordion 0.0369
	      according 0.0369
	             up 0.0369
	              x 0.0369
	            are 0.0369
	   accordioning 0.0369
	      accordino 0.0369
	              " 0.0369
	              I 0.0369
	            but 0.0369
	    unaccording 0.0369
	    accordingly 0.0369
	        subject 0.0369
	          <UNK> 0.0369
	        similar 0.0369
	           </S> 0.0369
	         online 0.0369
	            and 0.0369
	            the 0.0059
	              i 0.0000
	          which 0.0000
	            not 0.0000
	             or 0.0000
	            one 0.0000

     precisel}^   427345   1 (23)
	      precisely 0.2000
	              - 0.0369
	       parallel 0.0369
	       precises 0.0369
	       preciser 0.0369
	        similar 0.0369
	           laid 0.0369
	      precisera 0.0369
	        treated 0.0369
	        precise 0.0369
	           much 0.0369
	         people 0.0369
	      different 0.0369
	            not 0.0059
	              a 0.0000
	           just 0.0000
	            the 0.0000
	              , 0.0000
	       property 0.0000
	           more 0.0000
	       provided 0.0000
	              . 0.0000
	           </S> 0.0000

           like   427356   1 (24)
	              - 0.0369
	             in 0.0369
	           with 0.0369
	          liked 0.0369
	           line 0.0369
	           lava 0.0369
	           site 0.0369
	              , 0.0369
	              . 0.0369
	    necessarily 0.0369
	           like 0.0369
	            for 0.0369
	          llike 0.0369
	           liks 0.0369
	            cia 0.0369
	           Pica 0.0369
	           </S> 0.0369
	             to 0.0369
	              a 0.0369
	           lika 0.0369
	           liek 0.0369
	          likes 0.0369
	          likee 0.0369
	           time 0.0369

         coronc   427448   1 (32)
	         corone 0.7000
	              A 0.1000
	           that 0.0369
	      coroncina 0.0369
	      coroncine 0.0369
	          There 0.0369
	         corons 0.0369
	          corno 0.0369
	          ronco 0.0369
	         corona 0.0369
	        company 0.0369
	           from 0.0369
	           They 0.0369
	         corono 0.0369
	              a 0.0369
	           Lids 0.0369
	       coronach 0.0369
	        Koronco 0.0369
	          coron 0.0369
	            can 0.0369
	            who 0.0369
	           </S> 0.0059
	              - 0.0000
	              I 0.0000
	            and 0.0000
	              " 0.0000
	        elegans 0.0000
	          corax 0.0000
	           What 0.0000
	              , 0.0000
	             .. 0.0000
	              . 0.0000

            are   427455   1 (21)
	            arm 0.0369
	           aare 0.0369
	             at 0.0369
	              , 0.0369
	            and 0.0369
	           </S> 0.0369
	            are 0.0369
	             ar 0.0369
	              s 0.0369
	              A 0.0369
	              . 0.0369
	              C 0.0369
	              - 0.0369
	            aer 0.0369
	           ares 0.0369
	           alba 0.0369
	           area 0.0369
	            art 0.0369
	              I 0.0369
	           aree 0.0369
	            arz 0.0369

            but   427505   1 (24)
	            tub 0.0369
	             as 0.0369
	             be 0.0369
	             bu 0.0369
	              . 0.0369
	            bus 0.0369
	           that 0.0369
	             us 0.0369
	            the 0.0369
	             iu 0.0369
	            cia 0.0369
	              I 0.0369
	             by 0.0369
	              , 0.0369
	              a 0.0369
	           buts 0.0369
	           butt 0.0369
	            but 0.0369
	              - 0.0369
	            buy 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	              " 0.0000

         Hooded   427513  10 (32)
	         Hoofed 0.1000
	              a 0.0369
	            the 0.0369
	         bottom 0.0369
	           Hoed 0.0369
	          major 0.0369
	           real 0.0369
	           </S> 0.0059
	           same 0.0037
	          House 0.0000
	           Home 0.0000
	              - 0.0000
	         Hoodie 0.0000
	         Hooded 0.0000
	           Hood 0.0000
	         hooded 0.0000
	          <UNK> 0.0000
	              " 0.0000
	         wooded 0.0000
	      following 0.0000
	           fact 0.0000
	         Holder 0.0000
	           Hode 0.0000
	            way 0.0000
	           most 0.0000
	           main 0.0000
	          Hotel 0.0000
	           time 0.0000
	          first 0.0000
	         Hooked 0.0000
	         Hoover 0.0000
	          whole 0.0000

          Dixon   427563   2 (24)
	             Do 0.2000
	          Dixom 0.0369
	         Dioxin 0.0369
	          Dixon 0.0369
	         Dixons 0.0369
	         Dixona 0.0369
	          minor 0.0369
	          Aedon 0.0369
	              a 0.0369
	            non 0.0369
	        Federer 0.0369
	           </S> 0.0059
	              ] 0.0000
	           Sign 0.0000
	              " 0.0000
	             It 0.0000
	              - 0.0000
	      Searching 0.0000
	              , 0.0000
	              I 0.0000
	              A 0.0000
	           This 0.0000
	              . 0.0000
	              ) 0.0000

  Ornithologist   427581   1 (22)
	          major 0.0369
	  Ornithologist 0.0369
	 Ornithologists 0.0369
	              I 0.0369
	  ornithologist 0.0369
	            man 0.0369
	   Ornithologie 0.0369
	           </S> 0.0059
	             to 0.0000
	            way 0.0000
	          thing 0.0000
	             of 0.0000
	              . 0.0000
	          those 0.0000
	         person 0.0000
	        through 0.0000
	              - 0.0000
	              a 0.0000
	            one 0.0000
	              , 0.0000
	           that 0.0000
	         within 0.0000

           saj-   427628   2 (25)
	            saj 0.6000
	            say 0.0970
	           saja 0.0369
	           vote 0.0369
	           </S> 0.0369
	           sajt 0.0369
	           saje 0.0369
	           sjaj 0.0369
	         search 0.0369
	              p 0.0369
	            the 0.0059
	           work 0.0000
	            pay 0.0000
	           sala 0.0000
	             so 0.0000
	           look 0.0000
	           lava 0.0000
	             be 0.0000
	           said 0.0000
	             as 0.0000
	            get 0.0000
	           same 0.0000
	              a 0.0000
	            and 0.0000
	          major 0.0000

           Crow   427642   9 (26)
	          Crown 0.8000
	           From 0.8000
	           from 0.1000
	            arz 0.0369
	        purpose 0.0369
	       question 0.0369
	         Coorow 0.0369
	             is 0.0059
	           Crop 0.0000
	            now 0.0000
	           Crow 0.0000
	              , 0.0000
	           book 0.0000
	           site 0.0000
	              - 0.0000
	           </S> 0.0000
	           item 0.0000
	              . 0.0000
	          Crowe 0.0000
	        article 0.0000
	           Cron 0.0000
	              a 0.0000
	        product 0.0000
	          movie 0.0000
	          entry 0.0000
	           page 0.0000

             he   427648   1 (22)
	              . 0.0369
	            her 0.0369
	             hi 0.0369
	             hr 0.0369
	            hey 0.0369
	              a 0.0369
	              - 0.0369
	              , 0.0369
	             eh 0.0369
	             us 0.0369
	             iu 0.0369
	            cia 0.0369
	            hee 0.0369
	              I 0.0369
	            the 0.0369
	              A 0.0369
	            heh 0.0369
	             he 0.0369
	           </S> 0.0059
	              } 0.0000
	              " 0.0000
	              ) 0.0000

          never   427852  10 (19)
	           near 1.0000
	         nevera 0.0369
	          nerve 0.0369
	           neve 0.0369
	         nevere 0.0369
	          neves 0.0369
	          neven 0.0369
	       activity 0.0369
	              . 0.0059
	              - 0.0000
	             of 0.0000
	              I 0.0000
	            new 0.0000
	           over 0.0000
	          never 0.0000
	           </S> 0.0000
	           need 0.0000
	              a 0.0000
	              , 0.0000

         Mail}-   427880 inf (25)
	             by 0.6000
	           mail 0.6000
	         Mailto 0.2000
	         Mailla 0.0369
	              - 0.0235
	           </S> 0.0059
	            the 0.0000
	              a 0.0000
	           said 0.0000
	              , 0.0000
	              ] 0.0000
	           Mail 0.0000
	              ) 0.0000
	          <UNK> 0.0000
	          Maila 0.0000
	            The 0.0000
	          Maili 0.0000
	         Mailer 0.0000
	              I 0.0000
	          Maile 0.0000
	             in 0.0000
	              . 0.0000
	             he 0.0000
	           will 0.0000
	              A 0.0000

        readers   427887   1 (22)
	         raders 0.0369
	      rereaders 0.0369
	       treaders 0.0369
	        readees 0.0369
	           said 0.0369
	              I 0.0369
	              , 0.0369
	            one 0.0369
	        results 0.0369
	              . 0.0369
	         reades 0.0369
	              a 0.0369
	              A 0.0369
	           </S> 0.0369
	         reader 0.0369
	        renders 0.0369
	              " 0.0369
	          years 0.0369
	        readers 0.0369
	           read 0.0369
	              - 0.0369
	       dreaders 0.0369

           held   427924  16 (27)
	          helde 0.8000
	             in 0.1021
	          heldr 0.0583
	              I 0.0369
	            and 0.0369
	         weakly 0.0369
	              a 0.0369
	        excited 0.0369
	          <UNK> 0.0369
	           </S> 0.0369
	              " 0.0369
	           been 0.0369
	           with 0.0062
	            the 0.0059
	          which 0.0012
	           help 0.0000
	            her 0.0000
	           held 0.0000
	           here 0.0000
	              i 0.0000
	             he 0.0000
	           sala 0.0000
	           hell 0.0000
	           that 0.0000
	             or 0.0000
	            hel 0.0000
	          heeld 0.0000

          willi   427943  12 (27)
	           well 0.6000
	          wolfi 0.0369
	           wili 0.0369
	         willis 0.0369
	         willie 0.0369
	         willin 0.0369
	          wills 0.0369
	          willy 0.0369
	          willa 0.0369
	            wil 0.0369
	             of 0.0059
	            and 0.0000
	              a 0.0000
	              : 0.0000
	              . 0.0000
	              - 0.0000
	             on 0.0000
	           </S> 0.0000
	           will 0.0000
	             by 0.0000
	          while 0.0000
	              I 0.0000
	             in 0.0000
	           this 0.0000
	           wild 0.0000
	              , 0.0000
	           with 0.0000

         regard   427949   1 (24)
	              I 0.0369
	            how 0.0369
	              1 0.0369
	        regards 0.0369
	         regara 0.0369
	             go 0.0369
	         regare 0.0369
	         regard 0.0369
	        regarde 0.0369
	        regarda 0.0369
	         report 0.0369
	         return 0.0369
	           read 0.0369
	        respect 0.0369
	            ... 0.0059
	              , 0.0000
	              a 0.0000
	        whizkas 0.0000
	              . 0.0000
	              - 0.0000
	           </S> 0.0000
	              d 0.0000
	            the 0.0000
	             ng 0.0000

         tliere   427995  14 (24)
	       togliere 0.0369
	         tilter 0.0369
	         before 0.0369
	          tiler 0.0369
	       tolliere 0.0369
	          tiere 0.0369
	         teiere 0.0369
	         kliere 0.0369
	         tiller 0.0369
	         triere 0.0369
	         Gliere 0.0369
	         oliere 0.0369
	           that 0.0059
	          there 0.0000
	           </S> 0.0000
	              , 0.0000
	              I 0.0000
	          these 0.0000
	              a 0.0000
	              i 0.0000
	              . 0.0000
	          their 0.0000
	            and 0.0000
	              - 0.0000

        appears   428002   1 (25)
	        appears 0.0369
	              , 0.0369
	           omit 0.0369
	       appeaser 0.0369
	      according 0.0369
	              I 0.0369
	              i 0.0369
	         appear 0.0369
	          after 0.0369
	              a 0.0369
	        appeare 0.0369
	        appeard 0.0369
	          years 0.0369
	      reappears 0.0369
	      Reappears 0.0369
	              - 0.0369
	            the 0.0369
	             it 0.0369
	              . 0.0369
	recommendations 0.0369
	             us 0.0369
	           </S> 0.0369
	      appearers 0.0369
	             is 0.0059
	            are 0.0000

      redeeming   428019   2 (32)
	       reducing 1.0000
	      redeeming 0.2000
	           more 0.0619
	       breaking 0.0369
	         during 0.0369
	     redigemini 0.0369
	      remeemini 0.0369
	        reeming 0.0369
	      Redeeming 0.0369
	              a 0.0369
	    unredeeming 0.0369
	          using 0.0369
	             in 0.0369
	          major 0.0369
	      remending 0.0369
	         longer 0.0059
	              - 0.0000
	           </S> 0.0000
	         single 0.0000
	          doubt 0.0000
	            one 0.0000
	         reason 0.0000
	    significant 0.0000
	              , 0.0000
	         redeem 0.0000
	          other 0.0000
	        results 0.0000
	           real 0.0000
	            way 0.0000
	           need 0.0000
	              . 0.0000
	             to 0.0000

         Hoodie   428059  12 (28)
	           year 0.1318
	              , 0.0369
	              . 0.0369
	          Hodie 0.0369
	          Hoodi 0.0369
	          major 0.0369
	              a 0.0369
	          Hoedi 0.0369
	            and 0.0369
	           </S> 0.0059
	           same 0.0037
	        Hoodies 0.0000
	          House 0.0000
	          world 0.0000
	            day 0.0000
	         Hoodie 0.0000
	         Holder 0.0000
	           good 0.0000
	           Home 0.0000
	    information 0.0000
	           time 0.0000
	           most 0.0000
	           eBay 0.0000
	           page 0.0000
	         Hoodia 0.0000
	              - 0.0000
	         Hooded 0.0000
	          first 0.0000

           when   428083   5 (21)
	           that 0.7000
	              I 0.6000
	            who 0.5000
	             to 0.2000
	           were 0.1000
	           when 0.1000
	              a 0.1000
	           </S> 0.0900
	           whet 0.0369
	          wheen 0.0369
	           well 0.0369
	           whey 0.0369
	          whens 0.0369
	          whenu 0.0369
	          wehen 0.0369
	             of 0.0059
	              , 0.0000
	              . 0.0000
	             on 0.0000
	              - 0.0000
	             us 0.0000

            not   428118   1 (23)
	           nots 0.0369
	           noto 0.0369
	              a 0.0369
	           note 0.0369
	            not 0.0369
	            now 0.0369
	             no 0.0369
	              - 0.0369
	             us 0.0369
	          minor 0.0369
	              . 0.0369
	           nott 0.0369
	              I 0.0369
	              , 0.0369
	            nto 0.0369
	              s 0.0369
	             in 0.0369
	            and 0.0369
	            non 0.0369
	           </S> 0.0059
	              } 0.0000
	              " 0.0000
	              ) 0.0000

         Giitke   428200 inf (28)
	           itke 0.0369
	            not 0.0369
	            the 0.0369
	              I 0.0369
	             it 0.0369
	        Gietkie 0.0369
	              a 0.0369
	           site 0.0369
	           with 0.0369
	           that 0.0369
	          Litke 0.0369
	           like 0.0369
	         Gietki 0.0369
	          Giitu 0.0369
	           Gike 0.0369
	           then 0.0369
	           Gite 0.0369
	          Gitte 0.0369
	          Gitka 0.0369
	             he 0.0369
	              , 0.0059
	              - 0.0000
	            der 0.0000
	           </S> 0.0000
	              W 0.0000
	              . 0.0000
	            and 0.0000
	             M. 0.0000

          tells   428207   1 (23)
	          teles 0.0369
	        stellst 0.0369
	          terms 0.0369
	        retells 0.0369
	          texas 0.0369
	           test 0.0369
	             J. 0.0369
	              , 0.0369
	           </S> 0.0369
	          Ringe 0.0369
	          tells 0.0369
	          Pales 0.0369
	         tellus 0.0369
	              . 0.0369
	              a 0.0369
	             C. 0.0369
	          telly 0.0369
	          telle 0.0369
	           tels 0.0369
	         telles 0.0369
	         stells 0.0369
	              - 0.0369
	           tell 0.0369

  Heligolanders   428225   3 (23)
	       American 0.1000
	    development 0.0750
	            are 0.0369
	              , 0.0369
	   Heligolander 0.0369
	     Heligoland 0.0369
	  Heligolanders 0.0369
	  Heligolandish 0.0369
	              . 0.0369
	        Company 0.0369
	             is 0.0369
	              a 0.0369
	            the 0.0369
	           </S> 0.0059
	           only 0.0000
	    information 0.0000
	          first 0.0000
	      following 0.0000
	              " 0.0000
	             US 0.0000
	              - 0.0000
	         people 0.0000
	           same 0.0000

         esteem   428239   1 (17)
	              a 0.0369
	             is 0.0369
	           item 0.0369
	              . 0.0369
	         esteem 0.0369
	        esteems 0.0369
	            was 0.0369
	              - 0.0369
	           </S> 0.0369
	         esteet 0.0369
	              I 0.0369
	             of 0.0369
	              , 0.0369
	        between 0.0369
	         system 0.0369
	          ester 0.0369
	        esteeme 0.0369

           Lord   428273   1 (26)
	           Lord 0.3642
	              I 0.0418
	             is 0.0369
	           work 0.0369
	          Lodro 0.0369
	          Loxia 0.0369
	          corax 0.0369
	            arz 0.0369
	          Lorrd 0.0369
	            the 0.0369
	           Lori 0.0369
	           Lore 0.0369
	              a 0.0369
	          Lords 0.0369
	          Lorde 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              . 0.0000
	           More 0.0000
	           more 0.0000
	              ) 0.0000
	              , 0.0000
	             '' 0.0000
	              ] 0.0000

        Lilford   428278 inf (17)
	         inform 0.0369
	        Wilford 0.0369
	        Linford 0.0369
	        Lidford 0.0369
	        Telford 0.0369
	             of 0.0059
	              . 0.0000
	        Milford 0.0000
	              , 0.0000
	              - 0.0000
	        Lifford 0.0000
	          <UNK> 0.0000
	              I 0.0000
	           </S> 0.0000
	        Gilford 0.0000
	           Lord 0.0000
	         Oxford 0.0000

            sa3   428286 inf (26)
	         Christ 0.0369
	             it 0.0369
	            the 0.0369
	            cia 0.0369
	            saw 0.0369
	           said 0.0369
	        Khemenu 0.0369
	            sat 0.0369
	             us 0.0369
	            say 0.0369
	             so 0.0369
	           sala 0.0369
	             sa 0.0369
	            sas 0.0369
	            saa 0.0369
	            see 0.0369
	              I 0.0369
	              a 0.0369
	              V 0.0059
	              , 0.0000
	             's 0.0000
	              - 0.0000
	              . 0.0000
	           </S> 0.0000
	              R 0.0000
	             RJ 0.0000

             's   428289 inf (13)
	             so 0.0369
	             ss 0.0369
	             as 0.0369
	             is 0.0369
	            sss 0.0369
	           ssss 0.0369
	             iu 0.0369
	            cia 0.0369
	             us 0.0369
	              - 0.0059
	              . 0.0000
	           </S> 0.0000
	              , 0.0000

     abominable   428333   1 (29)
	    abominabile 0.0369
	             us 0.0369
	         people 0.0369
	     abominably 0.0369
	      preferred 0.0369
	    abominables 0.0369
	          about 0.0369
	     abominabel 0.0369
	      abominata 0.0369
	         winner 0.0369
	     Abominable 0.0369
	     abominator 0.0369
	        private 0.0369
	     abominable 0.0369
	    abhominable 0.0369
	            for 0.0369
	           been 0.0059
	              a 0.0000
	              - 0.0000
	              . 0.0000
	        looking 0.0000
	           </S> 0.0000
	             in 0.0000
	      available 0.0000
	             be 0.0000
	        welcome 0.0000
	             to 0.0000
	              , 0.0000
	       striving 0.0000

       although   428349   1 (28)
	       although 0.7000
	       holidays 0.0369
	        product 0.0369
	              . 0.0369
	    destination 0.0369
	            and 0.0369
	    fallthrough 0.0369
	           said 0.0369
	          users 0.0369
	      murderers 0.0369
	            the 0.0059
	           </S> 0.0000
	           then 0.0000
	        through 0.0000
	           also 0.0000
	       services 0.0000
	      allthough 0.0000
	              a 0.0000
	         though 0.0000
	         Slough 0.0000
	              - 0.0000
	              , 0.0000
	              I 0.0000
	       Although 0.0000
	           that 0.0000
	         should 0.0000
	           more 0.0000
	          altho 0.0000

          Gre}'   428573  13 (29)
	          Greer 0.6000
	          major 0.0369
	            Jim 0.0369
	              , 0.0369
	              . 0.0369
	      Wikimedia 0.0369
	              a 0.0369
	          Grerr 0.0369
	         rights 0.0369
	            and 0.0369
	           </S> 0.0059
	           same 0.0037
	         United 0.0000
	          world 0.0000
	          Group 0.0000
	            Gre 0.0000
	           Grey 0.0000
	              - 0.0000
	           Gree 0.0000
	          Green 0.0000
	          first 0.0000
	           free 0.0000
	          Great 0.0000
	        country 0.0000
	           Greg 0.0000
	           Free 0.0000
	           most 0.0000
	           eBay 0.0000
	          Greek 0.0000

           Crow   428579   1 (20)
	           From 0.0369
	          Crowe 0.0369
	           Cron 0.0369
	           </S> 0.0369
	         States 0.0369
	     Foundation 0.0369
	           from 0.0369
	           Crow 0.0369
	              I 0.0369
	            arz 0.0369
	              a 0.0369
	           Crop 0.0369
	        century 0.0369
	            now 0.0369
	              , 0.0369
	              . 0.0369
	          Crown 0.0369
	         Coorow 0.0369
	              - 0.0369
	             of 0.0369

        vagrant   428610   1 (25)
	        Vagrant 0.0369
	        variant 0.0369
	      vagrantly 0.0369
	           clip 0.0369
	           part 0.0369
	         vagant 0.0369
	        against 0.0369
	        vagiant 0.0369
	             of 0.0369
	        vergant 0.0369
	        version 0.0369
	             is 0.0369
	        vagrant 0.0369
	       vagrants 0.0369
	              I 0.0369
	        service 0.0369
	              a 0.0369
	              , 0.0059
	           </S> 0.0000
	        plastic 0.0000
	            and 0.0000
	         enough 0.0000
	              - 0.0000
	              . 0.0000
	            box 0.0000

             We   428677   1 (24)
	             We 0.3532
	             It 0.0900
	              I 0.0418
	             us 0.0369
	             be 0.0369
	            Wee 0.0369
	              a 0.0369
	             iu 0.0369
	            cia 0.0369
	             WI 0.0369
	            Wed 0.0369
	             WA 0.0369
	            WWe 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              , 0.0000
	              ) 0.0000
	            you 0.0000
	              ] 0.0000
	            Web 0.0000
	              . 0.0000
	             it 0.0000

  c\ten)ii}iatc   428699 inf (29)
	          check 0.3000
	      eliminate 0.0369
	       indicate 0.0369
	       frighten 0.0369
	          think 0.0369
	        contact 0.0369
	            eat 0.0369
	         attend 0.0369
	           </S> 0.0369
	        Service 0.0369
	              . 0.0369
	    participate 0.0369
	              : 0.0369
	          match 0.0369
	          enter 0.0369
	           lose 0.0369
	              , 0.0369
	            the 0.0059
	         create 0.0000
	           have 0.0000
	            use 0.0000
	             us 0.0000
	             be 0.0000
	              a 0.0000
	           that 0.0000
	            see 0.0000
	           make 0.0000
	            get 0.0000
	          their 0.0000

            any   428713   1 (23)
	            the 0.0369
	            any 0.0369
	            ayn 0.0369
	              a 0.0369
	            you 0.0369
	           alba 0.0369
	          about 0.0369
	           that 0.0369
	           anya 0.0369
	           anys 0.0369
	            arz 0.0369
	              I 0.0369
	            ant 0.0369
	             an 0.0369
	              , 0.0369
	              - 0.0369
	             it 0.0369
	           </S> 0.0369
	              i 0.0369
	              . 0.0369
	            and 0.0369
	           anny 0.0369
	           Baya 0.0369

            but   428723   1 (22)
	            bus 0.0369
	            buy 0.0369
	              . 0.0369
	             in 0.0369
	            but 0.0369
	              , 0.0369
	              I 0.0369
	             be 0.0369
	            tub 0.0369
	             iu 0.0369
	            cia 0.0369
	           buts 0.0369
	             us 0.0369
	             bu 0.0369
	              - 0.0369
	           butt 0.0369
	              a 0.0369
	             by 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	              " 0.0000

Fawilx-COR]'ID.E   428806 inf (18)
	           will 0.6000
	           file 0.0369
	             RE 0.0369
	            Dia 0.0369
	          basis 0.0369
	          again 0.0369
	              ) 0.0333
	           </S> 0.0059
	              C 0.0000
	              A 0.0000
	              - 0.0000
	              a 0.0000
	              , 0.0000
	              I 0.0000
	           with 0.0000
	          <UNK> 0.0000
	            and 0.0000
	              . 0.0000

              .   428822   1 (15)
	              : 0.0369
	       13.99CAD 0.0369
	           etc. 0.0369
	              - 0.0369
	             us 0.0369
	              . 0.0369
	            ... 0.0369
	            the 0.0369
	           </S> 0.0369
	            and 0.0369
	              , 0.0369
	              " 0.0369
	            cia 0.0369
	             iu 0.0369
	             of 0.0369

        Corviis   428836   3 (25)
	              , 0.2000
	              ] 0.1000
	        Corvair 0.0369
	        Corvids 0.0369
	      Corvision 0.0369
	         Comics 0.0369
	        Collins 0.0369
	         Corvin 0.0369
	         Corvid 0.0369
	        Corvina 0.0369
	        Corvida 0.0369
	          Corps 0.0369
	          Coris 0.0369
	          Corvi 0.0369
	        Corsiva 0.0369
	         Corvus 0.0369
	              a 0.0369
	           </S> 0.0059
	              I 0.0000
	              . 0.0000
	              / 0.0000
	              A 0.0000
	              ) 0.0000
	              " 0.0000
	              - 0.0000

   /nigi/i(;i(s   428844 inf (22)
	              / 0.0369
	              I 0.0369
	   configure.in 0.0369
	   Applications 0.0369
	         config 0.0369
	          <UNK> 0.0369
	vareSelskap.cgi 0.0369
	              n 0.0369
	              , 0.0369
	        install 0.0369
	      configure 0.0369
	        million 0.0369
	              - 0.0369
	             is 0.0369
	              g 0.0369
	      Configure 0.0369
	              a 0.0369
	           </S> 0.0369
	       addition 0.0369
	              ) 0.0369
	  config.status 0.0369
	              . 0.0369

              ,   428856 inf (8)
	             of 0.0369
	             to 0.0369
	             us 0.0369
	            and 0.0369
	             in 0.0369
	            the 0.0369
	            cia 0.0369
	             iu 0.0369

           Linn   428858   2 (25)
	             pp 0.1857
	            Lin 0.0369
	   respectively 0.0369
	              { 0.0369
	           Linn 0.0369
	            cia 0.0369
	           Pica 0.0369
	           Lini 0.0369
	            and 0.0369
	           Link 0.0369
	           Line 0.0369
	              x 0.0369
	           List 0.0369
	           Find 0.0369
	          Linne 0.0369
	          Linna 0.0369
	            the 0.0059
	          which 0.0012
	            too 0.0000
	           find 0.0000
	              i 0.0000
	             or 0.0000
	             of 0.0000
	              e 0.0000
	          minor 0.0000

             IN   428865   2 (22)
	             In 0.5538
	             IN 0.2559
	             It 0.0900
	             If 0.0570
	              I 0.0418
	             iu 0.0369
	            INC 0.0369
	            INT 0.0369
	             NI 0.0369
	             us 0.0369
	            IIN 0.0369
	            INN 0.0369
	             J. 0.0369
	              a 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ) 0.0000
	              , 0.0000
	              . 0.0000
	              ] 0.0000

        Western   428868   1 (19)
	        Western 0.2000
	        western 0.2000
	       Westerns 0.0369
	       Westerne 0.0369
	         Wester 0.0369
	       WesternU 0.0369
	            THE 0.0059
	              . 0.0000
	           </S> 0.0000
	        Weather 0.0000
	        WITNESS 0.0000
	              ) 0.0000
	          <UNK> 0.0000
	              , 0.0000
	          STOCK 0.0000
	              - 0.0000
	              : 0.0000
	              A 0.0000
	            ... 0.0000

           Rook   428887   2 (30)
	          Rooks 0.5167
	           Rook 0.4200
	           year 0.1318
	           Room 0.1000
	              , 0.0369
	              a 0.0369
	              S 0.0369
	       enormous 0.0369
	          major 0.0369
	           </S> 0.0059
	           same 0.0037
	           work 0.0000
	           Road 0.0000
	           Root 0.0000
	             Re 0.0000
	            dog 0.0000
	         number 0.0000
	          whole 0.0000
	            way 0.0000
	           Roko 0.0000
	            Rok 0.0000
	           most 0.0000
	           good 0.0000
	          first 0.0000
	              - 0.0000
	          <UNK> 0.0000
	            Roo 0.0000
	          Rooke 0.0000
	          world 0.0000
	      following 0.0000

         breeds   428892   1 (26)
	           free 0.0369
	          breds 0.0369
	          reeds 0.0369
	              a 0.0369
	              I 0.0369
	         breedy 0.0369
	         breede 0.0369
	       rebreeds 0.0369
	        breedes 0.0369
	           been 0.0369
	         breeds 0.0369
	           such 0.0369
	          breed 0.0369
	         bredes 0.0369
	          based 0.0369
	             's 0.0059
	           Rose 0.0000
	              ( 0.0000
	         Corvus 0.0000
	              . 0.0000
	           </S> 0.0000
	              A 0.0000
	            and 0.0000
	              , 0.0000
	              - 0.0000
	             of 0.0000

      migratory   429102  13 (24)
	    migratorius 0.0369
	       migrator 0.0369
	      migratori 0.0369
	            and 0.0369
	      migrators 0.0369
	     emigratory 0.0369
	     mitigatory 0.0369
	          right 0.0369
	              . 0.0369
	              - 0.0369
	    immigratory 0.0369
	              I 0.0059
	           also 0.0000
	           many 0.0000
	            not 0.0000
	           even 0.0000
	              i 0.0000
	           </S> 0.0000
	           more 0.0000
	              , 0.0000
	              a 0.0000
	             it 0.0000
	            the 0.0000
	      migratory 0.0000

       Southern   429191   1 (25)
	       Southern 0.9000
	          South 0.2700
	        western 0.0369
	           more 0.0369
	              £ 0.0369
	       Southers 0.0369
	             in 0.0369
	       mainland 0.0369
	            the 0.0059
	            see 0.0000
	             us 0.0000
	         others 0.0000
	            get 0.0000
	     Southerner 0.0000
	     Southerton 0.0000
	        Souther 0.0000
	       southern 0.0000
	        Sothern 0.0000
	          these 0.0000
	             be 0.0000
	              a 0.0000
	           this 0.0000
	       Southery 0.0000
	       northern 0.0000
	          other 0.0000

           Asia   429258   8 (26)
	          Assia 0.7000
	            All 0.1000
	             in 0.0689
	            Asi 0.0500
	            and 0.0369
	              . 0.0369
	            the 0.0059
	           Pica 0.0000
	              - 0.0000
	           </S> 0.0000
	           Asia 0.0000
	              , 0.0000
	           sala 0.0000
	            for 0.0000
	          their 0.0000
	          Asiad 0.0000
	          other 0.0000
	           said 0.0000
	              I 0.0000
	           Asai 0.0000
	           Asif 0.0000
	            cia 0.0000
	           Asie 0.0000
	              a 0.0000
	          Asian 0.0000
	            And 0.0000

      Eastwards   429270 inf (24)
	           Last 0.0369
	       Eastward 0.0369
	      Estewards 0.0369
	         Europe 0.0369
	          where 0.0369
	      eastwards 0.0369
	      pastwards 0.0369
	              s 0.0369
	            and 0.0369
	        Edwards 0.0369
	        Eastway 0.0369
	           that 0.0369
	              a 0.0369
	            the 0.0369
	           </S> 0.0059
	              " 0.0000
	              A 0.0000
	              - 0.0000
	              / 0.0000
	              I 0.0000
	              . 0.0000
	              ) 0.0000
	              ] 0.0000
	              , 0.0000

      Turkestan   429313   1 (28)
	      Turkestan 0.1000
	    destination 0.0369
	     Tuerkistan 0.0369
	       Mongolia 0.0369
	           tone 0.0369
	              i 0.0369
	       holidays 0.0369
	         Alaska 0.0369
	     Turkestani 0.0369
	           said 0.0369
	          women 0.0369
	            the 0.0059
	              - 0.0000
	              ( 0.0000
	          <UNK> 0.0000
	            The 0.0000
	           </S> 0.0000
	            can 0.0000
	           that 0.0000
	           more 0.0000
	              a 0.0000
	         Turkes 0.0000
	      Turkistan 0.0000
	              , 0.0000
	              I 0.0000
	       services 0.0000
	         others 0.0000
	          other 0.0000

       Cashmere   429364   1 (28)
	          <UNK> 0.0369
	       cashmere 0.0369
	      therefore 0.0369
	       Cashmore 0.0369
	          women 0.0369
	           Iraq 0.0369
	       Pakistan 0.0369
	       Cashmere 0.0369
	        Albania 0.0369
	       Kashmere 0.0369
	              " 0.0369
	            and 0.0369
	              y 0.0369
	         Casere 0.0369
	         Kuwait 0.0369
	              a 0.0369
	              I 0.0369
	       Crashers 0.0369
	              , 0.0369
	            the 0.0059
	         though 0.0000
	            too 0.0000
	              i 0.0000
	             or 0.0000
	          where 0.0000
	          which 0.0000
	          there 0.0000
	           were 0.0000

             In   429392   1 (19)
	             In 0.5538
	             It 0.0900
	             If 0.0570
	              I 0.0418
	            Inc 0.0369
	             us 0.0369
	              a 0.0369
	             iu 0.0369
	            cia 0.0369
	            Inn 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ] 0.0000
	              . 0.0000
	              ) 0.0000
	              , 0.0000
	              / 0.0000

           Rook   429427   2 (30)
	          Rooks 0.5167
	           Rook 0.4200
	           Room 0.1000
	   prescription 0.0369
	         figure 0.0369
	      Institute 0.0369
	      situation 0.0369
	           </S> 0.0059
	           same 0.0037
	         system 0.0000
	    information 0.0000
	           Good 0.0000
	      following 0.0000
	          Rooke 0.0000
	           good 0.0000
	           Root 0.0000
	           Roko 0.0000
	           work 0.0000
	            Roo 0.0000
	           Food 0.0000
	            Rok 0.0000
	             Re 0.0000
	           Road 0.0000
	          first 0.0000
	          world 0.0000
	          <UNK> 0.0000
	              " 0.0000
	              ' 0.0000
	        problem 0.0000
	              - 0.0000

        prett}^   429435  11 (21)
	         pretti 0.5000
	             A. 0.0369
	              I 0.0369
	        written 0.0369
	         preter 0.0369
	         prette 0.0369
	              - 0.0369
	              A 0.0369
	        prettig 0.0369
	              a 0.0059
	            the 0.0000
	           </S> 0.0000
	              . 0.0000
	            not 0.0000
	              , 0.0000
	             to 0.0000
	            now 0.0000
	         better 0.0000
	           part 0.0000
	         pretty 0.0000
	          prett 0.0000

      generally   429443   1 (20)
	              I 0.0369
	              - 0.0369
	       generale 0.0369
	          being 0.0369
	            and 0.0369
	             be 0.0369
	      generalcy 0.0369
	      generalty 0.0369
	              a 0.0369
	          great 0.0369
	              . 0.0369
	        General 0.0369
	       generall 0.0369
	              , 0.0369
	             to 0.0369
	         widely 0.0369
	     generalled 0.0369
	        general 0.0369
	           </S> 0.0369
	      generally 0.0369

     localities   429481   1 (28)
	     localities 0.7250
	        habitat 0.2000
	     localitzis 0.0369
	          cases 0.0369
	       locaties 0.0369
	      coalities 0.0369
	           life 0.0369
	          major 0.0369
	            the 0.0369
	     vocalities 0.0369
	          links 0.0369
	         states 0.0369
	             us 0.0369
	     Localities 0.0369
	             of 0.0369
	  modifications 0.0369
	              I 0.0369
	              a 0.0369
	              - 0.0369
	     localitzes 0.0369
	            for 0.0059
	       locality 0.0000
	           </S> 0.0000
	             to 0.0000
	       habitats 0.0000
	              , 0.0000
	        quality 0.0000
	              . 0.0000

             in   429494   1 (19)
	              : 0.0369
	              . 0.0369
	             us 0.0369
	            inn 0.0369
	              a 0.0369
	            iin 0.0369
	             in 0.0369
	            int 0.0369
	            inc 0.0369
	            cia 0.0369
	              , 0.0369
	             it 0.0369
	             iu 0.0369
	             is 0.0369
	             ni 0.0369
	           </S> 0.0059
	              ) 0.0000
	              " 0.0000
	              } 0.0000

         though   429506   1 (19)
	         though 0.9000
	        thought 0.6000
	       thoughts 0.0369
	              a 0.0369
	          tough 0.0369
	          hough 0.0369
	         trough 0.0369
	              N 0.0369
	           </S> 0.0059
	             of 0.0000
	         should 0.0000
	        through 0.0000
	              . 0.0000
	              - 0.0000
	              v 0.0000
	              , 0.0000
	          those 0.0000
	            and 0.0000
	              : 0.0000

          rarer   429513   1 (28)
	          rarer 1.0000
	          erare 0.0369
	          Parus 0.0369
	          parva 0.0369
	          Pales 0.0369
	         ararer 0.0369
	          rares 0.0369
	          rared 0.0369
	          raree 0.0369
	         rarere 0.0369
	        England 0.0369
	         orarer 0.0369
	              A 0.0369
	        rarerer 0.0369
	              , 0.0059
	           rare 0.0000
	          Wales 0.0000
	              . 0.0000
	              a 0.0000
	           more 0.0000
	           </S> 0.0000
	              - 0.0000
	            are 0.0000
	              ) 0.0000
	              I 0.0000
	           were 0.0000
	          order 0.0000
	            the 0.0000

           Rook   429676   1 (30)
	            Roo 0.0369
	           Roko 0.0369
	           Food 0.0369
	          thing 0.0369
	              I 0.0369
	           Root 0.0369
	             Re 0.0369
	            has 0.0369
	         condom 0.0369
	          Rooks 0.0369
	           here 0.0369
	           lead 0.0369
	           Rook 0.0369
	          Rooke 0.0369
	           Room 0.0369
	            Rok 0.0369
	            and 0.0059
	           Road 0.0000
	          color 0.0000
	           body 0.0000
	           work 0.0000
	              . 0.0000
	           </S> 0.0000
	             is 0.0000
	            who 0.0000
	              , 0.0000
	              - 0.0000
	             of 0.0000
	           good 0.0000
	            now 0.0000

          l^are   429777 inf (29)
	           lare 0.2000
	              . 0.0369
	              a 0.0369
	            arz 0.0369
	              , 0.0369
	    legislative 0.0369
	          laare 0.0369
	          luare 0.0369
	          liare 0.0369
	          learl 0.0369
	           step 0.0369
	             to 0.0369
	            few 0.0097
	           </S> 0.0059
	     registered 0.0000
	          large 0.0000
	           care 0.0000
	           good 0.0000
	           like 0.0000
	            are 0.0000
	         little 0.0000
	          great 0.0000
	            bit 0.0000
	           lava 0.0000
	            new 0.0000
	          years 0.0000
	              - 0.0000
	          later 0.0000
	          major 0.0000

           grey   429783   1 (22)
	             of 0.0369
	           Free 0.0369
	              . 0.0369
	           bill 0.0369
	              I 0.0369
	           grep 0.0369
	           gery 0.0369
	              - 0.0369
	          great 0.0369
	           </S> 0.0369
	              , 0.0369
	       proposal 0.0369
	           grey 0.0369
	            arz 0.0369
	           grew 0.0369
	          greys 0.0369
	          greye 0.0369
	           free 0.0369
	            gre 0.0369
	              a 0.0369
	          greyi 0.0369
	            get 0.0369

          warty   429788   3 (22)
	              - 0.4071
	          waste 0.2000
	           wart 0.0369
	           want 0.0369
	         swarty 0.0369
	         zwarty 0.0369
	          warts 0.0369
	          warto 0.0369
	          warty 0.0369
	          Parus 0.0369
	          parva 0.0369
	            arz 0.0369
	           wary 0.0369
	              t 0.0369
	          watry 0.0369
	              , 0.0059
	           area 0.0000
	              . 0.0000
	          party 0.0000
	           </S> 0.0000
	         levels 0.0000
	          water 0.0000

          patch   429794   2 (24)
	              ) 0.5000
	          place 0.0369
	          black 0.0369
	        patacha 0.0369
	           part 0.0369
	          pacht 0.0369
	          parva 0.0369
	          party 0.0369
	              M 0.0369
	         patchy 0.0369
	         patchs 0.0369
	          pitch 0.0369
	              a 0.0369
	          white 0.0369
	          patch 0.0369
	              I 0.0369
	              - 0.0059
	           </S> 0.0000
	            pig 0.0000
	           skin 0.0000
	              . 0.0000
	              , 0.0000
	              ] 0.0000
	              " 0.0000

           Bill   429855   2 (23)
	          Billy 0.9834
	           Bill 0.9000
	            All 0.1921
	              I 0.0418
	          Bills 0.0369
	            Bil 0.0369
	              a 0.0369
	           Baya 0.0369
	            cia 0.0369
	           sala 0.0369
	           Bild 0.0369
	           Bile 0.0369
	           Bili 0.0369
	           will 0.0369
	            all 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              , 0.0000
	              ) 0.0000
	              . 0.0000
	              ] 0.0000

           iris   429876   1 (25)
	          irish 0.0369
	            and 0.0369
	              . 0.0369
	          irisa 0.0369
	            irs 0.0369
	             is 0.0369
	             iu 0.0369
	            cia 0.0369
	            arz 0.0369
	             it 0.0369
	            iri 0.0369
	              a 0.0369
	           iris 0.0369
	          iiris 0.0369
	              , 0.0369
	            its 0.0369
	           irie 0.0369
	           irin 0.0369
	             in 0.0369
	              - 0.0369
	           dark 0.0369
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	              } 0.0000

           Tlie   429888  20 (26)
	           Time 0.8000
	           This 0.3358
	              I 0.0418
	            Tli 0.0369
	           Tile 0.0369
	            Tie 0.0369
	           Teil 0.0369
	           alba 0.0369
	            cia 0.0369
	             iu 0.0369
	            lie 0.0369
	           Trie 0.0369
	              a 0.0369
	           Tiel 0.0369
	           Tlia 0.0369
	           Tlik 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	            The 0.0131
	           </S> 0.0059
	              ] 0.0000
	              , 0.0000
	              . 0.0000
	              ) 0.0000
	              / 0.0000

         female   429893   1 (21)
	          famle 0.0369
	         famlee 0.0369
	         family 0.0369
	         female 0.0369
	         femalo 0.0369
	              . 0.0369
	              - 0.0369
	        females 0.0369
	       femalely 0.0369
	              ) 0.0369
	              n 0.0369
	           This 0.0369
	        fermale 0.0369
	         Female 0.0369
	              g 0.0369
	              , 0.0369
	      configure 0.0369
	              a 0.0369
	          <UNK> 0.0059
	          first 0.0000
	           </S> 0.0000

           Tlie   429951  20 (25)
	           Time 0.8000
	           This 0.3358
	              I 0.0418
	           Tiel 0.0369
	           Teil 0.0369
	           Tlia 0.0369
	           Tlik 0.0369
	            cia 0.0369
	              s 0.0369
	           Trie 0.0369
	              a 0.0369
	            Tie 0.0369
	            lie 0.0369
	            Tli 0.0369
	           Tile 0.0369
	           alba 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	            The 0.0131
	           </S> 0.0059
	              ) 0.0000
	              . 0.0000
	              , 0.0000
	              ] 0.0000

          young   429956   1 (17)
	          Young 0.0369
	         youngs 0.0369
	         younge 0.0369
	           your 0.0369
	              . 0.0369
	              , 0.0369
	          young 0.0369
	        youngun 0.0369
	              ) 0.0369
	          yongu 0.0369
	              a 0.0369
	              - 0.0369
	              n 0.0369
	              g 0.0369
	          <UNK> 0.0059
	          first 0.0000
	           </S> 0.0000

        Carrion   430036   1 (29)
	        Carrion 0.9000
	         Carrio 0.1000
	        Carnion 0.0369
	           post 0.0369
	            sub 0.0369
	              x 0.0369
	      Carrionly 0.0369
	            mid 0.0369
	              , 0.0369
	              E 0.0369
	              . 0.0369
	              A 0.0369
	            non 0.0369
	            pre 0.0369
	           </S> 0.0059
	           same 0.0037
	       American 0.0000
	           case 0.0000
	          first 0.0000
	         Carion 0.0000
	              - 0.0000
	      following 0.0000
	        carrion 0.0000
	          world 0.0000
	       National 0.0000
	        Carreon 0.0000
	         United 0.0000
	           City 0.0000
	            two 0.0000

             it   430073   1 (22)
	              I 0.0369
	            ith 0.0369
	            its 0.0369
	             ti 0.0369
	          which 0.0369
	             in 0.0369
	            iti 0.0369
	              - 0.0369
	            cia 0.0369
	            itt 0.0369
	             us 0.0369
	              , 0.0369
	            iit 0.0369
	              a 0.0369
	             it 0.0369
	              . 0.0369
	             is 0.0369
	             iu 0.0369
	           </S> 0.0059
	              " 0.0000
	              } 0.0000
	              ) 0.0000

       .slender   430109  11 (29)
	        Blender 0.3000
	      unslender 0.0369
	       literacy 0.0369
	          level 0.0369
	           user 0.0369
	       splender 0.0369
	       sclender 0.0369
	      slenderer 0.0369
	       lesender 0.0369
	           than 0.0059
	           like 0.0000
	         lender 0.0000
	              - 0.0000
	             to 0.0000
	           </S> 0.0000
	              . 0.0000
	             or 0.0000
	              : 0.0000
	              a 0.0000
	          about 0.0000
	       powerful 0.0000
	        slender 0.0000
	              I 0.0000
	         common 0.0000
	       Calendar 0.0000
	    information 0.0000
	              , 0.0000
	        lenders 0.0000
	             of 0.0000

           bill   430118   1 (25)
	              , 0.0369
	           bill 0.0369
	           </S> 0.0369
	      judgments 0.0369
	            bil 0.0369
	            cia 0.0369
	           sala 0.0369
	           Pica 0.0369
	           will 0.0369
	           bild 0.0369
	           bili 0.0369
	          billy 0.0369
	              - 0.0369
	            big 0.0369
	              . 0.0369
	             be 0.0369
	         Browse 0.0369
	              a 0.0369
	          bills 0.0369
	              I 0.0369
	       auditors 0.0369
	             by 0.0369
	   construction 0.0369
	           bile 0.0369
	              ( 0.0369

           tlie   430127  10 (32)
	           Clie 0.1000
	           teil 0.0369
	          talie 0.0369
	        passage 0.0369
	              i 0.0369
	           teie 0.0369
	         outlie 0.0369
	         tlieta 0.0369
	          tliet 0.0369
	            the 0.0059
	           thie 0.0000
	           have 0.0000
	              - 0.0000
	           some 0.0000
	           trie 0.0000
	            lie 0.0000
	           tile 0.0000
	              a 0.0000
	             iu 0.0000
	          other 0.0000
	           </S> 0.0000
	          <UNK> 0.0000
	              ( 0.0000
	            tie 0.0000
	            cia 0.0000
	              , 0.0000
	             to 0.0000
	           alba 0.0000
	              I 0.0000
	           time 0.0000
	            tle 0.0000
	           this 0.0000

           deep   430132   1 (24)
	           deed 0.0369
	           does 0.0369
	             it 0.0369
	           deep 0.0369
	              a 0.0369
	           depe 0.0369
	            dee 0.0369
	           need 0.0369
	              I 0.0369
	             de 0.0369
	          deepe 0.0369
	            the 0.0369
	            dep 0.0369
	           been 0.0369
	             us 0.0369
	             of 0.0369
	           deer 0.0369
	          deeps 0.0369
	          <UNK> 0.0059
	              . 0.0000
	              , 0.0000
	           </S> 0.0000
	           same 0.0000
	              - 0.0000

         .slate   430205  18 (27)
	           slat 0.5000
	           Date 0.0369
	          <UNK> 0.0369
	         Islate 0.0369
	              : 0.0369
	             re 0.0369
	              A 0.0369
	        reslate 0.0369
	          draft 0.0369
	            non 0.0369
	         salate 0.0369
	              I 0.0369
	           long 0.0369
	         selata 0.0369
	         sulate 0.0369
	           </S> 0.0369
	            the 0.0059
	             be 0.0000
	          State 0.0000
	              a 0.0000
	            get 0.0000
	             us 0.0000
	          slate 0.0000
	          state 0.0000
	         enable 0.0000
	           late 0.0000
	         slated 0.0000

              -   430211   1 (12)
	              , 0.0369
	            the 0.0369
	              a 0.0369
	              - 0.0369
	             us 0.0369
	              . 0.0369
	            cia 0.0369
	           </S> 0.0369
	            you 0.0369
	            and 0.0369
	             of 0.0369
	             iu 0.0369

         colour   430212  14 (29)
	           like 0.1580
	           side 0.0369
	   authenticate 0.0369
	         corone 0.0369
	          green 0.0369
	          white 0.0369
	        coloury 0.0369
	      operation 0.0369
	          shirt 0.0369
	              s 0.0369
	        collour 0.0369
	              - 0.0079
	           </S> 0.0059
	          clour 0.0000
	         colour 0.0000
	            our 0.0000
	            the 0.0000
	              I 0.0000
	              ) 0.0000
	           Your 0.0000
	             to 0.0000
	              A 0.0000
	             up 0.0000
	          <UNK> 0.0000
	              . 0.0000
	          colou 0.0000
	           your 0.0000
	        colours 0.0000
	              a 0.0000

             In   430230   1 (20)
	             In 0.5538
	             It 0.0900
	             If 0.0570
	              I 0.0418
	             us 0.0369
	             iu 0.0369
	            cia 0.0369
	            Inn 0.0369
	     birthdates 0.0369
	              a 0.0369
	            Inc 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	             '' 0.0000
	              . 0.0000
	              , 0.0000
	              ] 0.0000
	              ) 0.0000

           Rook   430245   2 (30)
	          Rooks 0.5167
	           Rook 0.4200
	           Room 0.1000
	        website 0.0369
	          truth 0.0369
	           </S> 0.0059
	           same 0.0037
	            web 0.0000
	          first 0.0000
	           Root 0.0000
	            use 0.0000
	          Rooke 0.0000
	            Roo 0.0000
	           Road 0.0000
	           good 0.0000
	             Re 0.0000
	           work 0.0000
	           word 0.0000
	           Roko 0.0000
	              - 0.0000
	        problem 0.0000
	      following 0.0000
	              ' 0.0000
	            Rok 0.0000
	          world 0.0000
	           Food 0.0000
	           Good 0.0000
	              " 0.0000
	          <UNK> 0.0000
	         system 0.0000

             so   430267  10 (22)
	             to 0.5500
	            son 0.1000
	            soo 0.0369
	            soy 0.0369
	             iu 0.0369
	           sala 0.0369
	             os 0.0369
	             se 0.0369
	            flu 0.0059
	              - 0.0000
	           with 0.0000
	              . 0.0000
	              a 0.0000
	            for 0.0000
	             so 0.0000
	             st 0.0000
	             us 0.0000
	           </S> 0.0000
	              I 0.0000
	             's 0.0000
	             of 0.0000
	              , 0.0000

         larvje   430335   1 (28)
	         larvae 0.2400
	          larva 0.1000
	            the 0.0369
	              . 0.0369
	           larv 0.0369
	             it 0.0369
	         larves 0.0369
	         larije 0.0369
	          larve 0.0369
	             us 0.0369
	              a 0.0369
	              I 0.0369
	              , 0.0369
	          parva 0.0369
	    willingness 0.0369
	              - 0.0369
	         larver 0.0369
	           like 0.0369
	            own 0.0059
	           lava 0.0000
	       families 0.0000
	     respective 0.0000
	           life 0.0000
	            way 0.0000
	        ability 0.0000
	           last 0.0000
	   relationship 0.0000
	           </S> 0.0000

            but   430376   1 (19)
	             be 0.0369
	            but 0.0369
	              . 0.0369
	           butt 0.0369
	             bu 0.0369
	              a 0.0369
	            tub 0.0369
	             iu 0.0369
	            cia 0.0369
	             by 0.0369
	            buy 0.0369
	            bus 0.0369
	           buts 0.0369
	              , 0.0369
	             us 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000
	              " 0.0000

        drought   430406  15 (22)
	        through 0.9000
	       droughts 0.9000
	              I 0.0369
	        draught 0.0369
	           from 0.0369
	       droughty 0.0369
	          about 0.0369
	          right 0.0369
	             if 0.0369
	              a 0.0369
	           that 0.0369
	             us 0.0369
	         trough 0.0369
	            and 0.0059
	         period 0.0000
	              - 0.0000
	        drought 0.0000
	              , 0.0000
	     litigation 0.0000
	            the 0.0000
	              . 0.0000
	           </S> 0.0000

          after   430470   3 (24)
	             in 0.6000
	            for 0.0700
	         Rafter 0.0369
	         rafter 0.0369
	             by 0.0369
	         afther 0.0369
	         Passer 0.0369
	         afters 0.0369
	          aftel 0.0369
	          after 0.0369
	          aftre 0.0369
	              a 0.0369
	           afte 0.0369
	          aften 0.0369
	              I 0.0369
	              , 0.0059
	              . 0.0000
	           than 0.0000
	             to 0.0000
	          water 0.0000
	           </S> 0.0000
	            and 0.0000
	              - 0.0000
	            are 0.0000

             In   430506   1 (19)
	             In 0.5538
	             It 0.0900
	             If 0.0570
	              I 0.0418
	            Inc 0.0369
	             us 0.0369
	             iu 0.0369
	            cia 0.0369
	              a 0.0369
	            Inn 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              . 0.0000
	              / 0.0000
	              , 0.0000
	              ) 0.0000
	              ] 0.0000

         almost   430583   5 (23)
	             is 0.8000
	              a 0.6000
	              - 0.6000
	           </S> 0.3000
	           also 0.0369
	          times 0.0369
	          almos 0.0369
	         almond 0.0369
	         almose 0.0369
	        maltosa 0.0369
	        almosts 0.0369
	         almost 0.0369
	             us 0.0369
	              I 0.0369
	            the 0.0059
	           most 0.0000
	           such 0.0000
	              . 0.0000
	             by 0.0000
	              , 0.0000
	             it 0.0000
	            you 0.0000
	          about 0.0000

        Carrion   430605   1 (31)
	        Carrion 0.9000
	         Carrio 0.1000
	              . 0.0369
	              A 0.0369
	        Carnion 0.0369
	              E 0.0369
	            are 0.0369
	            mid 0.0369
	           well 0.0369
	           long 0.0369
	             as 0.0369
	              x 0.0369
	             co 0.0369
	              , 0.0369
	            can 0.0369
	            non 0.0369
	           want 0.0369
	      Carrionly 0.0369
	           </S> 0.0059
	           same 0.0037
	          first 0.0000
	          other 0.0000
	         Carion 0.0000
	           next 0.0000
	            two 0.0000
	           City 0.0000
	              " 0.0000
	        carrion 0.0000
	        Carreon 0.0000
	         market 0.0000
	              - 0.0000

           weak   430679   1 (26)
	           weak 0.0369
	       economic 0.0369
	           wean 0.0369
	            cia 0.0369
	          weake 0.0369
	             us 0.0369
	            wea 0.0369
	           wear 0.0369
	           weka 0.0369
	          weaky 0.0369
	              , 0.0059
	           </S> 0.0000
	              . 0.0000
	              a 0.0000
	           were 0.0000
	            the 0.0000
	             to 0.0000
	           what 0.0000
	              - 0.0000
	             of 0.0000
	             be 0.0000
	           well 0.0000
	              I 0.0000
	          their 0.0000
	           your 0.0000
	           from 0.0000

          birds   430684  17 (27)
	          first 0.7000
	              I 0.2000
	     similarity 0.1667
	              . 0.1333
	        birdsit 0.0369
	           life 0.0369
	          Parus 0.0369
	         Turdus 0.0369
	          birdy 0.0369
	          birda 0.0369
	         birdes 0.0369
	        liberty 0.0369
	             us 0.0369
	         bridds 0.0369
	         Vbirds 0.0369
	              , 0.0059
	          birds 0.0000
	           </S> 0.0000
	          First 0.0000
	       compared 0.0000
	           bird 0.0000
	            big 0.0000
	              a 0.0000
	            and 0.0000
	              - 0.0000
	         enough 0.0000
	           bids 0.0000

            for   430724   1 (26)
	           from 0.0369
	              , 0.0369
	              I 0.0369
	        shelter 0.0369
	            arz 0.0369
	            cia 0.0369
	             us 0.0369
	            foo 0.0369
	            fog 0.0369
	           ford 0.0369
	          water 0.0369
	              - 0.0369
	            For 0.0369
	            for 0.0369
	           forr 0.0369
	           form 0.0369
	            fro 0.0369
	              a 0.0369
	           foro 0.0369
	      beverages 0.0369
	              . 0.0369
	       clothing 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	              " 0.0000

      witnessed   430785   2 (21)
	        without 0.4000
	      witnessed 0.2000
	         within 0.1000
	      witnesser 0.0369
	   eyewitnessed 0.0369
	       witnesse 0.0369
	      witnesses 0.0369
	    unwitnessed 0.0369
	              . 0.0059
	              a 0.0000
	              , 0.0000
	           been 0.0000
	              I 0.0000
	           with 0.0000
	             of 0.0000
	           when 0.0000
	            and 0.0000
	           </S> 0.0000
	           that 0.0000
	             in 0.0000
	              - 0.0000

      predatory   430800  14 (25)
	       predator 0.2000
	       Predator 0.2000
	           past 0.0369
	      prematura 0.0369
	      predators 0.0369
	      predatori 0.0369
	    depredatory 0.0369
	      predatore 0.0369
	            bad 0.0369
	     prediatory 0.0369
	         before 0.0369
	          nasty 0.0369
	             is 0.0059
	         report 0.0000
	            may 0.0000
	        product 0.0000
	            was 0.0000
	              . 0.0000
	           page 0.0000
	           </S> 0.0000
	              a 0.0000
	      predatory 0.0000
	              , 0.0000
	           site 0.0000
	              - 0.0000

         severe   430819   7 (21)
	           were 0.3000
	          every 0.2158
	              x 0.0369
	         sevrer 0.0369
	             us 0.0369
	            the 0.0059
	           your 0.0000
	              , 0.0000
	         severe 0.0000
	              a 0.0000
	          sever 0.0000
	         severs 0.0000
	        severed 0.0000
	           </S> 0.0000
	              - 0.0000
	           very 0.0000
	         severa 0.0000
	          there 0.0000
	        severer 0.0000
	              . 0.0000
	           this 0.0000

         haunts   430889   9 (27)
	          haunt 0.4000
	        chaunts 0.0369
	         shunta 0.0369
	          hauns 0.0369
	              i 0.0369
	      spiritual 0.0369
	       physical 0.0369
	            the 0.0059
	         haunts 0.0000
	           stay 0.0000
	         haunty 0.0000
	              ( 0.0000
	          other 0.0000
	            had 0.0000
	              a 0.0000
	         social 0.0000
	           have 0.0000
	             is 0.0000
	            has 0.0000
	           more 0.0000
	            how 0.0000
	              - 0.0000
	              , 0.0000
	          hunts 0.0000
	           </S> 0.0000
	          <UNK> 0.0000
	              I 0.0000

           well   430896   1 (28)
	           life 0.0369
	           welt 0.0369
	              T 0.0369
	           well 0.0369
	          wolfi 0.0369
	           sala 0.0369
	           weld 0.0369
	          wells 0.0369
	           wele 0.0369
	            wel 0.0369
	            Two 0.0369
	              C 0.0369
	              H 0.0369
	            non 0.0369
	       informed 0.0369
	          welly 0.0369
	             of 0.0059
	           will 0.0000
	             us 0.0000
	           were 0.0000
	              , 0.0000
	              a 0.0000
	              I 0.0000
	            the 0.0000
	              - 0.0000
	              . 0.0000
	           </S> 0.0000
	             me 0.0000

              -   430900   1 (15)
	              - 0.6433
	              , 0.1000
	            cia 0.0369
	             as 0.0059
	             in 0.0000
	             iu 0.0000
	             of 0.0000
	          known 0.0000
	          being 0.0000
	            and 0.0000
	           </S> 0.0000
	             -- 0.0000
	              . 0.0000
	            the 0.0000
	             us 0.0000

    preferabl}^   430923   1 (20)
	     preferably 0.7000
	      referable 0.2000
	            and 0.0369
	              x 0.0369
	              a 0.0369
	         public 0.0369
	              " 0.0369
	           </S> 0.0369
	         people 0.0369
	            the 0.0059
	          which 0.0000
	              i 0.0000
	             or 0.0000
	           were 0.0000
	    preferrable 0.0000
	   particularly 0.0000
	         rather 0.0000
	         except 0.0000
	             of 0.0000
	     preferable 0.0000

          where   430935   1 (21)
	              - 0.0369
	            and 0.0369
	            its 0.0369
	              . 0.0369
	              a 0.0369
	            the 0.0369
	              , 0.0369
	          wheer 0.0369
	        whereer 0.0369
	         cities 0.0369
	           </S> 0.0369
	          whore 0.0369
	           were 0.0369
	           when 0.0369
	          wehre 0.0369
	              I 0.0369
	        whereas 0.0369
	           here 0.0369
	          whero 0.0369
	         wheres 0.0369
	          where 0.0369

           here   430990   1 (22)
	            her 0.0369
	              , 0.0369
	           were 0.0369
	           herb 0.0369
	        hererer 0.0369
	           herr 0.0369
	           here 0.0369
	            arz 0.0369
	              I 0.0369
	           hero 0.0369
	              . 0.0369
	          heres 0.0369
	          heren 0.0369
	              - 0.0369
	           heer 0.0369
	         herere 0.0369
	             to 0.0369
	             of 0.0369
	              a 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000

         busily   431024  12 (20)
	          Music 0.3000
	              ? 0.1890
	         musily 0.0369
	       brushily 0.0369
	         Fusily 0.0369
	       unbusily 0.0369
	       business 0.0369
	              i 0.0369
	        bushily 0.0369
	        pusilla 0.0369
	              . 0.0059
	              - 0.0000
	           </S> 0.0000
	              , 0.0000
	             of 0.0000
	         busily 0.0000
	              a 0.0000
	          after 0.0000
	            but 0.0000
	              I 0.0000

          grubs   431105   2 (28)
	             of 0.8000
	           info 0.0369
	        apparel 0.0369
	    merchandise 0.0369
	         bugrus 0.0369
	          rufus 0.0369
	          Parus 0.0369
	          great 0.0369
	          grubs 0.0369
	         grubst 0.0369
	          girls 0.0369
	           grub 0.0369
	              a 0.0369
	             us 0.0369
	          gruba 0.0369
	          grube 0.0369
	       begrubst 0.0369
	              I 0.0369
	          weeds 0.0059
	          gases 0.0000
	              . 0.0000
	              , 0.0000
	          group 0.0000
	           </S> 0.0000
	     substances 0.0000
	           weed 0.0000
	              - 0.0000
	             or 0.0000

             in   431113   1 (21)
	             iu 0.0369
	             is 0.0369
	              I 0.0369
	              . 0.0369
	            off 0.0369
	            iin 0.0369
	            cia 0.0369
	             on 0.0369
	            inn 0.0369
	             in 0.0369
	             it 0.0369
	             us 0.0369
	              a 0.0369
	              , 0.0369
	            int 0.0369
	            inc 0.0369
	             ni 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000
	              " 0.0000

       swallows   431149   2 (26)
	           make 0.4000
	        swallow 0.0369
	        sallows 0.0369
	     swallowers 0.0369
	       swallowe 0.0369
	        shallow 0.0369
	         really 0.0369
	           just 0.0369
	              - 0.0369
	        wallows 0.0369
	             us 0.0369
	       swallows 0.0369
	              , 0.0059
	           have 0.0000
	           will 0.0000
	            not 0.0000
	              a 0.0000
	            the 0.0000
	             as 0.0000
	             in 0.0000
	           </S> 0.0000
	             be 0.0000
	             to 0.0000
	          still 0.0000
	              . 0.0000
	              I 0.0000

   incalculable   431182   1 (19)
	   incalculable 0.6000
	     inoculable 0.0369
	  incalculables 0.0369
	             us 0.0369
	              I 0.0369
	        because 0.0369
	   incalculably 0.0369
	           into 0.0369
	            not 0.0059
	           </S> 0.0000
	             no 0.0000
	            the 0.0000
	              a 0.0000
	              - 0.0000
	             it 0.0000
	        include 0.0000
	              , 0.0000
	              . 0.0000
	             in 0.0000

           wire   431214   2 (30)
	           will 0.3000
	              C 0.0369
	            arz 0.0369
	           wird 0.0369
	              A 0.0369
	          wired 0.0369
	          wires 0.0369
	           wire 0.0369
	           Pica 0.0369
	         Pestov 0.0369
	           wiry 0.0369
	              e 0.0369
	          wirer 0.0369
	            non 0.0369
	   Productivity 0.0369
	         Bureau 0.0369
	           wier 0.0369
	            cia 0.0369
	            the 0.0059
	              - 0.0000
	           </S> 0.0000
	           were 0.0000
	            pre 0.0000
	              , 0.0000
	          their 0.0000
	           with 0.0000
	            all 0.0000
	              . 0.0000
	              a 0.0000
	             it 0.0000

    cockchafers   431239   8 (25)
	         cancer 0.0369
	     cockshafts 0.0369
	       software 0.0369
	    Cockchafers 0.0369
	     cockchafer 0.0369
	         speech 0.0369
	            the 0.0059
	            use 0.0000
	            all 0.0000
	           this 0.0000
	           them 0.0000
	             us 0.0000
	         course 0.0000
	              - 0.0000
	          <UNK> 0.0000
	              a 0.0000
	             it 0.0000
	           time 0.0000
	              : 0.0000
	       children 0.0000
	           </S> 0.0000
	          their 0.0000
	    cockchafers 0.0000
	          other 0.0000
	              , 0.0000

          onl}'   431289   1 (22)
	           only 0.6000
	           ongl 0.0369
	          stare 0.0369
	          ollon 0.0369
	           olon 0.0369
	          onlay 0.0369
	          onlus 0.0369
	             be 0.0059
	              a 0.0000
	             on 0.0000
	              . 0.0000
	            one 0.0000
	           have 0.0000
	            the 0.0000
	              - 0.0000
	              , 0.0000
	           </S> 0.0000
	          onion 0.0000
	             to 0.0000
	             nl 0.0000
	           been 0.0000
	         online 0.0000

        devours   431295   1 (23)
	              - 0.0369
	           that 0.0369
	        because 0.0369
	         devour 0.0369
	             at 0.0369
	             to 0.0369
	              a 0.0369
	           </S> 0.0369
	             us 0.0369
	           your 0.0369
	      indevours 0.0369
	              I 0.0369
	            any 0.0369
	        devouts 0.0369
	      devourers 0.0369
	              , 0.0369
	            the 0.0369
	        devorus 0.0369
	              . 0.0369
	        devours 0.0369
	        detours 0.0369
	        devotus 0.0369
	          hours 0.0369

           such   431303   2 (22)
	              M 0.1000
	           usch 0.0369
	           sure 0.0369
	            sub 0.0369
	           hucs 0.0369
	           sala 0.0369
	           Pica 0.0369
	           suce 0.0369
	           suck 0.0369
	          suche 0.0369
	          sucht 0.0369
	           such 0.0369
	            the 0.0059
	              a 0.0000
	              , 0.0000
	             us 0.0000
	              - 0.0000
	              . 0.0000
	           much 0.0000
	            ten 0.0000
	           </S> 0.0000
	           them 0.0000

          grubs   431331   4 (24)
	           must 0.7000
	             us 0.5000
	              a 0.4060
	          grubs 0.0369
	         grubst 0.0369
	          gruba 0.0369
	          grube 0.0369
	           grub 0.0369
	       begrubst 0.0369
	         bugrus 0.0369
	          rufus 0.0369
	          Parus 0.0369
	           just 0.0369
	           such 0.0369
	             is 0.0059
	           </S> 0.0000
	              - 0.0000
	          great 0.0000
	              , 0.0000
	             of 0.0000
	          group 0.0000
	              I 0.0000
	            are 0.0000
	              . 0.0000

   considerable   431362  12 (21)
	             is 0.9000
	         anyone 0.3000
	  considerables 0.0369
	 inconsiderable 0.0369
	              i 0.0369
	   considerably 0.0369
	  considerabile 0.0369
	          could 0.0369
	              I 0.0369
	             's 0.0369
	            not 0.0059
	              , 0.0000
	              - 0.0000
	            the 0.0000
	           </S> 0.0000
	             it 0.0000
	        provide 0.0000
	              a 0.0000
	       business 0.0000
	              . 0.0000
	   considerable 0.0000

    destructive   431406  12 (26)
	         visual 0.0369
	         feared 0.0369
	    destructiva 0.0369
	    destructivo 0.0369
	         highly 0.0369
	    destructivi 0.0369
	              i 0.0369
	   destructivae 0.0369
	        service 0.0369
	   destructives 0.0369
	            the 0.0059
	              - 0.0000
	              I 0.0000
	          other 0.0000
	     conditions 0.0000
	              ( 0.0000
	           then 0.0000
	    destructive 0.0000
	    information 0.0000
	           </S> 0.0000
	       Services 0.0000
	           more 0.0000
	  destructively 0.0000
	              , 0.0000
	              a 0.0000
	          <UNK> 0.0000

    caterpillar   431418   1 (27)
	    caterpiller 0.0369
	             us 0.0369
	  caterpillared 0.0369
	            can 0.0369
	      character 0.0369
	              I 0.0369
	           will 0.0369
	   caterpillars 0.0369
	              a 0.0369
	  establishment 0.0369
	       creation 0.0369
	            the 0.0369
	       services 0.0369
	    Caterpillar 0.0369
	         number 0.0369
	    development 0.0369
	    caterpillar 0.0369
	           rest 0.0369
	            use 0.0369
	              . 0.0059
	          power 0.0000
	        effects 0.0000
	              - 0.0000
	            and 0.0000
	          force 0.0000
	           </S> 0.0000
	              , 0.0000

       segetuin   431456  22 (28)
	              , 0.3000
	        details 0.0369
	       segetali 0.0369
	         segeti 0.0369
	          below 0.0369
	          getui 0.0369
	              I 0.0369
	         dispar 0.0369
	         seguin 0.0369
	     Meigetsuin 0.0369
	        subject 0.0369
	        asetuin 0.0369
	              a 0.0369
	              : 0.0369
	        segetis 0.0369
	       segellin 0.0369
	          maura 0.0369
	              - 0.0369
	       shipping 0.0369
	        seguint 0.0369
	        ipsilon 0.0059
	          <UNK> 0.0000
	              A 0.0000
	           </S> 0.0000
	        segetum 0.0000
	        cinerea 0.0000
	              . 0.0000
	              ) 0.0000

              )   431464   1 (11)
	              ( 0.0369
	              . 0.0369
	            and 0.0369
	             of 0.0369
	              ) 0.0369
	            the 0.0369
	             us 0.0369
	              , 0.0369
	           </S> 0.0369
	            cia 0.0369
	             iu 0.0369

              .   431466   2 (19)
	              : 0.3667
	              . 0.1726
	             n. 0.0369
	             a. 0.0369
	             .. 0.0369
	             .- 0.0369
	           </S> 0.0059
	             us 0.0000
	              ] 0.0000
	              · 0.0000
	            and 0.0000
	             of 0.0000
	            cia 0.0000
	            ... 0.0000
	              ( 0.0000
	            the 0.0000
	             iu 0.0000
	              , 0.0000
	              - 0.0000

         either   431538   1 (23)
	         either 0.0369
	        Neither 0.0369
	          other 0.0369
	         tither 0.0369
	        planted 0.0369
	              a 0.0369
	              I 0.0369
	        neither 0.0369
	              . 0.0369
	          Other 0.0369
	         shrubs 0.0369
	         eather 0.0369
	         esther 0.0369
	            the 0.0369
	            and 0.0369
	          eiter 0.0369
	              - 0.0369
	              , 0.0369
	         hither 0.0369
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	              } 0.0000

         copses   431548   1 (29)
	         copses 0.2000
	           cash 0.0369
	          white 0.0369
	        coppses 0.0369
	         person 0.0369
	              C 0.0369
	              x 0.0369
	             us 0.0369
	         copees 0.0369
	         copsed 0.0369
	            the 0.0059
	           </S> 0.0000
	     Washington 0.0000
	           turn 0.0000
	         copies 0.0000
	           this 0.0000
	              - 0.0000
	              a 0.0000
	           fact 0.0000
	          these 0.0000
	        writing 0.0000
	              . 0.0000
	     particular 0.0000
	           time 0.0000
	          House 0.0000
	          copse 0.0000
	           your 0.0000
	           case 0.0000
	              , 0.0000

       bounding   431618   3 (26)
	              x 0.9000
	              a 0.6000
	      abounding 0.0369
	        budiong 0.0369
	       bouncing 0.0369
	     boundingly 0.0369
	      boundings 0.0369
	       bounding 0.0369
	        bonding 0.0369
	        banding 0.0369
	          being 0.0369
	     inbounding 0.0369
	             of 0.0059
	           </S> 0.0000
	             in 0.0000
	              . 0.0000
	          using 0.0000
	           from 0.0000
	              - 0.0000
	             at 0.0000
	             to 0.0000
	            and 0.0000
	          found 0.0000
	             on 0.0000
	              , 0.0000
	           with 0.0000

            but   431695   1 (21)
	           buts 0.0369
	             be 0.0369
	              a 0.0369
	             by 0.0369
	            bus 0.0369
	             bu 0.0369
	            the 0.0369
	            tub 0.0369
	             iu 0.0369
	            cia 0.0369
	           butt 0.0369
	              I 0.0369
	              . 0.0369
	              - 0.0369
	            buy 0.0369
	            but 0.0369
	              , 0.0369
	             us 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000

      Stevenson   431699  11 (25)
	        Stenson 0.2000
	       everyone 0.0369
	          quite 0.0369
	      Stevinson 0.0369
	      Steventon 0.0369
	      Steveston 0.0369
	     Stevenston 0.0369
	    Stevensonia 0.0369
	              ( 0.0369
	              I 0.0059
	             it 0.0000
	          never 0.0000
	              i 0.0000
	             he 0.0000
	        Stevens 0.0000
	           </S> 0.0000
	            the 0.0000
	           then 0.0000
	          <UNK> 0.0000
	             my 0.0000
	           even 0.0000
	             as 0.0000
	              a 0.0000
	      Stevenson 0.0000
	              , 0.0000

        rightly   431709   2 (25)
	           also 0.1000
	            not 0.0369
	        lightly 0.0369
	       brightly 0.0369
	            the 0.0369
	              a 0.0369
	       Brightly 0.0369
	        Courier 0.0369
	             he 0.0369
	        rightly 0.0369
	             it 0.0369
	         rights 0.0369
	         Rights 0.0369
	        rightle 0.0369
	         righty 0.0369
	          right 0.0369
	              , 0.0059
	             is 0.0000
	           </S> 0.0000
	             's 0.0000
	              A 0.0000
	              . 0.0000
	              ( 0.0000
	              I 0.0000
	              - 0.0000

      selecting   431751  11 (21)
	    deselecting 0.0369
	      selectins 0.0369
	       selectin 0.0369
	    reselecting 0.0369
	             us 0.0369
	            see 0.0369
	          using 0.0369
	       electing 0.0369
	          being 0.0369
	             of 0.0059
	              . 0.0000
	              A 0.0000
	            the 0.0000
	      selecting 0.0000
	           </S> 0.0000
	             in 0.0000
	              I 0.0000
	              ) 0.0000
	              - 0.0000
	              a 0.0000
	              , 0.0000

         Scotch   431856   4 (26)
	        incomes 0.5000
	         Search 0.1000
	         income 0.1000
	              a 0.0369
	       Scotches 0.0369
	         Scooch 0.0369
	        Scotach 0.0369
	          Stoch 0.0369
	        Scootch 0.0369
	          cotch 0.0369
	         Scotch 0.0369
	         Scorch 0.0369
	         scotch 0.0369
	              I 0.0369
	              - 0.0059
	          Stock 0.0000
	           carb 0.0000
	          Scott 0.0000
	             in 0.0000
	           heat 0.0000
	              , 0.0000
	         prices 0.0000
	             as 0.0000
	          South 0.0000
	              . 0.0000
	           </S> 0.0000

      Spixworth   431983   2 (25)
	              y 0.3000
	              . 0.0369
	              - 0.0369
	              a 0.0369
	          South 0.0369
	          least 0.0369
	      Donington 0.0369
	        Harding 0.0369
	      Spixworth 0.0369
	      Brixworth 0.0369
	              , 0.0369
	          <UNK> 0.0369
	       Sopworth 0.0369
	        Ixworth 0.0369
	        January 0.0369
	            the 0.0369
	          North 0.0369
	         Fenway 0.0369
	        College 0.0369
	      Sigsworth 0.0369
	           your 0.0059
	          which 0.0000
	             us 0.0000
	           work 0.0000
	              x 0.0000

           Park   431993   3 (25)
	              . 0.7000
	         Hotels 0.2850
	          point 0.0369
	              a 0.0369
	              t 0.0369
	     University 0.0369
	              I 0.0369
	        College 0.0369
	          Parus 0.0369
	          Pales 0.0369
	            are 0.0369
	           Pica 0.0369
	          Parks 0.0369
	           Page 0.0369
	            Par 0.0369
	           Prak 0.0369
	           Para 0.0369
	           part 0.0369
	           time 0.0369
	           Park 0.0369
	          Parka 0.0369
	           Part 0.0369
	              , 0.0059
	           </S> 0.0000
	              - 0.0000

    laurustinus   432082   2 (20)
	              a 0.5250
	           rose 0.0369
	     laurustine 0.0369
	    Laurustinus 0.0369
	             us 0.0369
	    laurustinus 0.0369
	      Faustinus 0.0369
	         things 0.0369
	    lauristinus 0.0369
	       examples 0.0369
	        looking 0.0369
	              . 0.0059
	              I 0.0000
	         tuning 0.0000
	            art 0.0000
	              - 0.0000
	              , 0.0000
	           line 0.0000
	            the 0.0000
	           </S> 0.0000

         bushes   432094   1 (26)
	              I 0.0369
	             me 0.0369
	       business 0.0369
	         prints 0.0369
	        bushers 0.0369
	              - 0.0369
	         tuning 0.0369
	          basis 0.0369
	              . 0.0369
	   imprisonment 0.0369
	              i 0.0369
	         busshe 0.0369
	         bushes 0.0369
	          based 0.0369
	             us 0.0369
	              a 0.0369
	           </S> 0.0369
	          buses 0.0369
	      chemistry 0.0369
	        brushes 0.0369
	        bushels 0.0369
	          ushes 0.0369
	         bushel 0.0369
	         bushed 0.0369
	       ambushes 0.0369
	              , 0.0059

      foiirteen   432118   2 (29)
	        fifteen 0.5000
	       fourteen 0.1000
	       facility 0.0369
	       forinten 0.0369
	        hirteen 0.0369
	        kirteen 0.0369
	        virteen 0.0369
	        written 0.0369
	        damages 0.0369
	           four 0.0369
	         forten 0.0369
	         fortee 0.0369
	         damage 0.0369
	        further 0.0369
	       flirtees 0.0369
	       feierten 0.0369
	       flirteen 0.0369
	              . 0.0369
	            the 0.0059
	              - 0.0000
	          other 0.0000
	           </S> 0.0000
	            not 0.0000
	              , 0.0000
	           more 0.0000
	       thirteen 0.0000
	          three 0.0000
	              e 0.0000
	              a 0.0000

           feet   432128   1 (25)
	           been 0.0369
	          items 0.0369
	             us 0.0369
	              . 0.0369
	              , 0.0369
	           feel 0.0369
	              - 0.0369
	      resulting 0.0369
	            fet 0.0369
	        arising 0.0369
	           </S> 0.0369
	           fees 0.0369
	           fett 0.0369
	              I 0.0369
	           from 0.0369
	           free 0.0369
	           need 0.0369
	           feet 0.0369
	             it 0.0369
	           fete 0.0369
	         feetje 0.0369
	            fee 0.0369
	          feest 0.0369
	              a 0.0369
	          feets 0.0369

           ilex   432172   1 (27)
	           alba 0.0369
	           lixe 0.0369
	          Pales 0.0369
	           ilex 0.0369
	         illexi 0.0369
	           idea 0.0369
	           ilen 0.0369
	            ile 0.0369
	              I 0.0369
	          Silex 0.0369
	           iles 0.0369
	             iu 0.0369
	          skull 0.0369
	          silex 0.0369
	              , 0.0059
	              . 0.0000
	              - 0.0000
	              a 0.0000
	           </S> 0.0000
	             is 0.0000
	         galaxy 0.0000
	             it 0.0000
	           nova 0.0000
	             in 0.0000
	             of 0.0000
	          novae 0.0000
	           that 0.0000

          close   432178   1 (26)
	           </S> 0.0369
	              a 0.0369
	           also 0.0369
	          close 0.0369
	         corone 0.0369
	             up 0.0369
	              " 0.0369
	         closes 0.0369
	          <UNK> 0.0369
	              x 0.0369
	        writing 0.0369
	          colse 0.0369
	        subject 0.0369
	          clost 0.0369
	          closh 0.0369
	         closed 0.0369
	         closer 0.0369
	              1 0.0369
	            and 0.0369
	       magnolia 0.0369
	            the 0.0059
	          which 0.0012
	           most 0.0000
	          those 0.0000
	              i 0.0000
	             or 0.0000

     connecting   432212   1 (29)
	     connection 0.0369
	            and 0.0369
	      connectin 0.0369
	              - 0.0369
	              ( 0.0369
	     convecting 0.0369
	     conceiting 0.0369
	              a 0.0369
	     connecting 0.0369
	              , 0.0369
	         online 0.0369
	              I 0.0369
	     Connecting 0.0369
	     contenting 0.0369
	           </S> 0.0369
	          <UNK> 0.0369
	            the 0.0059
	            you 0.0000
	          using 0.0000
	          while 0.0000
	           each 0.0000
	            who 0.0000
	          which 0.0000
	           this 0.0000
	              i 0.0000
	      including 0.0000
	           with 0.0000
	   reconnecting 0.0000
	             or 0.0000

          fi^om   432328  16 (26)
	              a 0.0369
	            fom 0.0369
	          filmo 0.0369
	            fim 0.0369
	         fibdom 0.0369
	             fi 0.0369
	              I 0.0369
	            fio 0.0369
	          filon 0.0369
	           fimo 0.0369
	           find 0.0369
	          finom 0.0369
	         fidomo 0.0369
	             om 0.0369
	             to 0.0059
	           </S> 0.0000
	          first 0.0000
	           film 0.0000
	             in 0.0000
	          minor 0.0000
	             at 0.0000
	              , 0.0000
	             on 0.0000
	           from 0.0000
	              . 0.0000
	              - 0.0000

        rookery   432367   3 (26)
	        rockery 0.7000
	           very 0.5672
	        rookery 0.1000
	        kookery 0.0369
	         rooker 0.0369
	       crookery 0.0369
	         report 0.0369
	          rokey 0.0369
	              , 0.0369
	        rookers 0.0369
	            few 0.0097
	           </S> 0.0059
	          major 0.0000
	         Hooker 0.0000
	              - 0.0000
	          <UNK> 0.0000
	         review 0.0000
	         Booker 0.0000
	            lot 0.0000
	         robert 0.0000
	            new 0.0000
	              " 0.0000
	              ) 0.0000
	          child 0.0000
	            man 0.0000
	         person 0.0000

       moreover   432491   1 (24)
	              - 0.0369
	         review 0.0369
	       moreover 0.0369
	        moverer 0.0369
	         Peover 0.0369
	              I 0.0369
	        moreote 0.0369
	              , 0.0369
	      mouseover 0.0369
	          mover 0.0369
	       makeover 0.0369
	        morerer 0.0369
	      thereover 0.0369
	       mortifer 0.0369
	         moveor 0.0369
	           over 0.0369
	         before 0.0369
	              . 0.0369
	       Moreover 0.0369
	              a 0.0369
	           </S> 0.0059
	              } 0.0000
	              " 0.0000
	              ) 0.0000

      continual   432504   1 (31)
	      continual 1.0000
	      continuus 0.3000
	    uncontinual 0.0369
	     subjective 0.0369
	        strange 0.0369
	        various 0.0369
	           loud 0.0369
	           very 0.0369
	          usual 0.0369
	           ugly 0.0369
	            the 0.0369
	           true 0.0369
	      continuar 0.0369
	      continuas 0.0369
	           </S> 0.0059
	       continua 0.0000
	              ' 0.0000
	     continuall 0.0000
	          total 0.0000
	      following 0.0000
	              " 0.0000
	        company 0.0000
	          first 0.0000
	          whole 0.0000
	          <UNK> 0.0000
	              - 0.0000
	       National 0.0000
	           same 0.0000
	          right 0.0000
	         course 0.0000
	      continuum 0.0000

         noises   432514  16 (27)
	              a 0.0369
	        noisest 0.0369
	            end 0.0369
	        opinion 0.0369
	           case 0.0369
	          Boise 0.0369
	         number 0.0369
	           side 0.0369
	         nosies 0.0369
	              I 0.0369
	         noised 0.0369
	             of 0.0369
	       majority 0.0369
	         prices 0.0369
	    improvement 0.0059
	              - 0.0000
	            use 0.0000
	           need 0.0000
	              , 0.0000
	              . 0.0000
	    development 0.0000
	           </S> 0.0000
	       presence 0.0000
	        process 0.0000
	          noise 0.0000
	         noises 0.0000
	          basis 0.0000

          Rooks   432606   1 (25)
	          Rooks 0.5000
	          Rooke 0.5000
	           Roos 0.3000
	          Rosko 0.0369
	              A 0.0369
	       Rooksley 0.0369
	       Rooksbya 0.0369
	          Rooky 0.0369
	            the 0.0059
	            you 0.0000
	              : 0.0000
	          Rocks 0.0000
	          Books 0.0000
	           good 0.0000
	           they 0.0000
	           work 0.0000
	             it 0.0000
	              I 0.0000
	              a 0.0000
	              , 0.0000
	           Rook 0.0000
	           </S> 0.0000
	             we 0.0000
	             is 0.0000
	              . 0.0000

          still   432612   3 (25)
	              w 0.8633
	            are 0.7000
	         stille 0.0369
	         stills 0.0369
	            the 0.0369
	          stile 0.0369
	          stili 0.0369
	           sala 0.0369
	           site 0.0369
	          still 0.0369
	           stil 0.0369
	              a 0.0369
	          shall 0.0369
	              I 0.0369
	          stilt 0.0369
	              , 0.0059
	              . 0.0000
	             is 0.0000
	             to 0.0000
	            can 0.0000
	              - 0.0000
	         County 0.0000
	           will 0.0000
	            was 0.0000
	           </S> 0.0000

          breed   432628   2 (35)
	         breeds 0.7348
	          breed 0.4405
	           been 0.1133
	           type 0.0369
	         invest 0.0369
	     trademarks 0.0369
	           work 0.0369
	    participate 0.0369
	          women 0.0369
	         breede 0.0369
	    restaurants 0.0369
	              i 0.0369
	          brees 0.0369
	            the 0.0059
	             is 0.0000
	              I 0.0000
	           then 0.0000
	       services 0.0000
	           free 0.0000
	              , 0.0000
	              - 0.0000
	              ( 0.0000
	             to 0.0000
	          other 0.0000
	          based 0.0000
	           bree 0.0000
	          breen 0.0000
	           bred 0.0000
	            not 0.0000
	              a 0.0000
	         others 0.0000
	            one 0.0000
	          <UNK> 0.0000
	           </S> 0.0000
	          brede 0.0000

     connucuced   432735 inf (30)
	            can 0.6000
	     pronounced 0.0369
	        reduced 0.0369
	      connected 0.0369
	       complete 0.0369
	       cannucce 0.0369
	           once 0.0369
	          built 0.0369
	              - 0.0369
	       conduced 0.0369
	              I 0.0369
	         placed 0.0369
	             13 0.0369
	     dispatched 0.0059
	          ships 0.0000
	            one 0.0000
	           </S> 0.0000
	        between 0.0000
	        include 0.0000
	              . 0.0000
	            the 0.0000
	             at 0.0000
	          found 0.0000
	             to 0.0000
	          comes 0.0000
	      conducted 0.0000
	              , 0.0000
	              a 0.0000
	            not 0.0000
	           made 0.0000

             or   432746   1 (22)
	              - 0.0369
	             on 0.0369
	             ro 0.0369
	             or 0.0369
	             iu 0.0369
	            arz 0.0369
	         within 0.0369
	             to 0.0369
	             in 0.0369
	              a 0.0369
	             of 0.0369
	            oor 0.0369
	              , 0.0369
	             us 0.0369
	            oro 0.0369
	            org 0.0369
	            ore 0.0369
	            orr 0.0369
	           </S> 0.0369
	              . 0.0369
	              I 0.0369
	             by 0.0369

       repaired   432749   1 (27)
	       repaired 0.9000
	              T 0.0369
	        reaired 0.0369
	       appaired 0.0369
	         return 0.0369
	             26 0.0369
	              ) 0.0369
	            the 0.0059
	       required 0.0000
	           more 0.0000
	              e 0.0000
	          <UNK> 0.0000
	             no 0.0000
	              , 0.0000
	     unrepaired 0.0000
	           </S> 0.0000
	              a 0.0000
	             an 0.0000
	       repairer 0.0000
	         repaid 0.0000
	              - 0.0000
	        related 0.0000
	             in 0.0000
	       repaires 0.0000
	            two 0.0000
	        repaire 0.0000
	         repair 0.0000

             iu   432764   9 (18)
	             it 0.2000
	              I 0.0369
	            ius 0.0369
	            iun 0.0369
	             iu 0.0369
	           uiui 0.0369
	            cia 0.0369
	             ui 0.0369
	             in 0.0059
	              . 0.0000
	              - 0.0000
	             to 0.0000
	             us 0.0000
	           </S> 0.0000
	              , 0.0000
	             as 0.0000
	           this 0.0000
	             is 0.0000

          March   432767   1 (26)
	         Search 0.0369
	           year 0.0369
	         Marach 0.0369
	        century 0.0369
	          Parus 0.0369
	          parva 0.0369
	          March 0.0369
	          Marco 0.0369
	          Marcy 0.0369
	           More 0.0369
	           Marc 0.0369
	         Marcha 0.0369
	              I 0.0369
	         Marche 0.0369
	         Marchi 0.0369
	           </S> 0.0059
	              ) 0.0000
	              a 0.0000
	              s 0.0000
	              . 0.0000
	             of 0.0000
	              ] 0.0000
	              - 0.0000
	              , 0.0000
	          <UNK> 0.0000
	             's 0.0000

      unusualh-   432784   7 (18)
	            not 0.0369
	            was 0.0369
	       unusuall 0.0369
	              i 0.0369
	           just 0.0369
	            the 0.0059
	           that 0.0000
	        January 0.0000
	          using 0.0000
	              I 0.0000
	      unusually 0.0000
	        unusual 0.0000
	           </S> 0.0000
	              . 0.0000
	              a 0.0000
	              , 0.0000
	            all 0.0000
	              - 0.0000

           mild   432794   1 (24)
	          while 0.0369
	              a 0.0369
	          minor 0.0369
	            mil 0.0369
	              i 0.0369
	           </S> 0.0369
	           made 0.0369
	            the 0.0369
	           mile 0.0369
	           mild 0.0369
	          dilim 0.0369
	          limid 0.0369
	            cia 0.0369
	           sala 0.0369
	           mail 0.0369
	              I 0.0369
	           milf 0.0369
	          milde 0.0369
	          milds 0.0369
	           will 0.0369
	              , 0.0369
	              - 0.0369
	              . 0.0369
	            few 0.0369

       building   432807   3 (19)
	              a 0.5000
	              - 0.2000
	      buildings 0.0369
	       Building 0.0369
	       Guilding 0.0369
	          build 0.0369
	       building 0.0369
	     buildering 0.0369
	      abuilding 0.0369
	       moderate 0.0369
	       bundling 0.0369
	        budling 0.0369
	        bilding 0.0369
	              . 0.0059
	            and 0.0000
	              I 0.0000
	              ; 0.0000
	           </S> 0.0000
	              , 0.0000

     operations   432816  13 (22)
	       services 0.5000
	    operationes 0.0369
	   cooperations 0.0369
	           warm 0.0369
	    operationis 0.0369
	           cool 0.0369
	     experience 0.0369
	     operatione 0.0369
	     operationi 0.0369
	            hot 0.0369
	      operantis 0.0369
	              , 0.0059
	             is 0.0000
	      operation 0.0000
	     operations 0.0000
	              a 0.0000
	              - 0.0000
	              . 0.0000
	       operator 0.0000
	        options 0.0000
	           </S> 0.0000
	            and 0.0000

      sometimes   432827  13 (17)
	      sometiese 0.0369
	       sometime 0.0369
	      sometimos 0.0369
	      Sometimes 0.0369
	    efficiently 0.0369
	           site 0.0369
	              a 0.0369
	         system 0.0369
	              I 0.0369
	      Homerites 0.0369
	        systems 0.0369
	              . 0.0059
	              , 0.0000
	           </S> 0.0000
	            and 0.0000
	              - 0.0000
	      sometimes 0.0000

       commence   432837   9 (24)
	       comments 0.8000
	      commences 0.0369
	       Comments 0.0369
	       commerce 0.0369
	       comencen 0.0369
	       comencem 0.0369
	      commenced 0.0369
	              , 0.0059
	             so 0.0000
	            and 0.0000
	           even 0.0000
	           with 0.0000
	              i 0.0000
	              I 0.0000
	            too 0.0000
	              a 0.0000
	              . 0.0000
	             as 0.0000
	       commence 0.0000
	             it 0.0000
	              - 0.0000
	        comment 0.0000
	           </S> 0.0000
	            the 0.0000

         1895-6   432899 inf (21)
	          which 0.2000
	            and 0.0369
	           1996 0.0369
	           when 0.0369
	           1995 0.0369
	              X 0.0369
	           1999 0.0369
	           1998 0.0369
	            the 0.0059
	              : 0.0000
	              , 0.0000
	              1 0.0000
	           this 0.0000
	          <UNK> 0.0000
	              a 0.0000
	             us 0.0000
	           what 0.0000
	            The 0.0000
	              - 0.0000
	          their 0.0000
	           </S> 0.0000

              I   432906   1 (18)
	             WI 0.0369
	             us 0.0369
	            III 0.0369
	            the 0.0369
	              - 0.0369
	             In 0.0369
	             iu 0.0369
	             MI 0.0369
	             II 0.0369
	            cia 0.0369
	             It 0.0369
	             of 0.0369
	              I 0.0369
	              . 0.0059
	              , 0.0000
	              ) 0.0000
	            and 0.0000
	           </S> 0.0000

          Rooks   432926   2 (26)
	           Rock 0.8000
	           Roos 0.0369
	          Books 0.0369
	          Rooks 0.0369
	          Rocks 0.0369
	             us 0.0369
	          Rooke 0.0369
	          Rooky 0.0369
	          Rosko 0.0369
	       Rooksley 0.0369
	       Rooksbya 0.0369
	              a 0.0369
	              I 0.0369
	         people 0.0059
	           book 0.0000
	          books 0.0000
	              . 0.0000
	              - 0.0000
	           girl 0.0000
	              , 0.0000
	            men 0.0000
	           Rook 0.0000
	            man 0.0000
	           </S> 0.0000
	          girls 0.0000
	          woman 0.0000

        sitting   432932   1 (19)
	        getting 0.0369
	        listing 0.0369
	        setting 0.0369
	         sittin 0.0369
	              i 0.0369
	        sittine 0.0369
	        Listing 0.0369
	        sitting 0.0369
	            who 0.0369
	              a 0.0369
	         siting 0.0369
	       sittings 0.0369
	              I 0.0369
	              , 0.0059
	         County 0.0000
	              - 0.0000
	           </S> 0.0000
	              . 0.0000
	            had 0.0000

          the}-   432972   1 (19)
	           they 0.3750
	            the 0.2302
	           them 0.0500
	              - 0.0369
	              . 0.0369
	          thete 0.0369
	          theet 0.0369
	             is 0.0059
	           thee 0.0000
	            are 0.0000
	          there 0.0000
	              i 0.0000
	             it 0.0000
	              , 0.0000
	             he 0.0000
	              I 0.0000
	           </S> 0.0000
	          their 0.0000
	              a 0.0000

            had   432978   1 (22)
	              . 0.0369
	           </S> 0.0369
	           have 0.0369
	            had 0.0369
	              - 0.0369
	            and 0.0369
	           hadd 0.0369
	            has 0.0369
	            cia 0.0369
	            arz 0.0369
	              I 0.0369
	            the 0.0369
	             is 0.0369
	            hat 0.0369
	            are 0.0369
	             ha 0.0369
	              , 0.0369
	             be 0.0369
	           hade 0.0369
	           hada 0.0369
	              a 0.0369
	             us 0.0369

          Rooks   433047   1 (34)
	          Rooks 0.5167
	           Rook 0.4200
	          third 0.0369
	       increase 0.0369
	       Rooksley 0.0369
	       Rooksbya 0.0369
	            the 0.0369
	         change 0.0369
	         sounds 0.0369
	           </S> 0.0059
	           same 0.0037
	           Roos 0.0000
	          Rocks 0.0000
	            use 0.0000
	          <UNK> 0.0000
	           Rose 0.0000
	              - 0.0000
	         system 0.0000
	          first 0.0000
	          Rooky 0.0000
	           Book 0.0000
	           Road 0.0000
	           book 0.0000
	      following 0.0000
	              " 0.0000
	           time 0.0000
	           Rock 0.0000
	          Books 0.0000
	          Rosko 0.0000
	          world 0.0000
	              ' 0.0000
	            way 0.0000
	    information 0.0000
	          Rooke 0.0000

        rookery   433058   3 (29)
	        rockery 0.7000
	           very 0.5672
	        rookery 0.1000
	         source 0.0369
	              , 0.0369
	        rookers 0.0369
	              a 0.0369
	              . 0.0369
	        kookery 0.0369
	         report 0.0369
	          topic 0.0369
	        Library 0.0369
	          level 0.0369
	          rokey 0.0369
	          value 0.0369
	       crookery 0.0369
	        subject 0.0369
	         rooker 0.0369
	            few 0.0097
	           </S> 0.0059
	         series 0.0000
	            new 0.0000
	            lot 0.0000
	         Booker 0.0000
	              - 0.0000
	          major 0.0000
	         robert 0.0000
	         review 0.0000
	            way 0.0000

          close   433066   2 (24)
	      connected 0.2000
	           back 0.0369
	           also 0.0369
	         closer 0.0369
	          class 0.0369
	       addition 0.0369
	         corone 0.0369
	           case 0.0369
	          those 0.0369
	         closes 0.0369
	              I 0.0369
	          clost 0.0369
	          closh 0.0369
	         closed 0.0369
	          close 0.0369
	          colse 0.0369
	            out 0.0369
	              . 0.0059
	             of 0.0000
	           </S> 0.0000
	             in 0.0000
	              - 0.0000
	              , 0.0000
	              a 0.0000

      repairing   433084  12 (19)
	       repagina 0.0369
	       reairing 0.0369
	          being 0.0369
	         during 0.0369
	              i 0.0369
	     repapering 0.0369
	          right 0.0369
	     repairings 0.0369
	      Repairing 0.0369
	            New 0.0369
	              , 0.0059
	      repairing 0.0000
	              - 0.0000
	            and 0.0000
	              : 0.0000
	              a 0.0000
	           </S> 0.0000
	              I 0.0000
	              . 0.0000

          their   433094  10 (20)
	           they 0.4000
	         theirs 0.0369
	          theif 0.0369
	          thein 0.0369
	           thei 0.0369
	              I 0.0369
	         theire 0.0369
	          thier 0.0369
	            the 0.0059
	              . 0.0000
	         credit 0.0000
	            car 0.0000
	              a 0.0000
	              - 0.0000
	          their 0.0000
	          minor 0.0000
	              , 0.0000
	           </S> 0.0000
	          there 0.0000
	            and 0.0000

        January   433109   1 (29)
	        January 0.9000
	          Janus 0.6000
	              x 0.0369
	          years 0.0369
	       Januarye 0.0369
	             us 0.0369
	           them 0.0369
	        Januaro 0.0369
	            the 0.0059
	        Januari 0.0000
	              a 0.0000
	           this 0.0000
	           turn 0.0000
	           your 0.0000
	              - 0.0000
	         Canada 0.0000
	        writing 0.0000
	           time 0.0000
	        general 0.0000
	             it 0.0000
	          place 0.0000
	       Januarys 0.0000
	           fact 0.0000
	        Januray 0.0000
	           </S> 0.0000
	         Januar 0.0000
	              , 0.0000
	              . 0.0000
	       Janruary 0.0000

      Februar}-   433125   2 (28)
	         Februa 0.9333
	       February 0.6000
	       Februari 0.4000
	      Februarie 0.3000
	             as 0.0369
	      februaria 0.0369
	             is 0.0369
	       Februare 0.0369
	              I 0.0369
	          about 0.0369
	           with 0.0369
	         buying 0.0369
	            are 0.0369
	          March 0.0369
	           were 0.0369
	             in 0.0369
	             us 0.0369
	            the 0.0059
	              - 0.0000
	              , 0.0000
	           such 0.0000
	          which 0.0000
	              . 0.0000
	        Februar 0.0000
	           this 0.0000
	            for 0.0000
	           </S> 0.0000
	              a 0.0000

              a   433135   1 (19)
	       language 0.0369
	             la 0.0369
	             aa 0.0369
	             us 0.0369
	            cia 0.0369
	             to 0.0369
	              . 0.0369
	            aaa 0.0369
	             at 0.0369
	             as 0.0369
	              - 0.0369
	              a 0.0369
	            new 0.0369
	              , 0.0369
	           </S> 0.0369
	            the 0.0369
	             of 0.0369
	           lava 0.0369
	             La 0.0369

          daily   433142  13 (22)
	           days 0.3000
	            day 0.1000
	        Indaily 0.0369
	           sala 0.0369
	        daylily 0.0369
	        bidaily 0.0369
	         daidly 0.0369
	              A 0.0369
	           dail 0.0369
	          dails 0.0369
	          daili 0.0369
	             of 0.0059
	            has 0.0000
	              a 0.0000
	              I 0.0000
	           data 0.0000
	           </S> 0.0000
	              , 0.0000
	              - 0.0000
	              . 0.0000
	             is 0.0000
	          daily 0.0000

        visited   433148  11 (20)
	        limited 0.8000
	        Limited 0.0369
	        visites 0.0369
	              a 0.0369
	        divites 0.0369
	         vidste 0.0369
	        visiter 0.0369
	         visite 0.0369
	      Revisited 0.0369
	              . 0.0059
	              u 0.0000
	          visit 0.0000
	     newsletter 0.0000
	           dose 0.0000
	          basis 0.0000
	              - 0.0000
	           </S> 0.0000
	              , 0.0000
	        visited 0.0000
	              e 0.0000

            m^'   433156   8 (18)
	            cia 0.0369
	             mm 0.0369
	              I 0.0369
	            mmm 0.0369
	           mmmm 0.0369
	             iu 0.0369
	            the 0.0059
	              a 0.0000
	              - 0.0000
	            may 0.0000
	              . 0.0000
	              , 0.0000
	           this 0.0000
	             me 0.0000
	             us 0.0000
	           </S> 0.0000
	             my 0.0000
	             by 0.0000

         garden   433160   1 (22)
	       auctions 0.0369
	              . 0.0369
	              - 0.0369
	          garde 0.0369
	            the 0.0369
	           site 0.0369
	      essential 0.0369
	              I 0.0369
	           </S> 0.0369
	        gardens 0.0369
	              , 0.0369
	          games 0.0369
	          order 0.0369
	         garder 0.0369
	         gardes 0.0369
	         graden 0.0369
	         Garden 0.0369
	             us 0.0369
	        gardeen 0.0369
	         garden 0.0369
	        gardent 0.0369
	              a 0.0369

        Dulwich   433206   1 (25)
	              - 0.0369
	            one 0.0369
	            its 0.0369
	           home 0.0369
	           such 0.0369
	              , 0.0369
	              a 0.0369
	           </S> 0.0369
	        Darwich 0.0369
	        Dunwich 0.0369
	          least 0.0369
	        Dulwich 0.0369
	        Bulwick 0.0369
	       Dunwhich 0.0369
	            the 0.0369
	              . 0.0369
	          lwich 0.0369
	           your 0.0059
	           wich 0.0000
	              x 0.0000
	          which 0.0000
	             us 0.0000
	           with 0.0000
	              y 0.0000
	           work 0.0000

          first   433214   2 (17)
	        College 0.7000
	          frist 0.0369
	         firsts 0.0369
	              A 0.0369
	           firs 0.0369
	          First 0.0369
	         firste 0.0369
	              I 0.0369
	              a 0.0369
	           find 0.0369
	           time 0.0369
	          first 0.0369
	              , 0.0059
	              . 0.0000
	              - 0.0000
	           </S> 0.0000
	         Hamlet 0.0000

           made   433282   1 (29)
	          items 0.0369
	          maura 0.0369
	          madem 0.0369
	         tested 0.0369
	          posts 0.0369
	       articles 0.0369
	           madi 0.0369
	           mada 0.0369
	            mad 0.0369
	          books 0.0369
	          major 0.0369
	              I 0.0369
	           made 0.0369
	          maden 0.0369
	          mades 0.0369
	           make 0.0369
	           lava 0.0369
	       affected 0.0369
	          madde 0.0369
	              , 0.0059
	             in 0.0000
	           </S> 0.0000
	          sites 0.0000
	              - 0.0000
	       attempts 0.0000
	        habitat 0.0000
	              a 0.0000
	            may 0.0000
	              . 0.0000

       assuring   433303   1 (27)
	       assuring 0.0369
	      Passerine 0.0369
	       assurant 0.0369
	     conditions 0.0369
	              I 0.0369
	     assrunning 0.0369
	     assuringly 0.0369
	          <UNK> 0.0369
	     unassuring 0.0369
	           </S> 0.0369
	           tell 0.0369
	              ' 0.0369
	            are 0.0369
	        assurgi 0.0369
	            and 0.0369
	              x 0.0369
	           send 0.0369
	       assuming 0.0369
	              " 0.0369
	            the 0.0059
	          which 0.0012
	             or 0.0000
	              i 0.0000
	         please 0.0000
	          using 0.0000
	     reassuring 0.0000
	             to 0.0000

          Rooks   433353  14 (31)
	          Rooke 0.9000
	           Rook 0.8000
	           Roos 0.5460
	           Book 0.1000
	           tits 0.0369
	       scissors 0.0369
	           eyes 0.0369
	          jeans 0.0369
	        tickets 0.0369
	       Rooksley 0.0369
	       Rooksbya 0.0369
	          Rooky 0.0369
	            the 0.0059
	              : 0.0000
	          Books 0.0000
	          their 0.0000
	          Rocks 0.0000
	           </S> 0.0000
	          Rosko 0.0000
	              , 0.0000
	          shoes 0.0000
	           book 0.0000
	              a 0.0000
	          Rooks 0.0000
	              - 0.0000
	           Rose 0.0000
	           Rock 0.0000
	          <UNK> 0.0000
	          these 0.0000
	           this 0.0000
	             us 0.0000

       carrying   433359   2 (20)
	            can 0.2000
	      carryings 0.0369
	        company 0.0369
	              I 0.0369
	       carnying 0.0369
	         caring 0.0369
	      canarying 0.0369
	              x 0.0369
	        current 0.0369
	       Carrying 0.0369
	       currying 0.0369
	     recarrying 0.0369
	              a 0.0369
	       carrying 0.0369
	              , 0.0059
	            and 0.0000
	              . 0.0000
	         County 0.0000
	              - 0.0000
	           </S> 0.0000

      Feathered   433401   1 (26)
	      Feathered 0.4000
	             of 0.2000
	      feathered 0.1000
	           Real 0.0369
	     Fartherred 0.0369
	          Other 0.0369
	          where 0.0369
	          other 0.0369
	          Hello 0.0369
	           must 0.0369
	            New 0.0369
	    Featherhead 0.0369
	           </S> 0.0059
	      weathered 0.0000
	              a 0.0000
	              , 0.0000
	              . 0.0000
	              x 0.0000
	              I 0.0000
	     Featherbed 0.0000
	              - 0.0000
	             as 0.0000
	      heathered 0.0000
	              A 0.0000
	            The 0.0000
	          <UNK> 0.0000

            Mr.   433440   1 (24)
	              a 0.0369
	              s 0.0369
	              ( 0.0369
	            Mrs 0.0369
	            Mrz 0.0369
	             My 0.0369
	            and 0.0369
	           More 0.0369
	              I 0.0369
	             Mr 0.0369
	            arz 0.0369
	           26th 0.0369
	          <UNK> 0.0369
	            are 0.0369
	            Mr. 0.0369
	           </S> 0.0369
	              @ 0.0369
	             d. 0.0369
	              A 0.0369
	              , 0.0369
	            the 0.0059
	          which 0.0012
	             or 0.0000
	             us 0.0000

             W.   433444 inf (26)
	            Web 1.0000
	             WW 0.6000
	             WA 0.2000
	             We 0.1000
	         Robert 0.0847
	              I 0.0369
	      Spielberg 0.0369
	             us 0.0369
	              a 0.0369
	              . 0.0369
	              - 0.0369
	       Chairman 0.0059
	           </S> 0.0000
	             M. 0.0000
	        Speaker 0.0000
	            and 0.0000
	          James 0.0000
	             J. 0.0000
	           John 0.0000
	              B 0.0000
	              , 0.0000
	             WI 0.0000
	             of 0.0000
	            the 0.0000
	      President 0.0000
	             .. 0.0000

             N.   433447 inf (21)
	             NY 0.2000
	             No 0.1000
	     Thibodeaux 0.0369
	             's 0.0369
	             J. 0.0369
	             A. 0.0369
	             NN 0.0369
	     Estabrooks 0.0369
	           Ryan 0.0369
	              I 0.0369
	             M. 0.0369
	           Bush 0.0059
	              . 0.0000
	              A 0.0000
	              , 0.0000
	            Now 0.0000
	           </S> 0.0000
	            New 0.0000
	              - 0.0000
	             .. 0.0000
	             NO 0.0000

         Rushen   433450   2 (24)
	         Russia 0.1000
	         Rusher 0.0369
	        Rusheng 0.0369
	        Rushenk 0.0369
	             J. 0.0369
	         Rushen 0.0369
	         Rushes 0.0369
	              a 0.0369
	              s 0.0369
	        Mallory 0.0369
	             E. 0.0369
	          Lacey 0.0369
	           User 0.0369
	              I 0.0369
	              , 0.0059
	              - 0.0000
	            and 0.0000
	              A 0.0000
	              . 0.0000
	        Russian 0.0000
	          Korea 0.0000
	           </S> 0.0000
	        America 0.0000
	          Rules 0.0000

           says   433457   3 (27)
	              ) 0.4000
	           2001 0.2000
	            St. 0.0369
	           Baya 0.0369
	           lava 0.0369
	           aysa 0.0369
	            TEL 0.0369
	           said 0.0369
	           saya 0.0369
	           sayd 0.0369
	           says 0.0369
	           same 0.0369
	           sala 0.0369
	          aysay 0.0369
	            say 0.0369
	              a 0.0369
	          sayst 0.0369
	          sayso 0.0369
	              A 0.0369
	           days 0.0369
	           </S> 0.0059
	              - 0.0000
	              I 0.0000
	              . 0.0000
	              , 0.0000
	          wrote 0.0000
	           From 0.0000

          Rooks   433482   2 (29)
	           Rock 0.8000
	             us 0.0369
	          Books 0.0369
	              a 0.0369
	          Rosko 0.0369
	          Rooks 0.0369
	           Roos 0.0369
	              I 0.0369
	       Rooksley 0.0369
	       Rooksbya 0.0369
	             of 0.0369
	          Rocks 0.0369
	          Rooke 0.0369
	          Rooky 0.0369
	         people 0.0059
	           </S> 0.0000
	              . 0.0000
	           boys 0.0000
	          woman 0.0000
	            men 0.0000
	           book 0.0000
	       children 0.0000
	           Rook 0.0000
	              , 0.0000
	              - 0.0000
	          books 0.0000
	          women 0.0000
	            man 0.0000
	          girls 0.0000

           near   433488   1 (22)
	           near 0.0369
	           neat 0.0369
	            new 0.0369
	          nears 0.0369
	            arz 0.0369
	            cia 0.0369
	              a 0.0369
	      detainees 0.0369
	           need 0.0369
	            who 0.0369
	          neare 0.0369
	              I 0.0369
	           neal 0.0369
	           year 0.0369
	           nera 0.0369
	            nea 0.0369
	              , 0.0059
	         County 0.0000
	              - 0.0000
	              . 0.0000
	           </S> 0.0000
	              w 0.0000

       Wanstead   433493  15 (24)
	       Winstead 0.8000
	              a 0.1000
	        instead 0.1000
	      Winsteads 0.0369
	        Central 0.0369
	           Hyde 0.0369
	         Winter 0.0369
	         Wanted 0.0369
	          Estes 0.0369
	       Walstead 0.0369
	       Ranstead 0.0369
	          major 0.0369
	         Kansas 0.0369
	            the 0.0059
	              I 0.0000
	       Wanstead 0.0000
	         wanted 0.0000
	            you 0.0000
	           </S> 0.0000
	              . 0.0000
	              - 0.0000
	             us 0.0000
	       Banstead 0.0000
	              , 0.0000

            and   433573   1 (21)
	              . 0.0369
	              a 0.0369
	           aand 0.0369
	            ant 0.0369
	            and 0.0369
	            arz 0.0369
	           alba 0.0369
	             us 0.0369
	             an 0.0369
	           andy 0.0369
	           anda 0.0369
	              I 0.0369
	   grandparents 0.0369
	              , 0.0369
	       teachers 0.0369
	            any 0.0369
	            the 0.0369
	           </S> 0.0059
	              ) 0.0000
	              " 0.0000
	              } 0.0000

          the}-   433604   1 (21)
	           they 0.0755
	          theet 0.0369
	            but 0.0369
	              . 0.0369
	            and 0.0369
	              a 0.0369
	              , 0.0369
	              - 0.0369
	              I 0.0369
	           </S> 0.0369
	            the 0.0059
	          which 0.0012
	          there 0.0000
	           thee 0.0000
	           them 0.0000
	             we 0.0000
	          thete 0.0000
	              i 0.0000
	             or 0.0000
	          their 0.0000
	            you 0.0000

           must   433610   1 (25)
	              . 0.0369
	          would 0.0369
	           musk 0.0369
	           just 0.0369
	          maura 0.0369
	           must 0.0369
	            mus 0.0369
	          musty 0.0369
	           muse 0.0369
	              i 0.0369
	            and 0.0369
	              - 0.0369
	              a 0.0369
	          musts 0.0369
	            the 0.0369
	           most 0.0369
	             iu 0.0369
	           </S> 0.0369
	            you 0.0369
	             us 0.0369
	              I 0.0369
	              , 0.0369
	             it 0.0369
	           muts 0.0369
	          musta 0.0369

              t   433651 inf (22)
	             tt 0.7000
	             th 0.6000
	             L. 0.0369
	              - 0.0235
	           </S> 0.0059
	             of 0.0000
	            ... 0.0000
	              a 0.0000
	             in 0.0000
	              . 0.0000
	              , 0.0000
	             It 0.0000
	             tv 0.0000
	             it 0.0000
	              ) 0.0000
	            cia 0.0000
	             at 0.0000
	          <UNK> 0.0000
	              " 0.0000
	            and 0.0000
	             to 0.0000
	             us 0.0000

         formed   433693   1 (27)
	         formed 0.8000
	            but 0.0369
	              " 0.0369
	              a 0.0369
	          <UNK> 0.0369
	              I 0.0369
	            and 0.0369
	     regardless 0.0369
	           </S> 0.0369
	        formend 0.0369
	        formede 0.0369
	            low 0.0369
	        because 0.0369
	           this 0.0186
	            the 0.0059
	          which 0.0012
	       reformed 0.0000
	           some 0.0000
	            one 0.0000
	          forme 0.0000
	              i 0.0000
	             or 0.0000
	            for 0.0000
	         former 0.0000
	           from 0.0000
	           free 0.0000
	         formes 0.0000

         sticks   433710  15 (27)
	              - 0.1667
	        stickes 0.0369
	       violence 0.0369
	        article 0.0369
	           page 0.0369
	         sticke 0.0369
	         stickt 0.0369
	         spinas 0.0369
	          bones 0.0369
	              I 0.0369
	         Stocks 0.0369
	           site 0.0369
	        stickst 0.0369
	              , 0.0059
	          winds 0.0000
	          Click 0.0000
	           </S> 0.0000
	       language 0.0000
	     leadership 0.0000
	              a 0.0000
	         sticks 0.0000
	            and 0.0000
	              . 0.0000
	          still 0.0000
	         growth 0.0000
	          stick 0.0000
	         sticky 0.0000

           moss   433793   1 (26)
	          mosso 0.0369
	           moso 0.0369
	          mossy 0.0369
	           moss 0.0369
	    information 0.0369
	            mos 0.0369
	           mosh 0.0369
	          fatal 0.0369
	              , 0.0059
	           </S> 0.0000
	              ) 0.0000
	           most 0.0000
	              i 0.0000
	             my 0.0000
	             it 0.0000
	           moms 0.0000
	           more 0.0000
	              . 0.0000
	            not 0.0000
	          books 0.0000
	             us 0.0000
	           even 0.0000
	              - 0.0000
	              I 0.0000
	            the 0.0000
	              a 0.0000

           dead   433799   2 (33)
	             do 0.1010
	          young 0.0369
	           dear 0.0369
	      sometimes 0.0369
	           dead 0.0369
	           deal 0.0369
	            cia 0.0369
	              a 0.0369
	           work 0.0369
	              " 0.0369
	            and 0.0369
	            day 0.0369
	           deda 0.0369
	           deae 0.0369
	          <UNK> 0.0369
	       withered 0.0369
	              I 0.0369
	          deads 0.0369
	          deade 0.0369
	            but 0.0369
	          adead 0.0369
	            dea 0.0369
	           </S> 0.0369
	            the 0.0059
	          which 0.0012
	            you 0.0000
	            dry 0.0000
	           that 0.0000
	            who 0.0000
	             or 0.0000
	           year 0.0000
	           your 0.0000
	              i 0.0000

         number   433835   1 (24)
	         number 1.0000
	        nnumber 0.0369
	         numbre 0.0369
	           need 0.0369
	         numbed 0.0369
	       benefits 0.0369
	          price 0.0369
	        numbers 0.0369
	          comes 0.0369
	        numbere 0.0369
	              , 0.0059
	              I 0.0000
	          under 0.0000
	           come 0.0000
	           </S> 0.0000
	              a 0.0000
	           were 0.0000
	            are 0.0000
	              - 0.0000
	          hatch 0.0000
	              . 0.0000
	             of 0.0000
	            and 0.0000
	             is 0.0000

        similar   433922  13 (22)
	             at 0.6000
	         should 0.0369
	           will 0.0369
	              - 0.0369
	              I 0.0369
	       similars 0.0369
	         simila 0.0369
	       similary 0.0369
	       similari 0.0369
	        similan 0.0369
	        similat 0.0369
	              a 0.0059
	            all 0.0000
	        various 0.0000
	           some 0.0000
	             no 0.0000
	            the 0.0000
	           </S> 0.0000
	              . 0.0000
	            and 0.0000
	        similar 0.0000
	              , 0.0000

           they   433968   1 (21)
	           then 0.0369
	           they 0.0369
	          thewy 0.0369
	            the 0.0369
	              , 0.0369
	           them 0.0369
	          tythe 0.0369
	              - 0.0369
	          Athey 0.0369
	              a 0.0369
	              A 0.0369
	              . 0.0369
	          tehty 0.0369
	              I 0.0369
	         Corvus 0.0369
	          theyr 0.0369
	           </S> 0.0059
	              ) 0.0000
	              " 0.0000
	              } 0.0000
	          <UNK> 0.0000

             iu   434083   1 (21)
	             in 0.7000
	            cia 0.0369
	            ius 0.0369
	            iun 0.0369
	             iu 0.0369
	           uiui 0.0369
	              I 0.0369
	              a 0.0369
	             ui 0.0369
	           than 0.0059
	              , 0.0000
	           </S> 0.0000
	           when 0.0000
	             it 0.0000
	              - 0.0000
	             of 0.0000
	             is 0.0000
	              . 0.0000
	             us 0.0000
	             if 0.0000
	            and 0.0000

      different   434086   1 (20)
	      differens 0.0369
	      different 0.0369
	              I 0.0369
	     differents 0.0369
	           dull 0.0369
	     differenti 0.0369
	      instantly 0.0369
	     difference 0.0369
	       diferent 0.0369
	      Different 0.0369
	           </S> 0.0059
	              s 0.0000
	              a 0.0000
	             of 0.0000
	          <UNK> 0.0000
	              - 0.0000
	             iu 0.0000
	              , 0.0000
	            the 0.0000
	              . 0.0000

          nests   434096  10 (28)
	           Best 0.6000
	         nestes 0.0369
	          neste 0.0369
	         nestas 0.0369
	          nesta 0.0369
	           ests 0.0369
	        renests 0.0369
	        Ernests 0.0369
	           from 0.0059
	              - 0.0000
	              . 0.0000
	      countries 0.0000
	          nests 0.0000
	        aspects 0.0000
	          parts 0.0000
	           West 0.0000
	       cultures 0.0000
	           news 0.0000
	              , 0.0000
	          areas 0.0000
	           </S> 0.0000
	            new 0.0000
	          types 0.0000
	           nest 0.0000
	           nets 0.0000
	          needs 0.0000
	           ways 0.0000
	           next 0.0000

            the   434104   1 (19)
	              , 0.0369
	           they 0.0369
	              I 0.0369
	            the 0.0369
	              . 0.0369
	              a 0.0369
	            cia 0.0369
	             iu 0.0369
	           thee 0.0369
	            teh 0.0369
	            and 0.0369
	            thy 0.0369
	            tho 0.0369
	           them 0.0369
	             us 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000
	              " 0.0000

        thicklj   434165  12 (29)
	          think 0.5000
	        trickle 0.1000
	        thicken 0.0902
	      thickleaf 0.0369
	              i 0.0369
	         select 0.0369
	       Chicklit 0.0369
	          press 0.0369
	        steppin 0.0369
	          which 0.0369
	            the 0.0059
	              I 0.0000
	           more 0.0000
	        thickly 0.0000
	           </S> 0.0000
	           will 0.0000
	              ( 0.0000
	              a 0.0000
	          other 0.0000
	          <UNK> 0.0000
	         thicke 0.0000
	           this 0.0000
	          thick 0.0000
	              , 0.0000
	          click 0.0000
	              - 0.0000
	        thicker 0.0000
	           then 0.0000
	       chicklet 0.0000

              '   434172   1 (15)
	              ' 0.0369
	             be 0.0369
	              . 0.0369
	            the 0.0369
	             of 0.0369
	            and 0.0369
	              , 0.0369
	             iu 0.0369
	            cia 0.0369
	           </S> 0.0369
	             's 0.0369
	             us 0.0369
	              - 0.0369
	            'll 0.0369
	            are 0.0369

           deep   434242  14 (26)
	           webs 0.5000
	           deer 0.2998
	           does 0.1000
	            dee 0.0369
	              a 0.0369
	            dep 0.0369
	             us 0.0369
	              I 0.0369
	           deed 0.0369
	           depe 0.0369
	          deeps 0.0369
	          deepe 0.0369
	          image 0.0059
	             de 0.0000
	           been 0.0000
	          photo 0.0000
	           </S> 0.0000
	           need 0.0000
	            for 0.0000
	              , 0.0000
	           ones 0.0000
	           than 0.0000
	           deep 0.0000
	         number 0.0000
	              . 0.0000
	              - 0.0000

        figured   434287   1 (23)
	        figuren 0.0369
	      figuredly 0.0369
	        figured 0.0369
	        figures 0.0369
	       products 0.0369
	        attacks 0.0369
	      defigured 0.0369
	      refigured 0.0369
	         figure 0.0369
	         figura 0.0369
	              , 0.0059
	           </S> 0.0000
	            and 0.0000
	              I 0.0000
	              - 0.0000
	              a 0.0000
	             is 0.0000
	           used 0.0000
	           from 0.0000
	              . 0.0000
	             of 0.0000
	           that 0.0000
	            for 0.0000

          figs.   434309   2 (22)
	            fig 0.8000
	           figs 0.1000
	          figos 0.0369
	          <UNK> 0.0369
	              " 0.0369
	          figis 0.0369
	            and 0.0369
	         fisgig 0.0369
	              ( 0.0369
	              a 0.0369
	           </S> 0.0369
	              I 0.0369
	            the 0.0059
	          which 0.0012
	         please 0.0000
	           figa 0.0000
	             we 0.0000
	          right 0.0000
	             or 0.0000
	           find 0.0000
	              i 0.0000
	          first 0.0000

            241   434315 inf (23)
	              , 0.1000
	              A 0.0500
	             iu 0.0369
	            the 0.0369
	             of 0.0369
	          steel 0.0369
	              . 0.0369
	            and 0.0369
	             us 0.0369
	          plate 0.0369
	            cia 0.0369
	              a 0.0369
	              - 0.0369
	              1 0.0059
	             24 0.0000
	              3 0.0000
	           </S> 0.0000
	             14 0.0000
	             21 0.0000
	             20 0.0000
	            2-4 0.0000
	              I 0.0000
	              2 0.0000

            243   434359 inf (22)
	             on 0.2761
	           past 0.0369
	              . 0.0369
	              x 0.0369
	           time 0.0369
	       analysis 0.0369
	            the 0.0059
	       services 0.0000
	            use 0.0000
	           </S> 0.0000
	           over 0.0000
	             iu 0.0000
	              - 0.0000
	              , 0.0000
	            cia 0.0000
	         should 0.0000
	             of 0.0000
	              2 0.0000
	             us 0.0000
	            and 0.0000
	              I 0.0000
	              a 0.0000

           Farn   434394   2 (29)
	        DeMille 0.3000
	       Vajpayee 0.0369
	              a 0.0369
	             C. 0.0369
	          Farne 0.0369
	           Farn 0.0369
	            arz 0.0369
	           lava 0.0369
	           sala 0.0369
	   Cocchiarella 0.0369
	           Fare 0.0369
	          Farna 0.0369
	         Dalton 0.0369
	           </S> 0.0059
	             et 0.0000
	            Far 0.0000
	            For 0.0000
	              I 0.0000
	           Fran 0.0000
	              ( 0.0000
	           Farm 0.0000
	              , 0.0000
	          Smith 0.0000
	              A 0.0000
	              - 0.0000
	           From 0.0000
	              . 0.0000
	           Free 0.0000
	      CONDENSED 0.0000

             's   434398   1 (18)
	             's 0.6000
	              s 0.0369
	             D. 0.0369
	              a 0.0369
	             so 0.0369
	             us 0.0369
	             as 0.0369
	              I 0.0369
	         MATTER 0.0369
	             A. 0.0369
	             al 0.0369
	           </S> 0.0059
	              ' 0.0000
	              - 0.0000
	              , 0.0000
	             is 0.0000
	           Wang 0.0000
	              . 0.0000

              .   434400  11 (22)
	           page 0.0369
	            ... 0.0369
	      Hollywood 0.0369
	          words 0.0369
	         Better 0.0369
	            Co. 0.0369
	            SoÌ 0.0369
	         Sports 0.0369
	          tales 0.0369
	              a 0.0059
	              " 0.0000
	              . 0.0000
	              , 0.0000
	            the 0.0000
	            and 0.0000
	             of 0.0000
	             iu 0.0000
	            cia 0.0000
	           </S> 0.0000
	              - 0.0000
	             us 0.0000
	            not 0.0000

             as   434561   1 (21)
	             in 0.0369
	             at 0.0369
	              I 0.0369
	            aas 0.0369
	             as 0.0369
	            the 0.0369
	            and 0.0369
	             an 0.0369
	             sa 0.0369
	            arz 0.0369
	             iu 0.0369
	             us 0.0369
	              , 0.0369
	              a 0.0369
	            ass 0.0369
	              . 0.0369
	            ask 0.0369
	           </S> 0.0059
	              } 0.0000
	              " 0.0000
	              ) 0.0000

         branch   434583  13 (28)
	        branche 0.8947
	          branc 0.7259
	        branchy 0.7000
	           rain 0.0369
	         branco 0.0369
	        sceptre 0.0369
	            sea 0.0369
	        brancha 0.0369
	          trees 0.0369
	         branca 0.0369
	           </S> 0.0059
	           same 0.0037
	         Search 0.0000
	         France 0.0000
	          first 0.0000
	          world 0.0000
	              " 0.0000
	              - 0.0000
	         branch 0.0000
	              ' 0.0000
	         search 0.0000
	          <UNK> 0.0000
	      following 0.0000
	          bunch 0.0000
	      anabranch 0.0000
	         future 0.0000
	         Branch 0.0000
	           back 0.0000

          the}-   434590   8 (17)
	          thete 0.0369
	       southern 0.0369
	           thee 0.0369
	              I 0.0369
	              a 0.0369
	          theet 0.0369
	             of 0.0059
	           they 0.0000
	          there 0.0000
	              . 0.0000
	          their 0.0000
	              , 0.0000
	              - 0.0000
	            and 0.0000
	            the 0.0000
	           </S> 0.0000
	           them 0.0000

            tip   434596   1 (21)
	              I 0.0369
	            tpi 0.0369
	            top 0.0369
	            tip 0.0369
	              - 0.0369
	             ti 0.0369
	              , 0.0369
	           tips 0.0369
	           tipo 0.0369
	           tipi 0.0369
	           </S> 0.0369
	            cia 0.0369
	             iu 0.0369
	            Pyi 0.0369
	            tie 0.0369
	           time 0.0369
	              a 0.0369
	              . 0.0369
	             to 0.0369
	            tit 0.0369
	            the 0.0369

       forwards   434600  14 (24)
	         sheets 0.7000
	          <UNK> 0.4000
	              s 0.3000
	              . 0.1000
	       forwarda 0.0369
	           list 0.0369
	     forwarders 0.0369
	     reforwards 0.0369
	          cards 0.0369
	       offwards 0.0369
	      forewards 0.0369
	       forwardi 0.0369
	             of 0.0059
	          drill 0.0000
	              a 0.0000
	              , 0.0000
	              - 0.0000
	              ) 0.0000
	           over 0.0000
	            for 0.0000
	           </S> 0.0000
	        forward 0.0000
	              I 0.0000
	       forwards 0.0000

            but   434672   1 (24)
	           butt 0.0369
	              I 0.0369
	            but 0.0369
	          power 0.0369
	            bus 0.0369
	              - 0.0369
	              , 0.0369
	              a 0.0369
	            tub 0.0369
	             iu 0.0369
	            cia 0.0369
	           buts 0.0369
	              . 0.0369
	       payments 0.0369
	             be 0.0369
	            buy 0.0369
	          month 0.0369
	             us 0.0369
	             bu 0.0369
	             by 0.0369
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	              } 0.0000

          the}'   434729   1 (19)
	           they 0.0755
	          theet 0.0369
	            but 0.0369
	              I 0.0369
	              ( 0.0369
	              a 0.0369
	            and 0.0369
	              - 0.0369
	          <UNK> 0.0369
	           </S> 0.0369
	            the 0.0059
	          which 0.0012
	              i 0.0000
	          there 0.0000
	             or 0.0000
	           thee 0.0000
	          their 0.0000
	           them 0.0000
	          thete 0.0000

      gradually   434735   1 (18)
	       graduata 0.0369
	              . 0.0369
	            and 0.0369
	            all 0.0369
	       graduall 0.0369
	              a 0.0369
	             us 0.0369
	           </S> 0.0369
	              I 0.0369
	              , 0.0369
	        gradual 0.0369
	      gradually 0.0369
	        details 0.0369
	           call 0.0369
	       graduale 0.0369
	              - 0.0369
	    ungradually 0.0369
	            the 0.0369

             To   434906   1 (23)
	             To 0.3518
	              I 0.0418
	              a 0.0369
	             iu 0.0369
	            cia 0.0369
	             us 0.0369
	             TV 0.0369
	          their 0.0369
	              A 0.0328
	             to 0.0265
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	             TO 0.0000
	            Too 0.0000
	              . 0.0000
	            Top 0.0000
	              ) 0.0000
	            Tom 0.0000
	             '' 0.0000
	             of 0.0000
	              ] 0.0000
	              , 0.0000

       accuracv   435173  15 (27)
	              * 0.0369
	              a 0.0369
	       contents 0.0369
	            are 0.0369
	       accurrar 0.0369
	        accurat 0.0369
	        content 0.0369
	      accuratus 0.0369
	              . 0.0369
	       accuravi 0.0369
	       accurata 0.0369
	              , 0.0369
	        address 0.0369
	           </S> 0.0059
	     accuracies 0.0000
	     University 0.0000
	        purpose 0.0000
	              - 0.0000
	      following 0.0000
	          <UNK> 0.0000
	         accura 0.0000
	    information 0.0000
	         course 0.0000
	          first 0.0000
	         number 0.0000
	       accuracy 0.0000
	       accurate 0.0000

      authoress   435296   1 (25)
	      authoress 0.8000
	           term 0.5000
	         motels 0.0369
	     applicants 0.0369
	      directors 0.0369
	              F 0.0369
	        readers 0.0369
	     authouress 0.0369
	     authorless 0.0369
	              q 0.0369
	       authores 0.0369
	              ) 0.0369
	        Witches 0.0369
	    authoresses 0.0369
	           word 0.0369
	           </S> 0.0059
	          first 0.0000
	              ( 0.0000
	         author 0.0000
	      following 0.0000
	              - 0.0000
	          <UNK> 0.0000
	      Authoress 0.0000
	          other 0.0000
	          three 0.0000

              '   435305   8 (15)
	             at 0.1000
	             DT 0.0369
	            cia 0.0369
	             iu 0.0369
	             us 0.0369
	            the 0.0369
	             of 0.0059
	              - 0.0000
	              ' 0.0000
	             is 0.0000
	             's 0.0000
	              , 0.0000
	              . 0.0000
	           </S> 0.0000
	            and 0.0000

           Rook   435398  18 (31)
	            Roo 1.0000
	             Re 0.2000
	              I 0.0369
	          Rooke 0.0369
	        success 0.0369
	              , 0.0369
	              . 0.0369
	    information 0.0369
	           Roko 0.0369
	              - 0.0369
	          Rooks 0.0369
	            Rok 0.0369
	       coverage 0.0369
	              a 0.0369
	            and 0.0369
	      liquidity 0.0369
	           site 0.0059
	           Rook 0.0000
	      knowledge 0.0000
	            own 0.0000
	          lives 0.0000
	           work 0.0000
	           good 0.0000
	           Room 0.0000
	           Road 0.0000
	          staff 0.0000
	           </S> 0.0000
	       products 0.0000
	        ability 0.0000
	          world 0.0000
	           Root 0.0000

          could   435404   1 (27)
	           coul 0.0369
	              I 0.0369
	          coule 0.0369
	          coula 0.0369
	          cloud 0.0369
	          could 0.0369
	          comix 0.0369
	          corax 0.0369
	              s 0.0369
	         coulda 0.0369
	         coulde 0.0369
	          <UNK> 0.0369
	              a 0.0369
	              " 0.0369
	          coldu 0.0369
	            and 0.0369
	           </S> 0.0369
	            the 0.0059
	          which 0.0012
	              i 0.0000
	            why 0.0000
	            was 0.0000
	             we 0.0000
	             or 0.0000
	           will 0.0000
	          would 0.0000
	         should 0.0000

         Hooded   435451  11 (24)
	          Hotel 0.5000
	         Hoodie 0.3000
	         wooded 0.2000
	            any 0.1159
	         hooded 0.1000
	           Hoed 0.0369
	       Counting 0.0369
	         Hoofed 0.0369
	           Hode 0.0369
	            the 0.0059
	          House 0.0000
	           Home 0.0000
	          <UNK> 0.0000
	              ( 0.0000
	              - 0.0000
	          other 0.0000
	           </S> 0.0000
	              , 0.0000
	              e 0.0000
	           more 0.0000
	         Hooded 0.0000
	           Hood 0.0000
	              a 0.0000
	         Hooked 0.0000

            she   435465   1 (24)
	            seh 0.0369
	            The 0.0369
	            she 0.0369
	           shee 0.0369
	            the 0.0369
	             sh 0.0369
	              a 0.0369
	              - 0.0369
	           sala 0.0369
	            cia 0.0369
	              . 0.0369
	            shy 0.0369
	            sha 0.0369
	              , 0.0369
	              A 0.0369
	           shed 0.0369
	           shes 0.0369
	            see 0.0369
	             us 0.0369
	              I 0.0369
	           </S> 0.0059
	              " 0.0000
	              } 0.0000
	              ) 0.0000

         parent   435485   3 (28)
	           page 0.6000
	         Corvus 0.2000
	              I 0.0369
	        parenta 0.0369
	          paren 0.0369
	            Sit 0.0369
	          pages 0.0369
	          parva 0.0369
	        parents 0.0369
	              a 0.0369
	          tries 0.0369
	          twist 0.0369
	         parent 0.0369
	              A 0.0369
	         Member 0.0369
	         parend 0.0369
	        parenti 0.0369
	        parente 0.0369
	         parens 0.0369
	           take 0.0369
	          based 0.0369
	           </S> 0.0059
	             's 0.0000
	              . 0.0000
	              , 0.0000
	              - 0.0000
	             of 0.0000
	           part 0.0000

            Yet   435637   1 (26)
	            Yet 0.5000
	            You 0.3258
	              I 0.0418
	           Yett 0.0369
	            cia 0.0369
	             iu 0.0369
	   Additionally 0.0369
	             Ye 0.0369
	              a 0.0369
	             us 0.0369
	           Yeti 0.0369
	           Yetu 0.0369
	            Yea 0.0369
	            get 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ] 0.0000
	              ) 0.0000
	              , 0.0000
	             So 0.0000
	              . 0.0000
	             '' 0.0000
	            New 0.0000
	            Yes 0.0000

       creature   435667   3 (26)
	              - 1.0000
	           </S> 0.4000
	       ceratura 0.0369
	      creaturen 0.0369
	        creatur 0.0369
	       creatura 0.0369
	          years 0.0369
	              I 0.0369
	       creaturs 0.0369
	       creature 0.0369
	             by 0.0059
	            for 0.0000
	              , 0.0000
	      creatures 0.0000
	            and 0.0000
	              a 0.0000
	             of 0.0000
	        because 0.0000
	             us 0.0000
	     Christians 0.0000
	              . 0.0000
	             is 0.0000
	       minority 0.0000
	          after 0.0000
	         people 0.0000
	         church 0.0000

         hungiy   435714   1 (30)
	         hungry 0.6000
	         hunger 0.4833
	           this 0.0369
	       hungrify 0.0369
	    information 0.0369
	              a 0.0369
	       hungrily 0.0369
	              I 0.0369
	        hinugay 0.0369
	          Munia 0.0369
	         huggin 0.0369
	           only 0.0369
	         hungri 0.0369
	        Chungin 0.0369
	          hunig 0.0369
	         Dhungi 0.0369
	         bhungi 0.0369
	         gaming 0.0369
	              - 0.0059
	              , 0.0000
	         months 0.0000
	             of 0.0000
	           </S> 0.0000
	         hunter 0.0000
	              . 0.0000
	          hours 0.0000
	          years 0.0000
	          major 0.0000
	           days 0.0000
	           hung 0.0000

            and   435721   1 (18)
	             of 0.0369
	             us 0.0369
	           aand 0.0369
	            any 0.0369
	              . 0.0369
	           alba 0.0369
	              - 0.0369
	           andy 0.0369
	           anda 0.0369
	            arz 0.0369
	           </S> 0.0369
	            now 0.0369
	            ant 0.0369
	              I 0.0369
	              , 0.0369
	            and 0.0369
	             an 0.0369
	              a 0.0369

      clamorous   435730   1 (25)
	      clamorous 0.0369
	     clamoruous 0.0369
	      clamorosa 0.0369
	     clamourous 0.0369
	          about 0.0369
	    unclamorous 0.0369
	    clamorously 0.0369
	             us 0.0369
	       clamosus 0.0369
	      Glamorous 0.0369
	              . 0.0059
	           been 0.0000
	              - 0.0000
	           </S> 0.0000
	           more 0.0000
	          since 0.0000
	              , 0.0000
	           will 0.0000
	      glamorous 0.0000
	              a 0.0000
	             so 0.0000
	            the 0.0000
	           seen 0.0000
	              I 0.0000
	          could 0.0000

         mouths   435740   1 (29)
	              I 0.0369
	           more 0.0369
	             it 0.0369
	          mouth 0.0369
	        mouthes 0.0369
	          South 0.0369
	         mouths 0.0369
	         slowly 0.0369
	      mammouths 0.0369
	           most 0.0369
	             be 0.0369
	              a 0.0369
	       slightly 0.0369
	        moutash 0.0369
	           ever 0.0369
	         before 0.0369
	          moths 0.0369
	         mouthy 0.0369
	         mouthe 0.0369
	             us 0.0369
	              , 0.0059
	             to 0.0000
	         people 0.0000
	           </S> 0.0000
	        whining 0.0000
	              . 0.0000
	              - 0.0000
	            for 0.0000
	         voices 0.0000

   depredations   435843   2 (29)
	              - 0.5000
	   desperations 0.0369
	          world 0.0369
	   deprecations 0.0369
	    information 0.0369
	           city 0.0369
	    development 0.0369
	 depredationist 0.0369
	    depredation 0.0369
	              S 0.0369
	              a 0.0369
	  International 0.0369
	   deportations 0.0369
	        paradox 0.0369
	   depredations 0.0369
	              I 0.0369
	           year 0.0369
	   Depredations 0.0369
	           </S> 0.0059
	              , 0.0000
	              ) 0.0000
	           Wing 0.0000
	              . 0.0000
	             's 0.0000
	            and 0.0000
	         Corvus 0.0000
	         Agency 0.0000
	           laws 0.0000
	        Company 0.0000

           Poor   435960   3 (24)
	            for 0.0601
	              I 0.0418
	              a 0.0369
	            Poo 0.0369
	            Por 0.0369
	           your 0.0369
	          Poore 0.0369
	          Poori 0.0369
	           Poor 0.0369
	           Poro 0.0369
	           Pica 0.0369
	            Pyi 0.0369
	          major 0.0369
	           Pooh 0.0369
	           good 0.0369
	           Pool 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              . 0.0000
	              ] 0.0000
	              , 0.0000
	              ) 0.0000

         hunted   435965   4 (22)
	          <UNK> 0.7000
	         Hunter 0.2000
	          hotel 0.1000
	         wanted 0.0369
	         hinted 0.0369
	         hunted 0.0369
	              a 0.0369
	       huntedly 0.0369
	       unhunted 0.0369
	        shunted 0.0369
	        Shunted 0.0369
	          hunte 0.0369
	        haunted 0.0369
	           </S> 0.0059
	         hunter 0.0000
	         United 0.0000
	              ) 0.0000
	         Credit 0.0000
	             's 0.0000
	              , 0.0000
	              . 0.0000
	              - 0.0000

           Crow   435972   1 (26)
	         Stupid 0.0369
	           Crow 0.0369
	            arz 0.0369
	           Pope 0.0369
	         Coorow 0.0369
	           From 0.0369
	           Crop 0.0369
	           Cron 0.0369
	              s 0.0369
	              A 0.0369
	          Crown 0.0369
	          Crowe 0.0369
	    Performance 0.0369
	           down 0.0059
	            for 0.0000
	              . 0.0000
	           </S> 0.0000
	            now 0.0000
	             by 0.0000
	              a 0.0000
	              - 0.0000
	             us 0.0000
	            man 0.0000
	              , 0.0000
	           from 0.0000
	           deer 0.0000

        against   435978   1 (27)
	          <UNK> 0.0369
	         aginst 0.0369
	         agains 0.0369
	             J. 0.0369
	        against 0.0369
	              I 0.0369
	        agaynst 0.0369
	        agianst 0.0369
	       againest 0.0369
	           </S> 0.0369
	              " 0.0369
	         Sheryl 0.0369
	            The 0.0369
	         online 0.0369
	              ' 0.0369
	         Corvus 0.0369
	            and 0.0369
	              x 0.0369
	            the 0.0059
	           with 0.0000
	             of 0.0000
	             or 0.0000
	             to 0.0000
	          which 0.0000
	         gainst 0.0000
	           said 0.0000
	              i 0.0000

         ever}'   435991  11 (22)
	           over 0.6000
	         revere 0.2000
	           even 0.2000
	              - 0.1000
	          white 0.0369
	            old 0.0369
	          evert 0.0369
	          other 0.0369
	         everre 0.0369
	            the 0.0059
	              i 0.0000
	          evers 0.0000
	              a 0.0000
	           </S> 0.0000
	              . 0.0000
	            and 0.0000
	              , 0.0000
	              I 0.0000
	          every 0.0000
	           ever 0.0000
	             it 0.0000
	             he 0.0000

            man   435998   1 (24)
	            mna 0.0369
	             is 0.0369
	           many 0.0369
	            man 0.0369
	            may 0.0369
	              . 0.0369
	           have 0.0369
	           mann 0.0369
	            cia 0.0369
	          maura 0.0369
	            had 0.0369
	          major 0.0369
	      complaint 0.0369
	             ma 0.0369
	              I 0.0369
	             my 0.0369
	            can 0.0369
	           </S> 0.0369
	          order 0.0369
	              , 0.0369
	            map 0.0369
	              a 0.0369
	              - 0.0369
	           mana 0.0369

            She   436021   1 (23)
	              a 0.0369
	            She 0.0369
	              . 0.0369
	            the 0.0369
	             us 0.0369
	             he 0.0369
	           Shed 0.0369
	           Shea 0.0369
	           Sheh 0.0369
	              I 0.0369
	            cia 0.0369
	             iu 0.0369
	            The 0.0369
	              - 0.0369
	            Sha 0.0369
	            Shi 0.0369
	           Shee 0.0369
	              , 0.0369
	       blessing 0.0369
	           </S> 0.0059
	              ) 0.0000
	              " 0.0000
	              ] 0.0000

      thirsting   436086   4 (17)
	           </S> 0.5633
	        listing 0.2000
	             to 0.0559
	    thirstingly 0.0369
	      thirsting 0.0369
	      triestina 0.0369
	      whistling 0.0369
	        Listing 0.0369
	       existing 0.0369
	      thrusting 0.0369
	     thirstings 0.0369
	       shirting 0.0369
	              . 0.0059
	             of 0.0000
	              a 0.0000
	              - 0.0000
	              , 0.0000

       cylinder   436121  22 (29)
	    transaction 0.0369
	              , 0.0369
	     indication 0.0369
	             is 0.0369
	      cylindern 0.0369
	       cylindri 0.0369
	              I 0.0369
	            may 0.0369
	       cilinder 0.0369
	          could 0.0369
	       cylindre 0.0369
	            the 0.0369
	         object 0.0369
	              . 0.0369
	      cylinders 0.0369
	             's 0.0369
	              a 0.0369
	         online 0.0369
	            are 0.0369
	           sign 0.0369
	            day 0.0059
	           time 0.0000
	         effort 0.0000
	       business 0.0000
	           </S> 0.0000
	            one 0.0000
	              - 0.0000
	       cylinder 0.0000
	          major 0.0000

        pointed   436130  14 (21)
	          point 0.2000
	              a 0.0369
	       potioned 0.0369
	              i 0.0369
	         pointe 0.0369
	      pointedly 0.0369
	              I 0.0369
	        pointer 0.0369
	         ointed 0.0369
	         United 0.0369
	        pointes 0.0369
	     pinpointed 0.0369
	              , 0.0059
	             is 0.0000
	            has 0.0000
	              - 0.0000
	             of 0.0000
	         posted 0.0000
	              . 0.0000
	        pointed 0.0000
	           </S> 0.0000

          snare   436197   4 (25)
	         search 1.0000
	          state 0.8000
	              I 0.5000
	          snare 0.3953
	           idea 0.0369
	            arz 0.0369
	         snared 0.0369
	           sala 0.0369
	          snark 0.0369
	           same 0.0369
	         snaren 0.0369
	              , 0.0059
	              a 0.0000
	             of 0.0000
	              . 0.0000
	            and 0.0000
	           </S> 0.0000
	              l 0.0000
	           joke 0.0000
	            way 0.0000
	              - 0.0000
	          thing 0.0000
	          snarl 0.0000
	         snares 0.0000
	          place 0.0000

       entangle   436206  13 (25)
	       Menangle 0.2000
	      entangles 0.0369
	          state 0.0369
	         people 0.0369
	        torture 0.0369
	         Gideon 0.0369
	           rape 0.0369
	         murder 0.0369
	            new 0.0369
	       entangel 0.0369
	        atangle 0.0369
	            the 0.0059
	         change 0.0000
	           that 0.0000
	       entangle 0.0000
	       triangle 0.0000
	            get 0.0000
	             us 0.0000
	           take 0.0000
	            use 0.0000
	            try 0.0000
	             be 0.0000
	      entangled 0.0000
	              a 0.0000
	            you 0.0000

           dear   436251   2 (29)
	             do 0.1010
	              " 0.0369
	           deal 0.0369
	        working 0.0369
	           dear 0.0369
	            arz 0.0369
	            cia 0.0369
	           dead 0.0369
	              a 0.0369
	          <UNK> 0.0369
	           dera 0.0369
	              I 0.0369
	           </S> 0.0369
	          dears 0.0369
	          deary 0.0369
	          deare 0.0369
	      corporate 0.0369
	            dea 0.0369
	            and 0.0369
	            the 0.0059
	          which 0.0012
	             so 0.0000
	           year 0.0000
	           were 0.0000
	             or 0.0000
	              i 0.0000
	            yet 0.0000
	           such 0.0000
	           just 0.0000

        clamour   436271   1 (24)
	            and 0.0369
	         thanks 0.0369
	              - 0.0369
	            can 0.0369
	        clameur 0.0369
	         clamou 0.0369
	              , 0.0369
	           </S> 0.0369
	              I 0.0369
	        clamour 0.0369
	        clamuor 0.0369
	            but 0.0369
	              . 0.0369
	       clamorum 0.0369
	              a 0.0369
	       clamours 0.0369
	            the 0.0059
	          which 0.0012
	           more 0.0000
	           your 0.0000
	             or 0.0000
	             we 0.0000
	         except 0.0000
	              i 0.0000

            How   436289  17 (26)
	              I 0.0418
	             us 0.0369
	            non 0.0369
	            now 0.0369
	            cia 0.0369
	             iu 0.0369
	           Howe 0.0369
	           Howl 0.0369
	              a 0.0369
	             Ho 0.0369
	            Hop 0.0369
	            Hot 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	            how 0.0000
	              . 0.0000
	              , 0.0000
	              ) 0.0000
	              / 0.0000
	           Home 0.0000
	              ] 0.0000
	            and 0.0000
	            How 0.0000
	             '' 0.0000

              -   436292   4 (17)
	             iu 0.0369
	            cia 0.0369
	             to 0.0059
	              . 0.0000
	             of 0.0000
	             do 0.0000
	            the 0.0000
	           </S> 0.0000
	             us 0.0000
	           much 0.0000
	              , 0.0000
	          often 0.0000
	             To 0.0000
	           long 0.0000
	              - 0.0000
	           else 0.0000
	            and 0.0000

             or   436345   1 (21)
	             us 0.0369
	             ro 0.0369
	            orr 0.0369
	             of 0.0369
	            and 0.0369
	            oro 0.0369
	            oor 0.0369
	              a 0.0369
	              , 0.0369
	             on 0.0369
	             iu 0.0369
	            arz 0.0369
	              I 0.0369
	             or 0.0369
	              . 0.0369
	            org 0.0369
	            ore 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000
	              " 0.0000

          Robin   436353  11 (29)
	           down 0.9000
	         Robina 0.4000
	         Robins 0.0500
	         Robion 0.0369
	          Loxia 0.0369
	             us 0.0369
	              - 0.0369
	          Robic 0.0369
	          Robia 0.0369
	            the 0.0059
	            for 0.0000
	          Robin 0.0000
	           they 0.0000
	              I 0.0000
	            you 0.0000
	              i 0.0000
	              . 0.0000
	             if 0.0000
	             in 0.0000
	             is 0.0000
	         Robbin 0.0000
	             no 0.0000
	           </S> 0.0000
	             it 0.0000
	          their 0.0000
	          these 0.0000
	          comix 0.0000
	              a 0.0000
	              , 0.0000

         babies   436359   1 (31)
	         babied 0.0369
	         babier 0.0369
	       criteria 0.0369
	          abies 0.0369
	        babines 0.0369
	         Lanius 0.0369
	         dubius 0.0369
	        babiest 0.0369
	              a 0.0369
	           been 0.0369
	             we 0.0369
	            are 0.0369
	          Pales 0.0369
	         basies 0.0369
	           they 0.0369
	            the 0.0369
	        changes 0.0369
	         babies 0.0369
	        babbies 0.0369
	              I 0.0369
	     statements 0.0369
	           Hood 0.0059
	              B 0.0000
	              . 0.0000
	              , 0.0000
	             is 0.0000
	              - 0.0000
	          Games 0.0000
	       Williams 0.0000
	          based 0.0000
	           </S> 0.0000

         babies   436406   1 (29)
	        babines 0.0369
	         babies 0.0369
	        babbies 0.0369
	              I 0.0369
	            the 0.0369
	              a 0.0369
	         Lanius 0.0369
	         dubius 0.0369
	             it 0.0369
	         basies 0.0369
	        babiest 0.0369
	          basis 0.0369
	         babier 0.0369
	         babied 0.0369
	           been 0.0369
	           back 0.0369
	           like 0.0369
	          abies 0.0369
	           went 0.0369
	             Go 0.0369
	           them 0.0369
	          Pales 0.0369
	           </S> 0.0059
	              , 0.0000
	             to 0.0000
	             by 0.0000
	              - 0.0000
	              . 0.0000
	             's 0.0000

            The   436436   1 (22)
	            the 0.0369
	              - 0.0369
	            Teh 0.0369
	              a 0.0369
	            The 0.0369
	              I 0.0369
	        disease 0.0369
	            cia 0.0369
	             iu 0.0369
	           They 0.0369
	           Then 0.0369
	           This 0.0369
	            Thu 0.0369
	            Thy 0.0369
	              , 0.0369
	              . 0.0369
	           Thee 0.0369
	             us 0.0369
	           </S> 0.0059
	              ) 0.0000
	              " 0.0000
	              ] 0.0000

        ignores   436447   1 (24)
	       ignoreis 0.0369
	         ignore 0.0369
	         before 0.0369
	        include 0.0369
	        ignores 0.0369
	        ignored 0.0369
	              I 0.0369
	        ignorer 0.0369
	           into 0.0369
	       ignorest 0.0369
	       ignorers 0.0369
	              , 0.0059
	             by 0.0000
	             is 0.0000
	             to 0.0000
	              O 0.0000
	             in 0.0000
	            and 0.0000
	              a 0.0000
	           </S> 0.0000
	              - 0.0000
	              . 0.0000
	             's 0.0000
	             of 0.0000

            she   436479   1 (23)
	            she 0.4000
	           shes 0.0369
	            seh 0.0369
	            sha 0.0369
	            shy 0.0369
	           shee 0.0369
	             sh 0.0369
	            cia 0.0369
	              I 0.0369
	           sala 0.0369
	             us 0.0369
	              , 0.0059
	           shed 0.0000
	              a 0.0000
	            and 0.0000
	             in 0.0000
	            the 0.0000
	              . 0.0000
	           </S> 0.0000
	            The 0.0000
	             so 0.0000
	              - 0.0000
	            see 0.0000

           carr   436647   3 (34)
	           care 0.7000
	            say 0.4000
	           mild 0.0369
	           Cart 0.0369
	           cara 0.0369
	              I 0.0369
	          thing 0.0369
	           free 0.0369
	           carr 0.0369
	          corax 0.0369
	            arz 0.0369
	              - 0.0369
	         enough 0.0369
	           good 0.0369
	          carrs 0.0369
	        however 0.0369
	            cia 0.0369
	          small 0.0369
	     dispatched 0.0059
	          carry 0.0000
	           have 0.0000
	            are 0.0000
	           card 0.0000
	            not 0.0000
	            car 0.0000
	          ships 0.0000
	            can 0.0000
	            the 0.0000
	             to 0.0000
	              a 0.0000
	             do 0.0000
	              . 0.0000
	           </S> 0.0000
	              , 0.0000

           catv   436667 inf (36)
	           cats 1.0000
	           lava 0.8000
	           Date 0.1000
	          again 0.0369
	         appear 0.0369
	            cav 0.0369
	         cavata 0.0369
	            cia 0.0369
	           sala 0.0369
	           cvat 0.0369
	          cavat 0.0369
	         cative 0.0369
	        catvine 0.0369
	        country 0.0369
	            did 0.0369
	          least 0.0369
	        helpful 0.0369
	           cate 0.0369
	           cath 0.0369
	              , 0.0059
	              ) 0.0000
	           have 0.0000
	             is 0.0000
	             it 0.0000
	              a 0.0000
	            you 0.0000
	            can 0.0000
	           </S> 0.0000
	            not 0.0000
	              . 0.0000
	              I 0.0000
	            all 0.0000
	              i 0.0000
	              - 0.0000
	            cat 0.0000
	            the 0.0000

            and   436673   1 (24)
	             an 0.0369
	            but 0.0369
	           aand 0.0369
	           </S> 0.0369
	          <UNK> 0.0369
	      sometimes 0.0369
	            arz 0.0369
	           alba 0.0369
	              " 0.0369
	           andy 0.0369
	           anda 0.0369
	              I 0.0369
	            ant 0.0369
	            any 0.0369
	            and 0.0369
	              | 0.0369
	           this 0.0186
	           with 0.0062
	            the 0.0059
	          which 0.0012
	              i 0.0000
	             us 0.0000
	             or 0.0000
	          while 0.0000

        rookery   436711   1 (31)
	        rookery 0.8000
	         robert 0.8000
	         Booker 0.3000
	          house 0.0369
	           hand 0.0369
	           book 0.0369
	        rookers 0.0369
	          throw 0.0369
	        kookery 0.0369
	          worth 0.0369
	         rooker 0.0369
	       crookery 0.0369
	          rokey 0.0369
	           wife 0.0369
	       property 0.0369
	         garden 0.0369
	           fast 0.0369
	              a 0.0059
	              . 0.0000
	              , 0.0000
	           life 0.0000
	           name 0.0000
	              - 0.0000
	        rockery 0.0000
	            not 0.0000
	            the 0.0000
	          Books 0.0000
	           </S> 0.0000
	           very 0.0000
	           more 0.0000
	          right 0.0000

           born   436720   1 (32)
	          borne 0.0369
	          borns 0.0369
	       Coronado 0.0369
	           bron 0.0369
	          corax 0.0369
	            arz 0.0369
	          torax 0.0369
	          Santa 0.0369
	          boron 0.0369
	         photos 0.0369
	           been 0.0369
	            bor 0.0369
	           easy 0.0369
	       services 0.0369
	              x 0.0369
	       pictures 0.0369
	            and 0.0369
	           More 0.0369
	         prices 0.0369
	           born 0.0369
	           bore 0.0369
	           bord 0.0369
	              " 0.0369
	   Photographic 0.0369
	            the 0.0059
	          which 0.0012
	              e 0.0000
	             of 0.0000
	           free 0.0000
	           more 0.0000
	             or 0.0000
	              i 0.0000

      incessant   436743   2 (20)
	           this 0.0500
	      incessent 0.0369
	      incensata 0.0369
	      incessant 0.0369
	         recent 0.0369
	          heavy 0.0369
	     incessante 0.0369
	     incessants 0.0369
	        Germany 0.0369
	              . 0.0369
	      infestans 0.0369
	            the 0.0059
	           that 0.0000
	              , 0.0000
	              a 0.0000
	           peak 0.0000
	           </S> 0.0000
	              ( 0.0000
	         winter 0.0000
	        certain 0.0000

        ar-cc-o   436848 inf (32)
	         artico 0.0369
	   respectively 0.0369
	             CO 0.0369
	          Idaho 0.0369
	              E 0.0369
	       Colorado 0.0369
	         Golden 0.0369
	              . 0.0369
	        arancio 0.0369
	            The 0.0369
	             as 0.0369
	         arccal 0.0369
	            vol 0.0369
	              I 0.0369
	            and 0.0369
	           </S> 0.0369
	              , 0.0369
	         arccos 0.0369
	              - 0.0369
	        arrocco 0.0369
	         arcaro 0.0369
	       arriccio 0.0369
	           arco 0.0369
	            Vol 0.0369
	          accro 0.0369
	            the 0.0059
	             pp 0.0000
	            too 0.0000
	          which 0.0000
	           from 0.0000
	              i 0.0000
	             or 0.0000

              .   436855   1 (15)
	            and 0.0369
	             iu 0.0369
	           </S> 0.0369
	           Gate 0.0369
	             us 0.0369
	              , 0.0369
	             of 0.0369
	              - 0.0369
	            cia 0.0369
	              ( 0.0369
	            the 0.0369
	            Age 0.0369
	            ... 0.0369
	              . 0.0369
	            Co. 0.0369

           arid   436959  11 (29)
	            ari 0.4000
	           area 0.2000
	            any 0.1159
	            arz 0.0369
	           aird 0.0369
	           arin 0.0369
	          arida 0.0369
	          aride 0.0369
	           ardi 0.0369
	            the 0.0059
	            are 0.0000
	           arid 0.0000
	           aria 0.0000
	              a 0.0000
	            and 0.0000
	           said 0.0000
	              e 0.0000
	            two 0.0000
	            all 0.0000
	           more 0.0000
	              , 0.0000
	          <UNK> 0.0000
	              - 0.0000
	              ( 0.0000
	             in 0.0000
	          other 0.0000
	           </S> 0.0000
	           alba 0.0000
	            cia 0.0000

     localities   436964   1 (27)
	     localities 0.0369
	     localitzes 0.0369
	             us 0.0369
	     localitzis 0.0369
	      coalities 0.0369
	       locality 0.0369
	        thereof 0.0369
	       services 0.0369
	           like 0.0369
	         images 0.0369
	     Localities 0.0369
	     vocalities 0.0369
	         losses 0.0369
	          items 0.0369
	              I 0.0369
	       locaties 0.0369
	            and 0.0059
	              ) 0.0000
	           </S> 0.0000
	           part 0.0000
	        climate 0.0000
	              - 0.0000
	        regions 0.0000
	              a 0.0000
	              , 0.0000
	          areas 0.0000
	              . 0.0000

       mollusca   436991   1 (28)
	       mollusca 0.5000
	       wildlife 0.0369
	              ) 0.0369
	        seafood 0.0369
	              , 0.0369
	            and 0.0369
	              a 0.0369
	      shellfish 0.0369
	      therefore 0.0369
	              y 0.0369
	          <UNK> 0.0369
	      molluscas 0.0369
	              x 0.0369
	       mollusco 0.0369
	        molusca 0.0369
	              I 0.0369
	            the 0.0059
	            may 0.0000
	       molluscs 0.0000
	             or 0.0000
	          which 0.0000
	      molluscan 0.0000
	         though 0.0000
	        mollusc 0.0000
	            too 0.0000
	              i 0.0000
	           more 0.0000
	           most 0.0000

        carrion   437035   1 (31)
	        carrion 0.7000
	       carrinho 0.0369
	       carrions 0.0369
	             us 0.0369
	        animals 0.0369
	        service 0.0369
	       Pakistan 0.0369
	         carino 0.0369
	unconsciousness 0.0369
	        comfort 0.0369
	              x 0.0369
	        carrito 0.0369
	         person 0.0369
	        carinon 0.0369
	          which 0.0297
	            the 0.0059
	              a 0.0000
	           this 0.0000
	        carryon 0.0000
	        writing 0.0000
	           time 0.0000
	          stock 0.0000
	              - 0.0000
	         carbon 0.0000
	              . 0.0000
	           </S> 0.0000
	           your 0.0000
	           Iraq 0.0000
	              , 0.0000
	           case 0.0000
	        Carrion 0.0000

          Later   437074   1 (26)
	          Later 0.8000
	          other 0.0601
	              I 0.0418
	          major 0.0369
	        similar 0.0369
	         Lateri 0.0369
	            and 0.0369
	              a 0.0369
	          Pales 0.0369
	         Passer 0.0369
	         Latter 0.0369
	          Latex 0.0369
	          Lates 0.0369
	            but 0.0369
	            are 0.0369
	         Latera 0.0369
	           Late 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              . 0.0000
	           Date 0.0000
	              , 0.0000
	              ] 0.0000
	              ) 0.0000

         fruits   437092   1 (24)
	         fruits 0.4000
	          fruit 0.1000
	       fruitset 0.0369
	          frits 0.0369
	         fruite 0.0369
	      direction 0.0369
	         fruity 0.0369
	          rufus 0.0369
	        fruitos 0.0369
	        fruitas 0.0369
	         frusti 0.0369
	        fruitis 0.0369
	              . 0.0059
	           </S> 0.0000
	           2000 0.0000
	              I 0.0000
	           from 0.0000
	           with 0.0000
	              , 0.0000
	             of 0.0000
	           2001 0.0000
	            for 0.0000
	              a 0.0000
	              - 0.0000

          beech   437100   1 (32)
	           </S> 0.0369
	           well 0.0369
	              ( 0.0369
	              | 0.0369
	          Beech 0.0369
	          beach 0.0369
	            pre 0.0369
	       desserts 0.0369
	          beech 0.0369
	         vegeta 0.0369
	        beeches 0.0369
	              s 0.0369
	          bench 0.0369
	            but 0.0369
	            and 0.0369
	           bech 0.0369
	          <UNK> 0.0369
	           back 0.0369
	          beche 0.0369
	           self 0.0369
	              I 0.0369
	           best 0.0369
	             xf 0.0369
	              x 0.0369
	         beechy 0.0369
	            low 0.0369
	              a 0.0369
	           been 0.0369
	            the 0.0059
	          which 0.0012
	              i 0.0000
	             or 0.0000

            but   437134   1 (20)
	           buts 0.0369
	              I 0.0369
	            but 0.0369
	              . 0.0369
	             bu 0.0369
	            tub 0.0369
	             iu 0.0369
	            cia 0.0369
	             by 0.0369
	           butt 0.0369
	              , 0.0369
	              a 0.0369
	            buy 0.0369
	            bus 0.0369
	             us 0.0369
	             be 0.0369
	           </S> 0.0059
	              } 0.0000
	              " 0.0000
	              ) 0.0000

         refuse   437205   8 (23)
	         rufula 0.0369
	          refus 0.0369
	              i 0.0369
	         refusa 0.0369
	         refusi 0.0369
	             be 0.0369
	            the 0.0059
	             us 0.0000
	              - 0.0000
	        because 0.0000
	         refuse 0.0000
	           </S> 0.0000
	              a 0.0000
	        refused 0.0000
	        refuses 0.0000
	            use 0.0000
	              , 0.0000
	              $ 0.0000
	              . 0.0000
	         refers 0.0000
	         before 0.0000
	          rufus 0.0000
	            its 0.0000

          heaps   437212  17 (28)
	           help 0.1000
	           heps 0.0369
	           haps 0.0369
	     government 0.0369
	              I 0.0369
	        display 0.0369
	         cheaps 0.0369
	          shape 0.0369
	           list 0.0369
	          helps 0.0369
	          heapy 0.0369
	   manufacturer 0.0369
	        upheaps 0.0369
	              A 0.0369
	          hesap 0.0369
	             to 0.0059
	          heaps 0.0000
	           heap 0.0000
	              - 0.0000
	              . 0.0000
	           </S> 0.0000
	           here 0.0000
	              a 0.0000
	              , 0.0000
	             or 0.0000
	        cookies 0.0000
	            her 0.0000
	      treatment 0.0000

           cast   437237   1 (24)
	          casts 0.0369
	             's 0.0369
	           cast 0.0369
	           lava 0.0369
	            cia 0.0369
	           cash 0.0369
	           cats 0.0369
	          caste 0.0369
	            cas 0.0369
	         cassia 0.0369
	           Last 0.0369
	             of 0.0059
	              - 0.0000
	           </S> 0.0000
	           last 0.0000
	           case 0.0000
	            was 0.0000
	              . 0.0000
	              , 0.0000
	           left 0.0000
	            can 0.0000
	              I 0.0000
	           from 0.0000
	              a 0.0000

         though   437260   1 (21)
	              a 0.0369
	          tough 0.0369
	          hough 0.0369
	           rent 0.0369
	        thought 0.0369
	       thoughts 0.0369
	        through 0.0369
	              - 0.0369
	              . 0.0369
	          flats 0.0369
	         though 0.0369
	         trough 0.0369
	              I 0.0369
	              A 0.0369
	              , 0.0369
	            and 0.0369
	          homes 0.0369
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	              } 0.0000

       sparrows   437324   1 (26)
	           cash 0.0369
	        friends 0.0369
	       sparrows 0.0369
	         editor 0.0369
	     sparrowish 0.0369
	        support 0.0369
	          title 0.0369
	          state 0.0369
	          germs 0.0369
	        Sparrow 0.0369
	              I 0.0369
	       services 0.0369
	          tanks 0.0369
	       sparrowy 0.0369
	        sparrow 0.0369
	            the 0.0059
	              , 0.0000
	              . 0.0000
	             us 0.0000
	           them 0.0000
	       bacteria 0.0000
	           </S> 0.0000
	              a 0.0000
	            all 0.0000
	             it 0.0000
	              - 0.0000

           cage   437393   2 (29)
	          caged 0.5400
	           cage 0.5083
	           cega 0.0369
	         caggee 0.0369
	           cags 0.0369
	           cago 0.0369
	       yourself 0.0369
	     themselves 0.0369
	            the 0.0059
	           free 0.0000
	           page 0.0000
	           </S> 0.0000
	              a 0.0000
	              . 0.0000
	           your 0.0000
	           sale 0.0000
	           lava 0.0000
	            cia 0.0000
	            you 0.0000
	           sala 0.0000
	              - 0.0000
	       business 0.0000
	            can 0.0000
	            one 0.0000
	          cages 0.0000
	           Page 0.0000
	           this 0.0000
	           come 0.0000
	              , 0.0000

           ni}-   437410 inf (23)
	              I 0.0369
	            nil 0.0369
	            nip 0.0369
	              a 0.0369
	             no 0.0369
	           niin 0.0369
	            cia 0.0369
	           Pica 0.0369
	             iu 0.0369
	              - 0.0369
	            nin 0.0369
	            nii 0.0369
	            new 0.0369
	             ni 0.0369
	              , 0.0369
	           nine 0.0369
	           nice 0.0369
	              . 0.0369
	            not 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	              " 0.0000

        brother   437415   1 (17)
	       brothers 0.0369
	         rother 0.0369
	        Trotter 0.0369
	        Prather 0.0369
	       brothier 0.0369
	       Brothers 0.0369
	        brother 0.0369
	              " 0.0369
	              ] 0.0369
	           </S> 0.0369
	         bother 0.0369
	          <UNK> 0.0369
	        boother 0.0369
	              ) 0.0369
	        Brother 0.0369
	        brothel 0.0369
	              } 0.0369

            Mr.   437490   3 (21)
	             My 0.5980
	              I 0.0418
	             Mr 0.0369
	             us 0.0369
	            Mrs 0.0369
	            Mrz 0.0369
	            Mrk 0.0369
	            arz 0.0369
	              s 0.0369
	              a 0.0369
	            are 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	            May 0.0000
	              ] 0.0000
	              , 0.0000
	          <UNK> 0.0000
	              ) 0.0000
	              . 0.0000

        Bonhote   437503 inf (30)
	              s 0.0369
	        Bonmots 0.0369
	         nonhot 0.0369
	         Bonthe 0.0369
	          Bohot 0.0369
	              M 0.0369
	           hote 0.0369
	       nonhotel 0.0369
	        Benhote 0.0369
	         Bonate 0.0369
	       Bonhomme 0.0369
	           Book 0.0369
	          Boote 0.0369
	              F 0.0369
	           Bote 0.0369
	         Bonete 0.0369
	      Amonhotep 0.0369
	              , 0.0059
	          <UNK> 0.0000
	              . 0.0000
	             J. 0.0000
	         County 0.0000
	            and 0.0000
	             A. 0.0000
	           </S> 0.0000
	              ( 0.0000
	              : 0.0000
	              - 0.0000
	              ) 0.0000
	           note 0.0000

         writes   437511   2 (22)
	              - 0.2000
	          Clark 0.0369
	          write 0.0369
	             J. 0.0369
	        writest 0.0369
	           Date 0.0369
	         writes 0.0369
	              a 0.0369
	        writers 0.0369
	         writer 0.0369
	        tristis 0.0369
	             M. 0.0369
	        written 0.0369
	          Price 0.0369
	         writen 0.0369
	              I 0.0369
	              . 0.0369
	              A 0.0369
	          white 0.0369
	              , 0.0059
	           </S> 0.0000
	         Foster 0.0000

            but   437544   1 (25)
	              , 0.0369
	            tub 0.0369
	             iu 0.0369
	            cia 0.0369
	              - 0.0369
	            but 0.0369
	              I 0.0369
	         people 0.0369
	           butt 0.0369
	          forum 0.0369
	             be 0.0369
	             by 0.0369
	            buy 0.0369
	            bus 0.0369
	        however 0.0369
	         humans 0.0369
	           buts 0.0369
	              a 0.0369
	              . 0.0369
	             bu 0.0369
	             us 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000
	              " 0.0000

        Carrion   437558   1 (32)
	        Carrion 0.9000
	         Carrio 0.1000
	            non 0.0369
	        Carnion 0.0369
	         plants 0.0369
	           said 0.0369
	              . 0.0369
	              A 0.0369
	       Sarbanes 0.0369
	          three 0.0369
	            mid 0.0369
	           well 0.0369
	            sub 0.0369
	              I 0.0369
	              , 0.0369
	              E 0.0369
	      Carrionly 0.0369
	           anti 0.0369
	           long 0.0369
	           </S> 0.0059
	           same 0.0037
	      following 0.0000
	              - 0.0000
	         Carion 0.0000
	           City 0.0000
	       American 0.0000
	          first 0.0000
	           rest 0.0000
	            two 0.0000
	        Carreon 0.0000
	          other 0.0000
	        carrion 0.0000

       scarcely   437605   1 (22)
	            the 0.0369
	       scarcest 0.0369
	              a 0.0369
	              , 0.0369
	              . 0.0369
	              I 0.0369
	              - 0.0369
	       scarcely 0.0369
	       scaredly 0.0369
	        sharply 0.0369
	         carcel 0.0369
	     scarcelins 0.0369
	       scarlety 0.0369
	       securely 0.0369
	        scarcer 0.0369
	         scarce 0.0369
	         scared 0.0369
	        largely 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	              " 0.0000

         FAMILY   437721   1 (18)
	            5.0 0.0369
	           FAMS 0.0369
	         FITALY 0.0369
	              a 0.0369
	          FAMIS 0.0369
	              I 0.0369
	         FAMILY 0.0369
	              A 0.0369
	        FAMILIA 0.0369
	           </S> 0.0059
	           FAIL 0.0000
	              . 0.0000
	              , 0.0000
	              - 0.0000
	          <UNK> 0.0000
	              ) 0.0000
	              ( 0.0000
	              " 0.0000

     ALAUDIDJ-:   437728 inf (31)
	          ALBUM 0.8000
	            ENT 0.0369
	      reflector 0.0369
	      FILTERING 0.0369
	       MEMBERSB 0.0369
	              D 0.0369
	           LAND 0.0369
	              L 0.0369
	              a 0.0369
	              x 0.0369
	              C 0.0369
	           word 0.0369
	              s 0.0369
	              E 0.0369
	              A 0.0369
	       conftest 0.0369
	              : 0.0059
	           </S> 0.0000
	              ) 0.0000
	              - 0.0000
	       HOLIDAYS 0.0000
	        MEDICAL 0.0000
	    RESIDENTIAL 0.0000
	            AND 0.0000
	          <UNK> 0.0000
	          ALIEN 0.0000
	       BUSINESS 0.0000
	              . 0.0000
	       PLANNING 0.0000
	              , 0.0000
	        STUDIES 0.0000

              .   437738   1 (16)
	              , 0.0369
	             OF 0.0369
	      OSBOURNES 0.0369
	           INC. 0.0369
	              . 0.0369
	              å 0.0369
	           </S> 0.0369
	            cia 0.0369
	             iu 0.0369
	            WHY 0.0369
	              - 0.0369
	             us 0.0369
	            ... 0.0369
	             of 0.0369
	            the 0.0369
	            and 0.0369

            THE   437741   1 (25)
	            THE 0.6388
	             In 0.5538
	             To 0.3518
	              I 0.0418
	            THB 0.0369
	            THR 0.0369
	             TH 0.0369
	            TEH 0.0369
	            cia 0.0369
	             iu 0.0369
	              i 0.0369
	             us 0.0369
	           THEM 0.0369
	           THEA 0.0369
	            HTE 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	            The 0.0131
	           </S> 0.0059
	              ) 0.0000
	              / 0.0000
	              , 0.0000
	              ] 0.0000
	              . 0.0000

       position   437745  18 (23)
	              . 0.0369
	       poseidon 0.0369
	         manner 0.0369
	       positron 0.0369
	          place 0.0369
	           WIND 0.0369
	      positione 0.0369
	        positio 0.0369
	              ) 0.0369
	              , 0.0369
	      positioni 0.0369
	       positiva 0.0369
	              / 0.0369
	      configure 0.0369
	  JURISIDICTION 0.0369
	      positions 0.0369
	           </S> 0.0059
	           BEST 0.0000
	          <UNK> 0.0000
	          WORLD 0.0000
	       positive 0.0000
	       position 0.0000
	              - 0.0000

      vSannders   437770 inf (32)
	     government 0.2000
	        student 0.0369
	    Complainant 0.0369
	            are 0.0369
	        vanners 0.0369
	           very 0.0369
	             us 0.0369
	         Center 0.0369
	         person 0.0369
	              I 0.0369
	        Kennedy 0.0369
	         anders 0.0369
	       Svenders 0.0369
	              a 0.0369
	       vianders 0.0369
	        vanders 0.0369
	             be 0.0369
	              , 0.0059
	             is 0.0000
	             A. 0.0000
	              . 0.0000
	           Dean 0.0000
	            has 0.0000
	            and 0.0000
	        Sanders 0.0000
	     Government 0.0000
	        Johnson 0.0000
	            the 0.0000
	              - 0.0000
	           </S> 0.0000
	         Sander 0.0000
	             J. 0.0000

            has   437780   1 (20)
	             us 0.0369
	            has 0.0369
	            had 0.0369
	            won 0.0369
	           haas 0.0369
	              , 0.0369
	           </S> 0.0369
	   accidentally 0.0369
	            cia 0.0369
	            arz 0.0369
	             ha 0.0369
	              I 0.0369
	            his 0.0369
	             as 0.0369
	              - 0.0369
	            hat 0.0369
	              . 0.0369
	           hash 0.0369
	           hast 0.0369
	              a 0.0369

         phiccd   437784 inf (32)
	           phil 0.8000
	       received 0.7000
	          which 0.2033
	          piccy 0.0369
	        phichqa 0.0369
	        phished 0.0369
	       informed 0.0369
	         phycid 0.0369
	            ccd 0.0369
	         phocid 0.0369
	          ophic 0.0369
	          philo 0.0369
	          picca 0.0369
	        chicchi 0.0369
	          phinc 0.0369
	        phocoid 0.0369
	         Chicco 0.0369
	          picco 0.0369
	         chicco 0.0369
	           been 0.0059
	         prices 0.0000
	              a 0.0000
	           made 0.0000
	           done 0.0000
	              . 0.0000
	          price 0.0000
	           </S> 0.0000
	        created 0.0000
	              , 0.0000
	       pictures 0.0000
	            phi 0.0000
	         priced 0.0000

           this   437791   1 (18)
	              a 0.0369
	           thie 0.0369
	            the 0.0369
	              . 0.0369
	           This 0.0369
	           thin 0.0369
	            thi 0.0369
	              , 0.0369
	           that 0.0369
	              - 0.0369
	           </S> 0.0369
	           tish 0.0369
	            cia 0.0369
	             iu 0.0369
	          thisn 0.0369
	          thish 0.0369
	             us 0.0369
	           this 0.0369

       faniil_y   437796  12 (23)
	              . 0.1000
	         fanihy 0.0369
	       Maniilaq 0.0369
	       fanmilyi 0.0369
	        fairily 0.0369
	         fanilo 0.0369
	         fainly 0.0369
	         Daniil 0.0369
	              I 0.0369
	        fancily 0.0369
	             is 0.0059
	         family 0.0000
	           </S> 0.0000
	              - 0.0000
	            one 0.0000
	           page 0.0000
	        article 0.0000
	        section 0.0000
	           form 0.0000
	           site 0.0000
	              , 0.0000
	           file 0.0000
	              a 0.0000

              -   437856   2 (15)
	             us 0.9000
	              - 0.0369
	            cia 0.0369
	             iu 0.0369
	            not 0.0059
	           </S> 0.0000
	           have 0.0000
	             be 0.0000
	              , 0.0000
	              a 0.0000
	            and 0.0000
	             to 0.0000
	             of 0.0000
	              . 0.0000
	            the 0.0000

   Motaciilidcc   437952   1 (26)
	              . 0.0369
	     resolution 0.0369
	        article 0.0369
	       hospital 0.0369
	       accuracy 0.0369
	         police 0.0369
	            the 0.0369
	             us 0.0369
	         covers 0.0369
	              , 0.0369
	              a 0.0369
	   Motacillidae 0.0369
	       contrary 0.0369
	           </S> 0.0059
	          State 0.0043
	            top 0.0000
	          <UNK> 0.0000
	          World 0.0000
	           same 0.0000
	          total 0.0000
	              - 0.0000
	            old 0.0000
	         public 0.0000
	          first 0.0000
	          local 0.0000
	          world 0.0000

             as   437966   1 (24)
	           </S> 0.0369
	             at 0.0369
	              a 0.0369
	          <UNK> 0.0369
	      resulting 0.0369
	              I 0.0369
	            aas 0.0369
	             an 0.0369
	            arz 0.0369
	              " 0.0369
	              ( 0.0369
	            but 0.0369
	             as 0.0369
	            and 0.0369
	            ask 0.0369
	            ass 0.0369
	            the 0.0059
	          which 0.0012
	             sa 0.0000
	             iu 0.0000
	             us 0.0000
	   particularly 0.0000
	              i 0.0000
	             or 0.0000

      vSeel)ohm   437972   1 (27)
	        Seebohm 0.0369
	              C 0.0369
	           were 0.0369
	       Showtime 0.0369
	     television 0.0369
	           Enya 0.0369
	              I 0.0369
	           John 0.0369
	        freedom 0.0369
	    Shakespeare 0.0369
	             as 0.0369
	           love 0.0369
	          today 0.0369
	           need 0.0369
	              ) 0.0369
	           very 0.0369
	            the 0.0059
	              - 0.0000
	           this 0.0000
	              a 0.0000
	             it 0.0000
	              , 0.0000
	              " 0.0000
	           </S> 0.0000
	        Section 0.0000
	          <UNK> 0.0000
	              . 0.0000

             's   437981   1 (19)
	              . 0.0369
	              - 0.0369
	           </S> 0.0369
	             of 0.0369
	              , 0.0369
	         phrase 0.0369
	             us 0.0369
	            cia 0.0369
	             so 0.0369
	             ss 0.0369
	             iu 0.0369
	              I 0.0369
	           case 0.0369
	          <UNK> 0.0369
	              a 0.0369
	             is 0.0369
	             as 0.0369
	             's 0.0369
	            sss 0.0369

      evidently   438020  13 (23)
	   evidentially 0.5000
	            the 0.2000
	          those 0.2000
	        evident 0.1000
	              A 0.0369
	      Evidently 0.0369
	      available 0.0369
	       eidently 0.0369
	         people 0.0369
	              . 0.0369
	           into 0.0369
	              a 0.0059
	              - 0.0000
	           </S> 0.0000
	           such 0.0000
	           that 0.0000
	           well 0.0000
	     evidential 0.0000
	              I 0.0000
	              " 0.0000
	              , 0.0000
	             he 0.0000
	      evidently 0.0000

      advocated   438030   2 (22)
	             as 0.4000
	      advocatae 0.0369
	       advocate 0.0369
	      advocaten 0.0369
	      advocatus 0.0369
	      advocates 0.0369
	       avocated 0.0369
	          known 0.0369
	      advocated 0.0369
	         result 0.0369
	    unadvocated 0.0369
	              - 0.0369
	              , 0.0059
	        because 0.0000
	           </S> 0.0000
	              " 0.0000
	            the 0.0000
	            and 0.0000
	              I 0.0000
	              a 0.0000
	              . 0.0000
	          about 0.0000

            b}'   438040  10 (19)
	              - 0.7000
	             us 0.5000
	             be 0.1000
	            but 0.1000
	             br 0.0369
	             bb 0.0369
	            cia 0.0369
	             iu 0.0369
	              I 0.0369
	             by 0.0059
	              . 0.0000
	             in 0.0000
	             as 0.0000
	            for 0.0000
	              , 0.0000
	           </S> 0.0000
	              ' 0.0000
	              a 0.0000
	            the 0.0000

            Dr.   438044   1 (18)
	             Dr 0.0369
	            Dr. 0.0369
	              a 0.0369
	             us 0.0369
	            the 0.0369
	             Do 0.0369
	           </S> 0.0369
	            for 0.0369
	              - 0.0369
	            arz 0.0369
	            cia 0.0369
	            Dry 0.0369
	            Drs 0.0369
	            are 0.0369
	              . 0.0369
	              , 0.0369
	             or 0.0369
	            Day 0.0369

         Sharpc   438048   1 (27)
	         Sharpe 0.8000
	           John 0.1579
	         Murphy 0.0369
	         Sharpa 0.0369
	        Sarpech 0.0369
	              J 0.0369
	     Ousterhout 0.0369
	              A 0.0369
	              O 0.0369
	      Sharpcast 0.0369
	         Sharpy 0.0369
	          Davis 0.0369
	           </S> 0.0059
	         Search 0.0000
	              - 0.0000
	              ) 0.0000
	             A. 0.0000
	          Start 0.0000
	             J. 0.0000
	            Dre 0.0000
	              , 0.0000
	             M. 0.0000
	          Share 0.0000
	          Sharp 0.0000
	         Martin 0.0000
	         Sharps 0.0000
	          <UNK> 0.0000

          Larks   438161   2 (29)
	           Lark 0.5000
	          Larks 0.3532
	          Larus 0.1000
	              a 0.0369
	         Laarks 0.0369
	              . 0.0369
	       Larksmen 0.0369
	              , 0.0369
	           </S> 0.0059
	           same 0.0037
	         system 0.0000
	          Links 0.0000
	          parva 0.0000
	       Larkspur 0.0000
	           user 0.0000
	              - 0.0000
	          Parus 0.0000
	          first 0.0000
	           data 0.0000
	          world 0.0000
	         Laskar 0.0000
	          Large 0.0000
	           part 0.0000
	      following 0.0000
	    information 0.0000
	           arks 0.0000
	         Lanius 0.0000
	              " 0.0000
	           Last 0.0000

           than   438207  13 (23)
	            fly 0.3000
	             Go 0.1000
	              - 0.0400
	           thai 0.0369
	          thanx 0.0369
	          thank 0.0369
	          torax 0.0369
	           tanh 0.0369
	            cia 0.0369
	            tha 0.0369
	          thana 0.0369
	           </S> 0.0059
	           that 0.0000
	              a 0.0000
	           Nest 0.0000
	           than 0.0000
	              . 0.0000
	              A 0.0000
	              , 0.0000
	           then 0.0000
	             of 0.0000
	              I 0.0000
	            and 0.0000

         Pipits   438219  14 (27)
	         Papist 0.6000
	         pipits 0.1000
	         ground 0.0369
	              . 0.0369
	          Pipis 0.0369
	         Pipets 0.0369
	             us 0.0369
	           with 0.0369
	              , 0.0369
	              a 0.0369
	            the 0.0369
	           </S> 0.0059
	           same 0.0037
	          <UNK> 0.0000
	            top 0.0000
	           Pitt 0.0000
	          right 0.0000
	         Pipits 0.0000
	         Pipils 0.0000
	          world 0.0000
	          Pipit 0.0000
	          first 0.0000
	          Pipes 0.0000
	              - 0.0000
	         rights 0.0000
	         public 0.0000
	            its 0.0000

            had   438272   1 (22)
	            had 0.1000
	            hat 0.0369
	             us 0.0369
	       provided 0.0369
	            arz 0.0369
	           hade 0.0369
	              I 0.0369
	      contained 0.0369
	             ha 0.0369
	           hadd 0.0369
	            cia 0.0369
	              a 0.0369
	           hada 0.0369
	           </S> 0.0059
	             of 0.0000
	              ) 0.0000
	            has 0.0000
	              - 0.0000
	              . 0.0000
	           have 0.0000
	            and 0.0000
	              , 0.0000

          borne   438295   4 (23)
	           been 0.8000
	           with 0.2000
	              a 0.2000
	          borns 0.0369
	         borneo 0.0369
	          boren 0.0369
	         borned 0.0369
	           born 0.0369
	          borna 0.0369
	          corax 0.0369
	         corone 0.0369
	          torax 0.0369
	          borne 0.0369
	             of 0.0059
	              I 0.0000
	            and 0.0000
	              . 0.0000
	           </S> 0.0000
	          being 0.0000
	           more 0.0000
	         worked 0.0000
	              , 0.0000
	              - 0.0000

       vSeebohm   438305   3 (24)
	             it 0.7000
	            who 0.3000
	        Seebohm 0.0369
	       everyone 0.0369
	            She 0.0369
	          Steve 0.0369
	           John 0.0369
	       Beerbohm 0.0369
	        Hewllet 0.0369
	       GameSpot 0.0369
	        Lebanon 0.0369
	          Delta 0.0369
	             of 0.0059
	           what 0.0000
	            the 0.0000
	              a 0.0000
	          about 0.0000
	         before 0.0000
	              I 0.0000
	              , 0.0000
	              . 0.0000
	              - 0.0000
	             by 0.0000
	           </S> 0.0000

             's   438313   1 (17)
	              - 0.0369
	              ' 0.0369
	              I 0.0369
	              . 0.0369
	            the 0.0369
	             iu 0.0369
	            cia 0.0369
	             's 0.0369
	             as 0.0369
	             ss 0.0369
	              , 0.0369
	           </S> 0.0369
	             us 0.0369
	             so 0.0369
	           site 0.0369
	              a 0.0369
	             is 0.0369

         appear   438337   1 (22)
	           year 0.0369
	         appeal 0.0369
	           area 0.0369
	              I 0.0369
	          areas 0.0369
	          apear 0.0369
	            way 0.0369
	         appear 0.0369
	        appears 0.0369
	              G 0.0369
	          Guide 0.0369
	        appeare 0.0369
	          apple 0.0369
	              ' 0.0059
	           </S> 0.0000
	              - 0.0000
	              , 0.0000
	             of 0.0000
	             is 0.0000
	              . 0.0000
	              " 0.0000
	          Press 0.0000

         Pipits   438377  15 (27)
	         Papist 0.6000
	         pipits 0.1000
	         extent 0.0369
	              . 0.0369
	         Pipets 0.0369
	             us 0.0369
	           with 0.0369
	            the 0.0369
	          Pipis 0.0369
	              a 0.0369
	     conclusion 0.0369
	              , 0.0369
	           </S> 0.0059
	           same 0.0037
	              - 0.0000
	         Pipils 0.0000
	          world 0.0000
	         rights 0.0000
	           fact 0.0000
	            its 0.0000
	         Pipits 0.0000
	           time 0.0000
	          first 0.0000
	          Pitts 0.0000
	          Pipes 0.0000
	            top 0.0000
	          Pipit 0.0000

       Thrushes   438393  12 (27)
	       Thruster 0.2000
	         Thrush 0.2000
	              I 0.0369
	              . 0.0369
	          House 0.0369
	          three 0.0369
	              , 0.0369
	           bill 0.0369
	              a 0.0369
	           </S> 0.0059
	           same 0.0037
	       Thrasher 0.0000
	       thrushes 0.0000
	          world 0.0000
	      following 0.0000
	           best 0.0000
	              - 0.0000
	              " 0.0000
	         people 0.0000
	       Thrushes 0.0000
	           only 0.0000
	           time 0.0000
	          other 0.0000
	    information 0.0000
	      Thrusters 0.0000
	          first 0.0000
	            way 0.0000

             do   438402   1 (23)
	            doo 0.0369
	            dog 0.0369
	              a 0.0369
	           back 0.0369
	             do 0.0369
	             de 0.0369
	             di 0.0369
	            cia 0.0369
	            way 0.0369
	             iu 0.0369
	             od 0.0369
	             us 0.0369
	            doc 0.0369
	              I 0.0369
	              , 0.0059
	            was 0.0000
	             is 0.0000
	              - 0.0000
	            and 0.0000
	              . 0.0000
	             to 0.0000
	           </S> 0.0000
	             of 0.0000

       Warblers   438412   1 (26)
	       Warblers 0.2000
	        Warburg 0.1000
	       question 0.0369
	              , 0.0369
	          years 0.0369
	      community 0.0369
	            the 0.0369
	        cablets 0.0369
	              a 0.0369
	             us 0.0369
	              . 0.0369
	           </S> 0.0059
	         public 0.0000
	            top 0.0000
	          world 0.0000
	          World 0.0000
	              " 0.0000
	        Warbler 0.0000
	            Web 0.0000
	        Warbles 0.0000
	          <UNK> 0.0000
	          first 0.0000
	       warblers 0.0000
	           same 0.0000
	              - 0.0000
	        Walters 0.0000

         Jerdon   438426   2 (25)
	         person 0.2000
	           here 0.0369
	         Jorden 0.0369
	         Jerdon 0.0369
	         Jerson 0.0369
	         Banker 0.0369
	           Jero 0.0369
	              . 0.0369
	            MP3 0.0369
	       Jerudong 0.0369
	         Verdon 0.0369
	         Berdon 0.0369
	              I 0.0369
	          Aedon 0.0369
	            the 0.0059
	              a 0.0000
	        version 0.0000
	              " 0.0000
	           what 0.0000
	              , 0.0000
	              - 0.0000
	              e 0.0000
	           </S> 0.0000
	             it 0.0000
	         Jordon 0.0000

             's   438432   1 (20)
	             's 0.1239
	              e 0.0369
	              ' 0.0369
	           MIME 0.0369
	             so 0.0369
	             ss 0.0369
	              " 0.0369
	             iu 0.0369
	             as 0.0369
	            non 0.0369
	            cia 0.0369
	              a 0.0369
	              I 0.0369
	             us 0.0369
	            JVC 0.0059
	           </S> 0.0000
	              - 0.0000
	             is 0.0000
	              , 0.0000
	              . 0.0000

              -   438435   5 (17)
	         called 0.0369
	          Draft 0.0369
	           book 0.0369
	              a 0.0059
	             us 0.0000
	              . 0.0000
	            and 0.0000
	           </S> 0.0000
	              " 0.0000
	             of 0.0000
	            the 0.0000
	         degree 0.0000
	              - 0.0000
	             iu 0.0000
	            cia 0.0000
	              , 0.0000
	            not 0.0000

            may   438448   3 (26)
	             is 1.0000
	          Press 0.1000
	            may 0.0467
	          major 0.0369
	             ma 0.0369
	          could 0.0369
	            man 0.0369
	            mya 0.0369
	            cia 0.0369
	          maura 0.0369
	             me 0.0369
	              G 0.0369
	            map 0.0369
	           mayo 0.0369
	           maya 0.0369
	              I 0.0369
	             my 0.0369
	              ' 0.0059
	              , 0.0000
	           will 0.0000
	           </S> 0.0000
	             of 0.0000
	              " 0.0000
	              - 0.0000
	            can 0.0000
	              . 0.0000

       P'inchcs   438476 inf (28)
	        Pinches 0.6000
	        Pinchos 0.0369
	         Pinchy 0.0369
	           this 0.0369
	     Convention 0.0369
	              a 0.0369
	              . 0.0369
	           with 0.0369
	            box 0.0369
	   Subcommittee 0.0369
	              , 0.0369
	      Committee 0.0369
	             us 0.0369
	            the 0.0369
	        Pinchon 0.0369
	           </S> 0.0059
	        Pinchas 0.0000
	           same 0.0000
	          right 0.0000
	         public 0.0000
	           time 0.0000
	         Pinche 0.0000
	              - 0.0000
	            top 0.0000
	            end 0.0000
	         Pincus 0.0000
	          first 0.0000
	          Pinch 0.0000

             on   438485   1 (19)
	             us 0.0369
	              - 0.0369
	             no 0.0369
	            one 0.0369
	           </S> 0.0369
	             in 0.0369
	            ono 0.0369
	              I 0.0369
	            cia 0.0369
	              a 0.0369
	             iu 0.0369
	            ons 0.0369
	              , 0.0369
	              . 0.0369
	             or 0.0369
	            onn 0.0369
	            oon 0.0369
	             on 0.0369
	             of 0.0369

Jloiifijniioi/Ia   438510 inf (24)
	           life 1.0000
	              e 0.9000
	            its 0.8000
	             us 0.8000
	             in 0.7000
	              - 0.2000
	     individual 0.0369
	             of 0.0369
	    information 0.0369
	    individuals 0.0369
	              I 0.0369
	      political 0.0369
	         social 0.0369
	             if 0.0369
	       national 0.0369
	             is 0.0369
	           find 0.0369
	            the 0.0059
	              , 0.0000
	            and 0.0000
	              . 0.0000
	        January 0.0000
	           </S> 0.0000
	              a 0.0000

            and   438527   1 (19)
	           aand 0.0369
	             us 0.0369
	            ant 0.0369
	            art 0.0369
	            use 0.0369
	              - 0.0369
	              a 0.0369
	            and 0.0369
	             an 0.0369
	            the 0.0369
	           andy 0.0369
	           anda 0.0369
	           </S> 0.0369
	            any 0.0369
	            arz 0.0369
	           alba 0.0369
	              . 0.0369
	              , 0.0369
	              I 0.0369

  PUciropluvics   438531 inf (28)
	       Services 0.3000
	          click 0.1762
	          <UNK> 0.1000
	              i 0.0369
	        service 0.0369
	       policies 0.0369
	     procedures 0.0369
	     facilities 0.0369
	   technologies 0.0369
	       provides 0.0369
	    scholarship 0.0369
	        science 0.0369
	        provide 0.0369
	       products 0.0369
	            the 0.0059
	              a 0.0000
	              I 0.0000
	              - 0.0000
	        Privacy 0.0000
	       services 0.0000
	          their 0.0000
	             to 0.0000
	          other 0.0000
	              ( 0.0000
	              , 0.0000
	         others 0.0000
	           </S> 0.0000
	           more 0.0000

              ;   438545   1 (14)
	              ; 0.0369
	             us 0.0369
	              ) 0.0369
	            the 0.0369
	       families 0.0369
	            and 0.0369
	             iu 0.0369
	              , 0.0369
	              . 0.0369
	         titles 0.0369
	           </S> 0.0369
	              - 0.0369
	             of 0.0369
	            cia 0.0369

            and   438547   1 (17)
	            ant 0.0369
	            the 0.0369
	             as 0.0369
	           aand 0.0369
	            arz 0.0369
	           alba 0.0369
	            and 0.0369
	             an 0.0369
	            any 0.0369
	             us 0.0369
	           andy 0.0369
	           anda 0.0369
	           </S> 0.0059
	          <UNK> 0.0000
	              ) 0.0000
	              } 0.0000
	              " 0.0000

         Pipits   438575  12 (28)
	         Papist 0.6000
	         pipits 0.1000
	              . 0.0369
	       emotions 0.0369
	         Pipets 0.0369
	            air 0.0369
	   organization 0.0369
	          Pipis 0.0369
	           body 0.0369
	           </S> 0.0059
	           same 0.0037
	              - 0.0000
	           Pitt 0.0000
	            way 0.0000
	         Rights 0.0000
	         Pipits 0.0000
	          Pipes 0.0000
	          Piper 0.0000
	          world 0.0000
	              " 0.0000
	         rights 0.0000
	      following 0.0000
	          <UNK> 0.0000
	          Posts 0.0000
	         future 0.0000
	         Pipils 0.0000
	          first 0.0000
	          Pipit 0.0000

        through   438582   2 (16)
	         Anthus 0.1000
	        through 0.0369
	             of 0.0369
	         trough 0.0369
	              a 0.0369
	         though 0.0369
	       throughs 0.0369
	       throughe 0.0369
	       thorough 0.0369
	              I 0.0369
	          three 0.0369
	              , 0.0059
	            and 0.0000
	           </S> 0.0000
	              - 0.0000
	              . 0.0000

     Corydallar   438590   6 (25)
	              e 0.9000
	              " 0.9000
	             us 0.8000
	          <UNK> 0.3000
	              - 0.2000
	          small 0.0369
	            RSS 0.0369
	             C. 0.0369
	     Corydallus 0.0369
	       Coydalla 0.0369
	     Corydalean 0.0369
	         Canada 0.0369
	      Corydalla 0.0369
	     Corydallos 0.0369
	              I 0.0369
	       tactical 0.0369
	             A. 0.0369
	      Corallary 0.0369
	            the 0.0059
	           </S> 0.0000
	            our 0.0000
	          local 0.0000
	              , 0.0000
	              a 0.0000
	              . 0.0000

            The   438602   1 (18)
	            Thu 0.0369
	           They 0.0369
	            Thy 0.0369
	              - 0.0369
	            The 0.0369
	             us 0.0369
	           This 0.0369
	            cia 0.0369
	             iu 0.0369
	           </S> 0.0369
	            the 0.0369
	              . 0.0369
	            Teh 0.0369
	              , 0.0369
	              a 0.0369
	           Thee 0.0369
	              I 0.0369
	           Then 0.0369

        familj-   438634  12 (25)
	         familj 0.0369
	           file 0.0369
	       familija 0.0369
	              . 0.0369
	              a 0.0369
	        familjs 0.0369
	          major 0.0369
	            and 0.0369
	              , 0.0369
	        familja 0.0369
	           </S> 0.0059
	           book 0.0000
	        project 0.0000
	          first 0.0000
	          world 0.0000
	        familia 0.0000
	         family 0.0000
	           full 0.0000
	              - 0.0000
	           most 0.0000
	           best 0.0000
	        problem 0.0000
	            top 0.0000
	           same 0.0000
	           game 0.0000

             is   438642   1 (19)
	             it 0.0369
	             us 0.0369
	            iss 0.0369
	             is 0.0369
	            iso 0.0369
	            iis 0.0369
	              I 0.0369
	           </S> 0.0369
	              . 0.0369
	              - 0.0369
	             iu 0.0369
	            cia 0.0369
	              a 0.0369
	            ist 0.0369
	             in 0.0369
	             si 0.0369
	            and 0.0369
	             of 0.0369
	              , 0.0369

   scutellation   438649   2 (31)
	            one 0.1000
	             to 0.0369
	          major 0.0369
	    scutellatis 0.0369
	          topic 0.0369
	   cupellations 0.0369
	              a 0.0369
	              , 0.0369
	              . 0.0369
	   scutellation 0.0369
	  scutellations 0.0369
	     scutellati 0.0369
	 responsibility 0.0369
	     scutellata 0.0369
	           </S> 0.0059
	           best 0.0000
	    scutellaris 0.0000
	           name 0.0000
	           case 0.0000
	            web 0.0000
	              - 0.0000
	      following 0.0000
	         system 0.0000
	           most 0.0000
	           time 0.0000
	           only 0.0000
	           same 0.0000
	          first 0.0000
	          world 0.0000
	    information 0.0000
	            top 0.0000

             at   438662   1 (20)
	              . 0.0369
	            ate 0.0369
	             at 0.0369
	              , 0.0369
	             of 0.0369
	             us 0.0369
	            att 0.0369
	              - 0.0369
	             to 0.0369
	             ta 0.0369
	            for 0.0369
	            arz 0.0369
	             iu 0.0369
	            aat 0.0369
	              I 0.0369
	             an 0.0369
	             in 0.0369
	             as 0.0369
	              a 0.0369
	           </S> 0.0369

            and   438689   1 (17)
	              . 0.0369
	           aand 0.0369
	              a 0.0369
	             us 0.0369
	              , 0.0369
	            and 0.0369
	           andy 0.0369
	           anda 0.0369
	            arz 0.0369
	           alba 0.0369
	            any 0.0369
	            ant 0.0369
	             an 0.0369
	           </S> 0.0059
	              " 0.0000
	              } 0.0000
	              ) 0.0000

      probabl}'   438699  11 (23)
	       probable 0.7000
	        probabl 0.5500
	       probabla 0.0369
	       probarlo 0.0369
	              - 0.0369
	      precisely 0.0369
	      probables 0.0369
	      probabile 0.0369
	              I 0.0369
	              a 0.0059
	           only 0.0000
	             an 0.0000
	       provided 0.0000
	      necessary 0.0000
	              , 0.0000
	              . 0.0000
	            not 0.0000
	       probably 0.0000
	       possible 0.0000
	           that 0.0000
	           </S> 0.0000
	            the 0.0000
	         really 0.0000

          tliis   438720  13 (27)
	          tills 0.8000
	          tilts 0.4000
	          think 0.2000
	          thing 0.1000
	         liliis 0.0369
	          liisi 0.0369
	         tiliis 0.0369
	        thuliis 0.0369
	              s 0.0369
	          tsiis 0.0369
	          aliis 0.0369
	            the 0.0059
	        tristis 0.0000
	           this 0.0000
	           tiis 0.0000
	              , 0.0000
	            iis 0.0000
	            lis 0.0000
	              a 0.0000
	            its 0.0000
	           </S> 0.0000
	              : 0.0000
	          <UNK> 0.0000
	           your 0.0000
	          their 0.0000
	              - 0.0000
	             us 0.0000

    peculiarity   438726   1 (24)
	              - 0.0369
	    peculiarity 0.0369
	              , 0.0369
	              I 0.0369
	              . 0.0369
	           2004 0.0369
	   peculiariter 0.0369
	       property 0.0369
	        account 0.0369
	         people 0.0369
	    specularity 0.0369
	     peculiaris 0.0369
	            and 0.0369
	              " 0.0369
	    Peculiarity 0.0369
	              a 0.0369
	         author 0.0369
	    Specularity 0.0369
	           best 0.0369
	      peculiari 0.0369
	     peculiaria 0.0369
	         public 0.0369
	           </S> 0.0059
	          <UNK> 0.0000

              (   438738   6 (12)
	            the 0.5000
	             us 0.0369
	            cia 0.0369
	             iu 0.0369
	             of 0.0059
	              , 0.0000
	            and 0.0000
	              . 0.0000
	             in 0.0000
	           </S> 0.0000
	              - 0.0000
	              ( 0.0000

        becanse   438747  16 (31)
	         pecans 0.3000
	        becense 0.0369
	        becasen 0.0369
	       bancasse 0.0369
	              I 0.0369
	          canse 0.0369
	        becarse 0.0369
	        becasse 0.0369
	           when 0.0369
	        bacanes 0.0369
	          becan 0.0369
	         secans 0.0369
	       Ethereal 0.0369
	        balanse 0.0369
	             be 0.0059
	           have 0.0000
	           been 0.0000
	              , 0.0000
	              - 0.0000
	             to 0.0000
	              a 0.0000
	              . 0.0000
	            the 0.0000
	           </S> 0.0000
	        because 0.0000
	             of 0.0000
	           that 0.0000
	           mean 0.0000
	          think 0.0000
	          being 0.0000
	         becase 0.0000

           they   438755   1 (22)
	    TripAdvisor 0.0369
	           them 0.0369
	             us 0.0369
	          thewy 0.0369
	              ) 0.0369
	              I 0.0369
	             to 0.0369
	          Athey 0.0369
	              a 0.0369
	           </S> 0.0369
	              . 0.0369
	            the 0.0369
	          tythe 0.0369
	           they 0.0369
	        support 0.0369
	              - 0.0369
	          tehty 0.0369
	           then 0.0369
	          theyr 0.0369
	              , 0.0369
	          major 0.0369
	             of 0.0059

       Sannders   438798   1 (30)
	       Saunders 1.0000
	      Sanderson 0.1000
	         Anders 0.0369
	         Sannes 0.0369
	              L 0.0369
	       Standers 0.0369
	            are 0.0369
	              I 0.0369
	         Enders 0.0369
	         anders 0.0369
	              a 0.0369
	             M. 0.0359
	              , 0.0059
	             J. 0.0000
	        Johnson 0.0000
	        Sanders 0.0000
	              - 0.0000
	         Sanner 0.0000
	             A. 0.0000
	            the 0.0000
	         Server 0.0000
	            ... 0.0000
	         Street 0.0000
	              . 0.0000
	          Stern 0.0000
	             is 0.0000
	           </S> 0.0000
	         Sander 0.0000
	           Dean 0.0000
	            and 0.0000

  subordinating   438807   1 (18)
	            and 0.0369
	      Australia 0.0369
	nonsubordinating 0.0369
	              , 0.0369
	           </S> 0.0369
	subordinatingly 0.0369
	  subordination 0.0369
	              I 0.0369
	              a 0.0369
	              . 0.0369
	         making 0.0369
	            has 0.0369
	  subordinating 0.0369
	         during 0.0369
	             is 0.0369
	  subordinative 0.0369
	              - 0.0369
	    subordinati 0.0369

          sa3-s   438842   1 (28)
	           says 0.6000
	             sa 0.1000
	           sala 0.0369
	           saas 0.0369
	              I 0.0369
	              a 0.0369
	          Parus 0.0369
	          Pales 0.0369
	              - 0.0369
	              . 0.0369
	           sans 0.0369
	         sighed 0.0369
	        replied 0.0369
	           sasa 0.0369
	            was 0.0059
	           said 0.0000
	            had 0.0000
	           </S> 0.0000
	             as 0.0000
	           same 0.0000
	            sas 0.0000
	            say 0.0000
	             is 0.0000
	          added 0.0000
	          sales 0.0000
	          saves 0.0000
	           sass 0.0000
	              , 0.0000

      majorit}-   438867  13 (26)
	              , 0.0369
	       majorite 0.0369
	       majorait 0.0369
	      majoritet 0.0369
	       majorist 0.0369
	        members 0.0369
	              . 0.0369
	          terms 0.0369
	              a 0.0369
	            and 0.0369
	        majoris 0.0369
	           </S> 0.0059
	       American 0.0000
	            end 0.0000
	         majori 0.0000
	           same 0.0000
	              - 0.0000
	           most 0.0000
	           rest 0.0000
	           time 0.0000
	         number 0.0000
	       majority 0.0000
	            top 0.0000
	           more 0.0000
	          first 0.0000
	            use 0.0000

             O.   438887   1 (23)
	             A. 0.0369
	             OO 0.0369
	             O. 0.0369
	             us 0.0369
	             iu 0.0369
	              a 0.0369
	           </S> 0.0059
	              A 0.0000
	              . 0.0000
	              & 0.0000
	             of 0.0000
	            NFS 0.0000
	             .. 0.0000
	              ( 0.0000
	            and 0.0000
	             On 0.0000
	             to 0.0000
	       subtilis 0.0000
	              I 0.0000
	              - 0.0000
	             OF 0.0000
	              , 0.0000
	             in 0.0000

    Alaiiiiidic   438937 inf (29)
	           time 0.1000
	        listing 0.0369
	      applicant 0.0369
	            and 0.0369
	              , 0.0369
	          child 0.0369
	            law 0.0369
	     individual 0.0369
	            GNU 0.0369
	              . 0.0369
	           land 0.0369
	    medications 0.0369
	         Senate 0.0369
	              a 0.0369
	          major 0.0369
	            Act 0.0369
	           </S> 0.0059
	           most 0.0000
	          first 0.0000
	           same 0.0000
	       American 0.0000
	       National 0.0000
	           city 0.0000
	     University 0.0000
	          world 0.0000
	              - 0.0000
	           page 0.0000
	           year 0.0000
	            top 0.0000

     Coii'ida''   438957 inf (30)
	            day 0.4000
	            old 0.2000
	        company 0.1000
	     government 0.1000
	        Company 0.0369
	            the 0.0369
	          media 0.0369
	     Commission 0.0369
	              a 0.0369
	        Council 0.0369
	              . 0.0369
	          board 0.0369
	        student 0.0369
	              , 0.0369
	      Caribbean 0.0369
	           </S> 0.0059
	       original 0.0000
	           date 0.0000
	         United 0.0000
	           rest 0.0000
	          first 0.0000
	          other 0.0000
	           City 0.0000
	           user 0.0000
	          Board 0.0000
	       American 0.0000
	              ' 0.0000
	           same 0.0000
	           data 0.0000
	              - 0.0000

            has   438968   1 (22)
	             ha 0.0369
	              a 0.0369
	             is 0.0369
	            hat 0.0369
	             us 0.0369
	              , 0.0369
	            cia 0.0369
	           haas 0.0369
	            arz 0.0369
	             of 0.0369
	           </S> 0.0369
	           hast 0.0369
	             as 0.0369
	              . 0.0369
	          trust 0.0369
	              I 0.0369
	              - 0.0369
	            had 0.0369
	            his 0.0369
	            has 0.0369
	           hash 0.0369
	            was 0.0369

          Larks   438983   2 (35)
	           Lark 0.5000
	          Larks 0.3532
	          Larus 0.1000
	        vehicle 0.0369
	         Laarks 0.0369
	          topic 0.0369
	       Larksmen 0.0369
	          table 0.0369
	          twist 0.0369
	           </S> 0.0059
	           same 0.0037
	          first 0.0000
	          Large 0.0000
	       Larkspur 0.0000
	            way 0.0000
	            top 0.0000
	           Lake 0.0000
	      following 0.0000
	          parva 0.0000
	           time 0.0000
	          <UNK> 0.0000
	          Parus 0.0000
	              ' 0.0000
	           Last 0.0000
	         Laskar 0.0000
	          terms 0.0000
	           part 0.0000
	          world 0.0000
	         Lanius 0.0000
	          Links 0.0000
	              - 0.0000
	           form 0.0000
	            web 0.0000
	              " 0.0000
	           arks 0.0000

       Passcrcs   439007   1 (28)
	       Passeres 0.1000
	        Pancras 0.1000
	          month 0.0369
	        Parsecs 0.0369
	      asscracks 0.0369
	       Masscred 0.0369
	            and 0.0369
	         Passca 0.0369
	              a 0.0369
	              . 0.0369
	              , 0.0369
	          major 0.0369
	       Passirac 0.0369
	           </S> 0.0059
	          first 0.0000
	       Passcode 0.0000
	         Passer 0.0000
	           case 0.0000
	           last 0.0000
	           year 0.0000
	           same 0.0000
	           eBay 0.0000
	           most 0.0000
	         Passes 0.0000
	          world 0.0000
	           page 0.0000
	              - 0.0000
	            day 0.0000

            all   439017   2 (26)
	             on 0.0541
	            ala 0.0369
	           ally 0.0369
	           alle 0.0369
	            are 0.0369
	            but 0.0369
	              ( 0.0369
	            arz 0.0369
	              x 0.0369
	              " 0.0369
	           </S> 0.0369
	            alt 0.0369
	            als 0.0369
	             al 0.0369
	            and 0.0369
	              I 0.0369
	            all 0.0369
	          <UNK> 0.0369
	           alba 0.0369
	           with 0.0062
	            the 0.0059
	          which 0.0012
	              i 0.0000
	             or 0.0000
	          while 0.0000
	           sala 0.0000

          i'eet   439049   2 (32)
	          items 0.7000
	           feet 0.6167
	          ikeet 0.0369
	          nieet 0.0369
	           iett 0.0369
	        highest 0.0369
	      community 0.0369
	       greatest 0.0369
	          ideen 0.0369
	           </S> 0.0059
	           same 0.0037
	          first 0.0000
	          idees 0.0000
	           best 0.0000
	           been 0.0000
	              " 0.0000
	          <UNK> 0.0000
	           item 0.0000
	          right 0.0000
	      following 0.0000
	          index 0.0000
	              - 0.0000
	              ' 0.0000
	           idea 0.0000
	          dieet 0.0000
	            ite 0.0000
	            eet 0.0000
	           meet 0.0000
	           time 0.0000
	          world 0.0000
	            iet 0.0000
	          sweet 0.0000

         scaled   439055   1 (23)
	              , 0.0369
	             is 0.0369
	           sala 0.0369
	            not 0.0369
	          small 0.0369
	              a 0.0369
	         scaler 0.0369
	              I 0.0369
	           </S> 0.0369
	          Pales 0.0369
	         scales 0.0369
	              . 0.0369
	              - 0.0369
	         parent 0.0369
	          shall 0.0369
	             to 0.0369
	          scale 0.0369
	        scalled 0.0369
	          state 0.0369
	        scalded 0.0369
	          caled 0.0369
	             of 0.0369
	         scaled 0.0369

          Larks   439082   1 (29)
	          Larks 0.8000
	          Larus 0.8000
	           Lake 0.5000
	          Parus 0.2000
	       comments 0.0369
	           dead 0.0369
	         Laarks 0.0369
	         Lanius 0.0369
	          parva 0.0369
	           boys 0.0369
	              ) 0.0369
	       Larksmen 0.0369
	       tourists 0.0369
	       chapters 0.0369
	           </S> 0.0059
	      following 0.0000
	          first 0.0000
	          Links 0.0000
	          <UNK> 0.0000
	       Larkspur 0.0000
	              ( 0.0000
	           Lark 0.0000
	           arks 0.0000
	          Large 0.0000
	           Last 0.0000
	         Laskar 0.0000
	           Park 0.0000
	        results 0.0000
	              - 0.0000

        walking   439092   2 (26)
	         flying 0.9000
	        walking 0.8000
	         Rating 0.7000
	       creating 0.0369
	      migratory 0.0369
	       waulking 0.0369
	      unwalking 0.0369
	     walkingway 0.0369
	       walkings 0.0369
	           like 0.0369
	            not 0.0059
	        working 0.0000
	        walling 0.0000
	         making 0.0000
	              , 0.0000
	           </S> 0.0000
	        lacking 0.0000
	             no 0.0000
	            the 0.0000
	              : 0.0000
	         waking 0.0000
	              . 0.0000
	         Malkin 0.0000
	        wanking 0.0000
	        talking 0.0000
	              a 0.0000

          birds   439100   1 (34)
	          birds 0.5000
	           bird 0.3000
	          first 0.1000
	          bands 0.1000
	           best 0.0369
	         birdes 0.0369
	           sure 0.0369
	          being 0.0369
	          Parus 0.0369
	         Turdus 0.0369
	        however 0.0369
	        birdsit 0.0369
	         Vbirds 0.0369
	           bids 0.0369
	          birdy 0.0369
	          birda 0.0369
	         bridds 0.0369
	             us 0.0369
	         winner 0.0369
	       distance 0.0059
	              , 0.0000
	              . 0.0000
	          along 0.0000
	           </S> 0.0000
	             in 0.0000
	            for 0.0000
	              a 0.0000
	         around 0.0000
	           down 0.0000
	              - 0.0000
	         trails 0.0000
	         sticks 0.0000
	           home 0.0000
	             to 0.0000

       building   439107   1 (29)
	       building 0.0369
	      buildings 0.0369
	              " 0.0369
	        mammals 0.0369
	           fish 0.0369
	      abuilding 0.0369
	              , 0.0369
	            and 0.0369
	         prices 0.0369
	            but 0.0369
	       business 0.0369
	        bilding 0.0369
	       services 0.0369
	       reptiles 0.0369
	       Building 0.0369
	              I 0.0369
	          <UNK> 0.0369
	        budling 0.0369
	           </S> 0.0369
	     buildering 0.0369
	              a 0.0369
	       bundling 0.0369
	         photos 0.0369
	            the 0.0059
	          which 0.0012
	              i 0.0000
	             or 0.0000
	      including 0.0000
	          using 0.0000

          man}'   439123   2 (23)
	           mana 0.4000
	           many 0.2295
	            man 0.2000
	           make 0.1000
	          maura 0.0369
	              I 0.0369
	            the 0.0059
	          minor 0.0000
	          mania 0.0000
	          other 0.0000
	           </S> 0.0000
	           mann 0.0000
	          manna 0.0000
	           part 0.0000
	           some 0.0000
	            may 0.0000
	          major 0.0000
	              - 0.0000
	          manga 0.0000
	              , 0.0000
	              a 0.0000
	           this 0.0000
	              . 0.0000

        species   439129   1 (18)
	              , 0.0369
	             of 0.0369
	        species 0.0369
	        speciei 0.0369
	       speciesm 0.0369
	       especies 0.0369
	        special 0.0369
	           with 0.0369
	        suecica 0.0369
	        speciem 0.0369
	       speciest 0.0369
	        especie 0.0369
	              a 0.0369
	       specific 0.0369
	           </S> 0.0369
	         specie 0.0369
	              - 0.0369
	              . 0.0369

       roosting   439137  18 (26)
	         rating 0.2000
	     unroosting 0.0369
	        roosing 0.0369
	          based 0.0369
	       roasting 0.0369
	       rousting 0.0369
	       boosting 0.0369
	       Boosting 0.0369
	          rosti 0.0369
	        rooting 0.0369
	       Agostini 0.0369
	           nest 0.0369
	       roisting 0.0369
	        Hosting 0.0369
	        Oosting 0.0369
	       rootings 0.0369
	              . 0.0059
	           </S> 0.0000
	           name 0.0000
	          found 0.0000
	       roosting 0.0000
	             of 0.0000
	              - 0.0000
	              , 0.0000
	        looking 0.0000
	            are 0.0000

       arboreal   439193   2 (23)
	        popular 1.0000
	       arboreal 0.3000
	           area 0.0369
	            are 0.0369
	       arboreas 0.0369
	      arboreals 0.0369
	        extreme 0.0369
	        arborea 0.0369
	       arboreol 0.0369
	              i 0.0369
	       arboreae 0.0369
	       alborear 0.0369
	           than 0.0059
	           </S> 0.0000
	              . 0.0000
	            you 0.0000
	         common 0.0000
	              , 0.0000
	              - 0.0000
	          about 0.0000
	              I 0.0000
	    information 0.0000
	             of 0.0000

          the}-   439209   1 (22)
	           they 0.0755
	           </S> 0.0369
	          theet 0.0369
	             by 0.0369
	            and 0.0369
	              a 0.0369
	          <UNK> 0.0369
	              " 0.0369
	              ( 0.0369
	              I 0.0369
	           with 0.0062
	            the 0.0059
	          which 0.0012
	              i 0.0000
	           such 0.0000
	           them 0.0000
	          their 0.0000
	            who 0.0000
	          there 0.0000
	             or 0.0000
	           thee 0.0000
	          thete 0.0000

         rarely   439215   1 (21)
	              . 0.0369
	              , 0.0369
	         Barely 0.0369
	         Travel 0.0369
	           rate 0.0369
	         yarely 0.0369
	              - 0.0369
	         rarley 0.0369
	              I 0.0369
	         really 0.0369
	         rarely 0.0369
	           </S> 0.0369
	         rarefy 0.0369
	         rarety 0.0369
	         rearly 0.0369
	           rare 0.0369
	            the 0.0369
	            and 0.0369
	             or 0.0369
	         barely 0.0369
	              a 0.0369

          perch   439222  13 (22)
	          price 0.3000
	          agree 0.0369
	         percha 0.0369
	          patch 0.0369
	          percy 0.0369
	          parva 0.0369
	          perce 0.0369
	           perc 0.0369
	           told 0.0369
	        percher 0.0369
	         perche 0.0369
	              , 0.0059
	              - 0.0000
	          found 0.0000
	           </S> 0.0000
	            per 0.0000
	              . 0.0000
	              a 0.0000
	          perch 0.0000
	           used 0.0000
	           seen 0.0000
	           part 0.0000

            and   439239   1 (22)
	              , 0.0369
	           andy 0.0369
	           anda 0.0369
	         shrubs 0.0369
	              . 0.0369
	             us 0.0369
	            arz 0.0369
	           alba 0.0369
	             an 0.0369
	            ant 0.0369
	            the 0.0369
	              a 0.0369
	           aand 0.0369
	            and 0.0369
	            any 0.0369
	           time 0.0369
	              - 0.0369
	              I 0.0369
	           </S> 0.0059
	              ) 0.0000
	              " 0.0000
	              } 0.0000

           dust   439313  12 (26)
	           data 0.6000
	           they 0.5100
	          dusty 0.3000
	            not 0.1053
	              . 0.0369
	           duts 0.0369
	           dush 0.0369
	           find 0.0369
	              - 0.0369
	            and 0.0369
	              I 0.0059
	            are 0.0000
	           dust 0.0000
	              a 0.0000
	             us 0.0000
	              i 0.0000
	           </S> 0.0000
	             iu 0.0000
	           dusk 0.0000
	              , 0.0000
	            the 0.0000
	          dusts 0.0000
	            dry 0.0000
	           just 0.0000
	             it 0.0000
	           does 0.0000

       Sparrows   439349   1 (25)
	       Sparrows 0.1000
	       election 0.0369
	           part 0.0369
	          print 0.0369
	            men 0.0369
	    realisation 0.0369
	            the 0.0059
	        Barrows 0.0000
	    Sparrowbush 0.0000
	          State 0.0000
	          their 0.0000
	           </S> 0.0000
	       sparrows 0.0000
	              - 0.0000
	        Sparrow 0.0000
	           this 0.0000
	            his 0.0000
	             us 0.0000
	        Service 0.0000
	          <UNK> 0.0000
	            use 0.0000
	              , 0.0000
	            one 0.0000
	              : 0.0000
	              a 0.0000

   Gallinaceous   439361   1 (24)
	    appointment 0.0369
	           dead 0.0369
	    alsinaceous 0.0369
	    gallinaceus 0.0369
	   Gallinaceous 0.0369
	 corallinaceous 0.0369
	   tellinaceous 0.0369
	      linaceous 0.0369
	     settlement 0.0369
	   gallinaceous 0.0369
	       business 0.0369
	     alliaceous 0.0369
	    application 0.0369
	            the 0.0059
	           </S> 0.0000
	              , 0.0000
	           more 0.0000
	              - 0.0000
	              a 0.0000
	        without 0.0000
	          other 0.0000
	              e 0.0000
	              ( 0.0000
	          <UNK> 0.0000

          Their   439381   1 (21)
	          Their 1.0000
	           They 0.0566
	           heir 0.0369
	         Theirs 0.0369
	          Thier 0.0369
	           Thir 0.0369
	          Theri 0.0369
	              a 0.0369
	          Thein 0.0369
	          Theis 0.0369
	          their 0.0369
	           </S> 0.0059
	              ] 0.0000
	              , 0.0000
	              A 0.0000
	              . 0.0000
	              " 0.0000
	              - 0.0000
	              I 0.0000
	              ) 0.0000
	          There 0.0000

          Larks   439463   2 (25)
	          There 0.4000
	           arks 0.0369
	          Larks 0.0369
	         Laskar 0.0369
	          Parus 0.0369
	         Lanius 0.0369
	          parva 0.0369
	       Larkspur 0.0369
	          Larus 0.0369
	              a 0.0369
	         Laarks 0.0369
	       Larksmen 0.0369
	           part 0.0369
	           Lark 0.0369
	           </S> 0.0059
	          Links 0.0000
	              , 0.0000
	              - 0.0000
	              " 0.0000
	              ) 0.0000
	              . 0.0000
	              ] 0.0000
	              A 0.0000
	              I 0.0000
	           Last 0.0000

            are   439469  15 (23)
	           ares 0.0369
	            art 0.0369
	             us 0.0369
	           area 0.0369
	             ar 0.0369
	            arm 0.0369
	           alba 0.0369
	           aree 0.0369
	           aare 0.0369
	            arz 0.0369
	              a 0.0369
	            aer 0.0369
	              n 0.0369
	              ' 0.0059
	             at 0.0000
	            are 0.0000
	              - 0.0000
	          <UNK> 0.0000
	           </S> 0.0000
	            and 0.0000
	              . 0.0000
	              , 0.0000
	              ) 0.0000

            the   439528   1 (19)
	            the 0.0369
	            teh 0.0369
	             us 0.0369
	              a 0.0369
	           they 0.0369
	              , 0.0369
	            cia 0.0369
	             iu 0.0369
	              I 0.0369
	           thee 0.0369
	            thy 0.0369
	            tho 0.0369
	           that 0.0369
	              . 0.0369
	           them 0.0369
	           </S> 0.0059
	              ) 0.0000
	              " 0.0000
	              } 0.0000

       stronger   439570  13 (20)
	              a 0.1000
	        stronge 0.0369
	      strongest 0.0369
	           site 0.0369
	              i 0.0369
	       stranger 0.0369
	          other 0.0369
	       Stronger 0.0369
	       strongur 0.0369
	       stringer 0.0369
	        service 0.0369
	              , 0.0059
	             of 0.0000
	           </S> 0.0000
	              . 0.0000
	              - 0.0000
	              I 0.0000
	       stronger 0.0000
	              ) 0.0000
	           that 0.0000

      doubtless   439625  19 (27)
	       doublets 0.1000
	              a 0.0369
	      dauntless 0.0369
	              " 0.0369
	              I 0.0369
	      according 0.0369
	           </S> 0.0369
	       debtless 0.0369
	             up 0.0369
	            but 0.0369
	            and 0.0369
	       compared 0.0369
	       doublest 0.0369
	              ( 0.0369
	          <UNK> 0.0369
	        subject 0.0369
	            the 0.0059
	          which 0.0012
	          would 0.0000
	            who 0.0000
	        doubles 0.0000
	          these 0.0000
	      doubtless 0.0000
	    doubtlessly 0.0000
	           your 0.0000
	              i 0.0000
	             or 0.0000

        soaring   439668  15 (26)
	         spring 0.8000
	        sharing 0.5000
	       roarings 0.1000
	        staring 0.1000
	       soarings 0.0369
	         soring 0.0369
	        sabrina 0.0369
	   independence 0.0369
	            and 0.0369
	        stories 0.0369
	      soaringly 0.0369
	             IT 0.0369
	         oaring 0.0369
	            own 0.0059
	           work 0.0000
	              " 0.0000
	          <UNK> 0.0000
	        stamina 0.0000
	     respective 0.0000
	           ring 0.0000
	         during 0.0000
	           </S> 0.0000
	       children 0.0000
	          lives 0.0000
	        soaring 0.0000
	        working 0.0000

       hovering   439676   1 (20)
	       havering 0.0369
	         having 0.0369
	        overing 0.0369
	         during 0.0369
	       poverina 0.0369
	       hovering 0.0369
	              a 0.0369
	           have 0.0369
	         hering 0.0369
	      hoverings 0.0369
	      hoovering 0.0369
	     hoveringly 0.0369
	              , 0.0059
	              . 0.0000
	            and 0.0000
	              - 0.0000
	             in 0.0000
	        profits 0.0000
	          eagle 0.0000
	           </S> 0.0000

              -   439750   1 (14)
	              - 0.2276
	            and 0.1000
	        percent 0.0369
	              % 0.0369
	             iu 0.0369
	            cia 0.0369
	              , 0.0059
	             us 0.0000
	            the 0.0000
	              . 0.0000
	             of 0.0000
	           that 0.0000
	             to 0.0000
	           </S> 0.0000

        fulness   439814  13 (28)
	       Business 0.5000
	      awfulness 0.0369
	        funless 0.0369
	             to 0.0369
	         fulges 0.0369
	              a 0.0369
	        funness 0.0369
	         fulnes 0.0369
	        fulgens 0.0369
	         notice 0.0369
	        dulness 0.0369
	           than 0.0059
	        fulness 0.0000
	          files 0.0000
	              - 0.0000
	           part 0.0000
	       fullness 0.0000
	           </S> 0.0000
	       business 0.0000
	      attention 0.0000
	            the 0.0000
	         weight 0.0000
	        ability 0.0000
	         threat 0.0000
	       emphasis 0.0000
	         access 0.0000
	              . 0.0000
	              , 0.0000

             By   439836   2 (21)
	             My 0.5980
	             By 0.2436
	              I 0.0418
	           Baya 0.0369
	            Byd 0.0369
	             BY 0.0369
	             iu 0.0369
	             us 0.0369
	            Bye 0.0369
	              a 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              , 0.0000
	              ) 0.0000
	             by 0.0000
	             Be 0.0000
	              ] 0.0000
	              . 0.0000
	             my 0.0000

           bird   439860   1 (36)
	           bird 0.8579
	          birds 0.1571
	            off 0.0369
	              i 0.0369
	            non 0.0369
	            arz 0.0369
	           long 0.0369
	            UCS 0.0369
	          birdi 0.0369
	           well 0.0369
	         People 0.0369
	              e 0.0369
	            sub 0.0369
	              x 0.0369
	          three 0.0369
	           </S> 0.0059
	           same 0.0037
	            two 0.0000
	              ' 0.0000
	      following 0.0000
	             be 0.0000
	            bir 0.0000
	              - 0.0000
	           brid 0.0000
	             by 0.0000
	            cia 0.0000
	           biro 0.0000
	          birdy 0.0000
	          <UNK> 0.0000
	           Pica 0.0000
	              " 0.0000
	          first 0.0000
	           birt 0.0000
	            way 0.0000
	            but 0.0000
	            mid 0.0000

          Larks   439905  10 (26)
	          Large 0.6000
	             my 0.4533
	         Lanius 0.4000
	          Larus 0.1000
	         Laarks 0.0369
	          parva 0.0369
	              . 0.0369
	       Larksmen 0.0369
	            the 0.0059
	           </S> 0.0000
	           this 0.0000
	          Links 0.0000
	          Larks 0.0000
	              - 0.0000
	           your 0.0000
	          their 0.0000
	              a 0.0000
	       Larkspur 0.0000
	           arks 0.0000
	           Lark 0.0000
	          Parus 0.0000
	              , 0.0000
	         Laskar 0.0000
	           part 0.0000
	            how 0.0000
	           Last 0.0000

       directly   439911   1 (22)
	         person 0.0369
	         direct 0.0369
	     undirectly 0.0369
	      Directory 0.0369
	     derelictly 0.0369
	          first 0.0369
	       directly 0.0369
	     indirectly 0.0369
	       director 0.0369
	     directedly 0.0369
	           data 0.0369
	              a 0.0369
	              I 0.0369
	       directed 0.0369
	              ' 0.0059
	              , 0.0000
	           that 0.0000
	            and 0.0000
	              - 0.0000
	             as 0.0000
	           </S> 0.0000
	              . 0.0000

          tells   440011  21 (26)
	              A 0.4000
	            and 0.2158
	         tellus 0.0369
	           test 0.0369
	        greeted 0.0369
	          Pales 0.0369
	           tels 0.0369
	              a 0.0369
	          telly 0.0369
	          telle 0.0369
	        stellst 0.0369
	         stells 0.0369
	          teles 0.0369
	        retells 0.0369
	          terms 0.0369
	         telles 0.0369
	              I 0.0369
	      Lindbergh 0.0369
	           tell 0.0369
	              , 0.0059
	          tells 0.0000
	              - 0.0000
	           </S> 0.0000
	          Farms 0.0000
	              ( 0.0000
	              . 0.0000

           Lark   440038   1 (37)
	         Larkin 0.2000
	           Lark 0.2000
	            Lar 0.2000
	         button 0.0369
	          Lakar 0.0369
	            arz 0.0369
	              , 0.0369
	           that 0.0369
	            who 0.0369
	           user 0.0369
	              I 0.0369
	          query 0.0369
	          Larak 0.0369
	              a 0.0369
	              . 0.0369
	            you 0.0369
	       solution 0.0369
	       lifetime 0.0369
	            few 0.0097
	           </S> 0.0059
	           word 0.0000
	           sala 0.0000
	           baby 0.0000
	           Lara 0.0000
	           Lars 0.0000
	         person 0.0000
	            man 0.0000
	          Larks 0.0000
	            are 0.0000
	            new 0.0000
	            and 0.0000
	              - 0.0000
	           work 0.0000
	          child 0.0000
	           lava 0.0000
	           part 0.0000
	           Last 0.0000

    Practically   440155 inf (21)
	         Please 0.2000
	   Practicality 0.0369
	    practically 0.0369
	  Parasitically 0.0369
	            all 0.0369
	    Practicable 0.0369
	              a 0.0369
	     tactically 0.0369
	      Practical 0.0369
	          which 0.0369
	           </S> 0.0059
	              " 0.0000
	              I 0.0000
	              , 0.0000
	              ] 0.0000
	             '' 0.0000
	              A 0.0000
	              ) 0.0000
	              - 0.0000
	              . 0.0000
	             In 0.0000

       Aluudida   440171  12 (28)
	         Alauda 0.7000
	        Almeida 0.0910
	        quality 0.0369
	          udida 0.0369
	          style 0.0369
	         Mudida 0.0369
	        aludida 0.0369
	        iludida 0.0369
	        Aloudia 0.0369
	      Alluaudia 0.0369
	           </S> 0.0059
	        Alcudia 0.0000
	          <UNK> 0.0000
	          world 0.0000
	       American 0.0000
	         public 0.0000
	              - 0.0000
	      following 0.0000
	           same 0.0000
	              ' 0.0000
	            use 0.0000
	          value 0.0000
	      Alaudidae 0.0000
	          whole 0.0000
	           work 0.0000
	              " 0.0000
	           only 0.0000
	          first 0.0000

     constitute   440180   1 (18)
	      community 0.0369
	              a 0.0369
	     constituti 0.0369
	     constituet 0.0369
	              I 0.0369
	              . 0.0369
	    constitutes 0.0369
	              - 0.0369
	             of 0.0369
	             is 0.0369
	             in 0.0369
	     constitute 0.0369
	    constituted 0.0369
	           </S> 0.0369
	     constituta 0.0369
	           site 0.0369
	         system 0.0369
	              , 0.0369

         fainih   440204 inf (29)
	           fine 0.8000
	           fain 0.0369
	         hafnia 0.0369
	         hafnii 0.0369
	       faintish 0.0369
	       fainites 0.0369
	        faining 0.0369
	         farini 0.0369
	         famini 0.0369
	            3rd 0.0369
	          Charm 0.0369
	          faint 0.0369
	              o 0.0369
	          faini 0.0369
	              O 0.0369
	        fininha 0.0369
	         faints 0.0369
	           </S> 0.0059
	             of 0.0000
	              , 0.0000
	              . 0.0000
	            War 0.0000
	          Trade 0.0000
	          final 0.0000
	           Main 0.0000
	           find 0.0000
	             's 0.0000
	              - 0.0000
	          Order 0.0000

              '   440210   1 (17)
	             us 0.0369
	            the 0.0369
	              . 0.0369
	         Center 0.0369
	              I 0.0369
	             's 0.0369
	            cia 0.0369
	             iu 0.0369
	              - 0.0369
	           </S> 0.0369
	   Organization 0.0369
	              ' 0.0369
	              , 0.0369
	             II 0.0369
	            St. 0.0369
	            and 0.0369
	             of 0.0369

         Jerdon   440269   1 (27)
	         Jerdon 0.9000
	            one 0.2000
	              " 0.1813
	          Aedon 0.0369
	         Jorden 0.0369
	              . 0.0369
	           John 0.0369
	         Berdon 0.0369
	           Jero 0.0369
	       Jerudong 0.0369
	           very 0.0369
	           were 0.0369
	         Jerson 0.0369
	              a 0.0059
	              , 0.0000
	            she 0.0000
	              - 0.0000
	         Jordon 0.0000
	           well 0.0000
	             an 0.0000
	              I 0.0000
	            the 0.0000
	         Verdon 0.0000
	           </S> 0.0000
	             he 0.0000
	          <UNK> 0.0000
	              i 0.0000

       observes   440276   3 (28)
	           says 0.8000
	             's 0.1239
	        service 0.0369
	           said 0.0369
	        observe 0.0369
	            say 0.0369
	          other 0.0369
	       reserved 0.0369
	       observes 0.0369
	       observer 0.0369
	      observans 0.0369
	          whole 0.0369
	      observees 0.0369
	       observee 0.0369
	              a 0.0369
	             as 0.0369
	           know 0.0369
	              I 0.0369
	       observed 0.0369
	      observest 0.0369
	         result 0.0369
	            JVC 0.0059
	              ) 0.0000
	              - 0.0000
	              , 0.0000
	     Enterprise 0.0000
	           </S> 0.0000
	              . 0.0000

    j\Iala3-ana   440326 inf (27)
	        vanilla 0.0369
	      education 0.0369
	         senate 0.0369
	      corporate 0.0369
	       Malaysia 0.0369
	       Tasmania 0.0369
	              x 0.0369
	             us 0.0369
	     managerial 0.0369
	     management 0.0369
	       Thailand 0.0369
	            the 0.0059
	              , 0.0000
	         Canada 0.0000
	             an 0.0000
	           many 0.0000
	          place 0.0000
	           time 0.0000
	           your 0.0000
	           </S> 0.0000
	              - 0.0000
	              a 0.0000
	        England 0.0000
	          India 0.0000
	              . 0.0000
	           this 0.0000
	        writing 0.0000

            and   440338   1 (19)
	           aand 0.0369
	             in 0.0369
	             to 0.0369
	            and 0.0369
	              . 0.0369
	             of 0.0369
	              , 0.0369
	              a 0.0369
	            arz 0.0369
	           alba 0.0369
	             us 0.0369
	            any 0.0369
	           </S> 0.0369
	         native 0.0369
	             an 0.0369
	            ant 0.0369
	           andy 0.0369
	              - 0.0369
	           anda 0.0369

        Familx-   440355   1 (23)
	        Familie 0.1000
	         Family 0.1000
	         Famill 0.0369
	             J. 0.0369
	        mailing 0.0369
	              s 0.0369
	        Femilax 0.0369
	         Famila 0.0369
	              - 0.0235
	           </S> 0.0059
	              a 0.0000
	         family 0.0000
	          <UNK> 0.0000
	              I 0.0000
	              ) 0.0000
	           said 0.0000
	              A 0.0000
	              , 0.0000
	              ] 0.0000
	             he 0.0000
	              . 0.0000
	            she 0.0000
	        Familia 0.0000

      ALAUDID.E   440363 inf (15)
	            the 0.0369
	              A 0.0369
	              . 0.0369
	              - 0.0369
	              , 0.0369
	             of 0.0369
	              a 0.0369
	            and 0.0369
	           </S> 0.0369
	              " 0.0369
	           said 0.0369
	          <UNK> 0.0369
	              n 0.0369
	           says 0.0369
	              I 0.0369

              .   440372 inf (8)
	             of 0.0369
	             to 0.0369
	             us 0.0369
	            and 0.0369
	             in 0.0369
	            the 0.0369
	            cia 0.0369
	             iu 0.0369

         Alauda   440390   1 (24)
	         alauda 0.0369
	         Aulaad 0.0369
	          maura 0.0369
	           lava 0.0369
	          Album 0.0369
	         Awards 0.0369
	         Alausa 0.0369
	         Alauna 0.0369
	          Alada 0.0369
	          Aulad 0.0369
	         Alauda 0.0369
	          lauda 0.0369
	              a 0.0369
	         Alaska 0.0369
	           </S> 0.0059
	              / 0.0000
	              A 0.0000
	              ) 0.0000
	              " 0.0000
	              I 0.0000
	              , 0.0000
	              . 0.0000
	              ] 0.0000
	              - 0.0000

      iDVCiisis   440397  17 (25)
	          razae 0.3000
	              - 0.1000
	             is 0.0369
	              ) 0.0369
	       addition 0.0369
	vareSelskap.cgi 0.0369
	              a 0.0369
	              n 0.0369
	        million 0.0369
	           libs 0.0369
	          dists 0.0369
	           this 0.0369
	      configure 0.0369
	          Virus 0.0369
	              I 0.0369
	     install.sh 0.0369
	       arvensis 0.0059
	           </S> 0.0000
	          <UNK> 0.0000
	        gulgula 0.0000
	       japonica 0.0000
	       Arvensis 0.0000
	              , 0.0000
	        arborea 0.0000
	              . 0.0000

              ,   440406   1 (12)
	              ) 0.0369
	             of 0.0369
	              , 0.0369
	              . 0.0369
	            and 0.0369
	              - 0.0369
	            the 0.0369
	          genus 0.0369
	             us 0.0369
	           </S> 0.0369
	            cia 0.0369
	             iu 0.0369

           LiNN   440408 inf (25)
	             pp 0.1857
	              { 0.0369
	   respectively 0.0369
	           LiON 0.0369
	            NiL 0.0369
	            cia 0.0369
	           Pica 0.0369
	          Links 0.0369
	            LNN 0.0369
	           List 0.0369
	              x 0.0369
	          LLiNK 0.0369
	             Li 0.0369
	           LiNK 0.0369
	           LiNa 0.0369
	           with 0.0062
	            the 0.0059
	          which 0.0012
	              i 0.0000
	              e 0.0000
	            too 0.0000
	             or 0.0000
	             iu 0.0000
	             to 0.0000
	             of 0.0000

              .   440412   1 (11)
	             iu 0.0369
	             of 0.0369
	           </S> 0.0369
	            ... 0.0369
	              , 0.0369
	            and 0.0369
	            cia 0.0369
	             us 0.0369
	              . 0.0369
	              - 0.0369
	            the 0.0369

          FOUND   440415 inf (28)
	             To 0.7000
	           This 0.4000
	            OUN 0.0369
	           FOUR 0.0369
	           FNDU 0.0369
	           UODN 0.0369
	           FANG 0.0369
	          FUNDP 0.0369
	       FOXHOUND 0.0369
	       FOGBOUND 0.0369
	            UND 0.0369
	       ZFOUNDRY 0.0369
	           YOUR 0.0369
	          HOUSE 0.0369
	           FOUO 0.0369
	            FUN 0.0369
	           FUND 0.0369
	           </S> 0.0059
	              ) 0.0000
	              - 0.0000
	              ] 0.0000
	              . 0.0000
	              A 0.0000
	              I 0.0000
	              " 0.0000
	            FOR 0.0000
	              / 0.0000
	              , 0.0000

         during   440421   3 (27)
	           </S> 0.2000
	             on 0.1000
	          dring 0.0369
	       drugging 0.0369
	       drudging 0.0369
	         dubius 0.0369
	          uring 0.0369
	              n 0.0369
	             at 0.0369
	       duringly 0.0369
	         durino 0.0369
	          bring 0.0369
	          doing 0.0369
	             of 0.0369
	         daring 0.0369
	          durin 0.0369
	         during 0.0369
	              - 0.0059
	             is 0.0000
	              ) 0.0000
	              : 0.0000
	              . 0.0000
	              a 0.0000
	          <UNK> 0.0000
	              A 0.0000
	              , 0.0000
	             in 0.0000

        nesting   440478   1 (20)
	        meeting 0.0369
	        netting 0.0369
	         nestin 0.0369
	        Listing 0.0369
	        nesting 0.0369
	        nursing 0.0369
	       nestings 0.0369
	              - 0.0369
	        nestigi 0.0369
	              I 0.0369
	        listing 0.0369
	            and 0.0369
	              a 0.0369
	              . 0.0369
	       Swingers 0.0369
	              , 0.0369
	            the 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000

            70°   440522   2 (23)
	              I 0.0418
	              i 0.0369
	              ° 0.0369
	           70.5 0.0369
	             10 0.0369
	              0 0.0369
	            cia 0.0369
	             us 0.0369
	             20 0.0369
	            270 0.0369
	             iu 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	            and 0.0000
	              , 0.0000
	             of 0.0000
	      ChangeLog 0.0000
	              ] 0.0000
	              . 0.0000
	            the 0.0000
	              ) 0.0000

              ,   440525   1 (12)
	              ) 0.0369
	             of 0.0369
	            and 0.0369
	              . 0.0369
	          <UNK> 0.0369
	              , 0.0369
	              - 0.0369
	             iu 0.0369
	            the 0.0369
	             us 0.0369
	           </S> 0.0369
	            cia 0.0369

      sparingly   440560   1 (26)
	             be 0.0369
	              I 0.0369
	     aspiringly 0.0369
	             go 0.0369
	      sparingly 0.0369
	    unsparingly 0.0369
	             us 0.0369
	        sparing 0.0369
	     sparkingly 0.0369
	      searingly 0.0369
	      soaringly 0.0369
	     sparringly 0.0369
	    desparingly 0.0369
	      available 0.0369
	        springs 0.0369
	          still 0.0369
	            not 0.0369
	              . 0.0059
	         family 0.0000
	              - 0.0000
	          about 0.0000
	              , 0.0000
	           such 0.0000
	           </S> 0.0000
	             of 0.0000
	              a 0.0000

          South   440719   1 (29)
	          South 0.0369
	              " 0.0369
	          Shuto 0.0369
	        Southam 0.0369
	              I 0.0369
	           Sout 0.0369
	            pre 0.0369
	          Sitta 0.0369
	         Souths 0.0369
	          Souto 0.0369
	           well 0.0369
	           </S> 0.0369
	          State 0.0369
	            but 0.0369
	              s 0.0369
	            and 0.0369
	          <UNK> 0.0369
	        SoSouth 0.0369
	          Shout 0.0369
	              a 0.0369
	              ( 0.0369
	          Souta 0.0369
	           self 0.0369
	           Site 0.0369
	            the 0.0059
	          which 0.0012
	              i 0.0000
	           your 0.0000
	             or 0.0000

      IMongolia   440730  15 (27)
	           Asia 0.3000
	          coast 0.0667
	      Mongolian 0.0369
	       mongolia 0.0369
	      Mongoolia 0.0369
	        sources 0.0369
	              I 0.0369
	          India 0.0369
	       Mongolie 0.0369
	         online 0.0369
	      Mongoliae 0.0369
	           only 0.0369
	      Hmongolia 0.0369
	             of 0.0059
	              a 0.0000
	              . 0.0000
	              - 0.0000
	       Mongolia 0.0000
	              ) 0.0000
	           side 0.0000
	              , 0.0000
	         London 0.0000
	        England 0.0000
	           </S> 0.0000
	         Europe 0.0000
	             is 0.0000
	          Asian 0.0000

      Turkestan   440741   1 (25)
	              a 0.0369
	            and 0.0369
	     Turkestani 0.0369
	          women 0.0369
	      Turkestan 0.0369
	      Turkistan 0.0369
	              I 0.0369
	          <UNK> 0.0369
	       services 0.0369
	         prices 0.0369
	           </S> 0.0369
	          white 0.0369
	     Tuerkistan 0.0369
	              " 0.0369
	           work 0.0369
	         Turkes 0.0369
	         photos 0.0369
	             NY 0.0369
	            the 0.0059
	           just 0.0000
	          these 0.0000
	          which 0.0000
	              i 0.0000
	           that 0.0000
	             or 0.0000

             In   440763   1 (18)
	             In 0.5538
	             It 0.0900
	             If 0.0570
	              I 0.0418
	              a 0.0369
	             iu 0.0369
	            cia 0.0369
	            Inn 0.0369
	             us 0.0369
	            Inc 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              , 0.0000
	              ) 0.0000
	              ] 0.0000
	              . 0.0000

     Throughout   441022 inf (24)
	              A 0.1000
	              I 0.1000
	   Throughabout 0.0369
	            and 0.0369
	   Thoroughwort 0.0369
	     throughput 0.0369
	              a 0.0369
	     throughout 0.0369
	    Thoroughput 0.0369
	     Throughput 0.0369
	        Through 0.0369
	            the 0.0369
	              s 0.0369
	            get 0.0369
	           </S> 0.0059
	              . 0.0000
	              " 0.0000
	          There 0.0000
	              - 0.0000
	            The 0.0000
	              ) 0.0000
	              , 0.0000
	           That 0.0000
	              ] 0.0000

              -   441067   6 (12)
	            cia 0.0369
	            --- 0.0369
	             us 0.0369
	             iu 0.0369
	           </S> 0.0059
	            and 0.0000
	              . 0.0000
	             On 0.0000
	              - 0.0000
	              , 0.0000
	            the 0.0000
	             of 0.0000

    \^excepting   441110 inf (30)
	         others 0.3000
	       terrible 0.0369
	        service 0.0369
	              z 0.0369
	              . 0.0369
	     excerpting 0.0369
	       children 0.0369
	            and 0.0369
	    unexcepting 0.0369
	         people 0.0369
	    participate 0.0369
	        tedious 0.0369
	     trademarks 0.0369
	        vicious 0.0369
	            the 0.0059
	              I 0.0000
	             is 0.0000
	            was 0.0000
	      excepting 0.0000
	    information 0.0000
	              - 0.0000
	           </S> 0.0000
	           then 0.0000
	       services 0.0000
	            not 0.0000
	              , 0.0000
	             to 0.0000
	     precepting 0.0000
	              a 0.0000
	            one 0.0000

           have   441195   2 (22)
	            had 0.7000
	           have 0.1000
	           lava 0.0369
	          haves 0.0369
	              I 0.0369
	           hava 0.0369
	            hav 0.0369
	           sala 0.0369
	           Baya 0.0369
	          haave 0.0369
	          heave 0.0369
	           havn 0.0369
	              a 0.0369
	           hard 0.0369
	          haven 0.0369
	           </S> 0.0059
	              . 0.0000
	              , 0.0000
	          Books 0.0000
	            has 0.0000
	              - 0.0000
	              " 0.0000

             A.   441256 inf (24)
	             As 0.7000
	              " 0.1813
	              . 0.0369
	              C 0.0369
	              a 0.0059
	              - 0.0000
	             an 0.0000
	              I 0.0000
	            cia 0.0000
	            the 0.0000
	            And 0.0000
	           </S> 0.0000
	             AA 0.0000
	          <UNK> 0.0000
	             AM 0.0000
	             iu 0.0000
	              , 0.0000
	            Add 0.0000
	           well 0.0000
	            AAA 0.0000
	             At 0.0000
	              : 0.0000
	             us 0.0000
	            All 0.0000

       dulcivox   441259 inf (32)
	          dulci 0.0369
	           name 0.0369
	          whole 0.0369
	       Gonzales 0.0369
	        mulcivo 0.0369
	           know 0.0369
	         dulcis 0.0369
	             as 0.0369
	             do 0.0369
	       dulcitol 0.0369
	       Multivox 0.0369
	              a 0.0369
	         dulcio 0.0369
	            did 0.0369
	        Galasso 0.0369
	      addresses 0.0369
	       dulcioli 0.0369
	       dulciolo 0.0369
	        product 0.0369
	        dulcior 0.0369
	         result 0.0369
	           does 0.0369
	           </S> 0.0059
	              A 0.0000
	              . 0.0000
	              I 0.0000
	              - 0.0000
	            Yes 0.0000
	              ( 0.0000
	              , 0.0000
	          <UNK> 0.0000
	             No 0.0000

             A.   441269   1 (22)
	              A 0.0369
	             AM 0.0369
	           </S> 0.0369
	            All 0.0369
	             M. 0.0369
	           took 0.0369
	             MD 0.0369
	              a 0.0369
	              " 0.0369
	             AA 0.0369
	              I 0.0369
	            and 0.0369
	             As 0.0369
	          <UNK> 0.0369
	             J. 0.0369
	             A. 0.0369
	            the 0.0059
	          which 0.0012
	             to 0.0000
	             or 0.0000
	              i 0.0000
	             of 0.0000

    caiitarclla   441285 inf (29)
	        Galasso 0.0369
	            all 0.0369
	          alert 0.0369
	          click 0.0369
	       Gonzales 0.0369
	         Stella 0.0369
	        Garulli 0.0369
	              a 0.0369
	       Mitchell 0.0369
	            the 0.0369
	    Paccagnella 0.0369
	        Maritan 0.0369
	        details 0.0369
	          Gupta 0.0369
	        contact 0.0369
	             it 0.0369
	             at 0.0369
	           </S> 0.0059
	              . 0.0000
	            and 0.0000
	          Clark 0.0000
	              , 0.0000
	              ( 0.0000
	              - 0.0000
	             No 0.0000
	            Yes 0.0000
	              I 0.0000
	          <UNK> 0.0000
	              A 0.0000

             A.   441298   1 (21)
	              A 0.0369
	             AM 0.0369
	           </S> 0.0369
	            All 0.0369
	             M. 0.0369
	             MD 0.0369
	              a 0.0369
	              " 0.0369
	             AA 0.0369
	              I 0.0369
	            and 0.0369
	             As 0.0369
	          <UNK> 0.0369
	             J. 0.0369
	             A. 0.0369
	            the 0.0059
	          which 0.0012
	             to 0.0000
	             or 0.0000
	              i 0.0000
	             of 0.0000

         liopus   441301 inf (34)
	         lippus 0.0369
	        lophius 0.0369
	      Melliopus 0.0369
	        Galasso 0.0369
	            the 0.0369
	         licous 0.0369
	         pilous 0.0369
	        Oriolus 0.0369
	        iliacus 0.0369
	        Leiopus 0.0369
	           opus 0.0369
	          Gupta 0.0369
	          lopus 0.0369
	      Scoliopus 0.0369
	              a 0.0369
	       Gonzales 0.0369
	           lius 0.0369
	           your 0.0369
	          first 0.0369
	          would 0.0369
	           lios 0.0369
	          copus 0.0369
	           </S> 0.0059
	              . 0.0000
	              ( 0.0000
	              I 0.0000
	        pilosus 0.0000
	              A 0.0000
	             No 0.0000
	            and 0.0000
	            Yes 0.0000
	              , 0.0000
	              - 0.0000
	          <UNK> 0.0000

             A.   441309   1 (21)
	              A 0.0369
	             AM 0.0369
	           </S> 0.0369
	            All 0.0369
	             M. 0.0369
	             MD 0.0369
	              a 0.0369
	              " 0.0369
	             AA 0.0369
	              I 0.0369
	            and 0.0369
	             As 0.0369
	          <UNK> 0.0369
	             J. 0.0369
	             A. 0.0369
	            the 0.0059
	          which 0.0012
	             to 0.0000
	             or 0.0000
	              i 0.0000
	             of 0.0000

     blakistoni   441312 inf (27)
	       Gonzales 0.0369
	   blacklistons 0.0369
	        Galasso 0.0369
	        listoni 0.0369
	              a 0.0369
	        bastoni 0.0369
	     Blakistons 0.0369
	      bankiston 0.0369
	        bakiton 0.0369
	        details 0.0369
	          first 0.0369
	          Gupta 0.0369
	    Blakistonia 0.0369
	      Blakiston 0.0369
	           also 0.0369
	            the 0.0369
	           </S> 0.0059
	              A 0.0000
	              ( 0.0000
	              - 0.0000
	          <UNK> 0.0000
	            and 0.0000
	              I 0.0000
	            Yes 0.0000
	             No 0.0000
	              , 0.0000
	              . 0.0000

             A.   441326   1 (21)
	              A 0.0369
	             AM 0.0369
	           </S> 0.0369
	            All 0.0369
	             M. 0.0369
	             MD 0.0369
	              a 0.0369
	              " 0.0369
	             AA 0.0369
	              I 0.0369
	            and 0.0369
	             As 0.0369
	          <UNK> 0.0369
	             J. 0.0369
	             A. 0.0369
	            the 0.0059
	          which 0.0012
	             to 0.0000
	             or 0.0000
	              i 0.0000
	             of 0.0000

      giilgiila   441329 inf (24)
	       Williams 0.7000
	           will 0.0369
	          Gupta 0.0369
	         Diallo 0.0369
	    Paccagnella 0.0369
	            get 0.0369
	        details 0.0369
	       Gonzales 0.0369
	        Galasso 0.0369
	            the 0.0369
	       gingilla 0.0369
	      giuggiola 0.0369
	              a 0.0369
	           </S> 0.0059
	              , 0.0000
	            Yes 0.0000
	          <UNK> 0.0000
	              . 0.0000
	             No 0.0000
	            and 0.0000
	              - 0.0000
	              A 0.0000
	              ( 0.0000
	              I 0.0000

             A.   441340   1 (21)
	              A 0.0369
	             AM 0.0369
	           </S> 0.0369
	            All 0.0369
	             M. 0.0369
	             MD 0.0369
	              a 0.0369
	              " 0.0369
	             AA 0.0369
	              I 0.0369
	            and 0.0369
	             As 0.0369
	          <UNK> 0.0369
	             J. 0.0369
	             A. 0.0369
	            the 0.0059
	          which 0.0012
	             to 0.0000
	             or 0.0000
	              i 0.0000
	             of 0.0000

        axlivox   441357 inf (33)
	            and 0.0970
	           aivo 0.0369
	          Olivo 0.0369
	        altivos 0.0369
	              a 0.0369
	          Vivox 0.0369
	         altivo 0.0369
	        allievo 0.0369
	        vallivo 0.0369
	        Galasso 0.0369
	           also 0.0369
	         axlike 0.0369
	         alivio 0.0369
	            all 0.0369
	        activos 0.0369
	       Gonzales 0.0369
	           livo 0.0369
	          Gupta 0.0369
	          click 0.0369
	          axlir 0.0369
	         arxivo 0.0369
	           alio 0.0369
	            the 0.0369
	           </S> 0.0059
	            Yes 0.0000
	              - 0.0000
	              I 0.0000
	             No 0.0000
	              A 0.0000
	          <UNK> 0.0000
	              ( 0.0000
	              , 0.0000
	              . 0.0000

             A.   441366   1 (21)
	              A 0.0369
	             AM 0.0369
	           </S> 0.0369
	            All 0.0369
	             M. 0.0369
	             MD 0.0369
	              a 0.0369
	              " 0.0369
	             AA 0.0369
	              I 0.0369
	            and 0.0369
	             As 0.0369
	          <UNK> 0.0369
	             J. 0.0369
	             A. 0.0369
	            the 0.0059
	          which 0.0012
	             to 0.0000
	             or 0.0000
	              i 0.0000
	             of 0.0000

      ivai/crsi   441369 inf (22)
	      Rivadossi 0.0369
	              a 0.0369
	             is 0.0369
	       vaikersi 0.0369
	            the 0.0369
	          first 0.0369
	         Garvin 0.0369
	       vaincrai 0.0369
	          First 0.0369
	           </S> 0.0059
	          <UNK> 0.0000
	            Yes 0.0000
	              4 0.0000
	              . 0.0000
	              - 0.0000
	              I 0.0000
	              ( 0.0000
	         Harris 0.0000
	              A 0.0000
	            and 0.0000
	              , 0.0000
	             No 0.0000

           arid   441380   1 (29)
	            and 0.0369
	           arin 0.0369
	           aria 0.0369
	              & 0.0369
	              " 0.0369
	           ardi 0.0369
	             MD 0.0369
	              I 0.0369
	            are 0.0369
	           arid 0.0369
	            arz 0.0369
	           alba 0.0369
	            cia 0.0369
	              A 0.0369
	          David 0.0369
	            ari 0.0369
	           </S> 0.0369
	        Michael 0.0369
	          arida 0.0369
	          aride 0.0369
	          <UNK> 0.0369
	           aird 0.0369
	           with 0.0062
	            the 0.0059
	          which 0.0012
	              i 0.0000
	            see 0.0000
	             or 0.0000
	           said 0.0000

             A.   441385 inf (21)
	              I 0.0369
	             AM 0.0369
	             us 0.0369
	            AAA 0.0369
	            All 0.0369
	             As 0.0369
	             At 0.0369
	             iu 0.0369
	             AA 0.0369
	            cia 0.0369
	            And 0.0369
	            and 0.0059
	            the 0.0000
	           </S> 0.0000
	        regions 0.0000
	              a 0.0000
	              , 0.0000
	             to 0.0000
	              . 0.0000
	             of 0.0000
	              - 0.0000

           sala   441388   4 (25)
	           same 0.5000
	            sal 0.3000
	            say 0.1000
	           sala 0.0369
	           lava 0.0369
	          salaa 0.0369
	           sall 0.0369
	           sals 0.0369
	          salad 0.0369
	          salam 0.0369
	          salal 0.0369
	           </S> 0.0059
	          <UNK> 0.0000
	              , 0.0000
	           alba 0.0000
	           sale 0.0000
	             No 0.0000
	              - 0.0000
	           salt 0.0000
	              I 0.0000
	              A 0.0000
	            Yes 0.0000
	              ( 0.0000
	           said 0.0000
	              . 0.0000

            but   441395   1 (21)
	              , 0.0369
	              . 0.0369
	              - 0.0369
	            but 0.0369
	             bu 0.0369
	              e 0.0369
	           buts 0.0369
	            tub 0.0369
	             iu 0.0369
	            cia 0.0369
	            buy 0.0369
	            bus 0.0369
	              a 0.0369
	             by 0.0369
	             be 0.0369
	           butt 0.0369
	             us 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000
	              " 0.0000

    intergrades   441407   1 (20)
	    intergrades 0.8000
	     intergrade 0.2000
	      different 0.1000
	              i 0.1000
	             of 0.0002
	   integrerades 0.0000
	          other 0.0000
	      important 0.0000
	    intergraded 0.0000
	         things 0.0000
	              , 0.0000
	           </S> 0.0000
	    information 0.0000
	              . 0.0000
	              a 0.0000
	         people 0.0000
	              - 0.0000
	    integrardes 0.0000
	              I 0.0000
	          items 0.0000

          exist   441419   2 (21)
	            and 0.1000
	          first 0.0369
	            the 0.0369
	             us 0.0369
	              a 0.0369
	           List 0.0369
	          exits 0.0369
	           them 0.0369
	              - 0.0369
	           list 0.0369
	         exists 0.0369
	              I 0.0369
	           east 0.0369
	         things 0.0369
	          exist 0.0369
	         existe 0.0369
	           with 0.0059
	              , 0.0000
	              . 0.0000
	           </S> 0.0000
	        between 0.0000

 Ornithologists   441430   1 (25)
	          women 0.0369
	 Ornithologists 0.0369
	   Ornithologie 0.0369
	 ornithologists 0.0369
	  Ornithologist 0.0369
	            the 0.0059
	              , 0.0000
	            all 0.0000
	          those 0.0000
	            you 0.0000
	           many 0.0000
	              i 0.0000
	              : 0.0000
	              I 0.0000
	             we 0.0000
	              . 0.0000
	             is 0.0000
	              a 0.0000
	           with 0.0000
	           were 0.0000
	           this 0.0000
	           they 0.0000
	           </S> 0.0000
	          these 0.0000
	         people 0.0000

      generally   441445   2 (26)
	             is 0.8000
	        general 0.0369
	       generale 0.0369
	     generalled 0.0369
	         manual 0.0369
	      suppliers 0.0369
	             we 0.0369
	              a 0.0369
	       generall 0.0369
	         people 0.0369
	            you 0.0369
	            get 0.0369
	            the 0.0369
	         really 0.0369
	      generally 0.0369
	      generalcy 0.0369
	      generalty 0.0369
	              I 0.0369
	        General 0.0369
	              ' 0.0059
	              . 0.0000
	           </S> 0.0000
	            are 0.0000
	              - 0.0000
	              , 0.0000
	          Union 0.0000

            Our   441512  17 (24)
	              I 0.0418
	             Ou 0.0369
	            Oui 0.0369
	           Ours 0.0369
	           Ouro 0.0369
	            Oru 0.0369
	             iu 0.0369
	            arz 0.0369
	            our 0.0369
	             us 0.0369
	            out 0.0369
	              a 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              , 0.0000
	              ] 0.0000
	            Out 0.0000
	            Our 0.0000
	              / 0.0000
	              . 0.0000
	            but 0.0000
	              ) 0.0000

            Sky   441516  20 (30)
	            one 0.6000
	             sw 0.1000
	              E 0.0369
	             Sk 0.0369
	              T 0.0369
	           Skye 0.0369
	        install 0.0369
	            Pyi 0.0369
	            cia 0.0369
	          <UNK> 0.0369
	              ) 0.0369
	           Skyy 0.0369
	           know 0.0369
	            Ska 0.0369
	              . 0.0369
	            Syk 0.0369
	              e 0.0369
	          Money 0.0369
	          Price 0.0059
	            See 0.0000
	            Sky 0.0000
	        Privacy 0.0000
	           </S> 0.0000
	            DVD 0.0000
	  International 0.0000
	             my 0.0000
	              " 0.0000
	            Ski 0.0000
	             by 0.0000
	             us 0.0000

              -   441519   6 (14)
	           Fire 0.0369
	            cia 0.0369
	             iu 0.0369
	             us 0.0369
	           </S> 0.0059
	              : 0.0000
	              , 0.0000
	            the 0.0000
	             is 0.0000
	             Is 0.0000
	            and 0.0000
	             of 0.0000
	              . 0.0000
	              - 0.0000

         golden   441565  11 (20)
	         online 0.1833
	          given 0.1500
	         golder 0.0369
	        goldens 0.0369
	         gondel 0.0369
	              m 0.0369
	         golded 0.0369
	        goldene 0.0369
	          golde 0.0369
	             of 0.0059
	              - 0.0000
	             in 0.0000
	           </S> 0.0000
	            are 0.0000
	           good 0.0000
	              , 0.0000
	              . 0.0000
	              a 0.0000
	              I 0.0000
	         golden 0.0000

        centres   441593   1 (25)
	        centrex 0.0369
	           Back 0.0369
	              I 0.0369
	        control 0.0369
	      attention 0.0369
	        cinerea 0.0369
	        central 0.0369
	        centers 0.0369
	        ability 0.0369
	         Center 0.0369
	              a 0.0369
	        centres 0.0369
	         centre 0.0369
	        centred 0.0369
	       centreso 0.0369
	       centresi 0.0369
	         centrs 0.0369
	      reference 0.0369
	        contact 0.0369
	           view 0.0369
	              - 0.0059
	              . 0.0000
	          brown 0.0000
	           </S> 0.0000
	              , 0.0000

          edges   441619   1 (23)
	          edges 0.0369
	           edge 0.0369
	          pages 0.0369
	         edgest 0.0369
	              . 0.0369
	         gedges 0.0369
	         sedges 0.0369
	              , 0.0369
	              - 0.0369
	          Pages 0.0369
	          Pales 0.0369
	          deges 0.0369
	         Hedges 0.0369
	              I 0.0369
	          edged 0.0369
	         edgers 0.0369
	           even 0.0369
	              a 0.0369
	          edger 0.0369
	           </S> 0.0059
	              } 0.0000
	              " 0.0000
	              ) 0.0000

          paler   441649  18 (31)
	              - 0.1000
	           page 0.0369
	          parva 0.0369
	         palere 0.0369
	          paleo 0.0369
	          pales 0.0369
	          Sales 0.0369
	          place 0.0369
	          Pales 0.0369
	           sala 0.0369
	         palear 0.0369
	        palermo 0.0369
	              I 0.0369
	          palre 0.0369
	           part 0.0369
	          plaer 0.0369
	              . 0.0059
	              ) 0.0000
	          black 0.0000
	           </S> 0.0000
	            red 0.0000
	              ; 0.0000
	          paler 0.0000
	            are 0.0000
	              , 0.0000
	              " 0.0000
	          white 0.0000
	            and 0.0000
	          <UNK> 0.0000
	           pale 0.0000
	              a 0.0000

            the   441657   1 (18)
	              I 0.0369
	              . 0.0369
	            teh 0.0369
	              , 0.0369
	           them 0.0369
	            cia 0.0369
	             iu 0.0369
	             us 0.0369
	              a 0.0369
	            the 0.0369
	           thee 0.0369
	           they 0.0369
	            thy 0.0369
	            tho 0.0369
	           </S> 0.0059
	              " 0.0000
	              } 0.0000
	              ) 0.0000

              -   441666   1 (17)
	              - 0.2000
	        surface 0.1000
	              s 0.0369
	             -- 0.0369
	            cia 0.0369
	             's 0.0369
	          space 0.0059
	            and 0.0000
	             of 0.0000
	           edge 0.0000
	             us 0.0000
	           </S> 0.0000
	            the 0.0000
	              , 0.0000
	              . 0.0000
	       membrane 0.0000
	          world 0.0000

              -   441677   1 (14)
	              - 0.5250
	            all 0.3500
	    information 0.0369
	            cia 0.0369
	             iu 0.0369
	              . 0.0059
	           </S> 0.0000
	             -1 0.0000
	             of 0.0000
	            and 0.0000
	              , 0.0000
	             -- 0.0000
	             us 0.0000
	            the 0.0000

       blackish   441717  20 (32)
	      blackfish 0.5000
	         blacky 0.2000
	       Blackish 0.1000
	       blackism 0.0369
	         losing 0.0369
	            red 0.0369
	              a 0.0369
	            and 0.0369
	        winning 0.0369
	            hot 0.0369
	        pricing 0.0369
	          minor 0.0369
	         search 0.0369
	     blackishly 0.0369
	              , 0.0369
	          white 0.0369
	              . 0.0369
	            few 0.0097
	           </S> 0.0059
	          major 0.0000
	          black 0.0000
	         couple 0.0000
	              - 0.0000
	         strong 0.0000
	       business 0.0000
	       brackish 0.0000
	        special 0.0000
	          place 0.0000
	    significant 0.0000
	       blackish 0.0000
	            new 0.0000
	          small 0.0000

         streak   441726   1 (21)
	         streak 0.9333
	        streaky 0.0369
	              a 0.0369
	          based 0.0369
	             of 0.0369
	              I 0.0369
	         impact 0.0369
	         effect 0.0369
	         strake 0.0369
	         stream 0.0369
	         Street 0.0369
	          error 0.0369
	          store 0.0369
	         streap 0.0369
	          great 0.0369
	              - 0.0059
	              . 0.0000
	        streaks 0.0000
	              , 0.0000
	          brown 0.0000
	           </S> 0.0000

            the   441751   1 (17)
	            the 0.0369
	              a 0.0369
	            thy 0.0369
	            tho 0.0369
	             us 0.0369
	            teh 0.0369
	              . 0.0369
	              I 0.0369
	           them 0.0369
	           they 0.0369
	            cia 0.0369
	             iu 0.0369
	              , 0.0369
	           thee 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000

        sccuiid   441755 inf (32)
	         suicid 0.4000
	            the 0.0369
	        peacock 0.0369
	         scucii 0.0369
	           cuii 0.0369
	          cuiis 0.0369
	         siculi 0.0369
	         scurid 0.0369
	           text 0.0369
	          white 0.0369
	        scoliid 0.0369
	          eccui 0.0369
	         sciuri 0.0369
	          scuid 0.0369
	        scuirid 0.0369
	        securis 0.0369
	           </S> 0.0059
	           same 0.0037
	      following 0.0000
	        process 0.0000
	         school 0.0000
	           cuid 0.0000
	           site 0.0000
	          scudi 0.0000
	        sciurid 0.0000
	          <UNK> 0.0000
	          first 0.0000
	              - 0.0000
	            top 0.0000
	              ' 0.0000
	         system 0.0000
	              " 0.0000

        feather   441763   1 (17)
	        feather 0.0369
	           </S> 0.0369
	              - 0.0369
	       feathers 0.0369
	         father 0.0369
	        farther 0.0369
	            and 0.0369
	       feathery 0.0369
	          Other 0.0369
	          other 0.0369
	              , 0.0369
	              I 0.0369
	             of 0.0369
	        another 0.0369
	             is 0.0369
	              . 0.0369
	              a 0.0369

          white   441771  13 (23)
	          White 0.8000
	           sits 0.1000
	          while 0.1000
	          whits 0.0369
	          withe 0.0369
	           whit 0.0369
	          lying 0.0369
	          whith 0.0369
	         whites 0.0369
	         whiter 0.0369
	         whitei 0.0369
	              , 0.0059
	              . 0.0000
	           </S> 0.0000
	         pillow 0.0000
	          which 0.0000
	              a 0.0000
	         duster 0.0000
	              I 0.0000
	            bed 0.0000
	            boa 0.0000
	          white 0.0000
	              - 0.0000

         inider   441801  13 (28)
	         snider 0.3000
	              . 0.0504
	          Items 0.0369
	            Buy 0.0369
	         indier 0.0369
	         indire 0.0369
	              , 0.0369
	     motorcycle 0.0369
	       Miniderm 0.0369
	         gnider 0.0369
	            QML 0.0369
	           </S> 0.0059
	              I 0.0000
	              - 0.0000
	              A 0.0000
	          inder 0.0000
	         Snider 0.0000
	              a 0.0000
	              : 0.0000
	              " 0.0000
	        insider 0.0000
	          Video 0.0000
	            The 0.0000
	         United 0.0000
	          under 0.0000
	              [ 0.0000
	          <UNK> 0.0000
	            the 0.0000

          parts   441808   1 (21)
	          parts 0.0369
	              a 0.0369
	              : 0.0369
	         paarts 0.0369
	              , 0.0369
	          parte 0.0369
	              I 0.0369
	         aparts 0.0369
	         partes 0.0369
	         partsi 0.0369
	           past 0.0369
	          Parus 0.0369
	          Pales 0.0369
	          party 0.0369
	          parva 0.0369
	           part 0.0369
	          prats 0.0369
	              - 0.0369
	           </S> 0.0369
	              . 0.0369
	          pages 0.0369

        buffish   441814   1 (24)
	        buffins 0.0369
	            RHA 0.0369
	          buffi 0.0369
	      directory 0.0369
	        huffish 0.0369
	        buffish 0.0369
	              A 0.0369
	        bugfish 0.0369
	        burfish 0.0369
	            off 0.0369
	           toll 0.0369
	         uffish 0.0369
	             of 0.0059
	           </S> 0.0000
	              - 0.0000
	            but 0.0000
	              . 0.0000
	              : 0.0000
	             in 0.0000
	         before 0.0000
	              a 0.0000
	              , 0.0000
	              I 0.0000
	          being 0.0000

          witli   441850  21 (28)
	              . 0.2000
	           wlit 0.0369
	         within 0.0369
	         witali 0.0369
	              I 0.0369
	       witlings 0.0369
	       twitling 0.0369
	          witai 0.0369
	           witi 0.0369
	          wolfi 0.0369
	          Sitta 0.0369
	           wilt 0.0369
	             us 0.0369
	           will 0.0369
	        witling 0.0369
	          twill 0.0369
	          Titli 0.0369
	          ritli 0.0369
	          citli 0.0369
	           wili 0.0369
	           with 0.0059
	         across 0.0000
	            the 0.0000
	           </S> 0.0000
	              - 0.0000
	              , 0.0000
	             by 0.0000
	              a 0.0000

l:)hickish-br(iwu   441856 inf (18)
	            his 0.6000
	              X 0.0369
	          sucks 0.0369
	              ) 0.0369
	        reddish 0.0369
	          light 0.0369
	       brownish 0.0369
	             is 0.0369
	              - 0.0369
	              , 0.0369
	              . 0.0369
	          white 0.0369
	            the 0.0059
	           this 0.0000
	          which 0.0000
	           tlie 0.0000
	              a 0.0000
	           </S> 0.0000

             on   441874   1 (15)
	            ono 0.0369
	             us 0.0369
	             no 0.0369
	             of 0.0369
	            oon 0.0369
	             to 0.0369
	            the 0.0369
	             iu 0.0369
	            cia 0.0369
	            ons 0.0369
	            onn 0.0369
	             on 0.0369
	            one 0.0369
	             or 0.0369
	            and 0.0369

           tlie   441877  10 (31)
	         outlie 0.0369
	           deep 0.0369
	         breast 0.0369
	          tliet 0.0369
	           teil 0.0369
	         tlieta 0.0369
	         facial 0.0369
	          talie 0.0369
	              i 0.0369
	            the 0.0059
	            tle 0.0000
	             my 0.0000
	            lie 0.0000
	           teie 0.0000
	              , 0.0000
	              . 0.0000
	              a 0.0000
	            his 0.0000
	           this 0.0000
	            tie 0.0000
	           time 0.0000
	           alba 0.0000
	           </S> 0.0000
	           Clie 0.0000
	              - 0.0000
	           thie 0.0000
	           tile 0.0000
	            cia 0.0000
	             iu 0.0000
	           trie 0.0000
	        January 0.0000

         throat   441882   2 (25)
	          three 0.9000
	        throats 0.0369
	              I 0.0369
	          hrota 0.0369
	   augmentation 0.0369
	          torax 0.0369
	          torah 0.0369
	   rejuvenation 0.0369
	        through 0.0369
	              1 0.0369
	         threat 0.0369
	         throat 0.0369
	       mountain 0.0369
	           that 0.0369
	           site 0.0369
	        throaty 0.0369
	              a 0.0369
	             22 0.0369
	          <UNK> 0.0059
	           same 0.0000
	           </S> 0.0000
	              . 0.0000
	          other 0.0000
	              - 0.0000
	              , 0.0000

           bill   441909   1 (22)
	            bil 0.0369
	              a 0.0369
	              , 0.0369
	           bild 0.0369
	           bile 0.0369
	           bili 0.0369
	           will 0.0369
	          bills 0.0369
	          billy 0.0369
	            big 0.0369
	              I 0.0369
	              . 0.0369
	           bill 0.0369
	            cia 0.0369
	           sala 0.0369
	           Pica 0.0369
	           file 0.0369
	            and 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000
	              " 0.0000

           dark   441914   1 (26)
	           dark 0.6000
	           drak 0.0369
	           drka 0.0369
	            arz 0.0369
	           lava 0.0369
	           sala 0.0369
	           dare 0.0369
	           darn 0.0369
	            dar 0.0369
	              } 0.0369
	          darks 0.0369
	          darky 0.0369
	              . 0.0059
	           </S> 0.0000
	            day 0.0000
	              ' 0.0000
	           date 0.0000
	              a 0.0000
	              , 0.0000
	            and 0.0000
	           data 0.0000
	              - 0.0000
	             to 0.0000
	              ( 0.0000
	           days 0.0000
	              I 0.0000

           feet   441946   1 (23)
	              . 0.0369
	           been 0.0369
	           fete 0.0369
	              a 0.0369
	              I 0.0369
	           feel 0.0369
	           fees 0.0369
	          feest 0.0369
	           need 0.0369
	              , 0.0369
	           feet 0.0369
	           face 0.0369
	            fee 0.0369
	           free 0.0369
	         feetje 0.0369
	           fett 0.0369
	          feets 0.0369
	              - 0.0369
	            fet 0.0369
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	              } 0.0000

              j   441951 inf (25)
	       shoulder 0.0369
	          right 0.0369
	             ij 0.0369
	             Dj 0.0369
	             ja 0.0369
	             je 0.0369
	             jp 0.0369
	            cia 0.0369
	             iu 0.0369
	          state 0.0369
	           line 0.0369
	              } 0.0369
	              . 0.0059
	             dj 0.0000
	              , 0.0000
	             of 0.0000
	          under 0.0000
	             to 0.0000
	              - 0.0000
	           </S> 0.0000
	            and 0.0000
	             us 0.0000
	            the 0.0000
	           high 0.0000
	          water 0.0000

              -   441952   1 (17)
	              - 0.7645
	              ) 0.2018
	             -1 0.0369
	           ---- 0.0369
	            cia 0.0369
	             iu 0.0369
	           </S> 0.0059
	             -- 0.0000
	            and 0.0000
	              . 0.0000
	              k 0.0000
	            the 0.0000
	             of 0.0000
	          <UNK> 0.0000
	              = 0.0000
	              , 0.0000
	             us 0.0000

       ellowish   441953 inf (25)
	      Yellowish 0.8000
	      yellowish 0.1000
	      mellowish 0.0369
	           SIAM 0.0369
	           IEEE 0.0369
	           LECT 0.0369
	          which 0.0369
	           with 0.0369
	              s 0.0369
	             us 0.0369
	           list 0.0369
	              - 0.0079
	           </S> 0.0059
	          <UNK> 0.0000
	              I 0.0000
	             of 0.0000
	              ) 0.0000
	              . 0.0000
	             in 0.0000
	             to 0.0000
	            the 0.0000
	              a 0.0000
	             rw 0.0000
	             up 0.0000
	              A 0.0000

              -   441961   1 (12)
	              . 0.0369
	              , 0.0369
	              s 0.0369
	            and 0.0369
	             -- 0.0369
	             J. 0.0369
	             us 0.0369
	             of 0.0369
	              - 0.0369
	           </S> 0.0369
	              ] 0.0369
	            the 0.0369

           iris   441970   1 (24)
	            its 0.0369
	              . 0.0369
	             in 0.0369
	           iris 0.0369
	             iu 0.0369
	            cia 0.0369
	            arz 0.0369
	              a 0.0369
	              - 0.0369
	            irs 0.0369
	          iiris 0.0369
	              I 0.0369
	          irish 0.0369
	          irisa 0.0369
	             is 0.0369
	              , 0.0369
	           irie 0.0369
	           irin 0.0369
	            iri 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000
	          <UNK> 0.0000
	              " 0.0000

          hazel   441975   1 (23)
	          hazel 1.0000
	          hazes 0.0369
	          hazed 0.0369
	           held 0.0369
	         Ghazel 0.0369
	              } 0.0369
	           haze 0.0369
	          Pales 0.0369
	          hotel 0.0369
	          hazle 0.0369
	           hard 0.0369
	         hazels 0.0369
	          halez 0.0369
	              , 0.0059
	              ) 0.0000
	           </S> 0.0000
	           have 0.0000
	              - 0.0000
	            has 0.0000
	    recognition 0.0000
	              . 0.0000
	           here 0.0000
	          scans 0.0000

              .   441980   1 (13)
	              . 0.9521
	              - 0.0426
	             us 0.0369
	       iris.htm 0.0369
	            cia 0.0369
	             iu 0.0369
	           eyes 0.0059
	            and 0.0000
	            ... 0.0000
	            the 0.0000
	             of 0.0000
	              , 0.0000
	           </S> 0.0000

          d(jes   442053  18 (30)
	            can 0.4000
	            you 0.3917
	            des 0.1000
	        desejes 0.0369
	              . 0.0369
	          esjes 0.0369
	          dejes 0.0369
	          dijet 0.0369
	            dje 0.0369
	          dhjes 0.0369
	         eedjes 0.0369
	          Pales 0.0369
	           ejes 0.0369
	            and 0.0369
	              - 0.0369
	           Ljes 0.0369
	              I 0.0059
	              a 0.0000
	            are 0.0000
	             is 0.0000
	              i 0.0000
	             do 0.0000
	            jes 0.0000
	           </S> 0.0000
	            did 0.0000
	           days 0.0000
	            the 0.0000
	           does 0.0000
	             it 0.0000
	              , 0.0000

        plumage   442073   1 (25)
	        plumage 0.9000
	            any 0.0800
	           size 0.0369
	       plumaged 0.0369
	              x 0.0369
	              C 0.0369
	       plumagem 0.0369
	             us 0.0369
	         thread 0.0369
	            the 0.0059
	           text 0.0000
	           your 0.0000
	          place 0.0000
	              , 0.0000
	           this 0.0000
	           that 0.0000
	          their 0.0000
	       category 0.0000
	           page 0.0000
	         please 0.0000
	              a 0.0000
	              - 0.0000
	           </S> 0.0000
	       plumages 0.0000
	              . 0.0000

              :   442081   1 (14)
	              : 0.5000
	            way 0.0369
	            cia 0.0369
	          major 0.0369
	             us 0.0369
	              , 0.0059
	              - 0.0000
	          <UNK> 0.0000
	           from 0.0000
	           </S> 0.0000
	              . 0.0000
	            the 0.0000
	             of 0.0000
	            and 0.0000

         3-oung   442083   6 (22)
	              . 0.0504
	           goun 0.0369
	          goung 0.0369
	          These 0.0369
	           </S> 0.0059
	         amoung 0.0000
	          going 0.0000
	          Loung 0.0000
	              I 0.0000
	              [ 0.0000
	         around 0.0000
	            the 0.0000
	          young 0.0000
	              A 0.0000
	          <UNK> 0.0000
	            oun 0.0000
	              - 0.0000
	          Young 0.0000
	          found 0.0000
	              : 0.0000
	            The 0.0000
	              a 0.0000

          birds   442090   1 (24)
	        birdsit 0.0369
	          First 0.0369
	          birds 0.0369
	              - 0.0369
	              a 0.0369
	            you 0.0369
	              I 0.0369
	           bird 0.0369
	              : 0.0369
	          Parus 0.0369
	            big 0.0369
	              , 0.0369
	         birdes 0.0369
	         bridds 0.0369
	          first 0.0369
	           </S> 0.0369
	           must 0.0369
	              . 0.0369
	              i 0.0369
	         Vbirds 0.0369
	         Turdus 0.0369
	          birdy 0.0369
	          birda 0.0369
	           bids 0.0369

           buff   442107   1 (29)
	           buff 0.9000
	              - 0.2405
	            the 0.0369
	            few 0.0369
	          buffs 0.0369
	            bus 0.0369
	          rufus 0.0369
	             iu 0.0369
	   implications 0.0369
	          buffu 0.0369
	           bufo 0.0369
	           bufa 0.0369
	            buf 0.0369
	          range 0.0059
	             by 0.0000
	           </S> 0.0000
	            but 0.0000
	           blue 0.0000
	     experience 0.0000
	              . 0.0000
	              a 0.0000
	            and 0.0000
	          buffy 0.0000
	              , 0.0000
	            buy 0.0000
	             to 0.0000
	         public 0.0000
	     discretion 0.0000
	             us 0.0000

           tips   442112   1 (32)
	           tips 1.0000
	            tip 0.6000
	          stips 0.0369
	            cia 0.0369
	           Pica 0.0369
	           tipo 0.0369
	           tipi 0.0369
	          tipis 0.0369
	        related 0.0369
	          cover 0.0369
	         enough 0.0369
	          given 0.0369
	          icons 0.0369
	          tipsy 0.0369
	          tipsa 0.0369
	              , 0.0059
	              - 0.0000
	             in 0.0000
	             it 0.0000
	          hunks 0.0000
	           </S> 0.0000
	             as 0.0000
	             of 0.0000
	             to 0.0000
	           time 0.0000
	              a 0.0000
	              I 0.0000
	             us 0.0000
	            top 0.0000
	              E 0.0000
	              . 0.0000
	           this 0.0000

          moult   442151   1 (22)
	          moult 1.0000
	        moulted 0.0369
	           moul 0.0369
	         moulut 0.0369
	          mouth 0.0369
	         moults 0.0369
	          maura 0.0369
	          mould 0.0369
	          multo 0.0369
	          moule 0.0369
	              . 0.0059
	              , 0.0000
	             is 0.0000
	           most 0.0000
	              - 0.0000
	          could 0.0000
	           </S> 0.0000
	              I 0.0000
	             in 0.0000
	          would 0.0000
	             of 0.0000
	              a 0.0000

           both   442157   3 (19)
	              - 0.3583
	              a 0.1000
	          booth 0.0369
	          bothe 0.0369
	          bothy 0.0369
	            bot 0.0369
	           hobt 0.0369
	           best 0.0369
	           both 0.0369
	           body 0.0369
	           bots 0.0369
	           boty 0.0369
	              I 0.0369
	              . 0.0059
	           </S> 0.0000
	              , 0.0000
	            but 0.0000
	             by 0.0000
	            and 0.0000

         tawn}^   442177  14 (27)
	          files 0.0369
	           tawa 0.0369
	          stawn 0.0369
	            taw 0.0369
	         logged 0.0369
	         things 0.0369
	         tawney 0.0369
	        similar 0.0369
	     interested 0.0369
	           tawn 0.0369
	         tawnle 0.0369
	         tawian 0.0369
	           than 0.0059
	             to 0.0000
	         likely 0.0000
	           </S> 0.0000
	           that 0.0000
	              - 0.0000
	      effective 0.0000
	         common 0.0000
	              , 0.0000
	              . 0.0000
	    information 0.0000
	          tawny 0.0000
	              I 0.0000
	        results 0.0000
	              a 0.0000

      colouring   442187   1 (26)
	      colouring 1.0000
	    colourising 0.0369
	      changeset 0.0369
	              x 0.0369
	    recolouring 0.0369
	             us 0.0369
	      colubrina 0.0369
	           them 0.0369
	       clouring 0.0369
	          using 0.0369
	       children 0.0369
	            the 0.0059
	              , 0.0000
	           </S> 0.0000
	       coloring 0.0000
	           time 0.0000
	          other 0.0000
	              a 0.0000
	     colourings 0.0000
	              - 0.0000
	          their 0.0000
	              . 0.0000
	           your 0.0000
	          stock 0.0000
	      Colouring 0.0000
	           this 0.0000

           bird   442253  22 (28)
	            but 0.7000
	             by 0.2000
	            sub 0.0369
	          right 0.0369
	            arz 0.0369
	          birdy 0.0369
	              a 0.0369
	           biro 0.0369
	            non 0.0369
	            cia 0.0369
	           birt 0.0369
	           brid 0.0369
	     Businesses 0.0369
	           Pica 0.0369
	              A 0.0369
	              I 0.0369
	          birdi 0.0369
	             of 0.0369
	            bir 0.0369
	       Websites 0.0369
	              , 0.0059
	           </S> 0.0000
	         Hotels 0.0000
	              - 0.0000
	              . 0.0000
	          birds 0.0000
	           bird 0.0000
	             be 0.0000

       primar}'   442402  13 (24)
	        process 0.1000
	           when 0.0369
	         person 0.0369
	        primari 0.0369
	        primara 0.0369
	         primar 0.0369
	           play 0.0369
	             of 0.0369
	            LHC 0.0369
	       primaria 0.0369
	       primario 0.0369
	              - 0.0059
	              . 0.0000
	            way 0.0000
	              x 0.0000
	           time 0.0000
	       distance 0.0000
	              a 0.0000
	           term 0.0000
	           </S> 0.0000
	              , 0.0000
	             as 0.0000
	        primary 0.0000
	              I 0.0000

        touches   442411   1 (21)
	              i 0.0369
	              I 0.0369
	       touchers 0.0369
	        toucher 0.0369
	              . 0.0369
	             at 0.0369
	         touche 0.0369
	              - 0.0369
	          there 0.0369
	           </S> 0.0369
	              a 0.0369
	             of 0.0369
	           term 0.0369
	       touchest 0.0369
	           then 0.0369
	           they 0.0369
	             in 0.0369
	       tousches 0.0369
	              , 0.0369
	        touched 0.0369
	        touches 0.0369

    distinctl}-   442488  14 (23)
	              - 0.0369
	      distincts 0.0369
	      distincta 0.0369
	      distincti 0.0369
	              I 0.0369
	         little 0.0369
	           much 0.0369
	       slightly 0.0369
	        defined 0.0369
	     distinctis 0.0369
	      potential 0.0369
	    distinction 0.0369
	              a 0.0059
	              , 0.0000
	    distinctive 0.0000
	       distinct 0.0000
	              . 0.0000
	            the 0.0000
	             no 0.0000
	           more 0.0000
	     distinctly 0.0000
	           </S> 0.0000
	           used 0.0000

         longer   442500   1 (23)
	              a 0.0369
	             by 0.0369
	           love 0.0369
	       longeron 0.0369
	        elonger 0.0369
	              I 0.0369
	              , 0.0369
	         longer 0.0369
	             to 0.0369
	              . 0.0369
	          longe 0.0369
	           </S> 0.0369
	              - 0.0369
	         longen 0.0369
	         higher 0.0369
	          large 0.0369
	           less 0.0369
	           long 0.0369
	           more 0.0369
	         rather 0.0369
	        longers 0.0369
	        longera 0.0369
	         longed 0.0369

           se.\   442627   2 (23)
	            set 0.7000
	            sex 0.4000
	      direction 0.0369
	            way 0.0369
	            ses 0.0369
	           sala 0.0369
	          below 0.0369
	             se 0.0369
	             is 0.0059
	           part 0.0000
	           sees 0.0000
	           case 0.0000
	           half 0.0000
	              - 0.0000
	              I 0.0000
	            she 0.0000
	             of 0.0000
	              . 0.0000
	              a 0.0000
	            see 0.0000
	           </S> 0.0000
	              ( 0.0000
	              , 0.0000

              .   442631   1 (12)
	            and 0.0369
	              - 0.0369
	            but 0.0369
	            the 0.0369
	             us 0.0369
	              . 0.0369
	              , 0.0369
	          which 0.0369
	           </S> 0.0369
	             of 0.0369
	            cia 0.0369
	             iu 0.0369

           thus   442675   1 (26)
	           thus 0.0375
	         Anthus 0.0369
	             iu 0.0369
	           thud 0.0369
	          thusa 0.0369
	           tush 0.0369
	           thug 0.0369
	          thugs 0.0369
	          Athus 0.0369
	            thu 0.0369
	              , 0.0059
	             of 0.0000
	              I 0.0000
	           </S> 0.0000
	            and 0.0000
	           that 0.0000
	              - 0.0000
	           shut 0.0000
	              . 0.0000
	           this 0.0000
	            are 0.0000
	           have 0.0000
	           were 0.0000
	             us 0.0000
	              a 0.0000
	            the 0.0000

       catchers   442742  17 (26)
	        Hatcher 0.6619
	       hatchers 0.4000
	        catches 0.3000
	        catcher 0.3000
	       hatchery 0.1000
	              . 0.0369
	      catcheras 0.0369
	       catchera 0.0369
	              a 0.0369
	             us 0.0369
	          their 0.0369
	         ground 0.0369
	              , 0.0369
	            the 0.0369
	           </S> 0.0059
	           same 0.0037
	            top 0.0000
	              - 0.0000
	         public 0.0000
	          other 0.0000
	       catchers 0.0000
	          <UNK> 0.0000
	          first 0.0000
	           case 0.0000
	    ratcatchers 0.0000
	          world 0.0000

      forwarded   442811   1 (22)
	      forwarded 0.4000
	        forward 0.3167
	    reforwarded 0.0369
	     forwardare 0.0369
	     forwarders 0.0369
	    unforwarded 0.0369
	          under 0.0369
	      forwarder 0.0369
	           from 0.0369
	       provided 0.0369
	      forwarned 0.0369
	              , 0.0059
	          found 0.0000
	           used 0.0000
	              . 0.0000
	             to 0.0000
	           </S> 0.0000
	              - 0.0000
	             in 0.0000
	              a 0.0000
	           seen 0.0000
	            for 0.0000

            b}-   442821   9 (19)
	              . 0.9000
	             be 0.1500
	             bb 0.0369
	            cia 0.0369
	             iu 0.0369
	              I 0.0369
	             br 0.0369
	             to 0.0059
	            the 0.0000
	             in 0.0000
	        message 0.0000
	              - 0.0000
	              a 0.0000
	              , 0.0000
	            but 0.0000
	              e 0.0000
	           </S> 0.0000
	             by 0.0000
	             us 0.0000

    experienced   442825   1 (17)
	              a 0.0369
	              - 0.0369
	    experiencer 0.0369
	     experience 0.0369
	           </S> 0.0369
	    experienced 0.0369
	             us 0.0369
	              . 0.0369
	             to 0.0369
	              , 0.0369
	      experiens 0.0369
	  reexperienced 0.0369
	    experiences 0.0369
	              e 0.0369
	  experiencedly 0.0369
	            the 0.0369
	  inexperienced 0.0369

     poulterers   442907  14 (25)
	        patient 0.0369
	              . 0.0369
	            the 0.0369
	             us 0.0369
	        general 0.0369
	     poulteress 0.0369
	              , 0.0369
	             it 0.0369
	       customer 0.0369
	        highest 0.0369
	              a 0.0369
	       poulters 0.0369
	           </S> 0.0059
	          first 0.0000
	     poulterers 0.0000
	          world 0.0000
	           same 0.0000
	         people 0.0000
	          right 0.0000
	      poulterer 0.0000
	              - 0.0000
	            top 0.0000
	         public 0.0000
	      Poulterer 0.0000
	       Internet 0.0000

       Although   442920   1 (15)
	       Although 1.0000
	       Althouse 0.0369
	         though 0.0369
	       although 0.0369
	        Althaus 0.0369
	      allthough 0.0369
	           </S> 0.0059
	              - 0.0000
	              A 0.0000
	              I 0.0000
	              ) 0.0000
	              " 0.0000
	              , 0.0000
	              . 0.0000
	              ] 0.0000

       abundant   442929   3 (23)
	            any 0.8000
	             it 0.8000
	       abundant 0.2000
	       abundans 0.0369
	              . 0.0369
	              : 0.0369
	        abundan 0.0369
	      abundante 0.0369
	      abundanti 0.0369
	              / 0.0369
	        abundat 0.0369
	      abundanta 0.0369
	            the 0.0059
	          small 0.0000
	             we 0.0000
	             an 0.0000
	              , 0.0000
	       students 0.0000
	              i 0.0000
	          <UNK> 0.0000
	              I 0.0000
	            not 0.0000
	           </S> 0.0000

         enough   442938   1 (25)
	         enough 0.1000
	        enoughs 0.0369
	         eneugh 0.0369
	             is 0.0369
	       Glenough 0.0369
	              I 0.0369
	           went 0.0369
	         Enough 0.0369
	          focus 0.0369
	         Keough 0.0369
	        enrough 0.0369
	           make 0.0369
	              a 0.0369
	          would 0.0369
	            are 0.0369
	             in 0.0059
	              . 0.0000
	              - 0.0000
	              , 0.0000
	           </S> 0.0000
	     literature 0.0000
	        through 0.0000
	          South 0.0000
	    information 0.0000
	        element 0.0000

          downs   442967  21 (33)
	          downy 0.7000
	         drowns 0.7000
	             do 0.1010
	              ( 0.0369
	              a 0.0369
	            and 0.0369
	          nowds 0.0369
	           </S> 0.0369
	          <UNK> 0.0369
	              - 0.0369
	           days 0.0369
	       creative 0.0369
	       antispam 0.0369
	              " 0.0369
	      therefore 0.0369
	   honeymooners 0.0369
	        singles 0.0369
	              I 0.0369
	            the 0.0059
	          which 0.0012
	          downs 0.0000
	           down 0.0000
	         downes 0.0000
	             or 0.0000
	           does 0.0000
	            too 0.0000
	          downe 0.0000
	           owns 0.0000
	        downset 0.0000
	           dons 0.0000
	         though 0.0000
	              i 0.0000
	        godowns 0.0000

      certainly   443022   1 (18)
	              a 0.0369
	        certans 0.0369
	      certeinly 0.0369
	      Certainly 0.0369
	              I 0.0369
	        service 0.0369
	       training 0.0369
	        certain 0.0369
	      certainty 0.0369
	    uncertainly 0.0369
	      certainly 0.0369
	           </S> 0.0059
	              - 0.0000
	              " 0.0000
	          Books 0.0000
	              , 0.0000
	              . 0.0000
	    Calandrella 0.0000

        prefers   443032  12 (23)
	         refers 1.0000
	        prevent 0.7000
	      preferers 0.0369
	        prefere 0.0369
	        preferr 0.0369
	       preferes 0.0369
	       preferas 0.0369
	     preferrers 0.0369
	        perfers 0.0369
	              - 0.0369
	            not 0.0059
	              . 0.0000
	              , 0.0000
	             do 0.0000
	           </S> 0.0000
	              a 0.0000
	           have 0.0000
	        present 0.0000
	             be 0.0000
	        prefers 0.0000
	         prefer 0.0000
	              I 0.0000
	        process 0.0000

         arable   443040   4 (25)
	              x 0.9000
	              - 0.8000
	            are 0.0611
	        parable 0.0369
	        problem 0.0369
	         arable 0.0369
	          arble 0.0369
	        arables 0.0369
	        arabile 0.0369
	        earable 0.0369
	         amable 0.0369
	         afable 0.0369
	              I 0.0369
	             us 0.0369
	         PayPal 0.0059
	              . 0.0000
	              , 0.0000
	             to 0.0000
	           </S> 0.0000
	            the 0.0000
	            all 0.0000
	            not 0.0000
	              A 0.0000
	              a 0.0000
	           full 0.0000

          shuns   443131   2 (25)
	           suns 1.0000
	          shuns 0.1000
	         Anshun 0.0369
	           huns 0.0369
	              s 0.0369
	         spinas 0.0369
	          shune 0.0369
	          shunt 0.0369
	          suhun 0.0369
	              I 0.0369
	             is 0.0059
	              - 0.0000
	              : 0.0000
	             us 0.0000
	           shun 0.0000
	              , 0.0000
	          shall 0.0000
	           </S> 0.0000
	         shunts 0.0000
	              . 0.0000
	              a 0.0000
	             's 0.0000
	            was 0.0000
	         should 0.0000
	            she 0.0000

        thickly   443148   1 (24)
	         tagged 0.1000
	        thickly 0.1000
	          think 0.1000
	         tickly 0.0369
	         thicky 0.0369
	        trickly 0.0369
	      thickleaf 0.0369
	          could 0.0369
	             to 0.0059
	           this 0.0000
	              , 0.0000
	             of 0.0000
	              I 0.0000
	           </S> 0.0000
	            the 0.0000
	              . 0.0000
	              a 0.0000
	              i 0.0000
	          thick 0.0000
	             us 0.0000
	              - 0.0000
	          where 0.0000
	          which 0.0000
	            yet 0.0000

    plantatious   443203  22 (33)
	    information 0.3000
	    plantationi 0.0369
	              z 0.0369
	       plantati 0.0369
	      plantatus 0.0369
	           said 0.0369
	       children 0.0369
	              . 0.0369
	 retransmission 0.0369
	        servile 0.0369
	      plantatio 0.0369
	           such 0.0369
	    destination 0.0369
	          stuff 0.0369
	      plantatis 0.0369
	       products 0.0369
	 plantationibus 0.0369
	            and 0.0369
	       holidays 0.0369
	   plantationis 0.0369
	            the 0.0059
	         others 0.0000
	       services 0.0000
	          other 0.0000
	     plantation 0.0000
	              a 0.0000
	           that 0.0000
	              I 0.0000
	              - 0.0000
	           </S> 0.0000
	              , 0.0000
	    plantations 0.0000
	          there 0.0000

            but   443216   1 (26)
	            but 0.0369
	              " 0.0369
	             be 0.0369
	            buy 0.0369
	              ( 0.0369
	            bus 0.0369
	             by 0.0369
	          <UNK> 0.0369
	              I 0.0369
	             bu 0.0369
	              a 0.0369
	           butt 0.0369
	            and 0.0369
	           </S> 0.0369
	           buts 0.0369
	              s 0.0369
	           this 0.0186
	            the 0.0059
	          which 0.0012
	            tub 0.0000
	          there 0.0000
	              i 0.0000
	             it 0.0000
	             us 0.0000
	             iu 0.0000
	             or 0.0000

        country   443255  16 (29)
	      upcountry 0.8000
	          every 0.2158
	            any 0.0800
	              x 0.0369
	             us 0.0369
	     noncountry 0.0369
	       counthry 0.0369
	              I 0.0369
	              7 0.0369
	      countryfy 0.0369
	             10 0.0369
	        countre 0.0369
	       countrey 0.0369
	     outcountry 0.0369
	            the 0.0059
	        country 0.0000
	        Country 0.0000
	         County 0.0000
	          South 0.0000
	          these 0.0000
	              a 0.0000
	           your 0.0000
	              - 0.0000
	           this 0.0000
	          their 0.0000
	              , 0.0000
	           </S> 0.0000
	         county 0.0000
	              . 0.0000

      Excepting   443276 inf (24)
	              / 0.1000
	      accepting 0.0369
	      incepting 0.0369
	              a 0.0369
	      Expecting 0.0369
	      Excreting 0.0369
	      Exception 0.0369
	      expecting 0.0369
	   Additionally 0.0369
	      excepting 0.0369
	       Exceptia 0.0369
	    unexcepting 0.0369
	         Except 0.0369
	      exception 0.0369
	     Exceptions 0.0369
	           </S> 0.0059
	              ] 0.0000
	              ) 0.0000
	              - 0.0000
	              . 0.0000
	              I 0.0000
	              , 0.0000
	              " 0.0000
	              A 0.0000

     iudividual   443313  21 (32)
	     University 0.0369
	       business 0.0369
	      individua 0.0369
	    individuali 0.0369
	     Department 0.0369
	          Board 0.0369
	     undividual 0.0369
	          first 0.0369
	        dividua 0.0369
	           date 0.0369
	              I 0.0369
	              a 0.0369
	       services 0.0369
	     individuai 0.0369
	    individuale 0.0369
	       dividual 0.0369
	          value 0.0369
	       National 0.0369
	     individuas 0.0369
	              . 0.0059
	            and 0.0000
	    individuals 0.0000
	           part 0.0000
	              , 0.0000
	        edition 0.0000
	              - 0.0000
	          major 0.0000
	     individual 0.0000
	        example 0.0000
	         window 0.0000
	            one 0.0000
	           </S> 0.0000

             of   443324   1 (20)
	           with 0.0369
	              . 0.0369
	     modulating 0.0369
	             or 0.0369
	            off 0.0369
	             us 0.0369
	            oft 0.0369
	              a 0.0369
	              - 0.0369
	           pass 0.0369
	             iu 0.0369
	            cia 0.0369
	             on 0.0369
	           </S> 0.0369
	              I 0.0369
	             fo 0.0369
	            oof 0.0369
	              , 0.0369
	             of 0.0369
	             in 0.0369

             it   443421   1 (22)
	              , 0.0369
	         growth 0.0369
	             iu 0.0369
	             it 0.0369
	            ith 0.0369
	            iit 0.0369
	            itt 0.0369
	            cia 0.0369
	              a 0.0369
	             in 0.0369
	             is 0.0369
	            its 0.0369
	             us 0.0369
	             ti 0.0369
	              . 0.0369
	              - 0.0369
	            and 0.0369
	            iti 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	              " 0.0000

          ver3'   443525   1 (19)
	           very 0.8295
	            not 0.0564
	              a 0.0059
	             so 0.0000
	            ver 0.0000
	          versa 0.0000
	           were 0.0000
	          verve 0.0000
	           </S> 0.0000
	           here 0.0000
	              , 0.0000
	            why 0.0000
	          verre 0.0000
	          verse 0.0000
	            the 0.0000
	              . 0.0000
	              : 0.0000
	           verb 0.0000
	           vere 0.0000

 characteristic   443531   1 (19)
	             it 0.0369
	characteristics 0.0369
	           </S> 0.0369
	              a 0.0369
	              I 0.0369
	 characteristic 0.0369
	             in 0.0369
	            the 0.0369
	characteristica 0.0369
	              . 0.0369
	          first 0.0369
	             to 0.0369
	           case 0.0369
	              , 0.0369
	             by 0.0369
	             we 0.0369
	          there 0.0369
	              - 0.0369
	              i 0.0369

              .   443545   7 (17)
	            ... 0.4000
	              , 0.1580
	            cia 0.0369
	             iu 0.0369
	             us 0.0369
	             of 0.0059
	        feature 0.0000
	           that 0.0000
	              : 0.0000
	           </S> 0.0000
	             p. 0.0000
	            for 0.0000
	              . 0.0000
	            and 0.0000
	       function 0.0000
	            the 0.0000
	              - 0.0000

         always   443571   1 (24)
	              " 0.0369
	          <UNK> 0.0369
	         always 0.0369
	            any 0.0369
	           days 0.0369
	        finding 0.0369
	              x 0.0369
	        alwayes 0.0369
	            all 0.0369
	            and 0.0369
	           </S> 0.0369
	        allways 0.0369
	              I 0.0369
	              ( 0.0369
	          alway 0.0369
	           alba 0.0369
	        Jalways 0.0369
	        galways 0.0369
	            the 0.0059
	          which 0.0012
	             to 0.0000
	        waylays 0.0000
	             or 0.0000
	              i 0.0000

      commences   443578  15 (25)
	      commenced 0.3000
	        comment 0.1000
	     commencest 0.0369
	           some 0.0369
	        returns 0.0369
	          place 0.0369
	        comense 0.0369
	         change 0.0369
	              I 0.0369
	      commencer 0.0369
	       comences 0.0369
	        devotes 0.0369
	        contact 0.0369
	           been 0.0059
	              - 0.0000
	              , 0.0000
	             be 0.0000
	            had 0.0000
	            and 0.0000
	       commence 0.0000
	      commences 0.0000
	            the 0.0000
	              . 0.0000
	           </S> 0.0000
	              a 0.0000

       hovering   443631  10 (23)
	           live 0.0369
	     hoveringly 0.0369
	      hoverings 0.0369
	       havering 0.0369
	    affirmative 0.0369
	          shape 0.0369
	        overing 0.0369
	           have 0.0369
	             to 0.0059
	            the 0.0000
	              . 0.0000
	              i 0.0000
	              - 0.0000
	      hoovering 0.0000
	           home 0.0000
	             an 0.0000
	              , 0.0000
	              I 0.0000
	             us 0.0000
	       hovering 0.0000
	          being 0.0000
	           </S> 0.0000
	              a 0.0000

         action   443640   1 (25)
	         action 0.7000
	         within 0.4000
	              - 0.3000
	              a 0.3000
	          actor 0.0369
	         gaming 0.0369
	              I 0.0369
	        actioni 0.0369
	             do 0.0369
	        actions 0.0369
	         cation 0.0369
	        actione 0.0369
	          actio 0.0369
	           over 0.0059
	           </S> 0.0000
	         around 0.0000
	             of 0.0000
	          about 0.0000
	              . 0.0000
	       overhead 0.0000
	          above 0.0000
	              , 0.0000
	            and 0.0000
	             in 0.0000
	              ) 0.0000

             at   443719   1 (20)
	              . 0.0369
	       Southern 0.0369
	            ate 0.0369
	            aat 0.0369
	            the 0.0369
	             at 0.0369
	            arz 0.0369
	             iu 0.0369
	            att 0.0369
	             as 0.0369
	              , 0.0369
	              a 0.0369
	             an 0.0369
	             ta 0.0369
	             us 0.0369
	              - 0.0369
	           </S> 0.0059
	              ) 0.0000
	              " 0.0000
	              } 0.0000

     obliquel}-   443743   2 (21)
	           only 1.0000
	            not 0.0369
	              I 0.0369
	            one 0.0369
	             be 0.0369
	        oblique 0.0369
	             us 0.0369
	             me 0.0369
	      obliquely 0.0369
	       obliques 0.0369
	       obliqued 0.0369
	             to 0.0059
	              a 0.0000
	             up 0.0000
	           </S> 0.0000
	           like 0.0000
	           over 0.0000
	              . 0.0000
	             in 0.0000
	              - 0.0000
	              , 0.0000

            and   443754   1 (17)
	            ant 0.0369
	             an 0.0369
	              , 0.0369
	           aand 0.0369
	            and 0.0369
	            any 0.0369
	            the 0.0369
	              - 0.0369
	            arz 0.0369
	           alba 0.0369
	              a 0.0369
	           </S> 0.0369
	              I 0.0369
	             us 0.0369
	              . 0.0369
	           andy 0.0369
	           anda 0.0369

       rapidl}'   443758  15 (29)
	         rapids 0.8000
	    destination 0.0369
	       holidays 0.0369
	         people 0.0369
	       rapidulo 0.0369
	       rapidule 0.0369
	              i 0.0369
	       rapiduli 0.0369
	       rapidula 0.0369
	           said 0.0369
	      therefore 0.0369
	           thus 0.0369
	   subsidiaries 0.0369
	            the 0.0059
	              a 0.0000
	           more 0.0000
	        rapidly 0.0000
	            you 0.0000
	           will 0.0000
	          other 0.0000
	           then 0.0000
	              , 0.0000
	       services 0.0000
	              I 0.0000
	          rapid 0.0000
	          <UNK> 0.0000
	              ( 0.0000
	              - 0.0000
	           </S> 0.0000

       abruptly   443850   3 (21)
	          about 0.2000
	          after 0.1000
	       abruptly 0.0369
	     abruptedly 0.0369
	         abrupt 0.0369
	       abruptio 0.0369
	             us 0.0369
	        abrupta 0.0369
	              i 0.0369
	     bankruptly 0.0369
	              I 0.0369
	             of 0.0059
	              a 0.0000
	           that 0.0000
	              - 0.0000
	            are 0.0000
	              , 0.0000
	           </S> 0.0000
	            the 0.0000
	              . 0.0000
	             to 0.0000

        perhaps   443859   2 (25)
	              - 0.4000
	        support 0.0369
	      afterhaps 0.0369
	       perhausi 0.0369
	        Perhaps 0.0369
	              I 0.0369
	        perhaps 0.0369
	             BP 0.0369
	        perhana 0.0369
	        departs 0.0369
	           plan 0.0369
	        peruana 0.0369
	         prices 0.0369
	           perh 0.0369
	              a 0.0369
	          drops 0.0369
	          place 0.0369
	        prehaps 0.0369
	       preshape 0.0369
	              . 0.0059
	             to 0.0000
	              , 0.0000
	           </S> 0.0000
	            the 0.0000
	            and 0.0000

       flutters   444008   1 (24)
	       flutters 0.3000
	       flusters 0.3000
	              I 0.0369
	       fluttery 0.0369
	        fluters 0.0369
	          there 0.0369
	        lutters 0.0369
	             us 0.0369
	          other 0.0369
	           free 0.0369
	     flutterers 0.0369
	             is 0.0059
	              . 0.0000
	              - 0.0000
	        flutter 0.0000
	           </S> 0.0000
	              a 0.0000
	           will 0.0000
	            was 0.0000
	       flattery 0.0000
	             to 0.0000
	             's 0.0000
	              , 0.0000
	            the 0.0000

           each   444055   1 (25)
	           eBay 0.0369
	           eich 0.0369
	           echa 0.0369
	           lava 0.0369
	           sala 0.0369
	           Pica 0.0369
	              , 0.0369
	           aech 0.0369
	           eaca 0.0369
	          reach 0.0369
	              . 0.0369
	            and 0.0369
	            eac 0.0369
	              I 0.0369
	           each 0.0369
	           back 0.0369
	            the 0.0369
	          esach 0.0369
	              - 0.0369
	          Beach 0.0369
	              a 0.0369
	           </S> 0.0059
	              } 0.0000
	              " 0.0000
	              ) 0.0000

         shrill   444100   2 (23)
	              , 0.1000
	         shrill 0.0369
	            fee 0.0369
	              s 0.0369
	         shirls 0.0369
	              I 0.0369
	        shrills 0.0369
	              i 0.0369
	        shrilly 0.0369
	            the 0.0059
	              . 0.0000
	             up 0.0000
	         should 0.0000
	           </S> 0.0000
	              a 0.0000
	             of 0.0000
	        touches 0.0000
	          order 0.0000
	              - 0.0000
	          shall 0.0000
	          touch 0.0000
	           line 0.0000
	           will 0.0000

              '   444107 inf (13)
	              ' 0.8000
	              - 0.5000
	             us 0.0369
	            cia 0.0369
	             iu 0.0369
	              , 0.0059
	             of 0.0000
	          voice 0.0000
	         little 0.0000
	            the 0.0000
	            and 0.0000
	           </S> 0.0000
	              . 0.0000

          ivhcc   444108 inf (29)
	          Avich 0.0369
	         zivich 0.0369
	           vicc 0.0369
	         ihcuac 0.0369
	          voice 0.0369
	           Ahcc 0.0369
	           Bhcc 0.0369
	           Mhcc 0.0369
	          ivica 0.0369
	        Garmond 0.0369
	           </S> 0.0059
	              . 0.0000
	             it 0.0000
	          <UNK> 0.0000
	              ) 0.0000
	             is 0.0000
	              ] 0.0000
	            icc 0.0000
	            for 0.0000
	            ich 0.0000
	              I 0.0000
	              s 0.0000
	              a 0.0000
	             iv 0.0000
	             to 0.0000
	              , 0.0000
	              A 0.0000
	             in 0.0000
	              - 0.0000

              ,   444113   1 (12)
	           </S> 0.0369
	            and 0.0369
	            the 0.0369
	             of 0.0369
	              ' 0.0369
	              s 0.0369
	              , 0.0369
	              . 0.0369
	              - 0.0369
	             us 0.0369
	          Night 0.0369
	            cia 0.0369

          tvhee   444115 inf (27)
	           they 0.0755
	              , 0.0369
	              ) 0.0369
	              1 0.0369
	          vehet 0.0369
	          hvete 0.0369
	         evehet 0.0369
	          tshee 0.0369
	      therefore 0.0369
	             L. 0.0369
	      Helvetica 0.0369
	           NULL 0.0369
	              x 0.0369
	          <UNK> 0.0369
	            the 0.0059
	          which 0.0012
	            too 0.0000
	            tvh 0.0000
	             or 0.0000
	          these 0.0000
	              i 0.0000
	           thee 0.0000
	          there 0.0000
	            hee 0.0000
	         though 0.0000
	          tehee 0.0000
	              e 0.0000

          w/icc   444122 inf (27)
	            wic 0.3000
	           cwic 0.0369
	          <UNK> 0.0369
	           Pica 0.0369
	           wici 0.0369
	              { 0.0369
	        instead 0.0369
	           Picc 0.0369
	              x 0.0369
	     regardless 0.0369
	        because 0.0369
	           with 0.0062
	            the 0.0059
	          which 0.0012
	           sicc 0.0000
	              i 0.0000
	          wicce 0.0000
	              e 0.0000
	           some 0.0000
	          weich 0.0000
	             of 0.0000
	             or 0.0000
	          wicca 0.0000
	            one 0.0000
	          whick 0.0000
	            icc 0.0000
	           will 0.0000

             of   444128   1 (18)
	             iu 0.0369
	           </S> 0.0369
	            and 0.0369
	             us 0.0369
	             or 0.0369
	            off 0.0369
	            the 0.0369
	              a 0.0369
	              , 0.0369
	              . 0.0369
	             on 0.0369
	            oft 0.0369
	             fo 0.0369
	            cia 0.0369
	              I 0.0369
	            oof 0.0369
	              - 0.0369
	             of 0.0369

     generall}-   444240  15 (21)
	        general 0.9000
	       generale 0.1569
	              a 0.0369
	          <UNK> 0.0369
	       generala 0.0369
	              ( 0.0369
	     generalled 0.0369
	            and 0.0369
	            all 0.0369
	              I 0.0369
	              " 0.0369
	           </S> 0.0369
	            but 0.0369
	            the 0.0059
	          which 0.0000
	           were 0.0000
	      generally 0.0000
	          there 0.0000
	       generall 0.0000
	              i 0.0000
	             or 0.0000

        amongst   444251   1 (19)
	              . 0.0369
	        emongst 0.0369
	            the 0.0369
	              I 0.0369
	       amoungst 0.0369
	              - 0.0369
	        amongst 0.0369
	        mognast 0.0369
	              a 0.0369
	        amorosa 0.0369
	          among 0.0369
	        amounts 0.0369
	        gamonts 0.0369
	              , 0.0369
	           </S> 0.0369
	        alongst 0.0369
	         mongst 0.0369
	            and 0.0369
	       amongest 0.0369

        growing   444259  13 (22)
	          going 0.0369
	      growingly 0.0369
	         rowing 0.0369
	        glowing 0.0369
	              Y 0.0369
	      ingrowing 0.0369
	       grooving 0.0369
	        getting 0.0369
	        groping 0.0369
	       growling 0.0369
	       growings 0.0369
	            the 0.0059
	              . 0.0000
	           many 0.0000
	         growth 0.0000
	           </S> 0.0000
	          other 0.0000
	         others 0.0000
	             us 0.0000
	              a 0.0000
	        growing 0.0000
	              , 0.0000

      sheltered   444287   1 (29)
	             us 0.0369
	      depending 0.0369
	           work 0.0369
	    unsheltered 0.0369
	          based 0.0369
	    ensheltered 0.0369
	              - 0.0369
	          place 0.0369
	     shelterers 0.0369
	      sweltered 0.0369
	      holstered 0.0369
	          their 0.0369
	      sheltered 0.0369
	        testing 0.0369
	      Sheltered 0.0369
	             up 0.0369
	      shelterer 0.0369
	          other 0.0369
	        sheller 0.0369
	           rely 0.0369
	              I 0.0369
	          focus 0.0369
	              a 0.0059
	              . 0.0000
	           </S> 0.0000
	              , 0.0000
	          state 0.0000
	             to 0.0000
	            the 0.0000

            b}'   444309   8 (20)
	             br 0.6000
	              a 0.6000
	              - 0.2083
	             bb 0.0369
	            cia 0.0369
	             iu 0.0369
	             of 0.0059
	            and 0.0000
	             us 0.0000
	              ' 0.0000
	           </S> 0.0000
	        effects 0.0000
	              , 0.0000
	           with 0.0000
	            the 0.0000
	             be 0.0000
	              I 0.0000
	            but 0.0000
	             by 0.0000
	              . 0.0000

             an   444313   1 (19)
	             as 0.0369
	            ann 0.0369
	             an 0.0369
	              , 0.0369
	              I 0.0369
	            any 0.0369
	              - 0.0369
	            the 0.0369
	            aan 0.0369
	             us 0.0369
	            arz 0.0369
	             iu 0.0369
	           </S> 0.0369
	             by 0.0369
	             at 0.0369
	            and 0.0369
	              . 0.0369
	              a 0.0369
	             na 0.0369

           tuft   444328   3 (31)
	             of 0.2000
	             us 0.1000
	           mass 0.0369
	        version 0.0369
	          rufus 0.0369
	             iu 0.0369
	              - 0.0369
	              I 0.0369
	           tufa 0.0369
	           tuff 0.0369
	         number 0.0369
	           turn 0.0369
	           tuft 0.0369
	         source 0.0369
	          tufts 0.0369
	          tufty 0.0369
	            tuf 0.0369
	            the 0.0059
	           that 0.0000
	       branches 0.0000
	          ledge 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	           tree 0.0000
	           part 0.0000
	           rock 0.0000
	          trees 0.0000
	         branch 0.0000
	              . 0.0000
	             to 0.0000

       whatever   444404  10 (21)
	              I 0.9000
	          water 0.6000
	        weather 0.0369
	          signs 0.0369
	      whatevers 0.0369
	             us 0.0369
	       whateves 0.0369
	    whateverism 0.0369
	              , 0.0059
	           were 0.0000
	             of 0.0000
	            and 0.0000
	       whatever 0.0000
	              . 0.0000
	           </S> 0.0000
	              ) 0.0000
	             or 0.0000
	              - 0.0000
	              a 0.0000
	     whatsoever 0.0000
	          where 0.0000

              a   444415   1 (20)
	             la 0.0369
	             La 0.0369
	             us 0.0369
	            the 0.0369
	             to 0.0369
	           lava 0.0369
	            cia 0.0369
	             aa 0.0369
	             at 0.0369
	             as 0.0369
	              a 0.0369
	             of 0.0369
	              , 0.0369
	              . 0.0369
	              - 0.0369
	            aaa 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000
	              " 0.0000

           nest   444426   2 (27)
	           noun 0.1212
	           ness 0.0369
	           nets 0.0369
	   relationship 0.0369
	          neste 0.0369
	           nese 0.0369
	            nes 0.0369
	        problem 0.0369
	          nests 0.0369
	           room 0.0369
	             us 0.0369
	           nest 0.0369
	              I 0.0369
	            and 0.0059
	              . 0.0000
	              a 0.0000
	            new 0.0000
	           need 0.0000
	        pronoun 0.0000
	              , 0.0000
	           best 0.0000
	              - 0.0000
	         vision 0.0000
	           verb 0.0000
	           </S> 0.0000
	          point 0.0000
	             of 0.0000

         formed   444450  16 (25)
	          found 0.8000
	          forms 0.5000
	     University 0.0369
	        formede 0.0369
	       reformed 0.0369
	         amount 0.0369
	         formes 0.0369
	             us 0.0369
	            out 0.0369
	             me 0.0369
	        formend 0.0369
	              I 0.0369
	          forme 0.0369
	         former 0.0369
	              . 0.0059
	           </S> 0.0000
	            and 0.0000
	         formed 0.0000
	            for 0.0000
	              , 0.0000
	              - 0.0000
	            off 0.0000
	           from 0.0000
	             on 0.0000
	              a 0.0000

          bents   444630  21 (27)
	          being 0.1000
	              I 0.0369
	         bentos 0.0369
	          steel 0.0369
	         besten 0.0369
	         solids 0.0369
	           bent 0.0369
	           been 0.0369
	          bento 0.0369
	         benets 0.0369
	       branches 0.0369
	           band 0.0369
	           best 0.0369
	       bentshed 0.0369
	           page 0.0369
	          benta 0.0369
	              a 0.0369
	      materials 0.0369
	         bentsh 0.0369
	              , 0.0059
	         fruits 0.0000
	            and 0.0000
	             up 0.0000
	              - 0.0000
	           </S> 0.0000
	              . 0.0000
	          bents 0.0000

           dead   444640  10 (30)
	          deads 0.5000
	          green 0.0369
	          adead 0.0369
	          deade 0.0369
	          lemon 0.0369
	           deae 0.0369
	              i 0.0369
	           tall 0.0369
	            the 0.0059
	             do 0.0000
	            dea 0.0000
	            day 0.0000
	           dear 0.0000
	          <UNK> 0.0000
	          wheat 0.0000
	           dead 0.0000
	           deal 0.0000
	           deda 0.0000
	              I 0.0000
	          other 0.0000
	           </S> 0.0000
	         social 0.0000
	              , 0.0000
	              - 0.0000
	              a 0.0000
	            cia 0.0000
	           year 0.0000
	           more 0.0000
	              ( 0.0000
	          their 0.0000

         number   444696   1 (25)
	         number 1.0000
	        gathers 0.0369
	        nnumber 0.0369
	         numbre 0.0369
	          price 0.0369
	          comes 0.0369
	           need 0.0369
	         numbed 0.0369
	        numbers 0.0369
	       benefits 0.0369
	        numbere 0.0369
	              , 0.0059
	              I 0.0000
	           </S> 0.0000
	              a 0.0000
	           were 0.0000
	              - 0.0000
	             is 0.0000
	          under 0.0000
	            are 0.0000
	             of 0.0000
	           come 0.0000
	              . 0.0000
	            and 0.0000
	          hatch 0.0000

      incubated   444755   2 (27)
	             on 0.0667
	     inocubated 0.0369
	      incubated 0.0369
	          after 0.0369
	      incubator 0.0369
	       incubate 0.0369
	      incubates 0.0369
	           into 0.0369
	        include 0.0369
	         advice 0.0369
	    unincubated 0.0369
	             in 0.0059
	              - 0.0000
	              a 0.0000
	             it 0.0000
	              I 0.0000
	           that 0.0000
	             by 0.0000
	             us 0.0000
	          there 0.0000
	            the 0.0000
	              . 0.0000
	           here 0.0000
	           </S> 0.0000
	              , 0.0000
	             at 0.0000
	             to 0.0000

     represents   444816  12 (26)
	            had 0.1000
	      different 0.0369
	        address 0.0369
	       students 0.0369
	            not 0.0369
	              s 0.0369
	             by 0.0369
	    representes 0.0369
	     represente 0.0369
	     representa 0.0369
	              . 0.0059
	              I 0.0000
	            get 0.0000
	      represent 0.0000
	            and 0.0000
	       presents 0.0000
	     represents 0.0000
	           been 0.0000
	              - 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	            the 0.0000
	           seen 0.0000
	             to 0.0000
	          <UNK> 0.0000

        huffish   444904   1 (24)
	              - 0.0369
	            but 0.0369
	        buffish 0.0369
	        muffish 0.0369
	          silty 0.0369
	          sandy 0.0369
	            and 0.0369
	      huffishly 0.0369
	           </S> 0.0369
	          <UNK> 0.0369
	              a 0.0369
	              ( 0.0369
	         ufishi 0.0369
	         uffish 0.0369
	              I 0.0369
	           this 0.0186
	           with 0.0062
	            the 0.0059
	          which 0.0012
	        huffish 0.0000
	              i 0.0000
	             or 0.0000
	            his 0.0000
	           high 0.0000

           clay   444912   1 (27)
	              - 0.0369
	              a 0.0369
	            and 0.0369
	         acylal 0.0369
	           clay 0.0369
	          class 0.0369
	            may 0.0369
	            red 0.0369
	           clad 0.0369
	            can 0.0369
	           case 0.0369
	          light 0.0369
	            cla 0.0369
	         bluish 0.0369
	            the 0.0369
	              I 0.0369
	           lava 0.0369
	          claym 0.0369
	          clays 0.0369
	            cia 0.0369
	           lacy 0.0369
	           alba 0.0369
	           clan 0.0369
	              , 0.0059
	           </S> 0.0000
	              . 0.0000
	          <UNK> 0.0000

      generally   444949   1 (19)
	       generals 0.0369
	      generally 0.0369
	       generale 0.0369
	              a 0.0369
	        general 0.0369
	              . 0.0369
	            and 0.0369
	              I 0.0369
	       generall 0.0369
	     generalled 0.0369
	      generalcy 0.0369
	      generalty 0.0369
	              , 0.0369
	              - 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	          <UNK> 0.0000
	              " 0.0000

        densely   444959  12 (22)
	         denser 0.4000
	         lensed 0.0369
	         densen 0.0369
	              } 0.0369
	        Hensley 0.0369
	              I 0.0369
	           deal 0.0369
	      denselben 0.0369
	          desyl 0.0369
	        tensely 0.0369
	              , 0.0059
	        densely 0.0000
	              . 0.0000
	       accepted 0.0000
	          sense 0.0000
	              - 0.0000
	           </S> 0.0000
	             be 0.0000
	          dense 0.0000
	              a 0.0000
	           does 0.0000
	             in 0.0000

        mottled   444967   1 (24)
	        mottled 0.7000
	              , 0.2000
	      unmottled 0.0369
	        moulted 0.0369
	         motted 0.0369
	         little 0.0369
	        mottles 0.0369
	        mottler 0.0369
	           line 0.0369
	         molted 0.0369
	              a 0.0369
	     accordance 0.0369
	         mottle 0.0369
	              I 0.0369
	           more 0.0369
	           most 0.0369
	      populated 0.0059
	         packed 0.0000
	        covered 0.0000
	           </S> 0.0000
	            the 0.0000
	              - 0.0000
	              . 0.0000
	             to 0.0000

         smok}'   444989   2 (25)
	           smok 0.8000
	          smoky 0.1000
	          smoko 0.0369
	         smokos 0.0369
	         smokks 0.0369
	           dark 0.0369
	         canola 0.0369
	          until 0.0369
	      vegetable 0.0369
	            the 0.0059
	           more 0.0000
	         stokes 0.0000
	          smoke 0.0000
	              ( 0.0000
	          other 0.0000
	              e 0.0000
	           some 0.0000
	         smoker 0.0000
	           </S> 0.0000
	              a 0.0000
	         smoked 0.0000
	              - 0.0000
	          <UNK> 0.0000
	             so 0.0000
	              , 0.0000

           grey   444996   1 (26)
	           grep 0.0369
	           grew 0.0369
	             us 0.0369
	              . 0.0369
	              - 0.0369
	              e 0.0369
	         golden 0.0369
	            arz 0.0369
	        reddish 0.0369
	              A 0.0369
	           </S> 0.0369
	            non 0.0369
	           grey 0.0369
	           free 0.0369
	          greys 0.0369
	          greyi 0.0369
	              a 0.0369
	            oil 0.0369
	              I 0.0369
	            get 0.0369
	              , 0.0369
	            gre 0.0369
	           Free 0.0369
	              1 0.0369
	           gery 0.0369
	          greye 0.0369

           zone   445061  12 (26)
	           Home 0.0369
	           back 0.0369
	         corone 0.0369
	           zona 0.0369
	          zonen 0.0369
	           zoen 0.0369
	           zong 0.0369
	              I 0.0369
	         fellow 0.0369
	          zoned 0.0369
	           than 0.0059
	              . 0.0000
	              - 0.0000
	              , 0.0000
	             of 0.0000
	            and 0.0000
	       material 0.0000
	           </S> 0.0000
	              a 0.0000
	           zone 0.0000
	          zones 0.0000
	     population 0.0000
	           more 0.0000
	         medium 0.0000
	           look 0.0000
	            one 0.0000

      sometimes   445118   1 (21)
	      sometimes 0.0369
	      Sometimes 0.0369
	            the 0.0369
	            but 0.0369
	              , 0.0369
	       sometime 0.0369
	            and 0.0369
	      sometimos 0.0369
	       November 0.0369
	           time 0.0369
	       December 0.0369
	      Homerites 0.0369
	              I 0.0369
	              - 0.0369
	              a 0.0369
	              . 0.0369
	      sometiese 0.0369
	           </S> 0.0059
	          <UNK> 0.0000
	              } 0.0000
	              ) 0.0000

        streaks   445154   1 (33)
	         streak 0.0369
	        streaks 0.0369
	        streaky 0.0369
	            ago 0.0369
	      restreaks 0.0369
	      streakers 0.0369
	             us 0.0369
	          homes 0.0369
	           that 0.0369
	       streaker 0.0369
	              B 0.0369
	         steaks 0.0369
	       examples 0.0369
	             of 0.0369
	              I 0.0369
	     throughout 0.0059
	          areas 0.0000
	             in 0.0000
	              . 0.0000
	         houses 0.0000
	          sites 0.0000
	           here 0.0000
	         clouds 0.0000
	         around 0.0000
	              , 0.0000
	        streams 0.0000
	           site 0.0000
	           </S> 0.0000
	              a 0.0000
	        showers 0.0000
	              - 0.0000
	            the 0.0000
	             to 0.0000

            egg   445207   3 (26)
	             be 0.3000
	             of 0.1052
	            egy 0.0369
	            ego 0.0369
	          thing 0.0369
	             eg 0.0369
	            get 0.0369
	              I 0.0369
	            cia 0.0369
	             iu 0.0369
	             us 0.0369
	      criminals 0.0369
	              a 0.0369
	             we 0.0369
	           eggy 0.0369
	            egg 0.0369
	           eggs 0.0369
	            ege 0.0369
	              . 0.0200
	       behavior 0.0059
	           </S> 0.0000
	              , 0.0000
	              T 0.0000
	            the 0.0000
	            and 0.0000
	              - 0.0000

         whicli   445211  16 (24)
	         whilst 0.2000
	            and 0.1159
	        Chiclid 0.0369
	          cicli 0.0369
	          whill 0.0369
	         whilis 0.0369
	         whiche 0.0369
	       Chiclida 0.0369
	           wili 0.0369
	         whilie 0.0369
	         chwili 0.0369
	          whale 0.0369
	         whirls 0.0369
	          whick 0.0369
	              , 0.0059
	              . 0.0000
	          rolls 0.0000
	          which 0.0000
	              - 0.0000
	          while 0.0000
	           </S> 0.0000
	          white 0.0000
	              a 0.0000
	           that 0.0000

              I   445218   2 (20)
	             is 0.2000
	              . 0.0369
	            and 0.0369
	              I 0.0369
	            not 0.0369
	              - 0.0369
	             us 0.0369
	             of 0.0369
	             MI 0.0369
	             WI 0.0369
	             It 0.0369
	            cia 0.0369
	             iu 0.0369
	            you 0.0369
	             II 0.0369
	             In 0.0369
	            III 0.0369
	           </S> 0.0059
	            the 0.0000
	              , 0.0000

           lent   445238  13 (31)
	             in 0.8000
	           next 0.1000
	              , 0.0768
	           able 0.0369
	          lente 0.0369
	            len 0.0369
	         metric 0.0369
	          leent 0.0369
	      important 0.0369
	          going 0.0369
	          lenth 0.0369
	             of 0.0059
	              ) 0.0000
	              - 0.0000
	           line 0.0000
	           word 0.0000
	           lens 0.0000
	             to 0.0000
	            way 0.0000
	           lava 0.0000
	          thing 0.0000
	            has 0.0000
	           like 0.0000
	           </S> 0.0000
	           been 0.0000
	            and 0.0000
	           lent 0.0000
	              a 0.0000
	              I 0.0000
	              . 0.0000
	           lend 0.0000

             XI   445288   5 (27)
	             In 0.5538
	             It 0.0900
	             If 0.0570
	              I 0.0418
	            XIV 0.0369
	             XI 0.0369
	             iu 0.0369
	             us 0.0369
	              X 0.0369
	            rho 0.0369
	              a 0.0369
	            XXI 0.0369
	              s 0.0369
	             IX 0.0369
	             XP 0.0369
	            XII 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ) 0.0000
	        However 0.0000
	              ] 0.0000
	              , 0.0000
	              . 0.0000
	      ChangeLog 0.0000
	          <UNK> 0.0000

           fig.   445292   1 (33)
	            fig 0.8000
	           figi 0.2000
	           figs 0.1000
	             p. 0.0411
	              s 0.0369
	        Section 0.0369
	          World 0.0369
	            cia 0.0369
	           Pica 0.0369
	              § 0.0369
	              , 0.0369
	          <UNK> 0.0369
	             s. 0.0369
	              a 0.0369
	        section 0.0369
	            XII 0.0369
	              I 0.0369
	              y 0.0369
	          figgi 0.0369
	              x 0.0369
	           </S> 0.0369
	              | 0.0369
	            the 0.0059
	          which 0.0012
	           from 0.0000
	              i 0.0000
	          while 0.0000
	            for 0.0000
	           figo 0.0000
	           figa 0.0000
	           find 0.0000
	           page 0.0000
	             or 0.0000

        Bunting   445363   4 (28)
	         during 0.2000
	           Good 0.1000
	              ) 0.0650
	           Code 0.0369
	         States 0.0369
	        Bunting 0.0369
	       Buntingi 0.0369
	              I 0.0369
	       Buntings 0.0369
	        Busting 0.0369
	        Buntine 0.0369
	        Butting 0.0369
	             of 0.0369
	              a 0.0369
	          Stock 0.0059
	              - 0.0000
	         Shares 0.0000
	              , 0.0000
	         Rating 0.0000
	   Agricultural 0.0000
	         Market 0.0000
	          Sense 0.0000
	           Lisp 0.0000
	              . 0.0000
	           </S> 0.0000
	          using 0.0000
	        Hunting 0.0000
	        Council 0.0000

             it   445373   1 (23)
	              a 0.0369
	             iu 0.0369
	             E. 0.0369
	            iit 0.0369
	          There 0.0369
	             it 0.0369
	             in 0.0369
	              A 0.0369
	              , 0.0369
	              - 0.0369
	            ith 0.0369
	            itt 0.0369
	        Website 0.0369
	            iti 0.0369
	            its 0.0369
	             ti 0.0369
	             us 0.0369
	              . 0.0369
	             is 0.0369
	           </S> 0.0059
	              } 0.0000
	              " 0.0000
	              ) 0.0000

         sieuua   445441   4 (25)
	           some 0.1539
	            six 0.1000
	           such 0.0422
	            eua 0.0369
	         sierra 0.0369
	         sienna 0.0369
	         images 0.0369
	           seua 0.0369
	         seguia 0.0369
	         seuria 0.0369
	         sieurs 0.0369
	            sie 0.0369
	          siena 0.0369
	         slieau 0.0369
	         sinuun 0.0369
	            ieu 0.0369
	          sieur 0.0369
	            the 0.0059
	              , 0.0000
	        account 0.0000
	           </S> 0.0000
	             it 0.0000
	              a 0.0000
	              . 0.0000
	              - 0.0000

            and   445448   1 (18)
	            ant 0.0369
	           andy 0.0369
	           anda 0.0369
	              ( 0.0369
	            the 0.0369
	            arz 0.0369
	           alba 0.0369
	             us 0.0369
	              - 0.0369
	             an 0.0369
	            and 0.0369
	              , 0.0369
	              a 0.0369
	           body 0.0369
	            any 0.0369
	              . 0.0369
	           </S> 0.0369
	           aand 0.0369

        macular   445461   4 (27)
	           more 1.0000
	              , 0.4000
	           less 0.1890
	       maculara 0.0369
	            may 0.0369
	          maura 0.0369
	          would 0.0369
	       corridor 0.0369
	        maculae 0.0369
	        maclura 0.0369
	        macular 0.0369
	             us 0.0369
	            fed 0.0369
	         macula 0.0369
	           east 0.0369
	             it 0.0369
	        maculas 0.0369
	              a 0.0369
	              I 0.0369
	       maculare 0.0369
	            out 0.0059
	              . 0.0000
	              - 0.0000
	         higher 0.0000
	      different 0.0000
	           </S> 0.0000
	            the 0.0000

          along   445469   2 (22)
	              . 0.7000
	             of 0.0369
	           also 0.0369
	              I 0.0369
	           long 0.0369
	          along 0.0369
	          alona 0.0369
	         alonga 0.0369
	         alongo 0.0369
	           than 0.0369
	          alone 0.0369
	            all 0.0369
	           alba 0.0369
	         alonge 0.0369
	            the 0.0369
	              a 0.0369
	   degeneration 0.0059
	           hole 0.0000
	              , 0.0000
	              - 0.0000
	          edema 0.0000
	           </S> 0.0000

              -   445513   5 (12)
	            cia 0.0369
	             us 0.0369
	             iu 0.0369
	           </S> 0.0059
	             is 0.0000
	              . 0.0000
	              - 0.0000
	            the 0.0000
	              , 0.0000
	            and 0.0000
	             of 0.0000
	            was 0.0000

          pairs   445519   2 (32)
	              . 0.8000
	         pairas 0.0369
	         apairs 0.0369
	           past 0.0369
	           part 0.0369
	        repairs 0.0369
	         period 0.0369
	          parva 0.0369
	       invasion 0.0369
	          Parus 0.0369
	          maura 0.0369
	           high 0.0369
	         paires 0.0369
	           pars 0.0369
	              I 0.0369
	          pages 0.0369
	          pairs 0.0369
	          parsi 0.0369
	              a 0.0369
	          paire 0.0369
	          pairt 0.0369
	           page 0.0369
	          paris 0.0369
	           pair 0.0369
	           </S> 0.0059
	          Books 0.0000
	         Street 0.0000
	     Distillery 0.0000
	              " 0.0000
	        Sparrow 0.0000
	              - 0.0000
	              , 0.0000

   nidification   445535   1 (26)
	   nidification 0.5000
	            and 0.0369
	              , 0.0369
	              a 0.0369
	   Nidification 0.0369
	   nudification 0.0369
	              . 0.0369
	   codification 0.0369
	 nidificational 0.0369
	           2005 0.0369
	  nidifications 0.0369
	           2003 0.0369
	            but 0.0369
	  acidification 0.0369
	           </S> 0.0369
	              I 0.0369
	           2004 0.0369
	            the 0.0059
	             or 0.0000
	             no 0.0000
	            why 0.0000
	          which 0.0000
	              i 0.0000
	            not 0.0000
	            who 0.0000
	            yet 0.0000

           does   445548   1 (24)
	            doe 0.0369
	           dose 0.0369
	           deos 0.0369
	           more 0.0369
	           does 0.0369
	           doen 0.0369
	              - 0.0369
	             do 0.0369
	              I 0.0369
	              a 0.0369
	           Home 0.0369
	           doer 0.0369
	             us 0.0369
	          Pales 0.0369
	            did 0.0369
	          doesn 0.0369
	          doest 0.0369
	              A 0.0369
	            the 0.0369
	             of 0.0059
	           </S> 0.0000
	            and 0.0000
	              . 0.0000
	              , 0.0000

          nests   445587   1 (33)
	          nests 0.7000
	          nesta 0.1000
	         nestas 0.1000
	           when 0.0559
	              a 0.0369
	            and 0.0369
	         mental 0.0369
	        Ernests 0.0369
	           2003 0.0369
	        renests 0.0369
	            are 0.0369
	            but 0.0369
	           2004 0.0369
	           </S> 0.0369
	           2005 0.0369
	          after 0.0369
	              " 0.0369
	          <UNK> 0.0369
	              , 0.0369
	              I 0.0369
	            the 0.0059
	          which 0.0012
	          neste 0.0000
	         nestes 0.0000
	             is 0.0000
	             or 0.0000
	           ests 0.0000
	            new 0.0000
	           nest 0.0000
	            not 0.0000
	           nets 0.0000
	           need 0.0000
	              i 0.0000

          ]\Iay   445632 inf (22)
	             ay 0.6000
	             Ia 0.1000
	              I 0.0369
	              . 0.0369
	           Iway 0.0369
	           2005 0.0369
	            the 0.0059
	              , 0.0000
	           life 0.0000
	              a 0.0000
	            his 0.0000
	          their 0.0000
	           Isay 0.0000
	             us 0.0000
	            may 0.0000
	           this 0.0000
	              - 0.0000
	           eBay 0.0000
	             it 0.0000
	           Itay 0.0000
	            day 0.0000
	           </S> 0.0000

              ;   445638   1 (14)
	            the 0.0369
	            and 0.0369
	              ; 0.0369
	              . 0.0369
	             us 0.0369
	             iu 0.0369
	              , 0.0369
	          first 0.0369
	             of 0.0369
	              - 0.0369
	            cia 0.0369
	           </S> 0.0369
	           year 0.0369
	              : 0.0369

            two   445640   1 (20)
	            the 0.0369
	             tw 0.0369
	            top 0.0369
	             to 0.0369
	            cia 0.0369
	             iu 0.0369
	            wot 0.0369
	           twos 0.0369
	           twon 0.0369
	            two 0.0369
	             us 0.0369
	            tow 0.0369
	            twp 0.0369
	            twa 0.0369
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	          <UNK> 0.0000
	              ] 0.0000
	              } 0.0000

           eggs   445712  11 (27)
	           eBay 0.5000
	           eggy 0.1000
	              u 0.0369
	              x 0.0369
	          eggas 0.0369
	           eges 0.0369
	          Heggs 0.0369
	           eggo 0.0369
	          major 0.0369
	            the 0.0059
	           even 0.0000
	             an 0.0000
	            egs 0.0000
	            all 0.0000
	              - 0.0000
	           </S> 0.0000
	           eggs 0.0000
	              a 0.0000
	           your 0.0000
	             us 0.0000
	          Beggs 0.0000
	            egg 0.0000
	            you 0.0000
	           this 0.0000
	              . 0.0000
	              , 0.0000
	           each 0.0000

            Jul   445742   2 (29)
	            Jug 0.9000
	           July 0.8000
	            our 0.2917
	            any 0.0800
	          press 0.0369
	              x 0.0369
	         length 0.0369
	           2006 0.0369
	      thousands 0.0369
	            the 0.0059
	             us 0.0000
	           </S> 0.0000
	            Jul 0.0000
	             Ju 0.0000
	           Juli 0.0000
	           your 0.0000
	            cia 0.0000
	        advance 0.0000
	             iu 0.0000
	           this 0.0000
	              , 0.0000
	              a 0.0000
	          stock 0.0000
	              . 0.0000
	              - 0.0000
	           Julu 0.0000
	            Jan 0.0000
	            Jun 0.0000
	            but 0.0000

              '   445746   1 (16)
	              ' 0.6000
	              . 0.1726
	              9 0.0369
	           </S> 0.0059
	             us 0.0000
	              ) 0.0000
	              - 0.0000
	              , 0.0000
	             of 0.0000
	              ( 0.0000
	             iu 0.0000
	          <UNK> 0.0000
	              2 0.0000
	            and 0.0000
	            cia 0.0000
	            the 0.0000

           Both   445749   2 (27)
	              ' 1.0000
	           Both 0.9000
	          Thank 0.3863
	              I 0.0418
	          Botha 0.0369
	           Bott 0.0369
	           them 0.0369
	           Baya 0.0369
	           Bots 0.0369
	              a 0.0369
	          Botho 0.0369
	            Bot 0.0369
	    Topological 0.0369
	           most 0.0369
	          Booth 0.0369
	          Bothy 0.0369
	              s 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	            not 0.0000
	              . 0.0000
	              / 0.0000
	           with 0.0000
	              ) 0.0000
	              , 0.0000

     descending   445817   1 (28)
	     descending 0.8000
	            the 0.3167
	     despending 0.0369
	       descendi 0.0369
	   descendingly 0.0369
	              I 0.0369
	     Descending 0.0369
	          being 0.0369
	        details 0.0369
	     descendens 0.0369
	       scending 0.0369
	       seceding 0.0369
	            and 0.0369
	   redescending 0.0369
	           came 0.0333
	           been 0.0059
	              . 0.0000
	            did 0.0000
	             be 0.0000
	           </S> 0.0000
	            too 0.0000
	              a 0.0000
	           come 0.0000
	            get 0.0000
	              , 0.0000
	            had 0.0000
	              - 0.0000
	            got 0.0000

        towards   445963   6 (19)
	           than 0.8000
	              N 0.3000
	              - 0.3000
	           </S> 0.1000
	              a 0.1000
	        towards 0.0369
	            two 0.0369
	        cowards 0.0369
	        tocards 0.0369
	       outwards 0.0369
	      townwards 0.0369
	         toward 0.0369
	              I 0.0369
	         towars 0.0369
	              , 0.0059
	              . 0.0000
	           that 0.0000
	            and 0.0000
	             of 0.0000

  niothcr-l)ird   446052 inf (31)
	              . 0.0369
	           word 0.0369
	    contracting 0.0369
	              I 0.0369
	          third 0.0369
	    theoretical 0.0369
	    traditional 0.0369
	         better 0.0369
	            HMC 0.0369
	             or 0.0369
	          flock 0.0369
	              a 0.0369
	       families 0.0369
	        natural 0.0369
	          sheep 0.0369
	              , 0.0369
	             it 0.0369
	          weird 0.0369
	            the 0.0369
	          ninth 0.0369
	            and 0.0369
	           </S> 0.0059
	          world 0.0000
	    information 0.0000
	     University 0.0000
	          whole 0.0000
	          first 0.0000
	              - 0.0000
	          other 0.0000
	           same 0.0000
	      following 0.0000

        wanders   446066   1 (21)
	              - 0.0369
	          under 0.0369
	            out 0.0369
	             of 0.0369
	       Jwanders 0.0369
	          where 0.0369
	              , 0.0369
	       wanderst 0.0369
	              a 0.0369
	              I 0.0369
	        wandern 0.0369
	         wander 0.0369
	      wanderers 0.0369
	        wardens 0.0369
	        wanders 0.0369
	           </S> 0.0369
	        Sanders 0.0369
	             is 0.0369
	        wandert 0.0369
	              . 0.0369
	          water 0.0369

             By   446233   2 (21)
	             My 0.5980
	             By 0.2436
	              I 0.0418
	             BY 0.0369
	           Baya 0.0369
	             iu 0.0369
	            Bye 0.0369
	            Byd 0.0369
	             us 0.0369
	              a 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              , 0.0000
	             Be 0.0000
	              ] 0.0000
	             by 0.0000
	             my 0.0000
	              . 0.0000
	              ) 0.0000

       watching   446236  14 (22)
	          watch 0.6000
	              a 0.1000
	           2005 0.0369
	              ) 0.0369
	              . 0.0369
	      swatching 0.0369
	     watchingly 0.0369
	              / 0.0369
	     purchasing 0.0369
	      watchings 0.0369
	       Kitching 0.0369
	       witching 0.0369
	              : 0.0059
	       watching 0.0000
	           </S> 0.0000
	        default 0.0000
	            the 0.0000
	              - 0.0000
	          <UNK> 0.0000
	       matching 0.0000
	        waiting 0.0000
	              A 0.0000

      patiently   446245   2 (26)
	              I 0.5000
	      patiently 0.1000
	          Title 0.0369
	      Patiently 0.0369
	      paciently 0.0369
	       patently 0.0369
	             A. 0.0369
	              A 0.0369
	        patient 0.0369
	           part 0.0369
	    unpatiently 0.0369
	             J. 0.0369
	            the 0.0059
	              - 0.0000
	             it 0.0000
	           </S> 0.0000
	              , 0.0000
	            and 0.0000
	         people 0.0000
	             us 0.0000
	           them 0.0000
	             TV 0.0000
	              . 0.0000
	            him 0.0000
	              a 0.0000
	    impatiently 0.0000

             's   446326  11 (19)
	              . 0.8000
	              I 0.0369
	             so 0.0369
	             iu 0.0369
	             ss 0.0369
	              a 0.0369
	             us 0.0369
	          Earth 0.0369
	            cia 0.0369
	           </S> 0.0059
	              - 0.0000
	              , 0.0000
	              ' 0.0000
	              " 0.0000
	            Who 0.0000
	             is 0.0000
	          Books 0.0000
	             as 0.0000
	             's 0.0000

           soug   446329 inf (34)
	            sug 0.7000
	            sou 0.6000
	          sough 0.6000
	           gosu 0.0369
	         sosogu 0.0369
	            sog 0.0369
	     Zappos.com 0.0369
	         soughs 0.0369
	           head 0.0369
	        mission 0.0369
	              a 0.0059
	            the 0.0000
	           your 0.0000
	           work 0.0000
	              , 0.0000
	              - 0.0000
	           sala 0.0000
	           some 0.0000
	           soup 0.0000
	            You 0.0000
	             us 0.0000
	         sought 0.0000
	             so 0.0000
	           code 0.0000
	           sour 0.0000
	           what 0.0000
	           </S> 0.0000
	             iu 0.0000
	           soul 0.0000
	              . 0.0000
	           life 0.0000
	            not 0.0000
	           name 0.0000
	           sugo 0.0000

             is   446334   1 (22)
	              - 0.0369
	             is 0.0369
	              I 0.0369
	            iss 0.0369
	           Cree 0.0369
	        through 0.0369
	             it 0.0369
	             me 0.0369
	             iu 0.0369
	              , 0.0369
	            ist 0.0369
	             us 0.0369
	            iso 0.0369
	             si 0.0369
	            cia 0.0369
	              a 0.0369
	            iis 0.0369
	              . 0.0369
	             in 0.0369
	            ... 0.0059
	           </S> 0.0000
	             ht 0.0000

             it   446416   1 (22)
	            itt 0.0369
	              - 0.0369
	            iti 0.0369
	            ith 0.0369
	             it 0.0369
	             iu 0.0369
	              I 0.0369
	             is 0.0369
	            cia 0.0369
	              . 0.0369
	              a 0.0369
	            its 0.0369
	             in 0.0369
	             us 0.0369
	             ti 0.0369
	              , 0.0369
	            iit 0.0369
	            not 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000
	              " 0.0000

          trill   446461   1 (26)
	      elevation 0.0369
	           tril 0.0369
	          trill 0.0369
	        sources 0.0369
	              a 0.0369
	       diseases 0.0369
	         trillo 0.0369
	          Still 0.0369
	          trilt 0.0369
	           sous 0.0369
	         trills 0.0369
	          trial 0.0369
	              . 0.0059
	           this 0.0000
	              - 0.0000
	             is 0.0000
	           </S> 0.0000
	          butts 0.0000
	           bath 0.0000
	           will 0.0000
	           butt 0.0000
	          still 0.0000
	              ) 0.0000
	           wrap 0.0000
	              , 0.0000
	              I 0.0000

   interspersed   446468  19 (26)
	    intersperse 0.3786
	   intersperses 0.1000
	           work 0.0369
	       together 0.0369
	           </S> 0.0369
	            and 0.0369
	              I 0.0369
	              x 0.0369
	       handling 0.0369
	         bubble 0.0369
	       starting 0.0369
	        working 0.0369
	 uninterspersed 0.0369
	              " 0.0369
	 interspersedly 0.0369
	              a 0.0369
	   intersperser 0.0369
	            the 0.0059
	     interposed 0.0000
	          which 0.0000
	          other 0.0000
	             or 0.0000
	           were 0.0000
	             of 0.0000
	   interspersed 0.0000
	          there 0.0000

          drawn   446493   8 (25)
	           down 0.6000
	        drawnat 0.0369
	           held 0.0369
	      sustained 0.0369
	         drawen 0.0369
	         drawne 0.0369
	              - 0.0059
	              , 0.0000
	             as 0.0000
	           </S> 0.0000
	           time 0.0000
	              x 0.0000
	           draw 0.0000
	          drawl 0.0000
	              I 0.0000
	              . 0.0000
	          draws 0.0000
	           term 0.0000
	            day 0.0000
	          drawn 0.0000
	           data 0.0000
	          grass 0.0000
	        periods 0.0000
	              a 0.0000
	            way 0.0000

   marvellously   446513   2 (22)
	    marvelously 0.4000
	    recommended 0.0369
	   marvellously 0.0369
	              - 0.0369
	          print 0.0369
	              I 0.0369
	              a 0.0059
	          often 0.0000
	           used 0.0000
	      available 0.0000
	           made 0.0000
	            the 0.0000
	           well 0.0000
	              , 0.0000
	      marvelous 0.0000
	         really 0.0000
	              . 0.0000
	             so 0.0000
	     marvellous 0.0000
	             an 0.0000
	           </S> 0.0000
	            not 0.0000

   exhilarating   446526   2 (27)
	           well 0.0619
	     exhilarati 0.0369
	              I 0.0369
	            bad 0.0369
	            say 0.0369
	          being 0.0369
	           free 0.0369
	      available 0.0369
	   exhilaration 0.0369
	        however 0.0369
	   exhilarating 0.0369
	 exhilaratingly 0.0369
	             us 0.0369
	   exhilarative 0.0369
	              a 0.0369
	    exhilarator 0.0369
	     surprising 0.0369
	 unexhilarating 0.0369
	         within 0.0369
	              . 0.0059
	         helped 0.0000
	              - 0.0000
	             to 0.0000
	              , 0.0000
	      beautiful 0.0000
	           good 0.0000
	           </S> 0.0000

    considering   446540   2 (24)
	  reconsidering 0.2000
	    considerint 0.0369
	     considerin 0.0369
	              " 0.0369
	            and 0.0369
	    considering 0.0369
	          multi 0.0369
	           year 0.0369
	   considerings 0.0369
	         online 0.0369
	            but 0.0369
	    considerino 0.0369
	              x 0.0369
	            the 0.0059
	          using 0.0000
	              e 0.0000
	      including 0.0000
	           then 0.0000
	           with 0.0000
	             of 0.0000
	             or 0.0000
	             so 0.0000
	              i 0.0000
	          which 0.0000

         either   446602  11 (21)
	         within 0.2000
	        neither 0.0369
	         tither 0.0369
	          Other 0.0369
	         eather 0.0369
	          eiter 0.0369
	        Neither 0.0369
	         esther 0.0369
	         hither 0.0369
	              , 0.0059
	            the 0.0000
	              - 0.0000
	           when 0.0000
	             us 0.0000
	           </S> 0.0000
	          other 0.0000
	              . 0.0000
	              I 0.0000
	              a 0.0000
	         either 0.0000
	              " 0.0000

        soaring   446609   2 (26)
	             in 0.4917
	        soaring 0.1000
	         soring 0.0369
	       soarings 0.0369
	       roarings 0.0369
	              A 0.0369
	         minors 0.0369
	      soaringly 0.0369
	         oaring 0.0369
	            the 0.0059
	            way 0.0000
	        staring 0.0000
	         Rating 0.0000
	              - 0.0000
	         during 0.0000
	           case 0.0000
	           side 0.0000
	           that 0.0000
	              a 0.0000
	          using 0.0000
	              , 0.0000
	              I 0.0000
	           </S> 0.0000
	       directly 0.0000
	        sharing 0.0000
	              . 0.0000

       consists   446699   1 (26)
	       consists 0.0369
	        consist 0.0369
	        version 0.0369
	        Ranches 0.0369
	        control 0.0369
	         online 0.0369
	       concisus 0.0369
	              a 0.0369
	              I 0.0369
	        percent 0.0369
	       database 0.0369
	       consiste 0.0369
	       consista 0.0369
	      consistis 0.0369
	       consisti 0.0369
	       consisto 0.0369
	           cost 0.0369
	      consistes 0.0369
	        reviews 0.0369
	           </S> 0.0059
	              , 0.0000
	    Calandrella 0.0000
	              " 0.0000
	          Books 0.0000
	              - 0.0000
	              . 0.0000

            but   446755   1 (26)
	              , 0.0369
	            buy 0.0369
	            bus 0.0369
	             us 0.0369
	              e 0.0369
	           live 0.0369
	            tub 0.0369
	             iu 0.0369
	            cia 0.0369
	              - 0.0369
	       Software 0.0369
	             by 0.0369
	            hid 0.0369
	     documented 0.0369
	           buts 0.0369
	            but 0.0369
	             bu 0.0369
	              I 0.0369
	             be 0.0369
	              a 0.0369
	           butt 0.0369
	              . 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	              " 0.0000

     gregarious   446916   1 (25)
	     gregarious 0.1000
	        general 0.0369
	      gregarius 0.0369
	        because 0.0369
	     Gregarious 0.0369
	      available 0.0369
	              a 0.0369
	      gregarios 0.0369
	              . 0.0369
	             to 0.0369
	              - 0.0369
	              I 0.0369
	          great 0.0369
	    gregarinous 0.0369
	   gregariously 0.0369
	   ungregarious 0.0369
	           good 0.0059
	              , 0.0000
	        similar 0.0000
	           well 0.0000
	        limited 0.0000
	           </S> 0.0000
	      important 0.0000
	           much 0.0000
	     interested 0.0000

        immense   446959  16 (22)
	              . 0.5000
	       security 0.0369
	             us 0.0369
	          large 0.0369
	       immensae 0.0369
	         immens 0.0369
	       immenses 0.0369
	        immenso 0.0369
	        immensa 0.0369
	           time 0.0369
	              - 0.0369
	          phone 0.0369
	        immensi 0.0369
	           into 0.0369
	              , 0.0059
	            its 0.0000
	           </S> 0.0000
	            the 0.0000
	        immense 0.0000
	              a 0.0000
	              I 0.0000
	             of 0.0000

       iisually   447002  11 (20)
	              I 0.4000
	        Usually 0.0369
	       iishaaly 0.0369
	              s 0.0369
	      Nisqually 0.0369
	       issuably 0.0369
	          shall 0.0369
	      itinually 0.0369
	         female 0.0369
	              , 0.0059
	       visually 0.0000
	             is 0.0000
	        usually 0.0000
	            are 0.0000
	            and 0.0000
	              - 0.0000
	           </S> 0.0000
	              . 0.0000
	              a 0.0000
	           will 0.0000

      realizing   447011   1 (22)
	              I 0.0369
	    realizingly 0.0369
	           </S> 0.0369
	              , 0.0369
	              - 0.0369
	    unrealizing 0.0369
	          small 0.0369
	        pigeons 0.0369
	      including 0.0369
	      realizing 0.0369
	        reading 0.0369
	              . 0.0369
	      Realizing 0.0369
	      receiving 0.0369
	      reglazing 0.0369
	            the 0.0369
	           died 0.0369
	   relegalizing 0.0369
	      realising 0.0369
	              a 0.0369
	        animals 0.0369
	            and 0.0369

           from   447021  10 (20)
	          their 0.6917
	          fromm 0.0369
	           frog 0.0369
	           fron 0.0369
	            arz 0.0369
	           form 0.0369
	          fromt 0.0369
	            fro 0.0369
	           that 0.0059
	             it 0.0000
	              I 0.0000
	              . 0.0000
	              - 0.0000
	           from 0.0000
	            for 0.0000
	            the 0.0000
	              , 0.0000
	           </S> 0.0000
	           this 0.0000
	              a 0.0000

             gd   447026 inf (23)
	             dg 0.2000
	            gdb 0.1000
	            the 0.0059
	             us 0.0000
	              - 0.0000
	            gda 0.0000
	              . 0.0000
	             go 0.0000
	            cia 0.0000
	             gd 0.0000
	             do 0.0000
	           </S> 0.0000
	           CliC 0.0000
	            get 0.0000
	            you 0.0000
	              , 0.0000
	             of 0.0000
	          <UNK> 0.0000
	              a 0.0000
	            one 0.0000
	             gi 0.0000
	              $ 0.0000
	             iu 0.0000

             to   447030  12 (23)
	           This 0.3358
	              I 0.0418
	              a 0.0369
	            top 0.0369
	            too 0.0369
	             ot 0.0369
	             iu 0.0369
	            cia 0.0369
	             us 0.0369
	             th 0.0369
	             tv 0.0369
	             to 0.0265
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ) 0.0000
	             of 0.0000
	              . 0.0000
	              , 0.0000
	              ] 0.0000
	              / 0.0000
	      Searching 0.0000
	            the 0.0000

         apiece   447037   4 (24)
	              - 0.1000
	              . 0.1000
	              A 0.1000
	          piece 0.0369
	             to 0.0369
	           that 0.0369
	      tolerated 0.0369
	              a 0.0369
	         apiece 0.0369
	            and 0.0369
	            are 0.0369
	          apice 0.0369
	           free 0.0369
	          excel 0.0369
	        apieces 0.0369
	          piace 0.0369
	        apience 0.0369
	             us 0.0369
	           </S> 0.0059
	              " 0.0000
	              I 0.0000
	              , 0.0000
	          Price 0.0000
	              ) 0.0000

            the   447119   1 (21)
	           they 0.0369
	            thy 0.0369
	             us 0.0369
	              a 0.0369
	            teh 0.0369
	       entities 0.0369
	              , 0.0369
	              . 0.0369
	         except 0.0369
	            tho 0.0369
	            cia 0.0369
	             iu 0.0369
	           thee 0.0369
	           them 0.0369
	       agencies 0.0369
	             to 0.0369
	            the 0.0369
	           </S> 0.0059
	              " 0.0000
	              } 0.0000
	              ) 0.0000

             In   447188   1 (19)
	             In 0.5538
	             It 0.0900
	             If 0.0570
	              I 0.0418
	            Inn 0.0369
	            Inc 0.0369
	             us 0.0369
	             iu 0.0369
	              a 0.0369
	              s 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ] 0.0000
	            the 0.0000
	              . 0.0000
	              ) 0.0000
	              , 0.0000

        rearing   447224   1 (30)
	         during 0.0369
	             an 0.0369
	         Rating 0.0369
	       rearings 0.0369
	        gearing 0.0369
	        nearing 0.0369
	              I 0.0369
	              a 0.0369
	           real 0.0369
	            the 0.0369
	         Amazon 0.0369
	          least 0.0369
	              - 0.0369
	       rearming 0.0369
	           </S> 0.0369
	              . 0.0369
	        rearing 0.0369
	        roaring 0.0369
	        reading 0.0369
	       drearing 0.0369
	              , 0.0369
	         raring 0.0369
	         making 0.0369
	           this 0.0369
	           your 0.0059
	              x 0.0000
	           work 0.0000
	        writing 0.0000
	          which 0.0000
	             us 0.0000

            Sky   447232   2 (26)
	             us 0.1000
	           Skye 0.0369
	            cia 0.0369
	            Ski 0.0369
	           time 0.0369
	            Pyi 0.0369
	            Ska 0.0369
	            See 0.0369
	           Skyy 0.0369
	              e 0.0369
	           drop 0.0369
	            Sky 0.0369
	            Syk 0.0369
	              I 0.0369
	             Sk 0.0369
	              C 0.0369
	              , 0.0059
	            and 0.0000
	       children 0.0000
	              - 0.0000
	            the 0.0000
	             my 0.0000
	              . 0.0000
	           </S> 0.0000
	              a 0.0000
	             by 0.0000

              -   447235   7 (15)
	        Dancers 0.0369
	     Soundtrack 0.0369
	            cia 0.0369
	             iu 0.0369
	             us 0.0369
	           </S> 0.0059
	              . 0.0000
	           Blue 0.0000
	              , 0.0000
	           High 0.0000
	              - 0.0000
	         Harbor 0.0000
	             of 0.0000
	            and 0.0000
	            the 0.0000

          Larks   447236   1 (32)
	          Larks 0.5000
	         Laarks 0.0369
	         update 0.0369
	      published 0.0369
	           news 0.0369
	       Larksmen 0.0369
	              s 0.0369
	            off 0.0369
	         select 0.0369
	              - 0.0079
	           </S> 0.0059
	           Lark 0.0000
	             up 0.0000
	             to 0.0000
	           Last 0.0000
	         Laskar 0.0000
	           arks 0.0000
	           mail 0.0000
	          Parus 0.0000
	          Links 0.0000
	             of 0.0000
	          <UNK> 0.0000
	          Larus 0.0000
	           part 0.0000
	              A 0.0000
	              . 0.0000
	       Larkspur 0.0000
	              a 0.0000
	              I 0.0000
	         Lanius 0.0000
	            the 0.0000
	              ) 0.0000

          seven   447268   3 (24)
	            see 0.5000
	           been 0.2000
	          seven 0.1000
	           very 0.0369
	              I 0.0369
	          sever 0.0369
	         sevens 0.0369
	         sevene 0.0369
	              t 0.0369
	            too 0.0369
	            not 0.0369
	          seves 0.0369
	          Aedon 0.0369
	           from 0.0059
	             my 0.0000
	             by 0.0000
	              . 0.0000
	             to 0.0000
	              , 0.0000
	           </S> 0.0000
	            sex 0.0000
	            the 0.0000
	              - 0.0000
	              a 0.0000

            but   447352   1 (21)
	             be 0.0369
	             us 0.0369
	              . 0.0369
	           butt 0.0369
	            buy 0.0369
	            bus 0.0369
	              a 0.0369
	            tub 0.0369
	             iu 0.0369
	            cia 0.0369
	             by 0.0369
	              , 0.0369
	              - 0.0369
	           buts 0.0369
	             bu 0.0369
	              I 0.0369
	            but 0.0369
	           </S> 0.0059
	              } 0.0000
	              " 0.0000
	              ) 0.0000

        bounded   447414  10 (23)
	       Abounded 0.0369
	         bouned 0.0369
	         turned 0.0369
	        bounder 0.0369
	      boundedly 0.0369
	         bonded 0.0369
	           turn 0.0369
	        bounden 0.0369
	           that 0.0059
	              , 0.0000
	              I 0.0000
	           </S> 0.0000
	          would 0.0000
	          found 0.0000
	              . 0.0000
	          under 0.0000
	              a 0.0000
	           work 0.0000
	              " 0.0000
	       abounded 0.0000
	              - 0.0000
	              i 0.0000
	        bounded 0.0000

      alighting   447477  10 (31)
	            sat 0.0369
	         report 0.0369
	            sit 0.0369
	       reliance 0.0369
	          right 0.0369
	              i 0.0369
	      technique 0.0369
	          slept 0.0369
	       allthing 0.0369
	      alighting 0.0250
	            the 0.0059
	              ( 0.0000
	           save 0.0000
	           also 0.0000
	     alightings 0.0000
	              I 0.0000
	              , 0.0000
	            all 0.0000
	            not 0.0000
	           more 0.0000
	           then 0.0000
	       lighting 0.0000
	    information 0.0000
	          other 0.0000
	           </S> 0.0000
	          <UNK> 0.0000
	             to 0.0000
	      blighting 0.0000
	             so 0.0000
	              - 0.0000
	              a 0.0000

         bought   447556   2 (28)
	             on 0.0541
	          about 0.0369
	            but 0.0369
	              a 0.0369
	           </S> 0.0369
	      outbought 0.0369
	         bought 0.0369
	            and 0.0369
	          bough 0.0369
	              I 0.0369
	        boughts 0.0369
	         boughs 0.0369
	         boughy 0.0369
	          <UNK> 0.0369
	              ( 0.0369
	              " 0.0369
	             as 0.0369
	        boughty 0.0369
	           with 0.0062
	            the 0.0059
	          which 0.0012
	            for 0.0000
	              i 0.0000
	             is 0.0000
	           your 0.0000
	             or 0.0000
	           that 0.0000
	            has 0.0000

     Larkrunuer   447571 inf (26)
	              x 0.3000
	              L 0.0369
	            War 0.0369
	         border 0.0369
	        Warrior 0.0369
	         broker 0.0369
	          Karen 0.0369
	          value 0.0369
	              s 0.0369
	          other 0.0369
	        neutral 0.0369
	           Here 0.0369
	          Atlas 0.0369
	         target 0.0369
	     Hoodwinked 0.0369
	              ) 0.0333
	           </S> 0.0059
	              - 0.0000
	              I 0.0000
	          <UNK> 0.0000
	              A 0.0000
	              , 0.0000
	              a 0.0000
	              . 0.0000
	              " 0.0000
	            are 0.0000

           cage   447599   3 (26)
	             to 0.6000
	              - 0.3000
	           cags 0.0369
	           cago 0.0369
	           cega 0.0369
	           song 0.0369
	             of 0.0369
	           sala 0.0369
	            can 0.0369
	          cages 0.0369
	            cia 0.0369
	           film 0.0369
	           lava 0.0369
	           page 0.0369
	           cage 0.0369
	              I 0.0369
	          caged 0.0369
	         caggee 0.0369
	           Page 0.0369
	              , 0.0059
	          shape 0.0000
	            and 0.0000
	              . 0.0000
	           </S> 0.0000
	              S 0.0000
	           body 0.0000

             In   447672   1 (20)
	             In 0.5538
	             It 0.0900
	             in 0.0634
	            for 0.0601
	             If 0.0570
	              I 0.0418
	            Inn 0.0369
	          where 0.0369
	            Inc 0.0369
	             us 0.0369
	             iu 0.0369
	            cia 0.0369
	              a 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ) 0.0000
	              . 0.0000
	              , 0.0000

          Sedge   447696   1 (36)
	          Sedge 0.2000
	           well 0.0369
	           Sdge 0.0369
	          Aedon 0.0369
	              D 0.0369
	              e 0.0369
	          gedge 0.0369
	          three 0.0369
	          minor 0.0369
	              C 0.0369
	       Sedgeley 0.0369
	         Sedges 0.0369
	            bug 0.0369
	          Sedgy 0.0369
	             24 0.0369
	            few 0.0097
	           </S> 0.0059
	            one 0.0000
	           full 0.0000
	            See 0.0000
	            two 0.0000
	          Serge 0.0000
	          <UNK> 0.0000
	          major 0.0000
	            new 0.0000
	           Sede 0.0000
	           Send 0.0000
	         Sledge 0.0000
	              - 0.0000
	           Sign 0.0000
	            non 0.0000
	              " 0.0000
	         couple 0.0000
	              ) 0.0000
	           edge 0.0000
	            lot 0.0000

           ui}'   447722 inf (23)
	             it 0.1000
	           uiui 0.0369
	             ui 0.0369
	             iu 0.0369
	           uint 0.0369
	            cia 0.0369
	              I 0.0369
	              Q 0.0369
	            uin 0.0369
	            the 0.0059
	            use 0.0000
	            and 0.0000
	              . 0.0000
	            uit 0.0000
	             in 0.0000
	              a 0.0000
	           </S> 0.0000
	             us 0.0000
	              , 0.0000
	              - 0.0000
	           your 0.0000
	              ' 0.0000
	             up 0.0000

          birds   447727   1 (25)
	         Vbirds 0.0369
	          First 0.0369
	           </S> 0.0369
	         birdes 0.0369
	              a 0.0369
	              . 0.0369
	           back 0.0369
	          birdy 0.0369
	          birda 0.0369
	          trust 0.0369
	        birdsit 0.0369
	          Parus 0.0369
	         Turdus 0.0369
	          birds 0.0369
	          bands 0.0369
	           bids 0.0369
	          first 0.0369
	              , 0.0369
	           bird 0.0369
	              - 0.0369
	            the 0.0369
	          faith 0.0369
	         bridds 0.0369
	             in 0.0369
	            big 0.0369

            cue   447736 inf (28)
	             cu 0.3000
	            our 0.2917
	            cue 0.1000
	            ceu 0.0369
	           cuce 0.0369
	              x 0.0369
	          which 0.0297
	            the 0.0059
	          their 0.0000
	           your 0.0000
	           cues 0.0000
	            can 0.0000
	           cued 0.0000
	           </S> 0.0000
	           this 0.0000
	              - 0.0000
	            cia 0.0000
	            But 0.0000
	             iu 0.0000
	            cum 0.0000
	             at 0.0000
	            but 0.0000
	              a 0.0000
	           more 0.0000
	            cut 0.0000
	             us 0.0000
	              . 0.0000
	              , 0.0000

            ]jy   447740  14 (23)
	              I 0.5000
	             my 0.4386
	            cia 0.0369
	             jy 0.0369
	         second 0.0369
	          least 0.0369
	            Pyi 0.0369
	          third 0.0369
	            ajy 0.0369
	            Kjy 0.0369
	            Ajy 0.0369
	           than 0.0369
	           from 0.0059
	             of 0.0000
	              a 0.0000
	             us 0.0000
	             is 0.0000
	           </S> 0.0000
	              , 0.0000
	              . 0.0000
	              - 0.0000
	             by 0.0000
	            any 0.0000

            one   447744   1 (23)
	             us 0.0369
	              I 0.0369
	            one 0.0369
	            the 0.0369
	      billiards 0.0369
	              a 0.0369
	              ) 0.0369
	              . 0.0369
	           </S> 0.0369
	            cia 0.0369
	             iu 0.0369
	              , 0.0369
	            ons 0.0369
	            ont 0.0369
	            oen 0.0369
	           onee 0.0369
	             of 0.0369
	       clearing 0.0369
	             on 0.0369
	              - 0.0369
	           ones 0.0369
	           oner 0.0369
	           onen 0.0369

        jumping   447787  16 (25)
	              - 0.0369
	        Guiping 0.0369
	         juping 0.0369
	        jimping 0.0369
	        Cumming 0.0369
	           from 0.0369
	              , 0.0369
	       jumpings 0.0369
	         umping 0.0369
	              . 0.0369
	         making 0.0369
	      jumpingly 0.0369
	          being 0.0369
	        justina 0.0369
	            own 0.0059
	          lives 0.0000
	           </S> 0.0000
	          using 0.0000
	         during 0.0000
	       children 0.0000
	         hearts 0.0000
	            use 0.0000
	     respective 0.0000
	            way 0.0000
	        jumping 0.0000

           When   447863   1 (24)
	           When 1.0000
	           when 0.3642
	           What 0.0807
	             If 0.0570
	              I 0.0418
	          WhenU 0.0369
	           Whey 0.0369
	           Whew 0.0369
	             12 0.0369
	              a 0.0369
	            hen 0.0369
	         Whenua 0.0369
	             or 0.0369
	          Wehen 0.0369
	          Wheen 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	           then 0.0000
	              , 0.0000
	              . 0.0000
	              ) 0.0000
	              ] 0.0000

            off   447893   1 (25)
	            off 0.8000
	             on 0.2000
	              a 0.0369
	            ofo 0.0369
	            ofa 0.0369
	            cia 0.0369
	             iu 0.0369
	            oft 0.0369
	             us 0.0369
	              i 0.0369
	           offs 0.0369
	           ooff 0.0369
	           offa 0.0369
	              . 0.0059
	            and 0.0000
	             of 0.0000
	            the 0.0000
	              - 0.0000
	             to 0.0000
	             or 0.0000
	           </S> 0.0000
	         people 0.0000
	              I 0.0000
	              , 0.0000
	            for 0.0000

        blanket   447906  11 (31)
	        blanked 0.1000
	            sun 0.0369
	       blaakten 0.0369
	       ablenket 0.0369
	              , 0.0369
	            hip 0.0369
	          terms 0.0369
	          truth 0.0369
	           </S> 0.0059
	           same 0.0037
	       blankets 0.0000
	            top 0.0000
	           time 0.0000
	          world 0.0000
	           last 0.0000
	          State 0.0000
	        blanche 0.0000
	         blanke 0.0000
	      following 0.0000
	        blanker 0.0000
	          <UNK> 0.0000
	            web 0.0000
	       blankety 0.0000
	              " 0.0000
	        blanket 0.0000
	           best 0.0000
	        bladder 0.0000
	         blanca 0.0000
	              - 0.0000
	          state 0.0000
	          first 0.0000

        tumbled   447935  13 (22)
	         number 0.7000
	             is 0.2000
	        tumbles 0.0369
	      betumbled 0.0369
	         tumble 0.0369
	      tumblewed 0.0369
	         Humble 0.0369
	          there 0.0369
	        tumbler 0.0369
	              I 0.0369
	       stumbled 0.0111
	              . 0.0059
	           </S> 0.0000
	              , 0.0000
	            and 0.0000
	              - 0.0000
	              a 0.0000
	              ! 0.0000
	            can 0.0000
	        tumbled 0.0000
	        members 0.0000
	             of 0.0000

              -   448003   5 (13)
	           </S> 0.6000
	              s 0.0369
	            cia 0.0369
	              , 0.0059
	            the 0.0000
	             -- 0.0000
	              " 0.0000
	             us 0.0000
	             of 0.0000
	            and 0.0000
	              - 0.0000
	             at 0.0000
	              . 0.0000

            lec   448005 inf (33)
	          lecce 0.3250
	            cel 0.3000
	            lec 0.2000
	           like 0.1580
	          linux 0.0369
	          howto 0.0369
	              s 0.0369
	              n 0.0369
	           name 0.0369
	              - 0.0079
	           </S> 0.0059
	           lect 0.0000
	              a 0.0000
	          <UNK> 0.0000
	          leave 0.0000
	             le 0.0000
	             in 0.0000
	           lava 0.0000
	            New 0.0000
	             to 0.0000
	             rw 0.0000
	             up 0.0000
	             of 0.0000
	              A 0.0000
	            new 0.0000
	            let 0.0000
	           lech 0.0000
	              . 0.0000
	            the 0.0000
	              ) 0.0000
	              I 0.0000
	            led 0.0000
	             us 0.0000

              -   448008   8 (13)
	            and 0.3000
	             us 0.0369
	             iu 0.0369
	            the 0.0369
	           name 0.0369
	             -- 0.0369
	            cia 0.0369
	              - 0.0059
	             of 0.0000
	              . 0.0000
	             is 0.0000
	           </S> 0.0000
	              , 0.0000

          tcc-u   448013 inf (34)
	          Ntccc 0.0369
	              a 0.0369
	            but 0.0369
	           cutu 0.0369
	           fast 0.0369
	          techu 0.0369
	       Straight 0.0369
	           Atcc 0.0369
	           Dtcc 0.0369
	           Ctcc 0.0369
	     Scotchgard 0.0369
	      therefore 0.0369
	              I 0.0369
	            ctu 0.0369
	          <UNK> 0.0369
	              - 0.0369
	            and 0.0369
	           </S> 0.0369
	             us 0.0369
	              , 0.0369
	              . 0.0369
	           ticu 0.0369
	            the 0.0059
	          which 0.0012
	           tchu 0.0000
	          tchau 0.0000
	         though 0.0000
	              i 0.0000
	           that 0.0000
	            tcu 0.0000
	             or 0.0000
	             to 0.0000
	             tc 0.0000
	            too 0.0000

            and   448029   1 (19)
	             us 0.0369
	              , 0.0369
	           andy 0.0369
	           anda 0.0369
	              . 0.0369
	             an 0.0369
	            and 0.0369
	            arz 0.0369
	           alba 0.0369
	            ant 0.0369
	              I 0.0369
	            any 0.0369
	           aand 0.0369
	              - 0.0369
	              A 0.0369
	           </S> 0.0059
	              ) 0.0000
	          <UNK> 0.0000
	              } 0.0000

         wear}-   448090   1 (21)
	          weary 0.9000
	           were 0.6000
	         Search 0.5000
	           </S> 0.0725
	              . 0.0369
	         wearer 0.0369
	          weare 0.0369
	          wears 0.0369
	            the 0.0059
	       recently 0.0000
	          years 0.0000
	            now 0.0000
	              a 0.0000
	             it 0.0000
	            you 0.0000
	              , 0.0000
	              : 0.0000
	              i 0.0000
	           wear 0.0000
	              I 0.0000
	           then 0.0000

            and   448098   2 (19)
	           when 0.0559
	            ant 0.0369
	            and 0.0369
	              " 0.0369
	           aand 0.0369
	              I 0.0369
	            arz 0.0369
	           alba 0.0369
	             an 0.0369
	           andy 0.0369
	           anda 0.0369
	           </S> 0.0369
	            any 0.0369
	            the 0.0059
	          which 0.0012
	             or 0.0000
	             of 0.0000
	             us 0.0000
	              i 0.0000

          tlien   448102  16 (29)
	          think 0.5000
	         teilen 0.0369
	          tliet 0.0369
	         tulien 0.0369
	         tolien 0.0369
	          trien 0.0369
	              . 0.0369
	            put 0.0369
	         tilien 0.0369
	          never 0.0369
	         tillen 0.0369
	            and 0.0369
	          tsien 0.0369
	        Atliens 0.0369
	            the 0.0059
	           tien 0.0000
	          Alien 0.0000
	              , 0.0000
	           tlen 0.0000
	           lien 0.0000
	          thing 0.0000
	              - 0.0000
	           this 0.0000
	           </S> 0.0000
	              a 0.0000
	             we 0.0000
	             he 0.0000
	              I 0.0000
	           then 0.0000

        tumbled   448108   1 (23)
	           </S> 0.0369
	        tumbles 0.0369
	           them 0.0369
	           come 0.0369
	              I 0.0369
	         tumble 0.0369
	             us 0.0369
	            the 0.0369
	         number 0.0369
	         Number 0.0369
	             go 0.0369
	              - 0.0369
	              . 0.0369
	        tumbler 0.0369
	              a 0.0369
	        tumbled 0.0369
	      betumbled 0.0369
	       stumbled 0.0369
	           they 0.0369
	         Humble 0.0369
	             it 0.0369
	      tumblewed 0.0369
	              , 0.0059

           They   448159   1 (19)
	           They 1.0000
	           This 0.3358
	              I 0.0418
	           Them 0.0369
	          Theys 0.0369
	          Theyr 0.0369
	              a 0.0369
	           Tehy 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	            The 0.0131
	           </S> 0.0059
	              , 0.0000
	              ) 0.0000
	           they 0.0000
	              . 0.0000
	          <UNK> 0.0000
	           Then 0.0000

         seemed   448164  18 (23)
	              , 1.0000
	           seed 0.5000
	          semed 0.3000
	         series 0.1000
	              ) 0.0369
	          seeme 0.0369
	          stood 0.0369
	       meseemed 0.0369
	          semen 0.0369
	              . 0.0369
	         seemee 0.0369
	       beseemed 0.0369
	        steemed 0.0369
	         semeed 0.0369
	         seemer 0.0369
	         severe 0.0369
	            are 0.0059
	         seemed 0.0000
	           </S> 0.0000
	           have 0.0000
	         server 0.0000
	           were 0.0000
	           seen 0.0000

          the}'   448204   6 (19)
	              , 0.0768
	          theet 0.0369
	          thete 0.0369
	              i 0.0369
	             of 0.0059
	           </S> 0.0000
	           thee 0.0000
	          their 0.0000
	              I 0.0000
	             to 0.0000
	              a 0.0000
	            the 0.0000
	          there 0.0000
	            and 0.0000
	           they 0.0000
	           them 0.0000
	              . 0.0000
	             or 0.0000
	              - 0.0000

            got   448210   1 (22)
	            got 0.0369
	              - 0.0369
	           </S> 0.0369
	            not 0.0369
	            get 0.0369
	            the 0.0369
	             to 0.0369
	            god 0.0369
	              . 0.0369
	            and 0.0369
	             us 0.0369
	            cia 0.0369
	             iu 0.0369
	              a 0.0369
	              , 0.0369
	           more 0.0369
	             go 0.0369
	           goth 0.0369
	           gott 0.0369
	            goo 0.0369
	           goto 0.0369
	              I 0.0369

  subsequentl}'   448259  10 (20)
	   subsequentes 0.0369
	           sent 0.0369
	              I 0.0369
	      currently 0.0369
	    subsequente 0.0369
	     subsequent 0.0369
	       recently 0.0369
	  subsequential 0.0369
	             'm 0.0059
	              J 0.0000
	           just 0.0000
	           </S> 0.0000
	             am 0.0000
	            see 0.0000
	              . 0.0000
	   subsequently 0.0000
	              , 0.0000
	              - 0.0000
	           have 0.0000
	            've 0.0000

      purchased   448273   1 (21)
	      purchased 0.0369
	              , 0.0369
	            the 0.0369
	              . 0.0369
	      purchases 0.0369
	            not 0.0369
	       purchase 0.0369
	              I 0.0369
	              - 0.0369
	             to 0.0369
	           </S> 0.0369
	             in 0.0369
	              O 0.0369
	         posted 0.0369
	           post 0.0369
	           used 0.0369
	           have 0.0369
	    unpurchased 0.0369
	      purchaser 0.0369
	              a 0.0369
	    repurchased 0.0369

         3'oung   448285   1 (28)
	          young 0.8000
	           very 0.5672
	          goung 0.0369
	         amoung 0.0369
	          white 0.0369
	      defective 0.0369
	          Loung 0.0369
	            Kit 0.0369
	              ( 0.0369
	            few 0.0097
	           </S> 0.0059
	          <UNK> 0.0000
	          Sound 0.0000
	           year 0.0000
	         ground 0.0000
	          small 0.0000
	          found 0.0000
	            new 0.0000
	         around 0.0000
	            oun 0.0000
	              ) 0.0000
	          Young 0.0000
	            lot 0.0000
	           goun 0.0000
	         single 0.0000
	          major 0.0000
	          going 0.0000
	              - 0.0000

           male   448292   1 (25)
	           mael 0.0369
	          malle 0.0369
	            may 0.0369
	    motherboard 0.0369
	          maura 0.0369
	            mal 0.0369
	        product 0.0369
	          maler 0.0369
	           time 0.0369
	          malee 0.0369
	           made 0.0369
	              , 0.0369
	             of 0.0369
	          males 0.0369
	              a 0.0369
	          major 0.0369
	           </S> 0.0369
	              . 0.0369
	           make 0.0369
	           mall 0.0369
	           malt 0.0369
	              I 0.0369
	           male 0.0369
	              - 0.0369
	           sala 0.0369

              -   448459   9 (15)
	              . 0.8000
	          drive 0.0369
	             iu 0.0369
	             us 0.0369
	            man 0.0369
	            cia 0.0369
	     2002-09-15 0.0369
	           </S> 0.0059
	              - 0.0000
	              , 0.0000
	            the 0.0000
	          Books 0.0000
	             -- 0.0000
	             of 0.0000
	            and 0.0000

    continually   448557  10 (24)
	        through 0.7000
	      continual 0.0369
	   continuality 0.0369
	             us 0.0369
	    continuable 0.0369
	   continuantly 0.0369
	     continuall 0.0369
	     continuata 0.0369
	            the 0.0059
	              a 0.0000
	             to 0.0000
	              I 0.0000
	           only 0.0000
	           will 0.0000
	           </S> 0.0000
	              , 0.0000
	    continually 0.0000
	              . 0.0000
	             in 0.0000
	            all 0.0000
	            and 0.0000
	             it 0.0000
	        between 0.0000
	              - 0.0000

         fl\ing   448604   4 (31)
	           King 0.9000
	            had 0.3143
	          fling 0.3000
	         filing 0.1000
	         flying 0.1000
	            and 0.0369
	              V 0.0369
	      Northeast 0.0369
	           fing 0.0369
	              I 0.0369
	            day 0.0369
	           flin 0.0369
	            rod 0.0369
	           been 0.0059
	           </S> 0.0000
	            ing 0.0000
	          using 0.0000
	         flings 0.0000
	        flowing 0.0000
	        filling 0.0000
	            the 0.0000
	           know 0.0000
	          being 0.0000
	              . 0.0000
	             be 0.0000
	              - 0.0000
	           find 0.0000
	              a 0.0000
	         closes 0.0000
	              , 0.0000
	      displayed 0.0000

              ,   448610   1 (13)
	              . 0.0369
	             of 0.0369
	             be 0.0369
	            the 0.0369
	              - 0.0369
	              , 0.0369
	             to 0.0369
	            cia 0.0369
	             iu 0.0369
	              a 0.0369
	             us 0.0369
	           </S> 0.0369
	            and 0.0369

           when   448622   1 (21)
	           when 0.9000
	           whey 0.0369
	              - 0.0369
	           well 0.0369
	          whenu 0.0369
	          whens 0.0369
	          wheen 0.0369
	          wehen 0.0369
	           whet 0.0369
	            and 0.0286
	            the 0.0059
	              , 0.0000
	           were 0.0000
	              . 0.0000
	             of 0.0000
	           </S> 0.0000
	              a 0.0000
	              I 0.0000
	           that 0.0000
	            who 0.0000
	          those 0.0000

     recklessly   448654   9 (20)
	       research 0.0369
	      recklessc 0.0369
	        process 0.0369
	     Recklessly 0.0369
	     fecklessly 0.0369
	           well 0.0369
	       reckless 0.0369
	             to 0.0059
	        because 0.0000
	              - 0.0000
	              a 0.0000
	              . 0.0000
	              I 0.0000
	            the 0.0000
	           from 0.0000
	           </S> 0.0000
	              , 0.0000
	     recklessly 0.0000
	            now 0.0000
	          today 0.0000

  consecjuences   448693  16 (29)
	              : 0.8000
	            one 0.7000
	        changes 0.0369
	       products 0.0369
	             up 0.0369
	       anything 0.0369
	   consecuentes 0.0369
	       services 0.0369
	    consecuente 0.0369
	       students 0.0369
	  consecuencias 0.0369
	       evidence 0.0369
	       visitors 0.0369
	   consequenced 0.0369
	            the 0.0059
	           </S> 0.0000
	          <UNK> 0.0000
	              a 0.0000
	              , 0.0000
	        Service 0.0000
	        service 0.0000
	   consequences 0.0000
	         course 0.0000
	             us 0.0000
	    consequence 0.0000
	          their 0.0000
	       interest 0.0000
	              - 0.0000
	           this 0.0000

             to   448707   1 (19)
	             of 0.0369
	              a 0.0369
	             in 0.0369
	              - 0.0369
	              . 0.0369
	            the 0.0369
	            top 0.0369
	             th 0.0369
	             iu 0.0369
	             tv 0.0369
	              I 0.0369
	             ot 0.0369
	            too 0.0369
	              , 0.0369
	            and 0.0369
	           </S> 0.0369
	             us 0.0369
	             to 0.0369
	            cia 0.0369

             he   448867   1 (23)
	             he 0.0369
	            hee 0.0369
	             hi 0.0369
	             hr 0.0369
	             us 0.0369
	            hey 0.0369
	              - 0.0369
	             iu 0.0369
	            cia 0.0369
	            her 0.0369
	              a 0.0369
	            The 0.0369
	              I 0.0369
	              . 0.0369
	            and 0.0369
	            heh 0.0369
	              , 0.0369
	            the 0.0369
	             eh 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000
	              " 0.0000

           claw   448906  14 (27)
	            can 0.7000
	           </S> 0.2000
	           alba 0.0369
	            cla 0.0369
	             of 0.0369
	          clawk 0.0369
	           lava 0.0369
	            cia 0.0369
	          claws 0.0369
	             to 0.0369
	           clan 0.0369
	           cawl 0.0369
	             be 0.0059
	           that 0.0000
	          class 0.0000
	              - 0.0000
	            the 0.0000
	           clay 0.0000
	              . 0.0000
	              a 0.0000
	              , 0.0000
	           like 0.0000
	             in 0.0000
	           have 0.0000
	              I 0.0000
	            was 0.0000
	           claw 0.0000

     watercress   448959   2 (26)
	          <UNK> 0.2000
	              A 0.0369
	          grits 0.0369
	     watercress 0.0369
	              I 0.0369
	         catsup 0.0369
	      waterless 0.0369
	           milk 0.0369
	      cellulose 0.0369
	      watercise 0.0369
	     pyrethrins 0.0369
	              . 0.0369
	              - 0.0369
	     Watercress 0.0369
	   watercresses 0.0369
	            the 0.0059
	              a 0.0000
	      materials 0.0000
	          water 0.0000
	              " 0.0000
	        protein 0.0000
	             an 0.0000
	           </S> 0.0000
	              , 0.0000
	     TWikiUsers 0.0000
	       material 0.0000

             In   449037   1 (20)
	             In 0.5538
	             It 0.0900
	             If 0.0570
	              I 0.0418
	              a 0.0369
	             us 0.0369
	            Inc 0.0369
	            Inn 0.0369
	             iu 0.0369
	            cia 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ) 0.0000
	              / 0.0000
	             of 0.0000
	            the 0.0000
	              , 0.0000
	              . 0.0000

              I   449054   1 (29)
	             II 0.0369
	            III 0.0369
	              8 0.0369
	              1 0.0369
	            cia 0.0369
	           2005 0.0369
	           2004 0.0369
	           </S> 0.0369
	            and 0.0369
	              , 0.0369
	             WI 0.0369
	              9 0.0369
	             MI 0.0369
	              ) 0.0369
	             In 0.0369
	              I 0.0369
	              ( 0.0369
	             It 0.0369
	          <UNK> 0.0369
	            the 0.0059
	          which 0.0012
	             to 0.0000
	             us 0.0000
	             we 0.0000
	            was 0.0000
	             iu 0.0000
	             or 0.0000
	           were 0.0000
	             of 0.0000

       nestling   449069  11 (22)
	        nothing 0.3000
	        nesting 0.1000
	        neblina 0.0369
	              a 0.0369
	      nesteling 0.0369
	       nettling 0.0369
	     nestlingly 0.0369
	       Nestling 0.0369
	       Hertling 0.0369
	              - 0.0059
	       nestling 0.0000
	           </S> 0.0000
	        setting 0.0000
	            new 0.0000
	              . 0.0000
	      nestlings 0.0000
	          years 0.0000
	        testing 0.0000
	              , 0.0000
	            and 0.0000
	          major 0.0000
	             of 0.0000

            Sky   449078   3 (30)
	             us 0.9000
	             my 0.1000
	            Syk 0.0369
	             Sk 0.0369
	            Ski 0.0369
	            Pyi 0.0369
	            cia 0.0369
	            Ska 0.0369
	           Skyy 0.0369
	              I 0.0369
	           Bare 0.0369
	            Sky 0.0369
	            See 0.0369
	           year 0.0369
	              e 0.0369
	           Skye 0.0369
	             in 0.0059
	            and 0.0000
	              . 0.0000
	            Red 0.0000
	              , 0.0000
	              a 0.0000
	         period 0.0000
	            one 0.0000
	            red 0.0000
	           </S> 0.0000
	             of 0.0000
	             by 0.0000
	              - 0.0000
	             on 0.0000

          Larks   449082   1 (34)
	          Larks 0.5000
	           High 0.0369
	            use 0.0369
	         Laarks 0.0369
	            new 0.0369
	       Larksmen 0.0369
	           Tyne 0.0369
	         played 0.0369
	              s 0.0369
	              - 0.0079
	           </S> 0.0059
	              . 0.0000
	          <UNK> 0.0000
	       Larkspur 0.0000
	           part 0.0000
	              a 0.0000
	              ) 0.0000
	         Laskar 0.0000
	          Links 0.0000
	          Parus 0.0000
	             to 0.0000
	           mail 0.0000
	           Last 0.0000
	              A 0.0000
	             up 0.0000
	              I 0.0000
	           term 0.0000
	           Lark 0.0000
	            the 0.0000
	         Lanius 0.0000
	           line 0.0000
	          Larus 0.0000
	           time 0.0000
	           arks 0.0000

        brought   449092   1 (29)
	        brought 0.4067
	         brough 0.4000
	            let 0.0369
	           help 0.0369
	        setting 0.0369
	            put 0.0369
	       ybrought 0.0369
	      upbrought 0.0369
	           pick 0.0369
	            set 0.0369
	      broughten 0.0369
	              i 0.0369
	        broughs 0.0369
	            the 0.0059
	              I 0.0000
	        through 0.0000
	           </S> 0.0000
	           make 0.0000
	          other 0.0000
	         bought 0.0000
	              ( 0.0000
	           more 0.0000
	           from 0.0000
	              , 0.0000
	           used 0.0000
	              - 0.0000
	          <UNK> 0.0000
	          right 0.0000
	              a 0.0000

    Nightingale   449116   1 (26)
	           high 0.0369
	       original 0.0369
	         native 0.0369
	              , 0.0369
	    Nightingale 0.0369
	    Nightengale 0.0369
	         return 0.0369
	              . 0.0369
	      situation 0.0369
	           neck 0.0369
	           land 0.0369
	   Nightingales 0.0369
	              - 0.0369
	       products 0.0059
	       favorite 0.0000
	         little 0.0000
	            way 0.0000
	           work 0.0000
	           </S> 0.0000
	           feet 0.0000
	            own 0.0000
	            web 0.0000
	    nightingale 0.0000
	          first 0.0000
	          right 0.0000
	           life 0.0000

           food   449128   1 (28)
	           food 0.0369
	              a 0.0369
	           fodo 0.0369
	            foo 0.0369
	           fool 0.0369
	           foot 0.0369
	          foods 0.0369
	          foody 0.0369
	            fod 0.0369
	              I 0.0369
	           good 0.0369
	              A 0.0369
	           life 0.0369
	         friend 0.0369
	           </S> 0.0059
	           Lane 0.0000
	              . 0.0000
	              ' 0.0000
	           Road 0.0000
	            and 0.0000
	              - 0.0000
	          House 0.0000
	              ) 0.0000
	              , 0.0000
	         Island 0.0000
	           from 0.0000
	              " 0.0000
	            for 0.0000

            the   449216   1 (18)
	           they 0.0369
	            and 0.0369
	              I 0.0369
	            the 0.0369
	              , 0.0369
	            thy 0.0369
	            cia 0.0369
	           them 0.0369
	            tho 0.0369
	           thee 0.0369
	              a 0.0369
	            teh 0.0369
	             us 0.0369
	              . 0.0369
	              s 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000

         Bulbul   449293   2 (26)
	           full 0.3000
	            but 0.0369
	           Bulb 0.0369
	              a 0.0369
	         Bulbul 0.0369
	           Blub 0.0369
	        Lullula 0.0369
	        Bulbula 0.0369
	        Bulbule 0.0369
	        galbula 0.0369
	         Bulbus 0.0369
	         Bulbuk 0.0369
	             of 0.0369
	         number 0.0369
	   Translations 0.0369
	              I 0.0369
	           Gulf 0.0059
	              - 0.0000
	         empire 0.0000
	              ( 0.0000
	           </S> 0.0000
	              , 0.0000
	            and 0.0000
	              . 0.0000
	         Empire 0.0000
	           Bull 0.0000

           into   449300   3 (25)
	              R 0.5000
	            and 0.1000
	          minor 0.0369
	             iu 0.0369
	          Sitta 0.0369
	           nito 0.0369
	          tinto 0.0369
	            its 0.0369
	            int 0.0369
	              a 0.0369
	            War 0.0369
	          intoa 0.0369
	          intox 0.0369
	           inte 0.0369
	           intl 0.0369
	          Farsi 0.0369
	           into 0.0369
	         Sharma 0.0059
	              - 0.0000
	              , 0.0000
	              . 0.0000
	           </S> 0.0000
	          Films 0.0000
	              M 0.0000
	             in 0.0000

          Larks   449409  18 (29)
	           Last 0.9000
	          Large 0.1000
	           arks 0.0369
	          Larus 0.0369
	             of 0.0369
	              a 0.0369
	         Laskar 0.0369
	          Parus 0.0369
	         Lanius 0.0369
	          parva 0.0369
	           Lark 0.0369
	       Larkspur 0.0369
	              I 0.0369
	       Larksmen 0.0369
	              : 0.0369
	         Laarks 0.0369
	         people 0.0059
	            men 0.0000
	              - 0.0000
	       children 0.0000
	            age 0.0000
	              , 0.0000
	              . 0.0000
	          girls 0.0000
	           </S> 0.0000
	           Park 0.0000
	          Links 0.0000
	            man 0.0000
	          Larks 0.0000

           when   449415   1 (19)
	           whey 0.0369
	           whet 0.0369
	              I 0.0369
	              a 0.0369
	          wheen 0.0369
	          whens 0.0369
	          whenu 0.0369
	            who 0.0369
	          wehen 0.0369
	           well 0.0369
	           when 0.0369
	              ' 0.0059
	           </S> 0.0000
	              - 0.0000
	            and 0.0000
	              , 0.0000
	           were 0.0000
	              . 0.0000
	             as 0.0000

       Although   449546   1 (20)
	       Although 1.0000
	            and 0.0369
	       Althouse 0.0369
	            but 0.0369
	        through 0.0369
	             us 0.0369
	      allthough 0.0369
	           your 0.0369
	              k 0.0369
	              a 0.0369
	         though 0.0369
	       although 0.0369
	           </S> 0.0059
	              " 0.0000
	              , 0.0000
	            All 0.0000
	              I 0.0000
	              ) 0.0000
	              - 0.0000
	              . 0.0000

          cramp   449579   1 (33)
	          cramp 0.9000
	         cramps 0.2000
	          humor 0.0369
	         carpam 0.0369
	         pramac 0.0369
	          corax 0.0369
	            fun 0.0369
	          crame 0.0369
	           fact 0.0369
	            the 0.0059
	          crams 0.0000
	          their 0.0000
	           this 0.0000
	              : 0.0000
	           cram 0.0000
	            can 0.0000
	           that 0.0000
	              - 0.0000
	            cia 0.0000
	          Frame 0.0000
	              a 0.0000
	           name 0.0000
	           them 0.0000
	             us 0.0000
	         crampy 0.0000
	          <UNK> 0.0000
	           same 0.0000
	          class 0.0000
	             it 0.0000
	           </S> 0.0000
	           time 0.0000
	           came 0.0000
	              , 0.0000

         reared   449603  15 (30)
	          reads 0.4000
	         feared 0.0369
	         rearer 0.0369
	             of 0.0369
	        Breared 0.0369
	          reade 0.0369
	          eared 0.0369
	              a 0.0369
	         behind 0.0369
	        rearmed 0.0369
	              I 0.0369
	         roared 0.0369
	          reare 0.0369
	              - 0.0059
	        support 0.0000
	       equipped 0.0000
	         expect 0.0000
	     understand 0.0000
	           with 0.0000
	     integrated 0.0000
	           read 0.0000
	              . 0.0000
	         reader 0.0000
	         reared 0.0000
	              , 0.0000
	           </S> 0.0000
	    participate 0.0000
	         review 0.0000
	             to 0.0000
	         really 0.0000

          moult   449640   1 (25)
	          moult 1.0000
	      migration 0.9000
	            and 0.1575
	          multo 0.0369
	        moulted 0.0369
	         moults 0.0369
	          maura 0.0369
	          mouth 0.0369
	           moul 0.0369
	          mould 0.0369
	         moulut 0.0369
	          years 0.0369
	          moule 0.0369
	              . 0.0059
	          would 0.0000
	              a 0.0000
	             as 0.0000
	          could 0.0000
	              , 0.0000
	              - 0.0000
	           most 0.0000
	             of 0.0000
	             in 0.0000
	           </S> 0.0000
	              I 0.0000

            two   449646   3 (26)
	              - 0.3583
	              a 0.1000
	              I 0.0369
	           twos 0.0369
	           twon 0.0369
	            tow 0.0369
	            cia 0.0369
	             iu 0.0369
	            wot 0.0369
	            twp 0.0369
	            twa 0.0369
	         mosaic 0.0369
	             us 0.0369
	           part 0.0369
	             tw 0.0369
	         winter 0.0369
	            two 0.0369
	            top 0.0369
	              . 0.0059
	            and 0.0000
	          cycle 0.0000
	      migration 0.0000
	           </S> 0.0000
	            the 0.0000
	              , 0.0000
	             to 0.0000

            the   449665   1 (18)
	              I 0.0369
	              . 0.0369
	            thy 0.0369
	           them 0.0369
	            tho 0.0369
	              a 0.0369
	            the 0.0369
	            cia 0.0369
	             iu 0.0369
	            teh 0.0369
	             us 0.0369
	           they 0.0369
	           thee 0.0369
	              , 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000
	              " 0.0000

           tame   449700  19 (28)
	           time 0.8000
	        written 0.0667
	           them 0.0369
	           lava 0.0369
	           tama 0.0369
	           Baya 0.0369
	          tamme 0.0369
	           tami 0.0369
	          tamer 0.0369
	            tam 0.0369
	              I 0.0369
	           take 0.0369
	             of 0.0369
	          tamed 0.0369
	           team 0.0369
	           sala 0.0369
	              a 0.0369
	              . 0.0059
	         unique 0.0000
	           </S> 0.0000
	           well 0.0000
	       relaxing 0.0000
	            the 0.0000
	              , 0.0000
	           tame 0.0000
	      beautiful 0.0000
	              - 0.0000
	           rich 0.0000

         little   449705  10 (17)
	        littles 0.0369
	        littler 0.0369
	         littly 0.0369
	          Title 0.0369
	         littet 0.0369
	          Sitta 0.0369
	          litle 0.0369
	         listed 0.0369
	            the 0.0059
	              - 0.0000
	              I 0.0000
	              a 0.0000
	              . 0.0000
	           </S> 0.0000
	              , 0.0000
	         little 0.0000
	            and 0.0000

             it   449773   1 (23)
	              , 0.0369
	              - 0.0369
	             it 0.0369
	              i 0.0369
	              I 0.0369
	             in 0.0369
	            itt 0.0369
	            iit 0.0369
	            ith 0.0369
	            cia 0.0369
	             iu 0.0369
	              a 0.0369
	             is 0.0369
	              . 0.0369
	            the 0.0369
	             ti 0.0369
	            its 0.0369
	             us 0.0369
	            iti 0.0369
	           </S> 0.0059
	              } 0.0000
	              " 0.0000
	              ) 0.0000

          crest   449831  18 (28)
	            way 0.2167
	          heels 0.0369
	              - 0.0369
	     contractor 0.0369
	           cres 0.0369
	              . 0.0369
	          cress 0.0369
	         cresta 0.0369
	        cracked 0.0369
	         member 0.0369
	         follow 0.0369
	          cresc 0.0369
	         creste 0.0369
	              I 0.0369
	              , 0.0369
	          major 0.0369
	            own 0.0059
	          cross 0.0000
	              a 0.0000
	           best 0.0000
	          crest 0.0000
	         crests 0.0000
	           sole 0.0000
	           </S> 0.0000
	          great 0.0000
	     affiliates 0.0000
	           head 0.0000
	           case 0.0000

             it   449874  10 (22)
	            its 0.1000
	             ti 0.0369
	            itt 0.0369
	             iu 0.0369
	            ith 0.0369
	            iit 0.0369
	            cia 0.0369
	            iti 0.0369
	            flu 0.0059
	             in 0.0000
	             us 0.0000
	              a 0.0000
	           will 0.0000
	              I 0.0000
	             of 0.0000
	              - 0.0000
	           that 0.0000
	              , 0.0000
	             it 0.0000
	             is 0.0000
	              . 0.0000
	           </S> 0.0000

     eventually   449952   1 (25)
	            all 0.0369
	           make 0.0369
	              a 0.0369
	            not 0.0369
	     Eventually 0.0369
	          still 0.0369
	              . 0.0369
	              - 0.0369
	    eventuality 0.0369
	           that 0.0369
	      eventuali 0.0369
	              I 0.0369
	              , 0.0369
	     eventually 0.0369
	             us 0.0369
	         placed 0.0369
	         really 0.0369
	          found 0.0369
	       eventual 0.0369
	     eventfully 0.0369
	           well 0.0369
	           </S> 0.0059
	              " 0.0000
	              } 0.0000
	              ) 0.0000

           This   450002   1 (24)
	           This 0.3358
	              I 0.0418
	            Thi 0.0369
	           Tihs 0.0369
	            cia 0.0369
	             iu 0.0369
	             us 0.0369
	           Thin 0.0369
	           Thia 0.0369
	          Thies 0.0369
	          Thise 0.0369
	         Thisbe 0.0369
	              a 0.0369
	           Tish 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	            The 0.0131
	           </S> 0.0059
	              ) 0.0000
	              , 0.0000
	              . 0.0000
	           this 0.0000
	              ] 0.0000

       perching   450029   1 (28)
	       perching 0.9000
	       parching 0.6000
	       Wenching 0.2000
	      prechinge 0.0369
	        perlini 0.0369
	              . 0.0369
	       peaching 0.0369
	      pierching 0.0369
	     reperching 0.0369
	            him 0.0369
	         saying 0.0369
	      perchings 0.0369
	            the 0.0059
	          being 0.0000
	              a 0.0000
	            you 0.0000
	              , 0.0000
	           </S> 0.0000
	             us 0.0000
	        Service 0.0000
	       Perching 0.0000
	             it 0.0000
	           them 0.0000
	            her 0.0000
	              - 0.0000
	           this 0.0000
	        service 0.0000
	          their 0.0000

        hanging   450084  18 (24)
	              a 0.6000
	           high 0.0369
	       changing 0.0369
	        handing 0.0369
	             do 0.0369
	          going 0.0369
	              1 0.0369
	        hagging 0.0369
	              I 0.0369
	       hangings 0.0369
	           same 0.0369
	        Lansing 0.0369
	           heel 0.0369
	             us 0.0369
	         hangin 0.0369
	         Rating 0.0369
	              - 0.0059
	           foot 0.0000
	              . 0.0000
	            the 0.0000
	              , 0.0000
	        hanging 0.0000
	             it 0.0000
	           </S> 0.0000

        roosted   450141   1 (29)
	        roosted 0.9000
	          count 0.0369
	        rooster 0.0369
	          falls 0.0369
	            not 0.0369
	              I 0.0369
	             us 0.0369
	        depends 0.0369
	        roodste 0.0369
	         roosed 0.0369
	        Wooster 0.0369
	        greener 0.0369
	          stays 0.0369
	          based 0.0369
	        roostey 0.0369
	      roosterde 0.0369
	      unroosted 0.0369
	        rodster 0.0369
	           been 0.0059
	              . 0.0000
	             be 0.0000
	         rooted 0.0000
	              a 0.0000
	           used 0.0000
	           </S> 0.0000
	          right 0.0000
	              - 0.0000
	              , 0.0000
	           good 0.0000

        Judging   450197  10 (22)
	        funding 0.8000
	        nudging 0.2000
	              . 0.1212
	        judging 0.1000
	         Posted 0.0369
	           Sort 0.0369
	        Jugging 0.0369
	        Jugiong 0.0369
	           </S> 0.0059
	              I 0.0000
	              , 0.0000
	         during 0.0000
	              a 0.0000
	              s 0.0000
	              \ 0.0000
	        running 0.0000
	          <UNK> 0.0000
	              - 0.0000
	              A 0.0000
	        Judging 0.0000
	              * 0.0000
	              / 0.0000

            mj^   450208   7 (24)
	            our 0.3000
	            mjw 0.2000
	              . 0.0472
	            mji 0.0369
	              i 0.0369
	            the 0.0059
	             mj 0.0000
	             us 0.0000
	            mje 0.0000
	            his 0.0000
	            cia 0.0000
	           your 0.0000
	            may 0.0000
	          <UNK> 0.0000
	          their 0.0000
	              - 0.0000
	             me 0.0000
	              : 0.0000
	          major 0.0000
	              a 0.0000
	           </S> 0.0000
	             my 0.0000
	              e 0.0000
	              , 0.0000

            own   450212   1 (23)
	           owns 0.0369
	           </S> 0.0369
	       personal 0.0369
	             us 0.0369
	            won 0.0369
	            now 0.0369
	              , 0.0369
	            own 0.0369
	              a 0.0369
	              . 0.0369
	            owl 0.0369
	             on 0.0369
	             iu 0.0369
	            and 0.0369
	              I 0.0369
	             ow 0.0369
	           owne 0.0369
	            one 0.0369
	            the 0.0369
	            owe 0.0369
	             of 0.0369
	              - 0.0369
	            cia 0.0369

        rearing   450230   7 (29)
	       breaking 0.6000
	        roaring 0.1000
	        working 0.0369
	       drearing 0.0369
	           real 0.0369
	            the 0.0059
	       rearming 0.0000
	        rearing 0.0000
	         during 0.0000
	        gearing 0.0000
	        dealing 0.0000
	              - 0.0000
	              a 0.0000
	           life 0.0000
	           this 0.0000
	           </S> 0.0000
	        nearing 0.0000
	          being 0.0000
	             us 0.0000
	         Rating 0.0000
	              : 0.0000
	            our 0.0000
	         raring 0.0000
	          <UNK> 0.0000
	        Reading 0.0000
	       rearings 0.0000
	        reading 0.0000
	          their 0.0000
	              , 0.0000

            Sky   450238   4 (26)
	            non 0.7000
	             us 0.1000
	            any 0.1000
	            Sky 0.0369
	           Skyy 0.0369
	            Ska 0.0369
	            Pyi 0.0369
	            cia 0.0369
	             Sk 0.0369
	            Ski 0.0369
	           anti 0.0369
	              I 0.0369
	              C 0.0369
	            Syk 0.0369
	           Skye 0.0369
	              e 0.0369
	              , 0.0059
	             by 0.0000
	       children 0.0000
	             my 0.0000
	            and 0.0000
	              - 0.0000
	           with 0.0000
	              a 0.0000
	           </S> 0.0000
	              . 0.0000

          Larks   450242   1 (30)
	          Larks 0.5000
	              s 0.0369
	           that 0.0369
	             so 0.0369
	          which 0.0369
	          maybe 0.0369
	         Laarks 0.0369
	           when 0.0369
	       Larksmen 0.0369
	              - 0.0079
	           </S> 0.0059
	             to 0.0000
	              A 0.0000
	          Links 0.0000
	            are 0.0000
	          Larus 0.0000
	              ) 0.0000
	         Laskar 0.0000
	          Parus 0.0000
	              I 0.0000
	           part 0.0000
	              . 0.0000
	           Lark 0.0000
	              a 0.0000
	             up 0.0000
	          <UNK> 0.0000
	       Larkspur 0.0000
	         Lanius 0.0000
	           arks 0.0000
	            the 0.0000

    Whitethroat   450325   1 (29)
	    Whitethroat 0.8000
	              . 0.0369
	      Whitetara 0.0369
	              a 0.0369
	           wasp 0.0369
	            the 0.0369
	         author 0.0369
	        student 0.0369
	       bachelor 0.0369
	     Whitethorn 0.0369
	              , 0.0369
	             it 0.0369
	     University 0.0369
	          viper 0.0369
	         doctor 0.0369
	            rat 0.0369
	         moment 0.0369
	   Whitethroats 0.0369
	       children 0.0369
	           </S> 0.0059
	          major 0.0000
	              - 0.0000
	          child 0.0000
	    whitethroat 0.0000
	      different 0.0000
	         person 0.0000
	            new 0.0000
	          woman 0.0000
	            few 0.0000

             's   450336   2 (17)
	              ' 0.5000
	              I 0.0369
	             as 0.0369
	             ss 0.0369
	             iu 0.0369
	             so 0.0369
	              a 0.0369
	             's 0.0369
	             us 0.0369
	            cia 0.0369
	           </S> 0.0059
	             is 0.0000
	              ( 0.0000
	              . 0.0000
	              - 0.0000
	              , 0.0000
	             of 0.0000

          fixed   450344   3 (21)
	           free 0.2000
	          first 0.1000
	        affixed 0.0369
	              f 0.0369
	          fixes 0.0369
	        fixedly 0.0369
	          fixed 0.0369
	         fixend 0.0369
	          fixer 0.0369
	        defixed 0.0369
	         defixe 0.0369
	           fixe 0.0369
	              . 0.0059
	              - 0.0000
	             of 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	              I 0.0000
	           find 0.0000
	            egg 0.0000

            the   450376   1 (19)
	            you 0.0369
	              , 0.0369
	            tho 0.0369
	              a 0.0369
	           them 0.0369
	            thy 0.0369
	            the 0.0369
	            teh 0.0369
	           thee 0.0369
	            cia 0.0369
	             iu 0.0369
	              . 0.0369
	          using 0.0369
	              I 0.0369
	           they 0.0369
	             us 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000

          the}-   450442   8 (18)
	            and 0.3150
	              a 0.0369
	          theet 0.0369
	          thete 0.0369
	           thee 0.0369
	              i 0.0369
	              . 0.0059
	             to 0.0000
	              I 0.0000
	            the 0.0000
	           them 0.0000
	              , 0.0000
	           </S> 0.0000
	           than 0.0000
	              - 0.0000
	          there 0.0000
	          their 0.0000
	           they 0.0000

         crouch   450448   1 (21)
	           </S> 0.0369
	              a 0.0369
	           they 0.0369
	              - 0.0369
	            and 0.0369
	        crouchy 0.0369
	         Crouch 0.0369
	              . 0.0369
	              I 0.0369
	       crouched 0.0369
	         crochu 0.0369
	          could 0.0369
	         crouch 0.0369
	          chour 0.0369
	        curruca 0.0369
	          Group 0.0369
	         crotch 0.0369
	              , 0.0369
	              i 0.0369
	         around 0.0369
	          couch 0.0369

            but   450534   1 (21)
	           buts 0.0369
	              a 0.0369
	              . 0.0369
	             bu 0.0369
	             us 0.0369
	            buy 0.0369
	            bus 0.0369
	              , 0.0369
	             be 0.0369
	            tub 0.0369
	             iu 0.0369
	            cia 0.0369
	              - 0.0369
	           butt 0.0369
	              I 0.0369
	            but 0.0369
	             by 0.0369
	           </S> 0.0059
	              " 0.0000
	              } 0.0000
	              ) 0.0000

      moistened   450638  11 (23)
	    unmoistened 0.0369
	              i 0.0369
	     vegetables 0.0369
	          sperm 0.0369
	     moisteners 0.0369
	    bemoistened 0.0369
	      moistener 0.0369
	       business 0.0369
	          water 0.0369
	            the 0.0059
	           </S> 0.0000
	      moistened 0.0000
	              - 0.0000
	              , 0.0000
	              ( 0.0000
	          other 0.0000
	           more 0.0000
	       moistens 0.0000
	              a 0.0000
	           most 0.0000
	        moisten 0.0000
	          <UNK> 0.0000
	              I 0.0000

           ants   450648   1 (24)
	           alba 0.0369
	           ante 0.0369
	              n 0.0369
	          antsy 0.0369
	              : 0.0369
	          antsa 0.0369
	            arz 0.0369
	            ant 0.0369
	           ants 0.0369
	              I 0.0369
	            any 0.0369
	           anst 0.0369
	             us 0.0369
	           with 0.0059
	              - 0.0000
	              , 0.0000
	              a 0.0000
	           anti 0.0000
	           </S> 0.0000
	            the 0.0000
	              . 0.0000
	            his 0.0000
	             an 0.0000
	            and 0.0000

              '   450652   1 (11)
	              ' 1.0000
	            cia 0.0369
	             iu 0.0369
	              , 0.0059
	              - 0.0000
	            the 0.0000
	              . 0.0000
	             of 0.0000
	             us 0.0000
	            and 0.0000
	           </S> 0.0000

        cocoons   450654   1 (27)
	        cocoons 1.0000
	          found 0.0369
	       termites 0.0369
	         corone 0.0369
	        Cocoons 0.0369
	        harvest 0.0369
	          nests 0.0369
	        contact 0.0369
	       cocotons 0.0369
	        cochons 0.0369
	         cocons 0.0369
	           nest 0.0369
	       comments 0.0369
	           </S> 0.0059
	         button 0.0000
	              ) 0.0000
	          coons 0.0000
	              a 0.0000
	              s 0.0000
	              - 0.0000
	              I 0.0000
	              . 0.0000
	         cocoon 0.0000
	              , 0.0000
	              A 0.0000
	          <UNK> 0.0000
	             em 0.0000

           When   450663   1 (24)
	           When 1.0000
	             In 0.5538
	           when 0.3642
	            For 0.2625
	           What 0.0807
	              I 0.0418
	         Whenua 0.0369
	              a 0.0369
	          Wheen 0.0369
	          WhenU 0.0369
	           Whey 0.0369
	           Whew 0.0369
	            hen 0.0369
	          Wehen 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              . 0.0000
	              ] 0.0000
	              ) 0.0000
	           then 0.0000
	              / 0.0000
	              , 0.0000

      mealworms   450688   1 (25)
	       mealworm 0.0369
	      mealworms 0.0369
	              a 0.0369
	      maltworms 0.0369
	         before 0.0369
	          meals 0.0369
	      leafworms 0.0369
	              I 0.0369
	             us 0.0369
	      Mealworms 0.0369
	              - 0.0059
	           more 0.0000
	         months 0.0000
	           days 0.0000
	            and 0.0000
	           </S> 0.0000
	              . 0.0000
	             in 0.0000
	          hours 0.0000
	          major 0.0000
	              , 0.0000
	             of 0.0000
	          years 0.0000
	          times 0.0000
	        members 0.0000

        canar}'   450718   9 (25)
	          times 0.0369
	        canaria 0.0369
	          canar 0.0369
	            fun 0.0369
	         change 0.0369
	            ink 0.0369
	        cancrar 0.0369
	            the 0.0059
	    information 0.0000
	           life 0.0000
	         canary 0.0000
	           </S> 0.0000
	          <UNK> 0.0000
	              a 0.0000
	         people 0.0000
	           this 0.0000
	         canard 0.0000
	         Canada 0.0000
	         course 0.0000
	           time 0.0000
	             us 0.0000
	              , 0.0000
	          their 0.0000
	              - 0.0000
	              : 0.0000

            and   450726   1 (16)
	           </S> 0.0369
	            ant 0.0369
	           andy 0.0369
	              I 0.0369
	            and 0.0369
	            arz 0.0369
	              a 0.0369
	           anda 0.0369
	              - 0.0369
	              , 0.0369
	           aand 0.0369
	             us 0.0369
	              . 0.0369
	            any 0.0369
	             an 0.0369
	           alba 0.0369

     watercress   450759   8 (21)
	      waterless 0.1000
	              . 0.0369
	      watercise 0.0369
	            and 0.0369
	              i 0.0369
	           were 0.0369
	            the 0.0059
	           even 0.0000
	     Watercress 0.0000
	       Services 0.0000
	   watercresses 0.0000
	              , 0.0000
	          there 0.0000
	     watercress 0.0000
	             it 0.0000
	              - 0.0000
	           then 0.0000
	           </S> 0.0000
	              I 0.0000
	              a 0.0000
	           that 0.0000

           when   450770   3 (23)
	           were 0.1000
	              I 0.1000
	            the 0.0369
	            who 0.0369
	           when 0.0369
	         easily 0.0369
	           whet 0.0369
	          wheen 0.0369
	          wehen 0.0369
	           well 0.0369
	             us 0.0369
	          whenu 0.0369
	           whey 0.0369
	              a 0.0369
	             's 0.0369
	          whens 0.0369
	              , 0.0059
	            was 0.0000
	          salad 0.0000
	              . 0.0000
	            and 0.0000
	           </S> 0.0000
	              - 0.0000

         1891-2   450872 inf (28)
	    information 0.4000
	         things 0.0369
	           1981 0.0369
	           1991 0.0369
	           1861 0.0369
	        1971-72 0.0369
	      2001-2002 0.0369
	      1998-1999 0.0369
	           1982 0.0369
	              . 0.0369
	             is 0.0369
	           1862 0.0369
	           1918 0.0369
	           2001 0.0369
	        1941-42 0.0369
	           2002 0.0369
	            and 0.0369
	        1998-99 0.0369
	           2003 0.0369
	            the 0.0059
	              , 0.0000
	              - 0.0000
	          their 0.0000
	           this 0.0000
	             us 0.0000
	              a 0.0000
	         people 0.0000
	           </S> 0.0000

           that   450879   1 (21)
	           thai 0.0369
	          thatt 0.0369
	            tha 0.0369
	          thatn 0.0369
	            and 0.0369
	              - 0.0369
	             in 0.0369
	          thats 0.0369
	              I 0.0369
	           thaa 0.0369
	          torax 0.0369
	              a 0.0369
	             of 0.0369
	            cia 0.0369
	           hath 0.0369
	            the 0.0369
	           that 0.0369
	           than 0.0369
	           </S> 0.0059
	              . 0.0000
	              , 0.0000

           nets   450927  15 (32)
	             us 0.2000
	            net 0.1000
	         camera 0.0369
	              . 0.0369
	           dick 0.0369
	              , 0.0369
	           netz 0.0369
	         tongue 0.0369
	              a 0.0369
	          Enets 0.0369
	          netts 0.0369
	          netus 0.0369
	          enets 0.0369
	       products 0.0059
	           nets 0.0000
	           next 0.0000
	            new 0.0000
	           </S> 0.0000
	           need 0.0000
	           life 0.0000
	           neck 0.0000
	           hand 0.0000
	           hair 0.0000
	           nett 0.0000
	           cock 0.0000
	            own 0.0000
	              ( 0.0000
	           near 0.0000
	            way 0.0000
	           time 0.0000
	           wife 0.0000
	           nest 0.0000

       thirteen   450956   2 (20)
	              I 0.5000
	           this 0.0369
	      thirteens 0.0369
	       Thirteen 0.0369
	          there 0.0369
	       thirteen 0.0369
	     thirteenth 0.0369
	        hirteen 0.0369
	              A 0.0369
	           page 0.0059
	          three 0.0000
	              - 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	              | 0.0000
	              / 0.0000
	              . 0.0000
	           with 0.0000
	            and 0.0000

            Sky   450965   3 (30)
	             my 0.6000
	             by 0.6000
	             Sk 0.0369
	            See 0.0369
	          tacho 0.0369
	            Pyi 0.0369
	             us 0.0369
	           Skyy 0.0369
	              a 0.0369
	            Sky 0.0369
	            Ska 0.0369
	       business 0.0369
	            Ski 0.0369
	            Syk 0.0369
	              C 0.0369
	         system 0.0369
	           Skye 0.0369
	          empty 0.0369
	            cia 0.0369
	          years 0.0059
	           year 0.0000
	              - 0.0000
	            pay 0.0000
	            and 0.0000
	              . 0.0000
	            the 0.0000
	           </S> 0.0000
	              I 0.0000
	              , 0.0000
	           full 0.0000

          Larks   450969   1 (32)
	          Larks 0.5000
	         shirts 0.0369
	              s 0.0369
	         Laarks 0.0369
	          which 0.0369
	       Larksmen 0.0369
	             or 0.0369
	           step 0.0369
	         season 0.0369
	              - 0.0079
	           </S> 0.0059
	            the 0.0000
	           Last 0.0000
	              . 0.0000
	           mail 0.0000
	         Laskar 0.0000
	       Larkspur 0.0000
	           time 0.0000
	          Parus 0.0000
	              a 0.0000
	              I 0.0000
	           arks 0.0000
	              A 0.0000
	          Links 0.0000
	           part 0.0000
	           Lark 0.0000
	          <UNK> 0.0000
	             up 0.0000
	          Larus 0.0000
	             to 0.0000
	         Lanius 0.0000
	              ) 0.0000

          about   451011   1 (21)
	            the 0.0369
	              - 0.0369
	         abouta 0.0369
	         abauto 0.0369
	          album 0.0369
	          above 0.0369
	          about 0.0369
	         abouts 0.0369
	         aboute 0.0369
	          aboue 0.0369
	              , 0.0369
	          abort 0.0369
	              a 0.0369
	              . 0.0369
	           prey 0.0369
	          About 0.0369
	              I 0.0369
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	              } 0.0000

            one   451111   1 (23)
	              - 0.0369
	            oen 0.0369
	             us 0.0369
	              , 0.0369
	            ons 0.0369
	            ont 0.0369
	           onee 0.0369
	             on 0.0369
	             of 0.0369
	           ones 0.0369
	           oner 0.0369
	           onen 0.0369
	            one 0.0369
	            cia 0.0369
	             iu 0.0369
	              a 0.0369
	              I 0.0369
	              . 0.0369
	           </S> 0.0059
	          <UNK> 0.0000
	              } 0.0000
	              ) 0.0000
	              " 0.0000

       retained   451134   3 (30)
	       detained 0.6000
	       required 0.5000
	           </S> 0.1000
	       retained 0.1000
	      restained 0.0369
	      retrained 0.0369
	     unretained 0.0369
	            not 0.0369
	           read 0.0369
	         really 0.0369
	       retainer 0.0369
	      retainder 0.0369
	              O 0.0369
	              , 0.0059
	           came 0.0000
	              - 0.0000
	             to 0.0000
	            got 0.0000
	              a 0.0000
	            the 0.0000
	          found 0.0000
	              I 0.0000
	            did 0.0000
	            you 0.0000
	              . 0.0000
	       remained 0.0000
	            get 0.0000
	             it 0.0000
	           said 0.0000
	        decided 0.0000

           This   451183   1 (24)
	           This 0.3358
	              I 0.0418
	           Tihs 0.0369
	           Thin 0.0369
	           Thia 0.0369
	           Tish 0.0369
	         Thisbe 0.0369
	            cia 0.0369
	             iu 0.0369
	              a 0.0369
	            Thi 0.0369
	          Thies 0.0369
	             us 0.0369
	          Thise 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	            The 0.0131
	           </S> 0.0059
	              . 0.0000
	           this 0.0000
	              , 0.0000
	              ) 0.0000
	              ] 0.0000

           tame   451204  15 (32)
	          clean 0.0369
	           tama 0.0369
	           tami 0.0369
	          tamme 0.0369
	             by 0.0369
	           sala 0.0369
	           Baya 0.0369
	       athletic 0.0369
	              I 0.0369
	          tamer 0.0369
	            tam 0.0369
	       friendly 0.0369
	           lava 0.0369
	           been 0.0059
	           very 0.0000
	           tame 0.0000
	           </S> 0.0000
	             be 0.0000
	              , 0.0000
	             up 0.0000
	              a 0.0000
	            the 0.0000
	           time 0.0000
	           take 0.0000
	           them 0.0000
	              . 0.0000
	             in 0.0000
	           team 0.0000
	              - 0.0000
	          there 0.0000
	             to 0.0000
	          tamed 0.0000

         turfed   451261   3 (25)
	          three 0.4000
	              - 0.3333
	              A 0.0369
	       unturfed 0.0369
	         turfde 0.0369
	         turfed 0.0369
	         durfte 0.0369
	           they 0.0369
	          slave 0.0369
	         turfen 0.0369
	              I 0.0369
	            man 0.0369
	         surfed 0.0369
	       returfed 0.0369
	          there 0.0369
	             of 0.0059
	          years 0.0000
	              , 0.0000
	              " 0.0000
	           </S> 0.0000
	             in 0.0000
	              . 0.0000
	            the 0.0000
	              a 0.0000
	         turned 0.0000

         sanded   451277   2 (28)
	              - 0.3333
	         sanded 0.3000
	           said 0.1000
	          sande 0.0369
	          white 0.0369
	         sanden 0.0369
	         sandes 0.0369
	       desanded 0.0369
	              I 0.0369
	           free 0.0369
	            out 0.0369
	          anded 0.0369
	       sandedes 0.0369
	         sander 0.0369
	             us 0.0369
	        standed 0.0369
	        sandbed 0.0369
	       services 0.0369
	           soon 0.0369
	             of 0.0059
	          under 0.0000
	            the 0.0000
	           </S> 0.0000
	              . 0.0000
	              a 0.0000
	              , 0.0000
	              ) 0.0000
	           same 0.0000

             he   451285   1 (21)
	             us 0.0369
	            heh 0.0369
	              , 0.0369
	             hi 0.0369
	             hr 0.0369
	             eh 0.0369
	             iu 0.0369
	            cia 0.0369
	              . 0.0369
	              - 0.0369
	            her 0.0369
	            hey 0.0369
	            hee 0.0369
	              a 0.0369
	            the 0.0369
	             he 0.0369
	            The 0.0369
	           </S> 0.0059
	              } 0.0000
	              " 0.0000
	              ) 0.0000

          3'our   451363   8 (23)
	              a 0.7029
	           four 0.5000
	            not 0.0369
	          rouru 0.0369
	            rou 0.0369
	           Tour 0.0369
	           down 0.0059
	            his 0.0000
	             up 0.0000
	              - 0.0000
	              I 0.0000
	           Your 0.0000
	           </S> 0.0000
	              . 0.0000
	            our 0.0000
	            the 0.0000
	              , 0.0000
	             to 0.0000
	             us 0.0000
	           your 0.0000
	            off 0.0000
	             my 0.0000
	          about 0.0000

           eyes   451369   1 (25)
	            eys 0.0369
	           News 0.0369
	           eyes 0.0369
	          Reyes 0.0369
	          Keyes 0.0369
	              F 0.0369
	           eyed 0.0369
	            eye 0.0369
	           yees 0.0369
	              a 0.0369
	           were 0.0369
	            Pyi 0.0369
	          Pales 0.0369
	           </S> 0.0369
	           eyen 0.0369
	              I 0.0369
	           been 0.0369
	          eyers 0.0369
	          eyets 0.0369
	           your 0.0369
	             us 0.0369
	              , 0.0369
	              . 0.0369
	              - 0.0369
	            the 0.0369

       dropping   451427   2 (25)
	      droppings 0.6000
	       dropping 0.4000
	       dripping 0.4000
	             or 0.1000
	              , 0.1000
	       Shopping 0.1000
	     droppingly 0.0369
	          liner 0.0369
	        dopping 0.0369
	              a 0.0369
	        Hopping 0.0369
	        lecture 0.0369
	            own 0.0059
	       Shipping 0.0000
	              . 0.0000
	       shipping 0.0000
	           eyes 0.0000
	       drooping 0.0000
	           head 0.0000
	       cropping 0.0000
	           </S> 0.0000
	           last 0.0000
	           wife 0.0000
	       prodding 0.0000
	          first 0.0000

      i-eturned   451448  15 (26)
	           fell 0.0369
	              I 0.0369
	              a 0.0369
	        returns 0.0369
	              - 0.0369
	       deturned 0.0369
	             as 0.0369
	              . 0.0369
	        related 0.0369
	          tries 0.0369
	       inturned 0.0369
	        whether 0.0369
	      disturned 0.0369
	            was 0.0059
	          tried 0.0000
	           </S> 0.0000
	       returned 0.0000
	         turned 0.0000
	       received 0.0000
	          wants 0.0000
	             is 0.0000
	          began 0.0000
	            had 0.0000
	         wanted 0.0000
	           came 0.0000
	              , 0.0000

             to   451458   1 (19)
	             tv 0.0369
	            too 0.0369
	             th 0.0369
	             to 0.0369
	              - 0.0369
	             iu 0.0369
	            cia 0.0369
	            not 0.0369
	             ot 0.0369
	           </S> 0.0369
	              . 0.0369
	              , 0.0369
	             us 0.0369
	              a 0.0369
	            top 0.0369
	              I 0.0369
	            the 0.0369
	             on 0.0369
	             of 0.0369

        Towards   451468 inf (24)
	             In 1.0000
	          There 0.4000
	              A 0.1000
	             to 0.0369
	         Toward 0.0369
	        towards 0.0369
	        cowards 0.0369
	            and 0.0369
	          Toads 0.0369
	             at 0.0369
	       Tawadros 0.0369
	              a 0.0369
	        Troward 0.0369
	      Towarzysz 0.0369
	           </S> 0.0059
	              , 0.0000
	              I 0.0000
	              ] 0.0000
	              . 0.0000
	             To 0.0000
	              ) 0.0000
	              - 0.0000
	           This 0.0000
	              " 0.0000

          moult   451526   1 (27)
	          moult 0.2000
	              - 0.0369
	          maura 0.0369
	        moulted 0.0369
	           moul 0.0369
	          moule 0.0369
	              a 0.0369
	          multo 0.0369
	         moults 0.0369
	         moulut 0.0369
	            own 0.0059
	           hair 0.0000
	           body 0.0000
	          mouth 0.0000
	           </S> 0.0000
	          mould 0.0000
	              . 0.0000
	          mouse 0.0000
	          could 0.0000
	           head 0.0000
	             or 0.0000
	           wife 0.0000
	         father 0.0000
	              , 0.0000
	           most 0.0000
	           life 0.0000
	          would 0.0000

            Mr.   451597   3 (21)
	             My 0.5980
	              I 0.0418
	              a 0.0369
	             us 0.0369
	             Mr 0.0369
	            arz 0.0369
	            cia 0.0369
	            are 0.0369
	            Mrs 0.0369
	            Mrz 0.0369
	            Mrk 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              , 0.0000
	           More 0.0000
	              ] 0.0000
	            and 0.0000
	              ) 0.0000
	              . 0.0000

            Sky   451639   1 (29)
	            Sky 0.9000
	             my 0.4533
	             Sk 0.4000
	           self 0.0369
	          mixed 0.0369
	        African 0.0369
	              x 0.0369
	              B 0.0369
	            the 0.0059
	              - 0.0000
	              : 0.0000
	            Pyi 0.0000
	           Skye 0.0000
	              a 0.0000
	           Skyy 0.0000
	            Ski 0.0000
	            non 0.0000
	          their 0.0000
	           this 0.0000
	             by 0.0000
	             us 0.0000
	            cia 0.0000
	           </S> 0.0000
	            Syk 0.0000
	            Ska 0.0000
	          <UNK> 0.0000
	            See 0.0000
	              , 0.0000
	           high 0.0000

              -   451642   6 (11)
	            cia 0.0369
	             us 0.0369
	           from 0.0369
	             iu 0.0369
	           </S> 0.0059
	            the 0.0000
	              - 0.0000
	              , 0.0000
	             of 0.0000
	              . 0.0000
	            and 0.0000

          Larks   451643   1 (30)
	          Larks 0.5000
	         Laarks 0.0369
	         signal 0.0369
	       Larksmen 0.0369
	           such 0.0369
	              s 0.0369
	           same 0.0369
	  determination 0.0369
	              - 0.0079
	           </S> 0.0059
	          <UNK> 0.0000
	          Links 0.0000
	         Laskar 0.0000
	          Parus 0.0000
	             up 0.0000
	           Last 0.0000
	              ) 0.0000
	           part 0.0000
	             to 0.0000
	           Lark 0.0000
	            the 0.0000
	          based 0.0000
	       Larkspur 0.0000
	         Lanius 0.0000
	          Larus 0.0000
	           arks 0.0000
	              A 0.0000
	              . 0.0000
	              a 0.0000
	              I 0.0000

     Heligoland   451671   1 (24)
	     Heligoland 0.9000
	           whom 0.0369
	              x 0.0369
	              I 0.0369
	   Heligolandic 0.0369
	   Heligolander 0.0369
	          peace 0.0369
	          would 0.0369
	     Helgioland 0.0369
	           what 0.0369
	             us 0.0369
	            the 0.0059
	           good 0.0000
	              . 0.0000
	      Helgoland 0.0000
	           </S> 0.0000
	            and 0.0000
	           this 0.0000
	              a 0.0000
	              , 0.0000
	              - 0.0000
	            his 0.0000
	           your 0.0000
	            our 0.0000

            but   451711   1 (21)
	             bu 0.0369
	              , 0.0369
	            bus 0.0369
	            but 0.0369
	           buts 0.0369
	              I 0.0369
	            buy 0.0369
	             be 0.0369
	             by 0.0369
	            tub 0.0369
	             iu 0.0369
	            cia 0.0369
	              - 0.0369
	           butt 0.0369
	              a 0.0369
	              . 0.0369
	             us 0.0369
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	              } 0.0000

       Speaking   451764   1 (24)
	       Speaking 0.8000
	              a 0.0369
	           make 0.0369
	           some 0.0369
	       speaking 0.0369
	        Seaking 0.0369
	            one 0.0369
	       Spearing 0.0369
	          State 0.0369
	           part 0.0369
	        peaking 0.0369
	           Most 0.0369
	       Spanking 0.0369
	           </S> 0.0059
	              A 0.0000
	              - 0.0000
	              I 0.0000
	              ) 0.0000
	              , 0.0000
	              . 0.0000
	            All 0.0000
	            See 0.0000
	              " 0.0000
	            One 0.0000

     diminution   451806  14 (30)
	            end 0.1310
	    diminutions 0.1000
	    diminutioni 0.0369
	     twittering 0.0369
	         rights 0.0369
	        privacy 0.0369
	  establishment 0.0369
	      diminutus 0.0369
	       diminuta 0.0369
	      diminutio 0.0369
	          study 0.0369
	     diminutiva 0.0369
	           </S> 0.0059
	              " 0.0000
	           time 0.0000
	          first 0.0000
	      following 0.0000
	            use 0.0000
	              - 0.0000
	              ' 0.0000
	           data 0.0000
	     diminution 0.0000
	          world 0.0000
	          <UNK> 0.0000
	          state 0.0000
	    information 0.0000
	           date 0.0000
	            top 0.0000
	         number 0.0000
	           same 0.0000

           Herr   451827   3 (25)
	          every 0.2000
	             in 0.1021
	              " 0.0369
	              a 0.0369
	           Herr 0.0369
	            arz 0.0369
	              I 0.0369
	            and 0.0369
	           Here 0.0369
	           </S> 0.0369
	           Help 0.0369
	          <UNK> 0.0369
	            Her 0.0369
	           fish 0.0369
	              ( 0.0369
	            but 0.0369
	          Herrn 0.0369
	          Herre 0.0369
	           Hero 0.0369
	            the 0.0059
	          which 0.0012
	           here 0.0000
	              i 0.0000
	           were 0.0000
	             or 0.0000

          Gatke   451832 inf (25)
	            and 0.1000
	              I 0.0369
	        Gatokae 0.0369
	          Latke 0.0369
	              a 0.0369
	          Gatte 0.0369
	        Gataket 0.0369
	         Gasket 0.0369
	        Gaskets 0.0369
	           make 0.0369
	          Games 0.0369
	          Gatka 0.0369
	           take 0.0369
	           Gate 0.0369
	          latke 0.0369
	          Gatae 0.0369
	              , 0.0059
	            der 0.0000
	            the 0.0000
	           </S> 0.0000
	          Gates 0.0000
	             M. 0.0000
	              - 0.0000
	              . 0.0000
	              W 0.0000

          saj'S   451838 inf (21)
	           same 0.0369
	           saja 0.0369
	           sajt 0.0369
	           saje 0.0369
	              . 0.0369
	         Hoyman 0.0369
	          Ringe 0.0369
	          Sajas 0.0369
	           sala 0.0369
	              - 0.0369
	           said 0.0369
	              a 0.0369
	         Joined 0.0369
	            say 0.0369
	          Sajos 0.0369
	          major 0.0369
	            saj 0.0369
	             J. 0.0369
	              , 0.0059
	          Corp. 0.0000
	           </S> 0.0000

              :   451844 inf (8)
	             of 0.0369
	             to 0.0369
	             us 0.0369
	            and 0.0369
	             in 0.0369
	            the 0.0369
	            cia 0.0369
	             iu 0.0369

              "   451848   1 (19)
	              " 0.7265
	            and 0.0389
	              , 0.0369
	              s 0.0369
	         stable 0.0369
	              : 0.0369
	       replayer 0.0369
	              - 0.0079
	           </S> 0.0059
	              . 0.0000
	            one 0.0000
	             of 0.0000
	             up 0.0000
	            the 0.0000
	             us 0.0000
	            cia 0.0000
	           mail 0.0000
	          <UNK> 0.0000
	            off 0.0000

        passage   451889  14 (22)
	       passages 0.8000
	           </S> 0.6000
	              a 0.0369
	       passaged 0.0369
	              I 0.0369
	        paysage 0.0369
	    Association 0.0369
	     Department 0.0369
	         pesage 0.0369
	        Message 0.0369
	             of 0.0369
	        Society 0.0369
	         amount 0.0059
	        passage 0.0000
	         number 0.0000
	              . 0.0000
	              , 0.0000
	           page 0.0000
	      potential 0.0000
	        message 0.0000
	        amounts 0.0000
	              - 0.0000

         travel   451963  11 (19)
	             in 0.5000
	              - 0.0669
	          trade 0.0369
	        travels 0.0369
	         travei 0.0369
	         traves 0.0369
	        travell 0.0369
	          trave 0.0369
	         trvale 0.0369
	              . 0.0059
	         Travel 0.0000
	           </S> 0.0000
	              ; 0.0000
	              a 0.0000
	         travel 0.0000
	              , 0.0000
	           this 0.0000
	              I 0.0000
	             at 0.0000

      migration   452254  16 (22)
	     migrations 0.2000
	          power 0.0750
	       migratio 0.0369
	     migratione 0.0369
	             as 0.0369
	    information 0.0369
	              I 0.0369
	      migratory 0.0369
	         within 0.0369
	              a 0.0369
	            the 0.0369
	     migrationi 0.0369
	     migraation 0.0369
	      important 0.0369
	         amount 0.0059
	        amounts 0.0000
	           </S> 0.0000
	              - 0.0000
	    proportions 0.0000
	      migration 0.0000
	              , 0.0000
	              . 0.0000

            and   452274   1 (21)
	             us 0.0369
	              A 0.0369
	           anda 0.0369
	            and 0.0369
	          which 0.0369
	            any 0.0369
	            arz 0.0369
	           alba 0.0369
	              I 0.0369
	              , 0.0369
	              . 0.0369
	            ant 0.0369
	             an 0.0369
	           andy 0.0369
	           aand 0.0369
	           then 0.0369
	              - 0.0369
	           </S> 0.0059
	              } 0.0000
	              " 0.0000
	              ) 0.0000

          Larks   452312   4 (27)
	            are 0.4000
	             in 0.4000
	          Large 0.2000
	         Laskar 0.0369
	          Larus 0.0369
	          Parus 0.0369
	           Lark 0.0369
	          Links 0.0369
	           fish 0.0369
	         Lanius 0.0369
	          parva 0.0369
	           arks 0.0369
	         Laarks 0.0369
	          woman 0.0369
	              I 0.0369
	       Larkspur 0.0369
	       Larksmen 0.0369
	          Larks 0.0369
	           </S> 0.0059
	              . 0.0000
	           part 0.0000
	             to 0.0000
	            and 0.0000
	              - 0.0000
	              , 0.0000
	              a 0.0000
	              $ 0.0000

         caught   452318   1 (27)
	           year 0.0369
	           more 0.0369
	         Caught 0.0369
	         Vaught 0.0369
	              $ 0.0369
	         taught 0.0369
	         caught 0.0369
	        caudata 0.0369
	          court 0.0369
	         Vaughn 0.0369
	          cause 0.0369
	         20,000 0.0369
	           cash 0.0369
	              a 0.0369
	        claught 0.0369
	          daily 0.0369
	        ycaught 0.0369
	        Icaught 0.0369
	       caughten 0.0369
	              ' 0.0059
	              - 0.0000
	           were 0.0000
	              . 0.0000
	         Tongue 0.0000
	        Tongues 0.0000
	           </S> 0.0000
	              , 0.0000

         autumn   452332   9 (25)
	        autumny 0.0369
	           dark 0.0369
	          antum 0.0369
	        autumns 0.0369
	        autumna 0.0369
	         autuma 0.0369
	         autumo 0.0369
	             of 0.0059
	            and 0.0000
	             at 0.0000
	              I 0.0000
	             or 0.0000
	              - 0.0000
	             as 0.0000
	          place 0.0000
	         author 0.0000
	              . 0.0000
	          thing 0.0000
	           </S> 0.0000
	         autumn 0.0000
	           last 0.0000
	           more 0.0000
	              a 0.0000
	              , 0.0000
	         single 0.0000

  approximately   452354  11 (26)
	             to 1.0000
	   approximated 0.4000
	     constitute 0.0369
	unapproximately 0.0369
	  Approximately 0.0369
	        already 0.0369
	   approximator 0.0369
	         simply 0.0369
	    proximately 0.0167
	             be 0.0059
	              a 0.0000
	              , 0.0000
	           work 0.0000
	              . 0.0000
	          apply 0.0000
	           </S> 0.0000
	  approximately 0.0000
	        provide 0.0000
	           have 0.0000
	        support 0.0000
	              - 0.0000
	    necessarily 0.0000
	      available 0.0000
	           know 0.0000
	           make 0.0000
	    approximate 0.0000

        express   452368  17 (27)
	        expresa 0.0369
	        expreso 0.0369
	              I 0.0369
	           like 0.0369
	           once 0.0369
	         expres 0.0369
	              - 0.0369
	       expresse 0.0369
	             us 0.0369
	           here 0.0369
	           even 0.0369
	       expressa 0.0369
	        exprese 0.0369
	             to 0.0369
	       expresso 0.0369
	              $ 0.0059
	            the 0.0000
	              a 0.0000
	          every 0.0000
	            one 0.0000
	           half 0.0000
	          twice 0.0000
	        express 0.0000
	              , 0.0000
	           </S> 0.0000
	              . 0.0000
	             in 0.0000

        migrant   452434   1 (28)
	        migrant 0.5000
	          thing 0.0369
	        migrano 0.0369
	       migranta 0.0369
	              . 0.0369
	     serialized 0.0369
	    requirement 0.0369
	        migrans 0.0369
	              , 0.0369
	         system 0.0369
	       migranti 0.0369
	           </S> 0.0059
	          valid 0.0000
	              - 0.0000
	        million 0.0000
	           good 0.0000
	           more 0.0000
	            lot 0.0000
	         single 0.0000
	            way 0.0000
	         mignon 0.0000
	         mutant 0.0000
	            new 0.0000
	          might 0.0000
	       migrants 0.0000
	          great 0.0000
	            few 0.0000
	          major 0.0000

          245-8   452471 inf (18)
	              I 0.3000
	              4 0.3000
	          which 0.1375
	              a 0.1000
	            who 0.0369
	           site 0.0369
	        reviews 0.0369
	           code 0.0369
	       students 0.0369
	              , 0.0059
	           </S> 0.0000
	           that 0.0000
	            the 0.0000
	            and 0.0000
	              2 0.0000
	              . 0.0000
	              - 0.0000
	             of 0.0000

            are   452477   1 (24)
	        removed 0.0369
	            arz 0.0369
	              I 0.0369
	           aare 0.0369
	           area 0.0369
	            the 0.0369
	            art 0.0369
	           ares 0.0369
	             us 0.0369
	            are 0.0369
	             at 0.0369
	      collected 0.0369
	           alba 0.0369
	            aer 0.0369
	            and 0.0369
	            arm 0.0369
	             ar 0.0369
	         choose 0.0369
	           aree 0.0369
	              - 0.0369
	              a 0.0369
	              . 0.0059
	           </S> 0.0000
	              , 0.0000

           Farn   452496   2 (29)
	        DeMille 0.3000
	          Farna 0.0369
	              s 0.0369
	           Farn 0.0369
	            arz 0.0369
	           lava 0.0369
	             C. 0.0369
	       Vajpayee 0.0369
	           Bock 0.0369
	         Schott 0.0369
	          Farne 0.0369
	              a 0.0369
	           Fare 0.0369
	   Cocchiarella 0.0369
	           </S> 0.0059
	           Fran 0.0000
	              ( 0.0000
	              A 0.0000
	              I 0.0000
	             It 0.0000
	         Martin 0.0000
	            Far 0.0000
	            For 0.0000
	              . 0.0000
	              , 0.0000
	           Farm 0.0000
	           From 0.0000
	              - 0.0000
	           Free 0.0000

             's   452500   1 (16)
	             's 0.6000
	              a 0.0369
	             as 0.0369
	              s 0.0369
	              I 0.0369
	             so 0.0369
	             us 0.0369
	             A. 0.0369
	             D. 0.0369
	           </S> 0.0059
	              - 0.0000
	             is 0.0000
	              , 0.0000
	              . 0.0000
	           Wang 0.0000
	              ' 0.0000

            249   452516 inf (20)
	              . 0.0369
	        recipes 0.0369
	       excerpts 0.0369
	             us 0.0369
	              a 0.0369
	             of 0.0369
	         images 0.0369
	              , 0.0369
	            cia 0.0369
	             iu 0.0369
	              I 0.0369
	            art 0.0369
	            and 0.0369
	           data 0.0369
	         photos 0.0369
	            the 0.0369
	              - 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000

        Frohawk   452529   1 (32)
	              A 0.0369
	       frohawks 0.0369
	         Fohawk 0.0369
	             to 0.0369
	        Frohawk 0.0369
	           year 0.0369
	              - 0.0369
	          world 0.0369
	        frohawk 0.0369
	              a 0.0369
	           Crew 0.0369
	          Froha 0.0369
	              . 0.0369
	             70 0.0369
	         seller 0.0369
	              I 0.0369
	           that 0.0369
	           than 0.0369
	             60 0.0369
	             50 0.0369
	          Wyman 0.0369
	       Chairman 0.0059
	              , 0.0000
	          <UNK> 0.0000
	           </S> 0.0000
	        Speaker 0.0000
	           Food 0.0000
	             M. 0.0000
	             J. 0.0000
	          Smith 0.0000
	      President 0.0000
	           Bush 0.0000

             's   452536   1 (21)
	             's 0.1000
	              I 0.0369
	              ' 0.0369
	           said 0.0369
	          moved 0.0369
	        Speaker 0.0369
	             us 0.0369
	              - 0.0369
	              ) 0.0369
	             J. 0.0369
	             so 0.0369
	             ss 0.0369
	             A. 0.0369
	       seconded 0.0369
	             as 0.0369
	          <UNK> 0.0369
	             is 0.0369
	           1898 0.0059
	           </S> 0.0000
	              , 0.0000
	              . 0.0000

          250-4   452544 inf (24)
	            one 0.1000
	         report 0.0369
	          tales 0.0369
	            and 0.0369
	       shipping 0.0369
	              . 0.0369
	        stories 0.0369
	       warnings 0.0369
	representatives 0.0369
	        removed 0.0369
	            the 0.0059
	        support 0.0000
	           then 0.0000
	    information 0.0000
	             to 0.0000
	              I 0.0000
	              , 0.0000
	              2 0.0000
	             of 0.0000
	           more 0.0000
	           </S> 0.0000
	              a 0.0000
	            not 0.0000
	              - 0.0000

           from   452550   1 (23)
	             of 0.0369
	           fron 0.0369
	              - 0.0369
	            the 0.0369
	          fromt 0.0369
	             by 0.0369
	              a 0.0369
	            arz 0.0369
	             in 0.0369
	            fro 0.0369
	             to 0.0369
	           from 0.0369
	              I 0.0369
	           form 0.0369
	             us 0.0369
	          fromm 0.0369
	            for 0.0369
	             is 0.0369
	           frog 0.0369
	           free 0.0369
	           </S> 0.0059
	              . 0.0000
	              , 0.0000

        Family^   452576   1 (19)
	              a 0.0369
	         family 0.0369
	       FamilyPC 0.0369
	       Familypc 0.0369
	         Family 0.0369
	        Familly 0.0369
	           will 0.0369
	        Familia 0.0369
	         Famila 0.0369
	        Faimily 0.0369
	           </S> 0.0059
	              - 0.0000
	              ] 0.0000
	              " 0.0000
	              . 0.0000
	              A 0.0000
	              ) 0.0000
	              I 0.0000
	              , 0.0000

            ALA   452584 inf (24)
	            And 0.0369
	           ALAN 0.0369
	           ALAC 0.0369
	              n 0.0369
	            ALT 0.0369
	              . 0.0369
	              - 0.0369
	             AL 0.0369
	            AAL 0.0369
	            All 0.0369
	           AALA 0.0369
	             iu 0.0369
	              , 0.0369
	           </S> 0.0369
	            ALA 0.0369
	            cia 0.0369
	          <UNK> 0.0369
	            ALL 0.0369
	            Add 0.0369
	            LAL 0.0369
	              ) 0.0369
	             us 0.0369
	              a 0.0369
	           LALA 0.0369

           UDID   452588 inf (23)
	            UDI 0.0369
	            DID 0.0369
	              I 0.0369
	           UDIG 0.0369
	           UDIF 0.0369
	           UUID 0.0369
	            USD 0.0369
	            UDD 0.0369
	             Us 0.0369
	             US 0.0369
	            UID 0.0369
	          GUDID 0.0369
	           UDDI 0.0369
	              A 0.0059
	              ) 0.0000
	              , 0.0000
	              C 0.0000
	              B 0.0000
	         SEQRES 0.0000
	            ALA 0.0000
	              - 0.0000
	           </S> 0.0000
	              . 0.0000

              .   452592  12 (16)
	              H 0.0369
	              F 0.0369
	              1 0.0369
	             of 0.0369
	             L. 0.0369
	            the 0.0369
	            cia 0.0369
	             us 0.0369
	            and 0.0369
	              8 0.0369
	           </S> 0.0059
	              ) 0.0000
	              , 0.0000
	              : 0.0000
	              . 0.0000
	              - 0.0000

              F   452594 inf (25)
	             SF 0.0369
	             FL 0.0369
	             FM 0.0369
	             Fi 0.0369
	             FF 0.0369
	           FFFF 0.0369
	            cia 0.0369
	             iu 0.0369
	            FFF 0.0369
	             OF 0.0369
	             us 0.0369
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	             of 0.0000
	              ) 0.0000
	            the 0.0000
	             IF 0.0000
	              \ 0.0000
	              , 0.0000
	              ] 0.0000
	          <UNK> 0.0000
	              . 0.0000
	              / 0.0000
	            and 0.0000

              .   452595   9 (17)
	              ) 0.5000
	            ... 0.2000
	         Unlord 0.0369
	             A. 0.0369
	             .. 0.0369
	        Records 0.0369
	             J. 0.0369
	           </S> 0.0059
	             of 0.0000
	              , 0.0000
	            and 0.0000
	             us 0.0000
	              G 0.0000
	              - 0.0000
	              ' 0.0000
	              . 0.0000
	            the 0.0000

        Alaitdn   452614   1 (27)
	           lait 0.0369
	         Alaidy 0.0369
	        Alaitoc 0.0369
	       Adailton 0.0369
	        Alaltun 0.0369
	          Alaid 0.0369
	       Alaiedon 0.0369
	              a 0.0369
	         Alauda 0.0369
	           Alai 0.0369
	         Aladin 0.0369
	        Aladdin 0.0369
	         Allied 0.0369
	          Alito 0.0369
	        Allison 0.0369
	          Alain 0.0369
	         Alaina 0.0369
	           </S> 0.0059
	              . 0.0000
	              I 0.0000
	              " 0.0000
	              , 0.0000
	              ] 0.0000
	              - 0.0000
	              / 0.0000
	              A 0.0000
	              ) 0.0000

       ar/iorca   452622   1 (26)
	        artiora 0.0369
	        authors 0.0369
	        carioca 0.0369
	              I 0.0369
	        cariora 0.0369
	       addition 0.0369
	          <UNK> 0.0369
	              . 0.0369
	              ) 0.0369
	      configure 0.0369
	           </S> 0.0369
	          arior 0.0369
	        ariorna 0.0369
	        arborea 0.0369
	              n 0.0369
	        artiori 0.0369
	              g 0.0369
	          arira 0.0369
	        acriora 0.0369
	              - 0.0369
	         siorca 0.0369
	vareSelskap.cgi 0.0369
	         source 0.0369
	              , 0.0369
	        Maiorca 0.0369
	        Kaiorca 0.0369

              ,   452630 inf (8)
	             of 0.0369
	             to 0.0369
	             us 0.0369
	            and 0.0369
	             in 0.0369
	            the 0.0369
	            cia 0.0369
	             iu 0.0369

           LlNN   452632 inf (28)
	             pp 0.1857
	   respectively 0.0369
	           LMNN 0.0369
	            NNN 0.0369
	            Llc 0.0369
	           List 0.0369
	           alba 0.0369
	             NN 0.0369
	              x 0.0369
	           yeah 0.0369
	           LLNL 0.0369
	            yes 0.0369
	            LNN 0.0369
	             Ll 0.0369
	            all 0.0369
	           LINE 0.0369
	           LNNK 0.0369
	              ~ 0.0369
	           Last 0.0369
	            the 0.0059
	          which 0.0012
	              e 0.0000
	            too 0.0000
	              i 0.0000
	            you 0.0000
	             to 0.0000
	             of 0.0000
	             or 0.0000

              .   452636   1 (14)
	            CAN 0.0369
	             iu 0.0369
	           </S> 0.0369
	              , 0.0369
	            and 0.0369
	             us 0.0369
	            DON 0.0369
	            the 0.0369
	              a 0.0369
	             of 0.0369
	            ... 0.0369
	            cia 0.0369
	              . 0.0369
	              - 0.0369

              "   452639 inf (14)
	            cia 0.0369
	             iu 0.0369
	             us 0.0369
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              , 0.0000
	              ) 0.0000
	            the 0.0000
	              / 0.0000
	              . 0.0000
	              ] 0.0000
	             of 0.0000
	            and 0.0000

              T   452641 inf (23)
	             TV 0.4000
	             AT 0.1000
	          where 0.0369
	              - 0.0235
	           </S> 0.0059
	              . 0.0000
	             NT 0.0000
	             of 0.0000
	          <UNK> 0.0000
	            the 0.0000
	             iu 0.0000
	              ] 0.0000
	             To 0.0000
	             us 0.0000
	             TT 0.0000
	              , 0.0000
	             IT 0.0000
	            TTT 0.0000
	              ) 0.0000
	             TO 0.0000
	            cia 0.0000
	            and 0.0000
	           TTTT 0.0000

              N   452643 inf (20)
	             iu 0.1000
	             NN 0.1000
	             No 0.1000
	            NNN 0.1000
	            cia 0.0369
	           </S> 0.0059
	             us 0.0000
	             of 0.0000
	              " 0.0000
	             IN 0.0000
	              , 0.0000
	              . 0.0000
	            the 0.0000
	              U 0.0000
	             NY 0.0000
	             NO 0.0000
	             ON 0.0000
	             TN 0.0000
	              - 0.0000
	            and 0.0000

         summer   452645  13 (23)
	         Summer 0.1000
	              a 0.0369
	             on 0.0369
	              I 0.0369
	         summed 0.0369
	         summet 0.0369
	              V 0.0369
	          sumer 0.0369
	              s 0.0369
	        summers 0.0369
	        summery 0.0369
	              / 0.0059
	             is 0.0000
	           </S> 0.0000
	              O 0.0000
	              . 0.0000
	              - 0.0000
	        summary 0.0000
	              , 0.0000
	         summer 0.0000
	              A 0.0000
	              : 0.0000
	             in 0.0000

           Wood   452656  15 (30)
	           Wool 0.7000
	           Woof 0.3333
	          three 0.0369
	          Wodoo 0.0369
	              i 0.0369
	            num 0.0369
	           well 0.0369
	           open 0.0369
	           much 0.0369
	              I 0.0369
	         Woodoo 0.0369
	              x 0.0369
	           </S> 0.0059
	           same 0.0037
	            Web 0.0000
	          <UNK> 0.0000
	            non 0.0000
	            Mid 0.0000
	           long 0.0000
	            mid 0.0000
	           good 0.0000
	          Woods 0.0000
	             We 0.0000
	              " 0.0000
	            two 0.0000
	           Wood 0.0000
	          first 0.0000
	              - 0.0000
	          Woody 0.0000
	      following 0.0000

       inhabits   452666   2 (23)
	            and 0.3000
	       inhabita 0.0369
	      inhabitas 0.0369
	       inhabile 0.0369
	        include 0.0369
	      inhabites 0.0369
	              a 0.0369
	        inhabit 0.0369
	     coinhabits 0.0369
	       inhabits 0.0369
	           into 0.0369
	     inhabitans 0.0369
	              I 0.0369
	       inhabito 0.0369
	             us 0.0369
	           </S> 0.0059
	          Books 0.0000
	              - 0.0000
	              , 0.0000
	             of 0.0000
	    Calandrella 0.0000
	              . 0.0000
	             in 0.0000

         Russia   452719  20 (33)
	          music 0.1000
	        largest 0.0369
	         Russin 0.0369
	        discuss 0.0369
	         Europe 0.0369
	          Munia 0.0369
	           list 0.0369
	              I 0.0369
	         Russie 0.0369
	              a 0.0369
	          Russi 0.0369
	        rustica 0.0369
	       describe 0.0369
	          Rusia 0.0369
	         cassia 0.0369
	        Russias 0.0369
	         posted 0.0369
	            the 0.0369
	             'm 0.0059
	           said 0.0000
	              J 0.0000
	        Russian 0.0000
	           just 0.0000
	          wrote 0.0000
	         Russia 0.0000
	           have 0.0000
	              - 0.0000
	           </S> 0.0000
	              , 0.0000
	          Music 0.0000
	            was 0.0000
	             am 0.0000
	              . 0.0000

          below   452726  17 (27)
	           been 0.7000
	        talking 0.0369
	          Aedon 0.0369
	          belon 0.0369
	          belos 0.0369
	         Abelow 0.0369
	            not 0.0369
	         bellow 0.0369
	         belowe 0.0369
	          heard 0.0369
	              I 0.0369
	       thinking 0.0369
	           belo 0.0369
	              O 0.0369
	      unanimous 0.0369
	              , 0.0059
	             's 0.0000
	         before 0.0000
	              - 0.0000
	           </S> 0.0000
	              a 0.0000
	            the 0.0000
	              . 0.0000
	             is 0.0000
	             to 0.0000
	           best 0.0000
	          below 0.0000

            60°   452738   1 (19)
	             60 0.8000
	              6 0.2000
	            600 0.0369
	     600.degree 0.0369
	             iu 0.0369
	            the 0.0059
	             us 0.0000
	            and 0.0000
	             10 0.0000
	              . 0.0000
	              , 0.0000
	             of 0.0000
	             it 0.0000
	              - 0.0000
	           </S> 0.0000
	            cia 0.0000
	           this 0.0000
	            how 0.0000
	              a 0.0000

             N.   452742 inf (20)
	             NO 0.0369
	              K 0.0369
	            New 0.0369
	              . 0.0369
	             NY 0.0369
	              I 0.0369
	         parody 0.0369
	            NNN 0.0369
	             iu 0.0369
	              , 0.0369
	              % 0.0369
	         nature 0.0369
	           </S> 0.0369
	             us 0.0369
	            cia 0.0369
	              - 0.0369
	             No 0.0369
	             NN 0.0369
	              a 0.0369
	             of 0.0369

             as   452751   1 (24)
	            ask 0.0369
	            aas 0.0369
	           </S> 0.0369
	             an 0.0369
	              & 0.0369
	           long 0.0369
	     resolution 0.0369
	          <UNK> 0.0369
	             at 0.0369
	            arz 0.0369
	             as 0.0369
	              " 0.0369
	              / 0.0369
	            ass 0.0369
	            the 0.0059
	          which 0.0012
	              e 0.0000
	             sa 0.0000
	             iu 0.0000
	              i 0.0000
	             so 0.0000
	           thus 0.0000
	             us 0.0000
	             or 0.0000

      Southward   452826   3 (21)
	              . 0.7000
	              - 0.7000
	      southward 0.0369
	          other 0.0369
	          would 0.0369
	      Southwark 0.0369
	       Software 0.0369
	       Southard 0.0369
	      Southward 0.0369
	           that 0.0369
	              a 0.0369
	            the 0.0369
	             us 0.0369
	           </S> 0.0059
	              ) 0.0000
	              ] 0.0000
	        However 0.0000
	              A 0.0000
	              , 0.0000
	              I 0.0000
	              " 0.0000

              -   452880   5 (11)
	             us 0.0369
	            cia 0.0369
	             iu 0.0369
	              , 0.0059
	            the 0.0000
	             of 0.0000
	              . 0.0000
	            and 0.0000
	           </S> 0.0000
	             -- 0.0000
	              - 0.0000

           down   452913   1 (33)
	           down 0.5000
	           dowd 0.1000
	       Bordeaux 0.0369
	           nowd 0.0369
	        Welcome 0.0369
	         update 0.0369
	            Add 0.0369
	         letter 0.0369
	           Ciao 0.0369
	              s 0.0369
	              - 0.0079
	           </S> 0.0059
	              I 0.0000
	          Aedon 0.0000
	           mail 0.0000
	           wond 0.0000
	             up 0.0000
	            dow 0.0000
	              ) 0.0000
	             do 0.0000
	              . 0.0000
	             to 0.0000
	            the 0.0000
	          downs 0.0000
	             in 0.0000
	            now 0.0000
	           does 0.0000
	              a 0.0000
	           dows 0.0000
	          <UNK> 0.0000
	              A 0.0000
	          downe 0.0000
	             of 0.0000

            its   452965   1 (23)
	              , 0.0369
	           itsy 0.0369
	           itse 0.0369
	              A 0.0369
	            and 0.0369
	             in 0.0369
	             it 0.0369
	           tits 0.0369
	             iu 0.0369
	            cia 0.0369
	              a 0.0369
	            ita 0.0369
	             us 0.0369
	            ist 0.0369
	            the 0.0369
	              - 0.0369
	            ith 0.0369
	            its 0.0369
	              . 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	              " 0.0000

       Northern   453064   8 (21)
	          North 0.1000
	     Northerner 0.0369
	        Norther 0.0369
	        Northen 0.0369
	              S 0.0369
	          their 0.0369
	             to 0.0059
	              . 0.0000
	              , 0.0000
	       northern 0.0000
	          other 0.0000
	          there 0.0000
	           </S> 0.0000
	            the 0.0000
	              - 0.0000
	          South 0.0000
	             in 0.0000
	             us 0.0000
	              I 0.0000
	              a 0.0000
	       Northern 0.0000

             "^   453153   9 (18)
	             in 0.0634
	              I 0.0418
	              a 0.0369
	             iu 0.0369
	            cia 0.0369
	             us 0.0369
	              A 0.0328
	             to 0.0265
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	             of 0.0000
	            the 0.0000
	              . 0.0000
	              / 0.0000
	              ) 0.0000
	              ] 0.0000
	              , 0.0000

              -   453156   1 (12)
	              ) 0.0369
	             of 0.0369
	            and 0.0369
	              . 0.0369
	          <UNK> 0.0369
	              , 0.0369
	             iu 0.0369
	              - 0.0369
	            the 0.0369
	             us 0.0369
	           </S> 0.0369
	            cia 0.0369

       Iloivard   453158 inf (29)
	            the 0.1000
	         Nivard 0.0369
	          point 0.0369
	          loiva 0.0369
	          Ilvar 0.0369
	              s 0.0369
	       Bonivard 0.0369
	        looking 0.0369
	          Ilard 0.0369
	          Ilova 0.0369
	        Ilioara 0.0369
	         olivar 0.0369
	        Ilgvars 0.0369
	          world 0.0369
	           </S> 0.0059
	             up 0.0000
	              C 0.0000
	        olivary 0.0000
	           mail 0.0000
	              ) 0.0000
	             to 0.0000
	           year 0.0000
	        olivari 0.0000
	              - 0.0000
	              . 0.0000
	              a 0.0000
	          <UNK> 0.0000
	         Rivard 0.0000
	              A 0.0000

       Saunders   453167   1 (23)
	       students 0.0369
	           </S> 0.0369
	        Sanders 0.0369
	       launders 0.0369
	              , 0.0369
	          under 0.0369
	       business 0.0369
	              - 0.0369
	         period 0.0369
	       Sounders 0.0369
	      Sunderdas 0.0369
	       saunders 0.0369
	       Saunders 0.0369
	       Sanderus 0.0369
	        Sunders 0.0369
	     Saunderson 0.0369
	    Saundersina 0.0369
	          <UNK> 0.0369
	              a 0.0369
	              . 0.0369
	             us 0.0369
	              ) 0.0369
	              I 0.0369

              .   453175   6 (17)
	           went 0.0369
	            cia 0.0369
	             iu 0.0369
	             us 0.0369
	              , 0.0059
	             D. 0.0000
	             v. 0.0000
	           </S> 0.0000
	            the 0.0000
	            ... 0.0000
	             of 0.0000
	            had 0.0000
	              . 0.0000
	        Company 0.0000
	              - 0.0000
	              : 0.0000
	            and 0.0000

             In   453178   1 (18)
	             In 0.5538
	             It 0.0900
	             If 0.0570
	              I 0.0418
	              a 0.0369
	             A. 0.0369
	            Inn 0.0369
	             us 0.0369
	            Inc 0.0369
	             J. 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              . 0.0000
	              ) 0.0000
	              , 0.0000
	              ] 0.0000

           Wood   453199  18 (32)
	           Wool 0.7000
	           Woof 0.3333
	           well 0.0369
	      insurance 0.0369
	              , 0.0369
	          Wodoo 0.0369
	          three 0.0369
	         Woodoo 0.0369
	     Archbishop 0.0369
	            sub 0.0369
	              i 0.0369
	              a 0.0369
	          trade 0.0369
	          House 0.0369
	              x 0.0369
	           </S> 0.0059
	           same 0.0037
	            mid 0.0000
	           good 0.0000
	            two 0.0000
	           Wood 0.0000
	            Web 0.0000
	          <UNK> 0.0000
	           time 0.0000
	          Woody 0.0000
	            non 0.0000
	          Woods 0.0000
	           long 0.0000
	              - 0.0000
	      following 0.0000
	             We 0.0000
	          first 0.0000

              -   453203   5 (13)
	             us 0.0369
	            cia 0.0369
	        Academy 0.0369
	           </S> 0.0059
	            way 0.0000
	             of 0.0000
	              - 0.0000
	              , 0.0000
	            the 0.0000
	              . 0.0000
	            and 0.0000
	             P. 0.0000
	             is 0.0000

           Lark   453204  14 (32)
	           work 0.6000
	          Larks 0.5000
	          Larak 0.0369
	           this 0.0369
	          there 0.0369
	          Lakar 0.0369
	           that 0.0369
	       wrapping 0.0369
	          which 0.0369
	           axis 0.0369
	              s 0.0369
	              - 0.0079
	           </S> 0.0059
	           lava 0.0000
	              . 0.0000
	         Larkin 0.0000
	             to 0.0000
	           Lars 0.0000
	            Lar 0.0000
	            arz 0.0000
	          <UNK> 0.0000
	           Lark 0.0000
	             it 0.0000
	           make 0.0000
	             up 0.0000
	            the 0.0000
	              ) 0.0000
	              I 0.0000
	            are 0.0000
	              a 0.0000
	           Lara 0.0000
	              A 0.0000

      occurring   453279   1 (20)
	      according 0.0369
	        occurri 0.0369
	      including 0.0369
	              . 0.0369
	      occurring 0.0369
	     concurring 0.0369
	            the 0.0369
	         online 0.0369
	              a 0.0369
	       occuring 0.0369
	      occurrent 0.0369
	    reoccurring 0.0369
	              , 0.0369
	              B 0.0369
	              - 0.0369
	    cooccurring 0.0369
	              A 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000

     undulating   453300   1 (19)
	     undulating 0.4000
	      undulator 0.2000
	     Undulating 0.1000
	      undulatus 0.0369
	         public 0.0369
	      adulating 0.0369
	   undulatingly 0.0369
	     nidulating 0.0369
	     undulation 0.0369
	        English 0.0369
	            the 0.0059
	           </S> 0.0000
	           this 0.0000
	              - 0.0000
	              a 0.0000
	              , 0.0000
	    information 0.0000
	              . 0.0000
	           your 0.0000

         dotted   453332   1 (21)
	         dotted 0.4000
	         posted 0.0369
	         edotte 0.0369
	       undotted 0.0369
	         Potter 0.0369
	         Cotter 0.0369
	         dotten 0.0369
	          doted 0.0369
	         dotter 0.0369
	          dotte 0.0369
	         sorted 0.0369
	        dedotte 0.0369
	          their 0.0369
	              . 0.0059
	              - 0.0000
	           </S> 0.0000
	             is 0.0000
	              , 0.0000
	           does 0.0000
	              C 0.0000
	            and 0.0000

            six   453495   1 (27)
	            sxi 0.0369
	           siex 0.0369
	            six 0.0369
	              . 0.0369
	            the 0.0369
	            xis 0.0369
	            cia 0.0369
	             iu 0.0369
	           Wsix 0.0369
	              , 0.0369
	           site 0.0369
	             so 0.0369
	            sit 0.0369
	           sixe 0.0369
	             si 0.0369
	              - 0.0369
	            sin 0.0369
	           1891 0.0369
	              a 0.0369
	              A 0.0369
	            sex 0.0369
	             us 0.0369
	            see 0.0369
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	              } 0.0000

            but   453552   1 (23)
	           butt 0.0369
	             us 0.0369
	              . 0.0369
	          which 0.0369
	     Consulting 0.0369
	            tub 0.0369
	             iu 0.0369
	            cia 0.0369
	            bus 0.0369
	           buts 0.0369
	              - 0.0369
	             by 0.0369
	             be 0.0369
	            but 0.0369
	            and 0.0369
	            buy 0.0369
	              , 0.0369
	              a 0.0369
	             bu 0.0369
	           </S> 0.0059
	              ) 0.0000
	              " 0.0000
	              } 0.0000

             In   453623   1 (19)
	             In 0.5538
	             It 0.0900
	             If 0.0570
	              I 0.0418
	            Inn 0.0369
	            Inc 0.0369
	             iu 0.0369
	            cia 0.0369
	              a 0.0369
	             us 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ) 0.0000
	              , 0.0000
	              / 0.0000
	              ] 0.0000
	              . 0.0000

  Stirlingshire   453695   2 (31)
	          stock 0.2000
	           them 0.0369
	        testing 0.0369
	     Shropshire 0.0369
	       strength 0.0369
	      Yorkshire 0.0369
	      Singapore 0.0369
	  Stirlingshire 0.0369
	         common 0.0369
	         trying 0.0369
	       business 0.0369
	           line 0.0369
	      Manhattan 0.0369
	        Ireland 0.0369
	             us 0.0369
	              x 0.0369
	       treating 0.0369
	      captivity 0.0369
	            the 0.0059
	              . 0.0000
	        another 0.0000
	        English 0.0000
	        writing 0.0000
	              a 0.0000
	           time 0.0000
	           your 0.0000
	              - 0.0000
	             it 0.0000
	           </S> 0.0000
	           this 0.0000
	              , 0.0000

             In   453804   1 (18)
	             In 0.5538
	             It 0.0900
	             If 0.0570
	              I 0.0418
	             us 0.0369
	            Inn 0.0369
	             iu 0.0369
	            cia 0.0369
	            Inc 0.0369
	              a 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              , 0.0000
	              ) 0.0000
	              . 0.0000
	              ] 0.0000

      colouring   453877  14 (23)
	      colubrina 0.0369
	    colourising 0.0369
	              I 0.0369
	     colourings 0.0369
	    recolouring 0.0369
	      Colouring 0.0369
	          using 0.0369
	      following 0.0369
	             In 0.0369
	       clouring 0.0369
	              a 0.0369
	         online 0.0369
	              , 0.0059
	         public 0.0000
	          terms 0.0000
	             to 0.0000
	      colouring 0.0000
	             of 0.0000
	              . 0.0000
	       coloring 0.0000
	            the 0.0000
	              - 0.0000
	           </S> 0.0000

           Wood   453891  14 (30)
	           Wool 0.7000
	           Woof 0.3333
	          major 0.0369
	              x 0.0369
	          Wodoo 0.0369
	              e 0.0369
	          three 0.0369
	         higher 0.0369
	           well 0.0369
	              i 0.0369
	         Woodoo 0.0369
	           </S> 0.0059
	           same 0.0037
	          first 0.0000
	              " 0.0000
	           Wood 0.0000
	            mid 0.0000
	          <UNK> 0.0000
	            Web 0.0000
	          Woods 0.0000
	           good 0.0000
	              - 0.0000
	            non 0.0000
	           long 0.0000
	           more 0.0000
	          Woody 0.0000
	            two 0.0000
	      following 0.0000
	              ' 0.0000
	             We 0.0000

         nearly   453901   2 (18)
	           near 0.6000
	         neatly 0.0369
	          early 0.0369
	              I 0.0369
	              a 0.0369
	           that 0.0369
	         nearly 0.0369
	         nearby 0.0369
	         anerly 0.0369
	        unearly 0.0369
	     chandelier 0.0369
	         really 0.0369
	           </S> 0.0059
	              - 0.0000
	              . 0.0000
	          Books 0.0000
	              , 0.0000
	    Calandrella 0.0000

            Sky   453922  11 (34)
	           Skye 0.8000
	            Pyi 0.0628
	              C 0.0369
	          three 0.0369
	              i 0.0369
	              x 0.0369
	           long 0.0369
	           well 0.0369
	           </S> 0.0059
	           same 0.0037
	            See 0.0000
	             Sk 0.0000
	              " 0.0000
	            Ska 0.0000
	            mid 0.0000
	              ' 0.0000
	          first 0.0000
	            non 0.0000
	           name 0.0000
	             us 0.0000
	            cia 0.0000
	            Ski 0.0000
	           Skyy 0.0000
	      following 0.0000
	            two 0.0000
	            the 0.0000
	            Syk 0.0000
	            pre 0.0000
	              - 0.0000
	             my 0.0000
	            Sky 0.0000
	            sub 0.0000
	          <UNK> 0.0000
	             by 0.0000

              -   453925   5 (12)
	            cia 0.0369
	             us 0.0369
	             iu 0.0369
	           </S> 0.0059
	             as 0.0000
	              , 0.0000
	              . 0.0000
	            the 0.0000
	            and 0.0000
	             of 0.0000
	              + 0.0000
	              - 0.0000

       perching   453974  15 (26)
	      pierching 0.0369
	              A 0.0369
	              - 0.0369
	       parching 0.0369
	      prechinge 0.0369
	       Perching 0.0369
	      perchings 0.0369
	          being 0.0369
	           made 0.0369
	       peaching 0.0369
	             us 0.0369
	     reperching 0.0369
	         design 0.0369
	            the 0.0059
	           they 0.0000
	            you 0.0000
	              I 0.0000
	             he 0.0000
	       perching 0.0000
	         people 0.0000
	            and 0.0000
	           </S> 0.0000
	              , 0.0000
	        working 0.0000
	              . 0.0000
	              a 0.0000

            the   454067   1 (18)
	              I 0.0369
	              , 0.0369
	           they 0.0369
	              . 0.0369
	              a 0.0369
	           thee 0.0369
	            cia 0.0369
	             iu 0.0369
	             us 0.0369
	            thy 0.0369
	            tho 0.0369
	           them 0.0369
	            teh 0.0369
	            the 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000
	              " 0.0000

        bastard   454071  10 (30)
	          three 0.0369
	          major 0.0369
	           term 0.0369
	        bastart 0.0369
	            the 0.0369
	        bastare 0.0369
	    transformer 0.0369
	           </S> 0.0059
	           same 0.0037
	        bastard 0.0000
	       bastardy 0.0000
	       bastards 0.0000
	        barbara 0.0000
	              ' 0.0000
	      following 0.0000
	          based 0.0000
	          first 0.0000
	        Bastard 0.0000
	            way 0.0000
	       bastarda 0.0000
	           time 0.0000
	          whole 0.0000
	        Mustard 0.0000
	              - 0.0000
	           last 0.0000
	          world 0.0000
	              " 0.0000
	          <UNK> 0.0000
	            two 0.0000
	           best 0.0000

        primary   454079   2 (26)
	              i 0.3000
	             it 0.0369
	       primally 0.0369
	          shoes 0.0369
	        program 0.0369
	      primarily 0.0369
	         primar 0.0369
	        Privacy 0.0369
	           rate 0.0369
	        primare 0.0369
	        primacy 0.0369
	        primari 0.0369
	        primary 0.0369
	          price 0.0369
	      coprimary 0.0369
	              . 0.0059
	              I 0.0000
	             he 0.0000
	           </S> 0.0000
	             of 0.0000
	              - 0.0000
	            who 0.0000
	              ! 0.0000
	              a 0.0000
	           that 0.0000
	              , 0.0000

            the   454104   1 (18)
	             us 0.0369
	              , 0.0369
	            tho 0.0369
	            thy 0.0369
	           that 0.0369
	              I 0.0369
	            cia 0.0369
	             iu 0.0369
	           they 0.0369
	            teh 0.0369
	            the 0.0369
	           them 0.0369
	              a 0.0369
	              . 0.0369
	           thee 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000

       blackish   454108   9 (30)
	        Blackie 0.2000
	           town 0.0369
	            the 0.0369
	     blackishly 0.0369
	          urban 0.0369
	       blackism 0.0369
	          major 0.0369
	           </S> 0.0059
	      blackfish 0.0000
	           time 0.0000
	              " 0.0000
	            way 0.0000
	          black 0.0000
	          first 0.0000
	           main 0.0000
	           list 0.0000
	            two 0.0000
	           best 0.0000
	           year 0.0000
	         blacky 0.0000
	           last 0.0000
	           same 0.0000
	          world 0.0000
	       blackish 0.0000
	              - 0.0000
	       Blackish 0.0000
	              ' 0.0000
	          <UNK> 0.0000
	       brackish 0.0000
	      following 0.0000

        centres   454117   1 (25)
	       centreso 0.0369
	       centresi 0.0369
	         Center 0.0369
	         centre 0.0369
	         centrs 0.0369
	              I 0.0369
	        central 0.0369
	        cinerea 0.0369
	          prior 0.0369
	         before 0.0369
	        centrex 0.0369
	        control 0.0369
	             up 0.0369
	             is 0.0369
	        centres 0.0369
	        centred 0.0369
	             of 0.0369
	              a 0.0369
	        centers 0.0369
	              - 0.0059
	          brown 0.0000
	           back 0.0000
	           </S> 0.0000
	              . 0.0000
	              , 0.0000

         iipper   454148   1 (31)
	          upper 0.7583
	            per 0.5000
	         pipper 0.1000
	          Earth 0.0369
	              , 0.0369
	         pipier 0.0369
	              a 0.0369
	           item 0.0369
	         ground 0.0369
	            sea 0.0369
	            GNU 0.0369
	          major 0.0369
	          Fermi 0.0369
	             in 0.0369
	           land 0.0369
	            and 0.0369
	              . 0.0369
	           </S> 0.0059
	           same 0.0037
	              - 0.0000
	         zipper 0.0000
	         ripper 0.0000
	           most 0.0000
	          first 0.0000
	           page 0.0000
	           eBay 0.0000
	         Ripper 0.0000
	         Zipper 0.0000
	          world 0.0000
	          piper 0.0000
	          Upper 0.0000

        surface   454155   1 (20)
	        surfacy 0.0369
	        surfaco 0.0369
	              - 0.0369
	              , 0.0369
	       surfaced 0.0369
	           that 0.0369
	       surfacer 0.0369
	              a 0.0369
	        surface 0.0369
	       services 0.0369
	       surfaces 0.0369
	        syriaca 0.0369
	              I 0.0369
	          shall 0.0369
	            you 0.0369
	        service 0.0369
	              . 0.0369
	             of 0.0369
	            and 0.0369
	           </S> 0.0369

        central   454249   1 (20)
	              I 0.0369
	       centraal 0.0369
	        centras 0.0369
	       centrale 0.0369
	       centrals 0.0369
	            the 0.0369
	              , 0.0369
	        central 0.0369
	        centrar 0.0369
	              - 0.0369
	         centra 0.0369
	         centre 0.0369
	              . 0.0369
	        Central 0.0369
	              s 0.0369
	              a 0.0369
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	              } 0.0000

        reddish   454272   1 (24)
	           Zope 0.0369
	         reddis 0.0369
	      reddishly 0.0369
	         eddish 0.0369
	           real 0.0369
	           gray 0.0369
	              E 0.0369
	        redfish 0.0369
	           Eyes 0.0369
	        reddish 0.0369
	        service 0.0369
	        reedish 0.0369
	              , 0.0059
	              . 0.0000
	             of 0.0000
	              a 0.0000
	              I 0.0000
	           </S> 0.0000
	              - 0.0000
	        because 0.0000
	     1999/08/27 0.0000
	          <UNK> 0.0000
	              ) 0.0000
	            and 0.0000

        centres   454298   2 (28)
	              - 0.9000
	           wife 0.0369
	        central 0.0369
	         centre 0.0369
	        content 0.0369
	     exceptions 0.0369
	         centrs 0.0369
	    information 0.0369
	              a 0.0369
	        centred 0.0369
	         Center 0.0369
	          other 0.0369
	       centresi 0.0369
	        cinerea 0.0369
	        centrex 0.0369
	        control 0.0369
	       centreso 0.0369
	              I 0.0369
	       children 0.0369
	        centres 0.0369
	      exception 0.0369
	              , 0.0059
	           </S> 0.0000
	        centers 0.0000
	              . 0.0000
	          brown 0.0000
	           pink 0.0000
	            red 0.0000

      outermost   454307  16 (23)
	           most 0.4000
	           over 0.0369
	        termosu 0.0369
	      outermore 0.0369
	           </S> 0.0369
	         yellow 0.0369
	         window 0.0369
	              " 0.0369
	              a 0.0369
	          white 0.0369
	          <UNK> 0.0369
	      sostermos 0.0369
	              I 0.0369
	            and 0.0369
	            the 0.0059
	      uttermost 0.0000
	      outermost 0.0000
	              i 0.0000
	          which 0.0000
	          other 0.0000
	        outmost 0.0000
	             or 0.0000
	         termos 0.0000

        feather   454317   1 (19)
	       feathers 0.1000
	        feather 0.1000
	            the 0.0369
	              a 0.0369
	              F 0.0369
	        farther 0.0369
	          Other 0.0369
	       feathery 0.0369
	          other 0.0369
	              I 0.0369
	         father 0.0369
	        another 0.0369
	          layer 0.0059
	           </S> 0.0000
	        regions 0.0000
	              . 0.0000
	              , 0.0000
	              - 0.0000
	            and 0.0000

          brown   454325   2 (22)
	          blown 0.2000
	          brows 0.0369
	          Brown 0.0369
	         browns 0.0369
	         browny 0.0369
	           brow 0.0369
	          brown 0.0369
	          bring 0.0369
	       nonbrown 0.0369
	           down 0.0333
	              , 0.0059
	            bed 0.0000
	              a 0.0000
	              . 0.0000
	           beds 0.0000
	           </S> 0.0000
	         pillow 0.0000
	              I 0.0000
	        pillows 0.0000
	         duster 0.0000
	              ) 0.0000
	              - 0.0000

          dusky   454346   4 (23)
	           just 0.8000
	             us 0.7000
	           page 0.4067
	          dusty 0.0369
	           dusk 0.0369
	          dusks 0.0369
	          dusky 0.0369
	       Sandusky 0.0369
	          Lucky 0.0369
	        Urdusky 0.0369
	           duck 0.0369
	         duskly 0.0369
	           site 0.0059
	              . 0.0000
	              - 0.0000
	          pages 0.0000
	              , 0.0000
	           dust 0.0000
	          sites 0.0000
	            day 0.0000
	            due 0.0000
	        hosting 0.0000
	           </S> 0.0000

      remaining   454405   1 (21)
	              o 0.0369
	     remainings 0.0369
	              , 0.0369
	      regaining 0.0369
	      remeaning 0.0369
	      remaining 0.0369
	    unremaining 0.0369
	              . 0.0369
	              - 0.0369
	      remanning 0.0369
	              a 0.0369
	      retaining 0.0369
	       remained 0.0369
	              I 0.0369
	     remaintain 0.0369
	        remains 0.0369
	           </S> 0.0059
	          <UNK> 0.0000
	              ) 0.0000
	              } 0.0000
	              " 0.0000

       feathers   454415   1 (21)
	       feathers 0.8000
	        fathers 0.2000
	         server 0.0369
	       feathery 0.0369
	       heathers 0.0369
	        kmalloc 0.0369
	        Weather 0.0369
	     unfeathers 0.0369
	              } 0.0369
	      fatherers 0.0369
	             in 0.0059
	              = 0.0000
	              : 0.0000
	            the 0.0000
	           </S> 0.0000
	       features 0.0000
	              , 0.0000
	        feature 0.0000
	        feather 0.0000
	              . 0.0000
	              a 0.0000

       blackish   454424   3 (28)
	              a 0.2000
	              I 0.1000
	     blackishly 0.0369
	        modules 0.0369
	             us 0.0369
	           same 0.0369
	         caches 0.0369
	       blackish 0.0369
	              % 0.0369
	      blackfish 0.0369
	          place 0.0369
	       brackish 0.0369
	       blackism 0.0369
	       Blackish 0.0369
	         blacky 0.0369
	              , 0.0059
	        ruffled 0.0000
	            the 0.0000
	           back 0.0000
	           </S> 0.0000
	              . 0.0000
	             of 0.0000
	        because 0.0000
	              - 0.0000
	            and 0.0000
	              " 0.0000
	          <UNK> 0.0000
	              ) 0.0000

     triangular   454448   1 (21)
	              a 0.0369
	     triangulaj 0.0369
	     triangulan 0.0369
	    triangulari 0.0369
	   triangularia 0.0369
	              I 0.0369
	    triangulare 0.0369
	     triangular 0.0369
	         single 0.0369
	     triangulai 0.0369
	      triangula 0.0369
	    triangulara 0.0369
	              . 0.0059
	              ( 0.0000
	              - 0.0000
	            and 0.0000
	             of 0.0000
	           </S> 0.0000
	              , 0.0000
	        program 0.0000
	           that 0.0000

              a   454472   1 (21)
	              a 0.0369
	             aa 0.0369
	             us 0.0369
	             la 0.0369
	              . 0.0369
	             to 0.0369
	              , 0.0369
	          mouth 0.0369
	              - 0.0369
	           lava 0.0369
	            cia 0.0369
	             as 0.0369
	            the 0.0369
	             La 0.0369
	             of 0.0369
	             at 0.0369
	            aaa 0.0369
	           </S> 0.0059
	              " 0.0000
	              } 0.0000
	              ) 0.0000

        buffish   454480   2 (26)
	              a 0.1000
	          buffi 0.0369
	            off 0.0369
	            but 0.0369
	       business 0.0369
	           File 0.0369
	        buffish 0.0369
	             of 0.0369
	              E 0.0369
	          MySQL 0.0369
	        buffins 0.0369
	        huffish 0.0369
	        silvery 0.0369
	              I 0.0369
	            all 0.0369
	          first 0.0369
	              e 0.0369
	        bugfish 0.0369
	        burfish 0.0369
	         uffish 0.0369
	          range 0.0059
	              - 0.0000
	              , 0.0000
	              . 0.0000
	       spectrum 0.0000
	           </S> 0.0000

            ear   454548   1 (24)
	              . 0.0369
	             us 0.0369
	            may 0.0369
	              : 0.0369
	           earn 0.0369
	           ears 0.0369
	           eare 0.0369
	           year 0.0369
	            ear 0.0369
	            arz 0.0369
	            cia 0.0369
	              a 0.0369
	            eat 0.0369
	            eau 0.0369
	            era 0.0369
	            was 0.0369
	           earr 0.0369
	            are 0.0369
	              , 0.0369
	            Car 0.0369
	           </S> 0.0059
	              ) 0.0000
	              " 0.0000
	              } 0.0000

         rufous   454560   3 (31)
	              - 0.8000
	             is 0.5000
	          rufus 0.0369
	         rufous 0.0369
	          basis 0.0369
	         rugous 0.0369
	         rukous 0.0369
	          group 0.0369
	   descriptions 0.0369
	         Turdus 0.0369
	         rufula 0.0369
	        Aoufous 0.0369
	         period 0.0369
	              I 0.0369
	          rufos 0.0369
	          roufs 0.0369
	           rufo 0.0369
	        foufous 0.0369
	         Rufous 0.0369
	        sources 0.0369
	              . 0.0059
	              a 0.0000
	            are 0.0000
	              ) 0.0000
	          white 0.0000
	              , 0.0000
	            and 0.0000
	           your 0.0000
	            for 0.0000
	           </S> 0.0000
	          black 0.0000

         cheeks   454595   1 (19)
	         cheeky 0.0369
	          cheek 0.0369
	         chekes 0.0369
	              a 0.0369
	          weeks 0.0369
	              , 0.0369
	         cheeks 0.0369
	          cheap 0.0369
	         checks 0.0369
	          check 0.0369
	      asscheeks 0.0369
	              . 0.0369
	              - 0.0369
	         cheeke 0.0369
	          error 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	              " 0.0000

    distinctl}'   454631  14 (21)
	       distinct 0.8000
	             or 0.0369
	      distincti 0.0369
	        details 0.0369
	      distincta 0.0369
	      distincts 0.0369
	              I 0.0369
	            did 0.0369
	     distinctis 0.0369
	    distinction 0.0369
	    distinctive 0.0369
	        contact 0.0369
	              a 0.0059
	           more 0.0000
	            and 0.0000
	     distinctly 0.0000
	              , 0.0000
	              . 0.0000
	              - 0.0000
	            the 0.0000
	           </S> 0.0000

      yellowish   454643   1 (20)
	         health 0.0369
	           year 0.0369
	             of 0.0369
	    yellowishly 0.0369
	              - 0.0369
	     yellowfish 0.0369
	              . 0.0369
	            and 0.0369
	              e 0.0369
	      yellowish 0.0369
	           well 0.0369
	           must 0.0369
	           self 0.0369
	      Yellowish 0.0369
	      mellowish 0.0369
	              , 0.0369
	           full 0.0369
	          major 0.0369
	           </S> 0.0369
	              a 0.0369

         flanks   454686   1 (22)
	       flaskans 0.0369
	              a 0.0369
	         plants 0.0369
	         flanko 0.0369
	         flanke 0.0369
	         Thanks 0.0369
	          lanks 0.0369
	         flanks 0.0369
	         thanks 0.0369
	              , 0.0369
	        flaskan 0.0369
	          flans 0.0369
	          flash 0.0369
	        flankes 0.0369
	              I 0.0369
	              : 0.0369
	              . 0.0369
	          flank 0.0369
	           </S> 0.0059
	              } 0.0000
	              " 0.0000
	              ) 0.0000

       brownish   454693   2 (18)
	            you 0.1000
	          brown 0.0369
	       browsing 0.0369
	              } 0.0369
	     brownishly 0.0369
	       brownish 0.0369
	        brownie 0.0369
	       browning 0.0369
	         browse 0.0369
	       brownism 0.0369
	       brownist 0.0369
	             of 0.0059
	              . 0.0000
	           </S> 0.0000
	              - 0.0000
	              ) 0.0000
	              a 0.0000
	              , 0.0000

         throat   454704   1 (17)
	              a 0.0369
	         thomas 0.0369
	         throat 0.0369
	          torah 0.0369
	          torax 0.0369
	              - 0.0369
	              , 0.0369
	         threat 0.0369
	         thread 0.0369
	              . 0.0369
	        throats 0.0369
	        throaty 0.0369
	          hrota 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	              " 0.0000

       narrowly   454711   2 (16)
	              a 0.1000
	       narrowly 0.0369
	       norroway 0.0369
	       narrowed 0.0369
	       narrower 0.0369
	         narrow 0.0369
	              } 0.0369
	        narrowy 0.0369
	        Barrows 0.0369
	        narrows 0.0369
	              . 0.0059
	            and 0.0000
	           </S> 0.0000
	              - 0.0000
	             is 0.0000
	              , 0.0000

         breast   454742   1 (19)
	         breast 0.0369
	              , 0.0369
	              . 0.0369
	        breasts 0.0369
	          least 0.0369
	        breasty 0.0369
	          white 0.0369
	         brease 0.0369
	          break 0.0369
	          breas 0.0369
	              a 0.0369
	          sides 0.0369
	          areas 0.0369
	              - 0.0369
	        breaste 0.0369
	           </S> 0.0059
	              ) 0.0000
	              " 0.0000
	              } 0.0000

        broadly   454760   1 (23)
	      broadleaf 0.0369
	              I 0.0369
	        broadly 0.0369
	             us 0.0369
	        cancers 0.0369
	         cancer 0.0369
	        product 0.0369
	        broadel 0.0369
	         broads 0.0369
	           only 0.0369
	          broad 0.0369
	        broader 0.0369
	         boardy 0.0369
	        boardly 0.0369
	             of 0.0059
	           </S> 0.0000
	              . 0.0000
	            are 0.0000
	              a 0.0000
	              , 0.0000
	           from 0.0000
	            the 0.0000
	              - 0.0000

       streaked   454768   1 (22)
	       streaked 0.9000
	              . 0.1021
	       streamed 0.0369
	        streams 0.0369
	        straked 0.0369
	     streakedly 0.0369
	     unstreaked 0.0369
	     restreaked 0.0369
	       streamer 0.0369
	         stream 0.0369
	       Streaked 0.0369
	       streaker 0.0369
	              a 0.0369
	        speaker 0.0369
	              , 0.0059
	           </S> 0.0000
	        rounded 0.0000
	              - 0.0000
	          ovate 0.0000
	            and 0.0000
	             in 0.0000
	        defined 0.0000

              ;   454777   1 (15)
	              ; 0.5000
	             of 0.3000
	             us 0.0369
	          while 0.0369
	            cia 0.0369
	             iu 0.0369
	           with 0.0059
	              - 0.0000
	         across 0.0000
	            and 0.0000
	           </S> 0.0000
	              . 0.0000
	     upperparts 0.0000
	              , 0.0000
	            the 0.0000

           bill   454779   1 (23)
	              - 0.0369
	            its 0.0369
	            big 0.0369
	           will 0.0369
	              . 0.0369
	          bills 0.0369
	          billy 0.0369
	              X 0.0369
	              a 0.0369
	           bill 0.0369
	            bil 0.0369
	            cia 0.0369
	           sala 0.0369
	           Pica 0.0369
	              , 0.0369
	           bild 0.0369
	           bile 0.0369
	           bili 0.0369
	           file 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000
	              " 0.0000

           dark   454784   1 (26)
	           dark 0.6000
	           drak 0.0369
	           drka 0.0369
	            arz 0.0369
	           lava 0.0369
	           sala 0.0369
	           dare 0.0369
	           darn 0.0369
	            dar 0.0369
	              } 0.0369
	          darks 0.0369
	          darky 0.0369
	              . 0.0059
	           </S> 0.0000
	            day 0.0000
	              ' 0.0000
	           date 0.0000
	              a 0.0000
	              , 0.0000
	            and 0.0000
	           data 0.0000
	              - 0.0000
	             to 0.0000
	              ( 0.0000
	           days 0.0000
	              I 0.0000

           feet   454816   1 (24)
	              . 0.0369
	           been 0.0369
	            the 0.0369
	           fete 0.0369
	              I 0.0369
	           feel 0.0369
	           fees 0.0369
	          feest 0.0369
	           need 0.0369
	              a 0.0369
	              , 0.0369
	           feet 0.0369
	           face 0.0369
	            fee 0.0369
	           free 0.0369
	         feetje 0.0369
	           fett 0.0369
	          feets 0.0369
	              - 0.0369
	            fet 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	              " 0.0000

          light   454821  11 (19)
	           ligh 0.0369
	              A 0.0369
	              } 0.0369
	        litighi 0.0369
	         lights 0.0369
	          licht 0.0369
	         lighty 0.0369
	        hilight 0.0369
	              I 0.0369
	              . 0.0059
	             to 0.0000
	              a 0.0000
	             of 0.0000
	              - 0.0000
	          might 0.0000
	           </S> 0.0000
	          right 0.0000
	          light 0.0000
	              , 0.0000

           horn   454827   1 (29)
	           horn 0.8000
	           here 0.5000
	            set 0.0369
	        reddish 0.0369
	       Tide2006 0.0369
	          corax 0.0369
	            arz 0.0369
	          torax 0.0369
	           hora 0.0369
	              T 0.0369
	          horno 0.0369
	          hoorn 0.0369
	      yellowish 0.0369
	             of 0.0059
	              - 0.0000
	              . 0.0000
	           blue 0.0000
	              , 0.0000
	              I 0.0000
	           home 0.0000
	           </S> 0.0000
	           hors 0.0000
	          horny 0.0000
	           gray 0.0000
	            box 0.0000
	            how 0.0000
	         yellow 0.0000
	          horns 0.0000
	              a 0.0000

              -   454831   1 (13)
	              - 0.4067
	           dark 0.0369
	            cia 0.0369
	             iu 0.0369
	          brown 0.0369
	              , 0.0059
	             us 0.0000
	            and 0.0000
	             of 0.0000
	             -- 0.0000
	            the 0.0000
	           </S> 0.0000
	              . 0.0000

           iris   454839   1 (24)
	            its 0.0369
	              . 0.0369
	             in 0.0369
	           iris 0.0369
	             iu 0.0369
	            cia 0.0369
	            arz 0.0369
	              a 0.0369
	              - 0.0369
	            irs 0.0369
	          iiris 0.0369
	              I 0.0369
	          irish 0.0369
	          irisa 0.0369
	             is 0.0369
	              , 0.0369
	           irie 0.0369
	           irin 0.0369
	            iri 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000
	          <UNK> 0.0000
	              " 0.0000

          hazel   454844   1 (23)
	          hazel 1.0000
	          hazes 0.0369
	          hazed 0.0369
	           held 0.0369
	         Ghazel 0.0369
	              } 0.0369
	           haze 0.0369
	          Pales 0.0369
	          hotel 0.0369
	          hazle 0.0369
	           hard 0.0369
	         hazels 0.0369
	          halez 0.0369
	              , 0.0059
	              ) 0.0000
	           </S> 0.0000
	           have 0.0000
	              - 0.0000
	            has 0.0000
	    recognition 0.0000
	              . 0.0000
	           here 0.0000
	          scans 0.0000

              .   454849   1 (13)
	              . 0.9521
	              - 0.0426
	             us 0.0369
	       iris.htm 0.0369
	            cia 0.0369
	             iu 0.0369
	           eyes 0.0059
	            and 0.0000
	            ... 0.0000
	            the 0.0000
	             of 0.0000
	              , 0.0000
	           </S> 0.0000

      soniewhal   454870  12 (20)
	             so 0.7000
	              I 0.0369
	      described 0.0369
	         movies 0.0369
	        Toniwha 0.0369
	      nonlethal 0.0369
	       societal 0.0369
	        stories 0.0369
	           star 0.0369
	        similar 0.0369
	           from 0.0059
	              a 0.0000
	              - 0.0000
	             in 0.0000
	           </S> 0.0000
	              . 0.0000
	              , 0.0000
	             is 0.0000
	       somewhat 0.0000
	       slightly 0.0000

             as   454880   1 (23)
	           ours 0.0369
	         others 0.0369
	             at 0.0369
	           </S> 0.0369
	              C 0.0369
	           from 0.0369
	           that 0.0369
	             it 0.0369
	              A 0.0369
	              , 0.0369
	              - 0.0369
	             an 0.0369
	              a 0.0369
	              . 0.0369
	            arz 0.0369
	             iu 0.0369
	             sa 0.0369
	            aas 0.0369
	             us 0.0369
	            the 0.0369
	            ask 0.0369
	            ass 0.0369
	             as 0.0369

           Sk3'   454890  14 (30)
	              3 0.0369
	            non 0.0369
	              . 0.0369
	           post 0.0369
	            pre 0.0369
	              A 0.0369
	              C 0.0369
	              , 0.0369
	            mid 0.0369
	              E 0.0369
	          short 0.0369
	           </S> 0.0059
	           same 0.0037
	              ' 0.0000
	            See 0.0000
	           case 0.0000
	      following 0.0000
	          world 0.0000
	           Site 0.0000
	         United 0.0000
	            two 0.0000
	             Sk 0.0000
	             kS 0.0000
	           Skip 0.0000
	            Sky 0.0000
	          first 0.0000
	           Skin 0.0000
	            Ski 0.0000
	           Send 0.0000
	              - 0.0000

              -   454894   1 (11)
	           </S> 0.0369
	              , 0.0369
	             of 0.0369
	              - 0.0369
	              . 0.0369
	             -- 0.0369
	             us 0.0369
	            cia 0.0369
	            the 0.0369
	             iu 0.0369
	            and 0.0369

            the   454902   1 (19)
	           them 0.0369
	            the 0.0369
	           thee 0.0369
	            thy 0.0369
	            tho 0.0369
	            cia 0.0369
	             iu 0.0369
	              a 0.0369
	             to 0.0369
	             us 0.0369
	           they 0.0369
	              . 0.0369
	              , 0.0369
	            teh 0.0369
	           </S> 0.0059
	              ) 0.0000
	              " 0.0000
	          <UNK> 0.0000
	              } 0.0000

      deeidedly   454917  14 (23)
	        decided 0.2000
	           much 0.0369
	              I 0.0369
	         diddly 0.0369
	        deedily 0.0369
	        Aidedly 0.0369
	       referred 0.0369
	       directly 0.0369
	      deludedly 0.0369
	              - 0.0369
	      dividedly 0.0369
	       Glidedly 0.0369
	              a 0.0059
	           used 0.0000
	           </S> 0.0000
	      decidedly 0.0000
	          added 0.0000
	         deeded 0.0000
	        carried 0.0000
	              , 0.0000
	            the 0.0000
	        treated 0.0000
	              . 0.0000

        shorter   454927   1 (20)
	        shorter 0.0369
	             by 0.0369
	         shorte 0.0369
	             us 0.0369
	             to 0.0369
	              , 0.0369
	            out 0.0369
	              a 0.0369
	              I 0.0369
	              - 0.0369
	        shooter 0.0369
	              . 0.0369
	          order 0.0369
	           </S> 0.0369
	          store 0.0369
	        shorten 0.0369
	             up 0.0369
	          hotel 0.0369
	        shorted 0.0369
	       shorters 0.0369

          Yonng   454965   1 (26)
	          Young 1.0000
	         Yongin 0.0369
	          Yonne 0.0369
	            Yon 0.0369
	              a 0.0369
	           long 0.0369
	        Yognogo 0.0369
	              s 0.0369
	         Yongon 0.0369
	          Yonge 0.0369
	            onn 0.0369
	           Yong 0.0369
	         Yonner 0.0369
	         Yonnex 0.0369
	           </S> 0.0059
	              ) 0.0000
	              " 0.0000
	              , 0.0000
	             '' 0.0000
	           Your 0.0000
	              I 0.0000
	            You 0.0000
	              A 0.0000
	              ] 0.0000
	              - 0.0000
	              . 0.0000

        l:)irds   454971   1 (20)
	          girds 0.0369
	          lords 0.0369
	              . 0.0369
	          Birds 0.0369
	            you 0.0369
	         lairds 0.0369
	           lids 0.0369
	              n 0.0369
	              g 0.0369
	          <UNK> 0.0369
	         larids 0.0369
	        drivers 0.0369
	         liards 0.0369
	        lizards 0.0369
	          birds 0.0369
	              - 0.0369
	              ) 0.0369
	              a 0.0369
	              , 0.0369
	           </S> 0.0369

            are   454979   1 (21)
	           area 0.0369
	             at 0.0369
	            are 0.0369
	            and 0.0369
	           aree 0.0369
	             of 0.0369
	            arm 0.0369
	             re 0.0369
	            arz 0.0369
	             be 0.0369
	            the 0.0369
	           alba 0.0369
	             us 0.0369
	             ar 0.0369
	            art 0.0369
	           ares 0.0369
	            her 0.0369
	             as 0.0369
	            aer 0.0369
	           aare 0.0369
	            for 0.0369

         rnfons   454988 inf (32)
	              i 0.0369
	          frons 0.0369
	          rufus 0.0369
	        enfonso 0.0369
	           fons 0.0369
	          forns 0.0369
	        confons 0.0369
	      renflions 0.0369
	         forons 0.0369
	      renfilons 0.0369
	         infons 0.0369
	         enfons 0.0369
	         refons 0.0369
	       renflons 0.0369
	           than 0.0059
	          about 0.0000
	           info 0.0000
	         likely 0.0000
	             of 0.0000
	    information 0.0000
	         detail 0.0000
	              . 0.0000
	              I 0.0000
	            you 0.0000
	              , 0.0000
	              - 0.0000
	            for 0.0000
	          fully 0.0000
	           </S> 0.0000
	           Info 0.0000
	             to 0.0000
	              a 0.0000

          above   454995   1 (24)
	           </S> 0.0369
	    Healthnotes 0.0369
	         Labove 0.0369
	             in 0.0369
	              , 0.0369
	           than 0.0369
	              I 0.0369
	          abode 0.0369
	              . 0.0369
	              - 0.0369
	            buy 0.0369
	              a 0.0369
	          about 0.0369
	         aboven 0.0369
	          aboue 0.0369
	          alone 0.0369
	            are 0.0369
	          above 0.0369
	        aboveda 0.0369
	             us 0.0369
	             to 0.0369
	        arborea 0.0369
	           have 0.0369
	           know 0.0369

          below   455033   1 (20)
	              , 0.0369
	              I 0.0369
	              i 0.0369
	              a 0.0369
	          belon 0.0369
	          belos 0.0369
	           blog 0.0369
	          Aedon 0.0369
	              - 0.0369
	           blow 0.0369
	          below 0.0369
	         Abelow 0.0369
	         belowe 0.0369
	              . 0.0369
	         bellow 0.0369
	           belo 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	              " 0.0000

        3'ellow   455053   6 (20)
	         fellow 0.1500
	           ello 0.0369
	            all 0.0369
	           well 0.0369
	           than 0.0059
	    information 0.0000
	         Yellow 0.0000
	              . 0.0000
	          below 0.0000
	              , 0.0000
	              I 0.0000
	      efficient 0.0000
	              - 0.0000
	             to 0.0000
	         likely 0.0000
	           </S> 0.0000
	              a 0.0000
	         yellow 0.0000
	      expensive 0.0000
	      effective 0.0000

        spotted   455082   2 (23)
	         posted 0.1000
	        stopped 0.0369
	              I 0.0369
	        spotted 0.0369
	              a 0.0369
	         spotte 0.0369
	          login 0.0369
	         people 0.0369
	         sotted 0.0369
	             do 0.0369
	         potted 0.0369
	        spotter 0.0369
	        spotten 0.0369
	            see 0.0369
	       spottend 0.0369
	      available 0.0059
	           used 0.0000
	           </S> 0.0000
	              . 0.0000
	            and 0.0000
	              - 0.0000
	              , 0.0000
	           than 0.0000

             On   455118   3 (23)
	            One 0.4236
	             an 0.3642
	             On 0.3477
	             Of 0.2649
	             on 0.0660
	             in 0.0634
	              I 0.0418
	             OF 0.0369
	             us 0.0369
	            Onn 0.0369
	            Ont 0.0369
	             iu 0.0369
	            cia 0.0369
	              a 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	            and 0.0000
	              , 0.0000
	              ] 0.0000
	              ) 0.0000
	              . 0.0000

            Dr.   455243   1 (24)
	       wivenhoe 0.0369
	          youth 0.0369
	        writers 0.0369
	            arz 0.0369
	            cia 0.0369
	            are 0.0369
	            Dry 0.0369
	            Dre 0.0369
	              ( 0.0369
	              " 0.0369
	           </S> 0.0369
	          <UNK> 0.0369
	              a 0.0369
	            and 0.0369
	            but 0.0369
	             Dr 0.0369
	              I 0.0369
	            Drs 0.0369
	            the 0.0059
	          which 0.0012
	             us 0.0000
	             or 0.0000
	              i 0.0000
	            for 0.0000

        vSharpe   455247   1 (33)
	         Sharpe 0.8000
	           John 0.1579
	        Sharper 0.0369
	              a 0.0369
	           have 0.0369
	         sharpe 0.0369
	          share 0.0369
	            the 0.0369
	           that 0.0369
	              . 0.0369
	          harpe 0.0369
	           Rice 0.0369
	        Sharpea 0.0369
	              I 0.0369
	        Sharpen 0.0369
	         people 0.0369
	              A 0.0369
	              T 0.0369
	         CSharp 0.0369
	           </S> 0.0059
	              , 0.0000
	             A. 0.0000
	            and 0.0000
	             M. 0.0000
	          <UNK> 0.0000
	              ( 0.0000
	              - 0.0000
	         Jekyll 0.0000
	          Sharp 0.0000
	         Sharps 0.0000
	          Seuss 0.0000
	             J. 0.0000
	           King 0.0000

            and   455255   1 (16)
	           aand 0.0369
	              - 0.0369
	            any 0.0369
	              & 0.0369
	              s 0.0369
	            arz 0.0369
	           alba 0.0369
	            ant 0.0369
	              , 0.0369
	            and 0.0369
	           andy 0.0369
	           anda 0.0369
	           </S> 0.0369
	             's 0.0369
	              . 0.0369
	             an 0.0369

        Lullula   455306   1 (29)
	        Lullula 0.4000
	          Lulla 0.1000
	          value 0.0369
	           will 0.0369
	       specific 0.0369
	        species 0.0369
	              s 0.0369
	        pullula 0.0369
	         Lalula 0.0369
	         shirts 0.0369
	        quality 0.0369
	              - 0.0079
	           </S> 0.0059
	             up 0.0000
	          <UNK> 0.0000
	          lulla 0.0000
	            the 0.0000
	              A 0.0000
	              I 0.0000
	        Killala 0.0000
	              . 0.0000
	             to 0.0000
	       pullulan 0.0000
	         Lullus 0.0000
	           time 0.0000
	           mail 0.0000
	              ) 0.0000
	              a 0.0000
	          Lulua 0.0000

              ,   455313   2 (14)
	       Lundomys 0.4000
	              , 0.0369
	          names 0.0369
	             us 0.0369
	            and 0.0369
	              . 0.0369
	              - 0.0369
	            the 0.0369
	          genus 0.0369
	             iu 0.0369
	             of 0.0369
	           </S> 0.0369
	            cia 0.0369
	        arborea 0.0059

           Kaup   455315   1 (31)
	           Kaur 0.0369
	           Kaus 0.0369
	           </S> 0.0369
	              ( 0.0369
	            but 0.0369
	            Kau 0.0369
	           Kapu 0.0369
	           Kaup 0.0369
	      therefore 0.0369
	          <UNK> 0.0369
	              a 0.0369
	            and 0.0369
	       Straight 0.0369
	         dialup 0.0369
	              - 0.0369
	          Kaupo 0.0369
	          Kaupe 0.0369
	              I 0.0369
	           Kuap 0.0369
	            the 0.0059
	          which 0.0012
	            too 0.0000
	              i 0.0000
	            was 0.0000
	           have 0.0000
	           sala 0.0000
	           lava 0.0000
	          maura 0.0000
	           your 0.0000
	         though 0.0000
	             or 0.0000

         IvU-lu   455357 inf (25)
	              x 0.2000
	           Ivel 0.0369
	              s 0.0369
	     DishFAMILY 0.0369
	          Ivalu 0.0369
	          Ilulu 0.0369
	            Ivu 0.0369
	           team 0.0369
	           </S> 0.0059
	              ) 0.0000
	         Ivaylo 0.0000
	              A 0.0000
	             If 0.0000
	              , 0.0000
	          <UNK> 0.0000
	              C 0.0000
	              . 0.0000
	           Iglu 0.0000
	             In 0.0000
	              a 0.0000
	              - 0.0000
	          Ivalo 0.0000
	            Ilu 0.0000
	              " 0.0000
	             It 0.0000

           Col.   455422   3 (23)
	            for 0.0601
	              I 0.0418
	           Cool 0.0369
	           Cole 0.0369
	           City 0.0369
	           sala 0.0369
	          wolfi 0.0369
	           Cold 0.0369
	           Coll 0.0369
	           Colo 0.0369
	            Col 0.0369
	       produced 0.0369
	              a 0.0369
	           only 0.0369
	           Cola 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              , 0.0000
	              ) 0.0000
	              ] 0.0000
	              . 0.0000

             L.   455427   3 (22)
	             LL 0.8000
	             to 0.6000
	             L. 0.1000
	             us 0.0369
	              a 0.0369
	           </S> 0.0059
	             J. 0.0000
	          James 0.0000
	             LA 0.0000
	             .. 0.0000
	             La 0.0000
	              , 0.0000
	              ) 0.0000
	              A 0.0000
	              . 0.0000
	             of 0.0000
	             in 0.0000
	              - 0.0000
	              B 0.0000
	          David 0.0000
	          <UNK> 0.0000
	           John 0.0000

          Irb}'   455436   2 (31)
	              . 0.8000
	           Irby 0.3000
	              L 0.0369
	        However 0.0369
	            Irb 0.0369
	            Ibr 0.0369
	           Thus 0.0369
	          Moore 0.0369
	         Claver 0.0369
	          Irrrb 0.0369
	          Wedel 0.0369
	            Jr. 0.0369
	             M. 0.0369
	        Bertini 0.0369
	              M 0.0369
	             A. 0.0369
	           Irob 0.0369
	          Irbil 0.0369
	          Irbid 0.0369
	             Ir 0.0369
	             .. 0.0059
	           Iraq 0.0000
	           </S> 0.0000
	         Foster 0.0000
	           Iran 0.0000
	             J. 0.0000
	              A 0.0000
	              , 0.0000
	              - 0.0000
	          <UNK> 0.0000
	          Irish 0.0000

    Ornithology   455452  14 (23)
	              A 0.1000
	   Ornithologie 0.0369
	            one 0.0369
	     University 0.0369
	           Site 0.0369
	    Ornothology 0.0369
	            One 0.0369
	        Journal 0.0369
	    Ornathology 0.0369
	    Proceedings 0.0369
	    Ornithologe 0.0369
	        version 0.0369
	           </S> 0.0059
	           with 0.0000
	    Ornithology 0.0000
	    ornithology 0.0000
	            and 0.0000
	              . 0.0000
	              a 0.0000
	              , 0.0000
	          <UNK> 0.0000
	              - 0.0000
	              I 0.0000

          sa3'S   455494 inf (29)
	           SasS 0.0369
	             so 0.0369
	           some 0.0369
	         adding 0.0369
	              - 0.0235
	           </S> 0.0059
	              I 0.0000
	           said 0.0000
	            say 0.0000
	           sass 0.0000
	            and 0.0000
	             sa 0.0000
	             or 0.0000
	            saw 0.0000
	              A 0.0000
	              " 0.0000
	           sala 0.0000
	              x 0.0000
	             is 0.0000
	           same 0.0000
	             he 0.0000
	              a 0.0000
	          <UNK> 0.0000
	             aS 0.0000
	            sas 0.0000
	              , 0.0000
	            the 0.0000
	             sS 0.0000
	              . 0.0000

           that   455500   1 (25)
	            tha 0.0369
	              " 0.0369
	     Transistor 0.0369
	              s 0.0369
	              A 0.0369
	           than 0.0369
	          thats 0.0369
	           hath 0.0369
	          <UNK> 0.0369
	          torax 0.0369
	            the 0.0369
	            cia 0.0369
	           thai 0.0369
	              I 0.0369
	              , 0.0369
	           thaa 0.0369
	           that 0.0369
	              . 0.0369
	              a 0.0369
	             up 0.0369
	           </S> 0.0369
	              = 0.0369
	              - 0.0369
	          thatn 0.0369
	          thatt 0.0369

     Andalucian   455514   2 (23)
	    Andalucians 1.0000
	     Andalucian 0.6000
	      following 0.1000
	              A 0.0369
	              B 0.0369
	           part 0.0369
	          basis 0.0369
	              , 0.0369
	              S 0.0369
	              . 0.0369
	           </S> 0.0059
	      Andalucia 0.0000
	            top 0.0000
	              - 0.0000
	           same 0.0000
	          value 0.0000
	          first 0.0000
	          other 0.0000
	     Andalusian 0.0000
	          right 0.0000
	       American 0.0000
	            web 0.0000
	           left 0.0000

           Wood   455534  17 (32)
	           Wool 0.7000
	           Woof 0.3333
	             EU 0.0369
	          Wodoo 0.0369
	              e 0.0369
	          smoke 0.0369
	              i 0.0369
	            sub 0.0369
	         Woodoo 0.0369
	           well 0.0369
	            the 0.0369
	              x 0.0369
	          trade 0.0369
	             by 0.0369
	           </S> 0.0059
	           same 0.0037
	          <UNK> 0.0000
	              " 0.0000
	            mid 0.0000
	          first 0.0000
	           long 0.0000
	             We 0.0000
	            non 0.0000
	           good 0.0000
	            Web 0.0000
	          Woody 0.0000
	      following 0.0000
	              - 0.0000
	           Wood 0.0000
	            two 0.0000
	              ' 0.0000
	          Woods 0.0000

              -   455538   4 (10)
	             us 0.0369
	            cia 0.0369
	           </S> 0.0059
	            and 0.0000
	              - 0.0000
	              . 0.0000
	             P. 0.0000
	              , 0.0000
	             of 0.0000
	            the 0.0000

           Lark   455539  14 (33)
	           work 0.6000
	          Larks 0.5000
	           This 0.0369
	          Larak 0.0369
	          Lakar 0.0369
	       wrapping 0.0369
	           What 0.0369
	          Mizer 0.0369
	              s 0.0369
	           this 0.0369
	           that 0.0369
	              - 0.0079
	           </S> 0.0059
	           lava 0.0000
	         Larkin 0.0000
	           mail 0.0000
	            the 0.0000
	           Lars 0.0000
	            Lar 0.0000
	            arz 0.0000
	              . 0.0000
	             it 0.0000
	           Lark 0.0000
	          <UNK> 0.0000
	              ) 0.0000
	             up 0.0000
	              I 0.0000
	            are 0.0000
	             to 0.0000
	              a 0.0000
	              A 0.0000
	           make 0.0000
	           Lara 0.0000

    frequenting   455642   1 (22)
	    frequenting 1.0000
	           2005 0.0369
	      frequenti 0.0369
	           </S> 0.0369
	              . 0.0369
	            but 0.0369
	           2003 0.0369
	              a 0.0369
	              I 0.0369
	         online 0.0369
	           2004 0.0369
	              , 0.0369
	            and 0.0369
	              ( 0.0369
	    frequentino 0.0369
	            the 0.0059
	              i 0.0000
	     frequentie 0.0000
	           free 0.0000
	          which 0.0000
	      including 0.0000
	             or 0.0000

          scrub   455654   2 (22)
	           some 0.1000
	          scrum 0.0369
	        scrubby 0.0369
	          scrub 0.0369
	           srub 0.0369
	          scrud 0.0369
	          Forum 0.0369
	          Parus 0.0369
	              I 0.0369
	         scrubs 0.0369
	              A 0.0369
	            the 0.0059
	          areas 0.0000
	           this 0.0000
	              , 0.0000
	         places 0.0000
	           such 0.0000
	              . 0.0000
	              - 0.0000
	            and 0.0000
	              a 0.0000
	           </S> 0.0000

            not   455666   7 (25)
	           nott 0.0369
	            cia 0.0369
	           nots 0.0369
	           noto 0.0369
	            nto 0.0369
	            the 0.0059
	            you 0.0000
	             to 0.0000
	              I 0.0000
	              - 0.0000
	           note 0.0000
	            now 0.0000
	          there 0.0000
	              a 0.0000
	           </S> 0.0000
	          minor 0.0000
	             no 0.0000
	              , 0.0000
	              . 0.0000
	            not 0.0000
	             us 0.0000
	            non 0.0000
	          women 0.0000
	             it 0.0000
	           they 0.0000

           \&xy   455670   3 (30)
	           next 0.9000
	           sexy 0.8000
	           very 0.7000
	           only 0.2117
	             xy 0.1000
	            Oxy 0.0369
	            exy 0.0369
	             be 0.0059
	        limited 0.0000
	             of 0.0000
	           Next 0.0000
	             by 0.0000
	             to 0.0000
	           </S> 0.0000
	             so 0.0000
	           been 0.0000
	              - 0.0000
	           know 0.0000
	            all 0.0000
	            exp 0.0000
	              . 0.0000
	              , 0.0000
	            oxy 0.0000
	            too 0.0000
	           Sexy 0.0000
	              a 0.0000
	            xxx 0.0000
	           have 0.0000
	            the 0.0000
	           Roxy 0.0000

          thick   455675   1 (22)
	              . 0.0369
	             it 0.0369
	              - 0.0369
	              a 0.0369
	         tchick 0.0369
	             us 0.0369
	              I 0.0369
	             to 0.0369
	      Manderlay 0.0369
	           Pica 0.0369
	              ) 0.0369
	           this 0.0369
	            the 0.0369
	              , 0.0369
	          trick 0.0369
	          thick 0.0369
	          which 0.0369
	    TripAdvisor 0.0369
	         thicke 0.0369
	         thicks 0.0369
	          think 0.0369
	           </S> 0.0369

       locality   455694   1 (23)
	          hotel 0.2000
	       locality 0.2000
	           list 0.0369
	       Vocality 0.0369
	       Locality 0.0369
	       localist 0.0369
	         locali 0.0369
	         dealer 0.0369
	     illocality 0.0369
	     Bilocality 0.0369
	           town 0.0369
	         cinema 0.0369
	              a 0.0369
	              I 0.0369
	       searches 0.0059
	           with 0.0000
	           </S> 0.0000
	              - 0.0000
	          local 0.0000
	        quality 0.0000
	             of 0.0000
	              . 0.0000
	              , 0.0000

      Gibraltar   455708  10 (22)
	            you 0.2000
	     Gilbraltar 0.0369
	      Gibralter 0.0369
	    Gibraltaras 0.0369
	      Gibraltan 0.0369
	       vibrator 0.0369
	       Gibralta 0.0369
	      Australia 0.0369
	            the 0.0059
	           real 0.0000
	             us 0.0000
	          Santa 0.0000
	             or 0.0000
	             to 0.0000
	         future 0.0000
	           </S> 0.0000
	              I 0.0000
	      Gibraltar 0.0000
	              , 0.0000
	              . 0.0000
	              - 0.0000
	              a 0.0000

      Chaparaks   455728 inf (29)
	         Charak 0.2000
	       Chanarak 0.0369
	        Company 0.0369
	      Chaparall 0.0369
	      Chaparana 0.0369
	     Chaparajos 0.0369
	         Chapak 0.0369
	              . 0.0369
	            son 0.0369
	          owner 0.0369
	          years 0.0369
	              t 0.0369
	        Chalara 0.0369
	         Chapar 0.0369
	       Charakas 0.0369
	           </S> 0.0059
	      following 0.0000
	        program 0.0000
	           most 0.0000
	        Chakras 0.0000
	          world 0.0000
	     Chaparrals 0.0000
	           best 0.0000
	        Chapare 0.0000
	          <UNK> 0.0000
	          first 0.0000
	           same 0.0000
	              - 0.0000
	              " 0.0000

              (   455738   1 (11)
	           </S> 0.0369
	              . 0.0369
	             of 0.0369
	              , 0.0369
	          major 0.0369
	            the 0.0369
	             us 0.0369
	            and 0.0369
	              - 0.0369
	              ( 0.0369
	            cia 0.0369

           Well   455788  17 (24)
	             We 0.3532
	              I 0.0418
	          paper 0.0369
	           Weld 0.0369
	           Welt 0.0369
	            Wel 0.0369
	          Wells 0.0369
	          Welle 0.0369
	              a 0.0369
	           sala 0.0369
	        working 0.0369
	       brochure 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	            Web 0.0000
	              ] 0.0000
	           well 0.0000
	              , 0.0000
	              . 0.0000
	              ) 0.0000
	           Well 0.0000
	              / 0.0000

       vSpanish   455806  15 (30)
	         vanish 1.0000
	        general 0.0369
	      Spanishes 0.0369
	      Spanishly 0.0369
	              , 0.0369
	      Spaainish 0.0369
	              . 0.0369
	              a 0.0369
	             us 0.0369
	            and 0.0369
	        English 0.0369
	            the 0.0369
	         editor 0.0369
	           </S> 0.0059
	           same 0.0000
	          first 0.0000
	            top 0.0000
	        spanish 0.0000
	         public 0.0000
	          Spani 0.0000
	        Spanish 0.0000
	          right 0.0000
	              " 0.0000
	       Spainish 0.0000
	          State 0.0000
	           list 0.0000
	       Spanisch 0.0000
	           main 0.0000
	          world 0.0000
	              - 0.0000

           bird   455815   1 (24)
	             of 0.0369
	           bird 0.0369
	             by 0.0369
	           birt 0.0369
	              . 0.0369
	              e 0.0369
	              A 0.0369
	            cia 0.0369
	         Double 0.0369
	            arz 0.0369
	            but 0.0369
	           Pica 0.0369
	              I 0.0369
	              a 0.0369
	              - 0.0369
	          birdi 0.0369
	              , 0.0369
	           biro 0.0369
	          birdy 0.0369
	          birds 0.0369
	            bir 0.0369
	           brid 0.0369
	           </S> 0.0369
	             be 0.0369

           they   455865   1 (19)
	           them 0.0369
	           then 0.0369
	          theyr 0.0369
	            the 0.0369
	           they 0.0369
	              I 0.0369
	          tythe 0.0369
	              . 0.0369
	          thewy 0.0369
	          Athey 0.0369
	              , 0.0369
	              a 0.0369
	          tehty 0.0369
	              - 0.0369
	           </S> 0.0059
	              } 0.0000
	          <UNK> 0.0000
	              ) 0.0000
	              " 0.0000

          never   455901   2 (21)
	           near 0.6000
	           that 0.0369
	          nerve 0.0369
	          level 0.0369
	           need 0.0369
	             it 0.0369
	              I 0.0369
	          never 0.0369
	              a 0.0369
	         impact 0.0369
	           neve 0.0369
	         nevere 0.0369
	         nevera 0.0369
	          neves 0.0369
	          neven 0.0369
	           </S> 0.0059
	              . 0.0000
	              - 0.0000
	          Books 0.0000
	    Calandrella 0.0000
	              , 0.0000

        remains   455907  11 (25)
	          hurts 0.0369
	         retina 0.0369
	        romaine 0.0369
	        remaine 0.0369
	       remanias 0.0369
	         remais 0.0369
	        remansi 0.0369
	       cremains 0.0369
	       Cremains 0.0369
	           been 0.0059
	           want 0.0000
	              - 0.0000
	            had 0.0000
	              . 0.0000
	             be 0.0000
	        remains 0.0000
	              , 0.0000
	              a 0.0000
	           have 0.0000
	         remain 0.0000
	        details 0.0000
	           </S> 0.0000
	          going 0.0000
	          email 0.0000
	        reading 0.0000

          onl}'   455999   1 (24)
	           only 0.6000
	           ongl 0.0369
	          ollon 0.0369
	           olon 0.0369
	        nowhere 0.0369
	          onlay 0.0369
	          onlus 0.0369
	              a 0.0059
	           used 0.0000
	         likely 0.0000
	            not 0.0000
	            the 0.0000
	          onion 0.0000
	              : 0.0000
	             on 0.0000
	             nl 0.0000
	          going 0.0000
	              , 0.0000
	           </S> 0.0000
	            one 0.0000
	       designed 0.0000
	       expected 0.0000
	         online 0.0000
	              . 0.0000

       timbered   456020  15 (23)
	          every 0.2158
	     untimbered 0.0369
	     timberhead 0.0369
	              O 0.0369
	          three 0.0369
	              [ 0.0369
	       timberer 0.0369
	          there 0.0369
	     retimbered 0.0369
	     betimbered 0.0369
	             us 0.0369
	       Timbered 0.0369
	              x 0.0369
	            the 0.0059
	           this 0.0000
	           time 0.0000
	              . 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	       timbered 0.0000
	              - 0.0000
	           your 0.0000

            not   456038   1 (24)
	              , 0.0369
	           nott 0.0369
	              - 0.0369
	             no 0.0369
	              . 0.0369
	            not 0.0369
	           note 0.0369
	             us 0.0369
	            now 0.0369
	            nto 0.0369
	              I 0.0369
	           nots 0.0369
	           noto 0.0369
	            and 0.0369
	             so 0.0369
	              a 0.0369
	            but 0.0369
	          minor 0.0369
	            cia 0.0369
	            non 0.0369
	           </S> 0.0059
	              } 0.0000
	              " 0.0000
	              ) 0.0000

      clearings   456119   1 (23)
	      clearings 0.3167
	      cleanings 0.2000
	            log 0.0369
	              . 0.0369
	     clearingin 0.0369
	          major 0.0369
	            and 0.0369
	              I 0.0369
	     clearwings 0.0369
	        details 0.0369
	            the 0.0059
	           </S> 0.0000
	         delays 0.0000
	              , 0.0000
	             in 0.0000
	              a 0.0000
	            zip 0.0000
	       services 0.0000
	       clearing 0.0000
	        earings 0.0000
	              e 0.0000
	              - 0.0000
	         change 0.0000

       although   456164   1 (25)
	            but 0.0369
	              ( 0.0369
	              " 0.0369
	         should 0.0369
	            and 0.0369
	      allthough 0.0369
	              x 0.0369
	            all 0.0369
	          altho 0.0369
	          <UNK> 0.0369
	           </S> 0.0369
	       although 0.0369
	              I 0.0369
	       Although 0.0369
	            the 0.0059
	          since 0.0000
	             so 0.0000
	         though 0.0000
	    fallthrough 0.0000
	           that 0.0000
	              i 0.0000
	        through 0.0000
	          which 0.0000
	            yet 0.0000
	             or 0.0000

        resorts   456197   3 (26)
	         result 0.8000
	        results 0.8000
	        resorts 0.1000
	       presorts 0.0369
	        retorta 0.0369
	        flowers 0.0369
	     fatalities 0.0369
	        reforma 0.0369
	        resorte 0.0369
	              a 0.0369
	       resortes 0.0369
	       daughter 0.0369
	            son 0.0369
	       ressorts 0.0369
	       searches 0.0059
	              - 0.0000
	              . 0.0000
	              , 0.0000
	           food 0.0000
	          films 0.0000
	          hotel 0.0000
	        reports 0.0000
	         resort 0.0000
	         report 0.0000
	              ? 0.0000
	           </S> 0.0000

            for   456207   1 (23)
	           from 0.0369
	            For 0.0369
	           form 0.0369
	           forr 0.0369
	              - 0.0369
	            and 0.0369
	            but 0.0369
	            arz 0.0369
	            cia 0.0369
	             us 0.0369
	              a 0.0369
	            foo 0.0369
	            fog 0.0369
	              , 0.0369
	           ford 0.0369
	            fro 0.0369
	           foro 0.0369
	              . 0.0369
	            for 0.0369
	           </S> 0.0059
	              " 0.0000
	              } 0.0000
	              ) 0.0000

        commons   456229   4 (27)
	           some 1.0000
	         heaths 0.2000
	              , 0.2000
	              e 0.0369
	        ANTIENT 0.0369
	             us 0.0369
	             be 0.0369
	              I 0.0369
	        commons 0.0369
	         corone 0.0369
	        company 0.0369
	     consommons 0.0369
	         common 0.0369
	       commones 0.0369
	             me 0.0369
	        communs 0.0369
	         commos 0.0369
	        commone 0.0369
	            the 0.0059
	           most 0.0000
	           </S> 0.0000
	             to 0.0000
	              - 0.0000
	              a 0.0000
	           this 0.0000
	          other 0.0000
	              . 0.0000

            but   456239   1 (20)
	              - 0.0369
	           butt 0.0369
	             by 0.0369
	              , 0.0369
	              . 0.0369
	            but 0.0369
	            tub 0.0369
	             iu 0.0369
	            cia 0.0369
	           buts 0.0369
	             be 0.0369
	            buy 0.0369
	            bus 0.0369
	             us 0.0369
	              a 0.0369
	             bu 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	              " 0.0000

          trees   456243  13 (29)
	           they 0.5100
	            you 0.3917
	            not 0.1053
	        treeres 0.0369
	         Btrees 0.0369
	          Pales 0.0369
	          treed 0.0369
	          treet 0.0369
	          tress 0.0369
	         treens 0.0369
	         treers 0.0369
	              I 0.0059
	              i 0.0000
	           </S> 0.0000
	              , 0.0000
	          their 0.0000
	            the 0.0000
	              a 0.0000
	        entrees 0.0000
	          <UNK> 0.0000
	             it 0.0000
	              " 0.0000
	           will 0.0000
	          trees 0.0000
	            may 0.0000
	           tree 0.0000
	           tres 0.0000
	          these 0.0000
	          there 0.0000

              '   456271   1 (17)
	            cia 0.0369
	              ' 0.0369
	          prior 0.0369
	          major 0.0369
	             to 0.0059
	              . 0.0000
	            and 0.0000
	            for 0.0000
	           </S> 0.0000
	              - 0.0000
	              , 0.0000
	            due 0.0000
	             in 0.0000
	             up 0.0000
	             us 0.0000
	             of 0.0000
	            the 0.0000

       Although   456346   1 (22)
	            Not 1.0000
	       Although 1.0000
	             of 0.0369
	        through 0.0369
	            and 0.0369
	              a 0.0369
	            the 0.0369
	       although 0.0369
	         though 0.0369
	        without 0.0369
	      allthough 0.0369
	       Althouse 0.0369
	           </S> 0.0059
	              . 0.0000
	              A 0.0000
	              " 0.0000
	              ] 0.0000
	            All 0.0000
	              , 0.0000
	              ) 0.0000
	              - 0.0000
	              I 0.0000

          feeds   456417   1 (21)
	           free 0.0369
	          field 0.0369
	          feeds 0.0369
	           feds 0.0369
	              I 0.0369
	              a 0.0369
	           fees 0.0369
	        Eufeeds 0.0369
	           need 0.0369
	           feed 0.0369
	        refeeds 0.0369
	          feede 0.0369
	          feedy 0.0369
	          fedes 0.0369
	           </S> 0.0059
	              - 0.0000
	              . 0.0000
	          needs 0.0000
	              , 0.0000
	          Books 0.0000
	    Calandrella 0.0000

         roosts   456464   1 (29)
	         roosts 0.7000
	          means 0.7000
	       operates 0.0369
	          going 0.0369
	          rosts 0.0369
	       unroosts 0.0369
	              I 0.0369
	       roosters 0.0369
	              - 0.0369
	         rooses 0.0369
	             us 0.0369
	             be 0.0059
	              , 0.0000
	            has 0.0000
	         boosts 0.0000
	              a 0.0000
	            the 0.0000
	           </S> 0.0000
	             is 0.0000
	       provides 0.0000
	            not 0.0000
	         rights 0.0000
	          Books 0.0000
	         robust 0.0000
	           most 0.0000
	          roost 0.0000
	              . 0.0000
	         roasts 0.0000
	           from 0.0000

         builds   456475   1 (30)
	         builds 0.6000
	             on 0.2761
	       buildups 0.2000
	       rebuilds 0.1000
	         Builds 0.1000
	             in 0.0689
	          bilds 0.0369
	              i 0.0369
	         beilds 0.0369
	        bullids 0.0369
	         verify 0.0369
	     understand 0.0369
	            the 0.0059
	           that 0.0000
	          build 0.0000
	       builders 0.0000
	              a 0.0000
	           will 0.0000
	             by 0.0000
	              - 0.0000
	              , 0.0000
	             to 0.0000
	          <UNK> 0.0000
	           </S> 0.0000
	          other 0.0000
	           more 0.0000
	          would 0.0000
	             of 0.0000
	              I 0.0000
	              ( 0.0000

        tussock   456567   1 (27)
	        tussock 0.7000
	          sized 0.0369
	        outsuck 0.0369
	          large 0.0369
	            two 0.0369
	        through 0.0369
	           this 0.0369
	       tussocky 0.0369
	            one 0.0369
	              s 0.0369
	          roots 0.0369
	              - 0.0079
	           </S> 0.0059
	              . 0.0000
	              a 0.0000
	           term 0.0000
	       tussocks 0.0000
	           time 0.0000
	              A 0.0000
	           year 0.0000
	          based 0.0000
	              ) 0.0000
	            the 0.0000
	              I 0.0000
	          <UNK> 0.0000
	             up 0.0000
	             to 0.0000

             it   456591   1 (21)
	             in 0.0369
	            itt 0.0369
	            iti 0.0369
	           this 0.0369
	             ti 0.0369
	             is 0.0369
	             it 0.0369
	             us 0.0369
	            its 0.0369
	              . 0.0369
	            ith 0.0369
	            iit 0.0369
	              , 0.0369
	           what 0.0369
	             iu 0.0369
	              a 0.0369
	            cia 0.0369
	           </S> 0.0059
	              ) 0.0000
	              " 0.0000
	              } 0.0000

     compactl}'   456602   8 (24)
	        lightly 0.0369
	      compactor 0.0369
	       compacta 0.0369
	        heavily 0.0369
	        solidly 0.0369
	       compacto 0.0369
	           than 0.0059
	              . 0.0000
	      compactly 0.0000
	      compacted 0.0000
	      important 0.0000
	              - 0.0000
	         common 0.0000
	        compact 0.0000
	              a 0.0000
	       complete 0.0000
	    information 0.0000
	     compaction 0.0000
	              , 0.0000
	             to 0.0000
	           </S> 0.0000
	       compacts 0.0000
	              I 0.0000
	         likely 0.0000

          built   456613   1 (23)
	          built 0.0369
	           buil 0.0369
	          butil 0.0369
	              , 0.0369
	          being 0.0369
	         ybuilt 0.0369
	              . 0.0369
	           </S> 0.0369
	           buit 0.0369
	        rebuilt 0.0369
	              - 0.0369
	          bulit 0.0369
	           that 0.0369
	           than 0.0369
	            but 0.0369
	             us 0.0369
	            bus 0.0369
	              a 0.0369
	              I 0.0369
	            buy 0.0369
	             to 0.0369
	          buill 0.0369
	          build 0.0369

           Sk^^   456636  15 (29)
	            non 0.0369
	           wild 0.0369
	              a 0.0369
	              A 0.0369
	              . 0.0369
	            and 0.0369
	              S 0.0369
	          major 0.0369
	             so 0.0369
	              , 0.0369
	            pre 0.0369
	              I 0.0369
	           </S> 0.0059
	           same 0.0037
	           Skin 0.0000
	           Site 0.0000
	           most 0.0000
	              - 0.0000
	            See 0.0000
	          first 0.0000
	             Sk 0.0000
	            Ski 0.0000
	           eBay 0.0000
	             kS 0.0000
	          world 0.0000
	           Skip 0.0000
	           Send 0.0000
	            Sky 0.0000
	          other 0.0000

              -   456640   1 (11)
	            and 0.0369
	              . 0.0369
	             of 0.0369
	              , 0.0369
	             -- 0.0369
	            the 0.0369
	             us 0.0369
	           </S> 0.0369
	              - 0.0369
	            cia 0.0369
	             iu 0.0369

      sometimes   456648   1 (18)
	              - 0.0369
	      sometimos 0.0369
	    Calandrella 0.0369
	              a 0.0369
	              . 0.0369
	       sometime 0.0369
	      Homerites 0.0369
	       Homethes 0.0369
	      Sometimes 0.0369
	              , 0.0369
	      sometiese 0.0369
	      sometimes 0.0369
	  Melanocorypha 0.0369
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	          <UNK> 0.0000
	              } 0.0000

          couch   456661  18 (33)
	          coach 0.2400
	            sea 0.0369
	            rye 0.0369
	           well 0.0369
	          corax 0.0369
	           wild 0.0369
	              n 0.0369
	          couce 0.0369
	           tall 0.0369
	         couche 0.0369
	         coucha 0.0369
	            pre 0.0369
	          cochu 0.0369
	           self 0.0369
	              x 0.0369
	            non 0.0369
	            the 0.0059
	           </S> 0.0000
	             us 0.0000
	              a 0.0000
	              : 0.0000
	          comix 0.0000
	           much 0.0000
	              , 0.0000
	           this 0.0000
	          their 0.0000
	           such 0.0000
	              - 0.0000
	           high 0.0000
	          could 0.0000
	          couch 0.0000
	           ouch 0.0000
	          <UNK> 0.0000

          grass   456703  14 (26)
	           last 1.0000
	      estimates 0.0369
	              a 0.0369
	          names 0.0369
	          great 0.0369
	            hip 0.0369
	         grasso 0.0369
	         origin 0.0369
	           gras 0.0369
	          grasa 0.0369
	              I 0.0369
	         grassy 0.0369
	         points 0.0059
	          grasp 0.0000
	         things 0.0000
	           </S> 0.0000
	              - 0.0000
	        details 0.0000
	   segmentation 0.0000
	         detail 0.0000
	          group 0.0000
	          lines 0.0000
	              . 0.0000
	           than 0.0000
	              , 0.0000
	          grass 0.0000

      sometimes   456742   1 (15)
	              I 0.0369
	      Sometimes 0.0369
	              . 0.0369
	      Homerites 0.0369
	              a 0.0369
	              , 0.0369
	       sometime 0.0369
	              - 0.0369
	      sometimes 0.0369
	      sometimos 0.0369
	      sometiese 0.0369
	           </S> 0.0059
	              " 0.0000
	              } 0.0000
	              ) 0.0000

          grass   456762   5 (22)
	         gratis 0.7141
	          grace 0.6000
	          grasa 0.0369
	            the 0.0059
	              : 0.0000
	           </S> 0.0000
	          great 0.0000
	              - 0.0000
	              , 0.0000
	         grassy 0.0000
	           this 0.0000
	           last 0.0000
	              a 0.0000
	          their 0.0000
	          these 0.0000
	           Last 0.0000
	          grasp 0.0000
	          <UNK> 0.0000
	           gras 0.0000
	             us 0.0000
	          grass 0.0000
	         grasso 0.0000

          bents   456768   4 (28)
	           bent 0.8000
	           best 0.7000
	           been 0.3000
	    information 0.0369
	         bentsh 0.0369
	      withereth 0.0369
	         besten 0.0369
	         benets 0.0369
	        section 0.0369
	           year 0.0369
	          bento 0.0369
	          benta 0.0369
	        withers 0.0369
	          world 0.0369
	       bentshed 0.0369
	         bentos 0.0369
	            Act 0.0369
	          bents 0.0369
	              , 0.0059
	              - 0.0000
	           </S> 0.0000
	          roots 0.0000
	              a 0.0000
	              I 0.0000
	              . 0.0000
	          being 0.0000
	            and 0.0000
	           band 0.0000

        Central   456913   1 (24)
	        Central 0.8000
	        Centrax 0.0369
	        Centras 0.0369
	            bed 0.0369
	             us 0.0369
	              x 0.0369
	          polls 0.0369
	         Cettia 0.0369
	          syrup 0.0369
	       Centrala 0.0369
	            the 0.0059
	         Centra 0.0000
	       Centrale 0.0000
	         Center 0.0000
	              a 0.0000
	              , 0.0000
	              . 0.0000
	        General 0.0000
	           </S> 0.0000
	           your 0.0000
	          their 0.0000
	              - 0.0000
	         Canada 0.0000
	           this 0.0000

        Lilford   456955 inf (24)
	        Lifford 0.9000
	        Wilford 0.1000
	        Lidford 0.0369
	              . 0.0369
	        million 0.0369
	          title 0.0369
	              , 0.0369
	          <UNK> 0.0059
	              b 0.0000
	              a 0.0000
	              s 0.0000
	           more 0.0000
	              4 0.0000
	              1 0.0000
	        Gilford 0.0000
	              A 0.0000
	              2 0.0000
	              - 0.0000
	        Linford 0.0000
	              I 0.0000
	            for 0.0000
	             eg 0.0000
	        Milford 0.0000
	           </S> 0.0000

          until   456984   2 (22)
	              a 0.9000
	          untie 0.0369
	          until 0.0369
	         untile 0.0369
	          Munia 0.0369
	          under 0.0369
	          untin 0.0369
	          union 0.0369
	         untilt 0.0369
	              I 0.0369
	          using 0.0369
	           into 0.0369
	         untill 0.0369
	           unti 0.0369
	              , 0.0059
	         Avenue 0.0000
	             on 0.0000
	              . 0.0000
	           </S> 0.0000
	              - 0.0000
	            and 0.0000
	             of 0.0000

      Secholiin   457020 inf (32)
	         cholin 0.0369
	      Pecholine 0.0369
	             es 0.0369
	       Decholin 0.0369
	           Euro 0.0369
	          18/01 0.0369
	          daily 0.0369
	     Shcholkine 0.0369
	       Scholion 0.0369
	       Scholing 0.0369
	      Jecholiah 0.0369
	            ies 0.0369
	         Sechin 0.0369
	         Seclin 0.0369
	      Schonlein 0.0369
	              . 0.0369
	      Sochalien 0.0369
	         people 0.0369
	          <UNK> 0.0059
	           </S> 0.0000
	              b 0.0000
	              I 0.0000
	      including 0.0000
	              - 0.0000
	             or 0.0000
	            See 0.0000
	              1 0.0000
	              2 0.0000
	              a 0.0000
	              A 0.0000
	              ) 0.0000
	              s 0.0000

       huffish-   457072 inf (29)
	    trademarked 0.0369
	       pregnant 0.0369
	        buffish 0.0369
	      huffishly 0.0369
	           with 0.0369
	           deaf 0.0369
	           this 0.0369
	       huffiest 0.0369
	         yellow 0.0369
	      incorrect 0.0369
	   instructions 0.0369
	        huffish 0.0369
	            his 0.0369
	            has 0.0369
	          huffs 0.0369
	         uffish 0.0369
	          green 0.0369
	              - 0.0369
	         ufishi 0.0369
	          white 0.0369
	              I 0.0369
	            not 0.0059
	           used 0.0000
	              a 0.0000
	              , 0.0000
	     trademarks 0.0000
	           </S> 0.0000
	              . 0.0000
	            the 0.0000

             or   457081   1 (20)
	              a 0.0369
	             of 0.0369
	              , 0.0369
	           </S> 0.0369
	             on 0.0369
	            orr 0.0369
	             iu 0.0369
	            arz 0.0369
	            and 0.0369
	             or 0.0369
	            oor 0.0369
	             us 0.0369
	              . 0.0369
	            ore 0.0369
	             to 0.0369
	              - 0.0369
	             in 0.0369
	            org 0.0369
	             ro 0.0369
	            oro 0.0369

         greyer   457167   1 (21)
	       district 0.0369
	              . 0.0369
	        chronic 0.0369
	          greye 0.0369
	         greyer 0.0369
	              I 0.0369
	         greyed 0.0369
	         grayer 0.0369
	          greer 0.0369
	              - 0.0369
	            the 0.0059
	          green 0.0000
	           grey 0.0000
	           free 0.0000
	          great 0.0000
	          order 0.0000
	           </S> 0.0000
	         causes 0.0000
	        medical 0.0000
	              , 0.0000
	              a 0.0000

          spots   457174   3 (28)
	           than 0.1000
	              . 0.1000
	          spott 0.0369
	          spote 0.0369
	       Hotspots 0.0369
	       hotspots 0.0369
	           pots 0.0369
	          spots 0.0369
	         spinas 0.0369
	              U 0.0369
	        despots 0.0369
	        Despots 0.0369
	        medical 0.0369
	           post 0.0369
	             of 0.0369
	     conditions 0.0369
	        disease 0.0369
	         sports 0.0369
	         spouts 0.0369
	    regulations 0.0369
	           spot 0.0369
	           site 0.0369
	              B 0.0369
	          state 0.0369
	              , 0.0059
	            and 0.0000
	              - 0.0000
	           </S> 0.0000

         massed   457288   1 (25)
	         massed 0.6000
	          skins 0.0369
	        selling 0.0369
	           look 0.0369
	           make 0.0369
	         Passer 0.0369
	         cassia 0.0369
	         masses 0.0369
	          based 0.0369
	          mased 0.0369
	         masser 0.0369
	           made 0.0369
	              A 0.0369
	          masse 0.0369
	       massedly 0.0369
	        amassed 0.0369
	              a 0.0369
	              I 0.0369
	      populated 0.0059
	           </S> 0.0000
	              . 0.0000
	              - 0.0000
	              , 0.0000
	         packed 0.0000
	            the 0.0000

             as   457350   1 (23)
	             at 0.0369
	            ass 0.0369
	             us 0.0369
	            the 0.0369
	              , 0.0369
	             in 0.0369
	              . 0.0369
	              - 0.0369
	             an 0.0369
	             sa 0.0369
	              a 0.0369
	            arz 0.0369
	             iu 0.0369
	              I 0.0369
	            aas 0.0369
	           with 0.0369
	          leave 0.0369
	            ask 0.0369
	             as 0.0369
	           </S> 0.0059
	              } 0.0000
	          <UNK> 0.0000
	              ) 0.0000

      confluent   457401  16 (28)
	        massive 0.0369
	             we 0.0369
	           less 0.0369
	      concluent 0.0369
	              I 0.0369
	       confluet 0.0369
	       complete 0.0369
	     confluenti 0.0369
	             us 0.0369
	     pronounced 0.0369
	           more 0.0369
	     confluente 0.0369
	      confluens 0.0369
	     confluents 0.0369
	           than 0.0059
	        content 0.0000
	              ! 0.0000
	            the 0.0000
	      expensive 0.0000
	           cost 0.0000
	           </S> 0.0000
	              a 0.0000
	              . 0.0000
	              - 0.0000
	       powerful 0.0000
	              , 0.0000
	      confluent 0.0000
	         common 0.0000

          being   457464  13 (18)
	         beings 0.0369
	              I 0.0369
	           bein 0.0369
	          beint 0.0369
	          beina 0.0369
	              a 0.0369
	           been 0.0369
	          thing 0.0369
	         beeing 0.0369
	         beinge 0.0369
	           best 0.0369
	           </S> 0.0059
	              - 0.0000
	              . 0.0000
	              , 0.0000
	          Books 0.0000
	    Calandrella 0.0000
	          being 0.0000

     generall}'   457470  12 (19)
	       generall 0.0369
	       generale 0.0369
	       generala 0.0369
	     officially 0.0369
	              : 0.0369
	          fully 0.0369
	       formally 0.0369
	     generalled 0.0369
	         really 0.0369
	      generalis 0.0369
	              a 0.0059
	           used 0.0000
	      generally 0.0000
	           made 0.0000
	        general 0.0000
	           </S> 0.0000
	              . 0.0000
	              , 0.0000
	            the 0.0000

       admitted   457481   1 (24)
	              - 0.0369
	        against 0.0369
	            out 0.0369
	      accessory 0.0369
	      available 0.0369
	          after 0.0369
	             by 0.0369
	     admittedly 0.0369
	       admitter 0.0369
	      admittens 0.0369
	       admittee 0.0369
	       admittet 0.0369
	              a 0.0369
	            not 0.0369
	              I 0.0369
	             up 0.0369
	              . 0.0369
	         little 0.0369
	        admitte 0.0369
	        amitted 0.0369
	             to 0.0369
	       admitted 0.0369
	              , 0.0369
	           </S> 0.0369

              '   457504 inf (20)
	          equal 0.7000
	              - 0.4567
	             us 0.1000
	              , 0.0369
	    approximate 0.0369
	        stories 0.0369
	            cia 0.0369
	             iu 0.0369
	          match 0.0369
	              . 0.0369
	       resemble 0.0369
	            all 0.0059
	            the 0.0000
	             as 0.0000
	             to 0.0000
	              a 0.0000
	             of 0.0000
	            one 0.0000
	           </S> 0.0000
	            and 0.0000

       resemble   457506   1 (25)
	       resemble 0.1000
	      resembles 0.1000
	       resemblo 0.0369
	       resembla 0.0369
	          email 0.0369
	        service 0.0369
	      ressemble 0.0369
	           </S> 0.0059
	              I 0.0000
	          <UNK> 0.0000
	      resembled 0.0000
	              - 0.0000
	              A 0.0000
	            and 0.0000
	              . 0.0000
	              ) 0.0000
	             or 0.0000
	              , 0.0000
	            for 0.0000
	            The 0.0000
	             is 0.0000
	           read 0.0000
	              s 0.0000
	              a 0.0000
	             in 0.0000

         cjuite   457627  12 (23)
	           Site 0.2000
	         cluite 0.0369
	           cuit 0.0369
	          cuite 0.0369
	        juncite 0.0369
	        juichte 0.0369
	        Ljutice 0.0369
	           cite 0.0369
	         curite 0.0369
	           uite 0.0369
	              , 0.0059
	              . 0.0000
	          quite 0.0000
	           with 0.0000
	           </S> 0.0000
	              a 0.0000
	              I 0.0000
	         cruise 0.0000
	             of 0.0000
	              - 0.0000
	           site 0.0000
	            for 0.0000
	            and 0.0000

          eaidy   457634 inf (22)
	         deaide 0.0369
	            eid 0.0369
	          ediya 0.0369
	            aid 0.0369
	           </S> 0.0369
	          Leidy 0.0369
	          Saidy 0.0369
	           eBay 0.0369
	              . 0.0369
	           each 0.0369
	              , 0.0369
	          maidy 0.0369
	              I 0.0369
	              - 0.0369
	         fraidy 0.0369
	         yerida 0.0369
	         Beyida 0.0369
	              a 0.0369
	            ead 0.0369
	           easy 0.0369
	           said 0.0369
	            the 0.0369

         enough   457640   1 (16)
	        enoughs 0.0369
	         though 0.0369
	          enoch 0.0369
	           ough 0.0369
	         eneugh 0.0369
	           Doug 0.0369
	            ugh 0.0369
	          rough 0.0369
	        through 0.0369
	         Enough 0.0369
	            nou 0.0369
	        enrough 0.0369
	          South 0.0369
	         enough 0.0369
	       Glenough 0.0369
	         Keough 0.0369

     consisting   457735   1 (30)
	           used 0.0369
	            and 0.0369
	           </S> 0.0369
	     consistent 0.0369
	      consistis 0.0369
	           Wind 0.0369
	              a 0.0369
	            but 0.0369
	     consisting 0.0369
	     consistant 0.0369
	   inconsisting 0.0369
	         online 0.0369
	              A 0.0369
	    Calandrella 0.0369
	          <UNK> 0.0369
	              & 0.0369
	  Melanocorypha 0.0369
	          first 0.0369
	    consistindo 0.0369
	        costing 0.0369
	              I 0.0369
	           Fall 0.0369
	              - 0.0369
	              ( 0.0369
	       consisti 0.0369
	            the 0.0059
	             or 0.0000
	            was 0.0000
	          which 0.0000
	          using 0.0000

              -   457806   7 (16)
	       Flooring 0.3602
	            cia 0.0369
	             DT 0.0369
	        Between 0.0369
	             us 0.0369
	           </S> 0.0059
	              . 0.0000
	        Johnson 0.0000
	            and 0.0000
	             of 0.0000
	              - 0.0000
	              , 0.0000
	             P. 0.0000
	            the 0.0000
	         County 0.0000
	             is 0.0000

             's   457811  12 (18)
	              . 0.8000
	              ! 0.5000
	              I 0.0369
	           Book 0.0369
	             so 0.0369
	             iu 0.0369
	             ss 0.0369
	              a 0.0369
	             us 0.0369
	            cia 0.0369
	           </S> 0.0059
	              , 0.0000
	              - 0.0000
	              ' 0.0000
	             is 0.0000
	             as 0.0000
	          Books 0.0000
	             's 0.0000

          ver^'   457822   1 (19)
	           very 0.8295
	            not 0.0564
	              a 0.0059
	            ver 0.0000
	          verve 0.0000
	           verb 0.0000
	              . 0.0000
	              , 0.0000
	           vere 0.0000
	           were 0.0000
	             so 0.0000
	          verse 0.0000
	          verre 0.0000
	           </S> 0.0000
	              : 0.0000
	          versa 0.0000
	           here 0.0000
	          about 0.0000
	            the 0.0000

           pnre   457828   1 (31)
	            new 0.0369
	           pern 0.0369
	            per 0.0369
	          peren 0.0369
	              - 0.0369
	           pore 0.0369
	              I 0.0369
	             to 0.0369
	            are 0.0369
	          parva 0.0369
	            arz 0.0369
	         pondre 0.0369
	         punire 0.0369
	            pre 0.0369
	              a 0.0369
	           inre 0.0369
	          Genre 0.0369
	              . 0.0369
	           more 0.0369
	           pare 0.0369
	          genre 0.0369
	           page 0.0369
	           Best 0.0369
	             up 0.0369
	           </S> 0.0369
	           pren 0.0369
	           pure 0.0369
	              , 0.0369
	             re 0.0369
	           over 0.0369
	             pn 0.0369

            and   457833   1 (18)
	             at 0.0369
	           aand 0.0369
	             of 0.0369
	            ant 0.0369
	            any 0.0369
	            can 0.0369
	            the 0.0369
	            arz 0.0369
	           alba 0.0369
	             us 0.0369
	            Jan 0.0369
	           andy 0.0369
	           anda 0.0369
	             an 0.0369
	             do 0.0369
	             as 0.0369
	            and 0.0369
	             no 0.0369

            b}-   457851   5 (25)
	          sweet 0.0369
	              i 0.0369
	      beautiful 0.0369
	            the 0.0059
	              - 0.0000
	              ( 0.0000
	             by 0.0000
	             be 0.0000
	              I 0.0000
	           more 0.0000
	             iu 0.0000
	             to 0.0000
	             br 0.0000
	             bb 0.0000
	          <UNK> 0.0000
	              , 0.0000
	              a 0.0000
	            see 0.0000
	            cia 0.0000
	          other 0.0000
	           </S> 0.0000
	           then 0.0000
	             us 0.0000
	            but 0.0000
	             we 0.0000

          man}^   457855   1 (22)
	            the 0.0369
	              I 0.0369
	              . 0.0369
	           mana 0.0369
	           make 0.0369
	              , 0.0369
	              - 0.0369
	           that 0.0369
	           many 0.0369
	          manga 0.0369
	          maura 0.0369
	              a 0.0369
	          mania 0.0369
	             if 0.0369
	          minor 0.0369
	           mann 0.0369
	            man 0.0369
	           </S> 0.0369
	          major 0.0369
	          manna 0.0369
	            may 0.0369
	           find 0.0369

             it   457861   1 (16)
	             us 0.0369
	            iit 0.0369
	             to 0.0369
	             it 0.0369
	             of 0.0369
	             ti 0.0369
	            the 0.0369
	            cia 0.0369
	            ith 0.0369
	             in 0.0369
	            itt 0.0369
	             is 0.0369
	            its 0.0369
	             iu 0.0369
	            iti 0.0369
	            and 0.0369

     certaiul}'   457927   1 (25)
	           sure 0.0369
	        reality 0.0369
	       contains 0.0369
	              I 0.0369
	        clearly 0.0369
	              ' 0.0369
	         truely 0.0369
	              u 0.0369
	   nevertheless 0.0369
	      certainly 0.0369
	     difference 0.0369
	      currently 0.0369
	             is 0.0059
	              , 0.0000
	        because 0.0000
	           just 0.0000
	         really 0.0000
	             's 0.0000
	            was 0.0000
	          could 0.0000
	          still 0.0000
	           </S> 0.0000
	              - 0.0000
	              a 0.0000
	              . 0.0000

             is   457938   1 (21)
	            iis 0.0369
	             be 0.0369
	            not 0.0369
	            iso 0.0369
	            ist 0.0369
	             si 0.0369
	           does 0.0369
	            did 0.0369
	             in 0.0369
	             is 0.0369
	              s 0.0369
	            iss 0.0369
	              I 0.0369
	              . 0.0369
	           </S> 0.0369
	              , 0.0369
	             it 0.0369
	             iu 0.0369
	             us 0.0369
	              - 0.0369
	              a 0.0369

   nevertheless   457991   1 (16)
	              . 0.0369
	           news 0.0369
	              - 0.0369
	  nethertheless 0.0369
	        request 0.0369
	   nevertheless 0.0369
	           nest 0.0369
	              a 0.0369
	          there 0.0369
	   Nevertheless 0.0369
	              I 0.0369
	              , 0.0369
	           </S> 0.0059
	              " 0.0000
	              } 0.0000
	              ) 0.0000

     persevered   458030   1 (23)
	              I 0.0369
	         people 0.0369
	     perseverer 0.0369
	      persevere 0.0369
	     perseverad 0.0369
	      persevera 0.0369
	              - 0.0369
	       services 0.0369
	      perversed 0.0369
	     persevered 0.0369
	     perseveres 0.0369
	              a 0.0059
	       involved 0.0000
	             in 0.0000
	       provided 0.0000
	           </S> 0.0000
	              , 0.0000
	           held 0.0000
	            and 0.0000
	            the 0.0000
	           used 0.0000
	              . 0.0000
	           able 0.0000

             it   458104   1 (23)
	              - 0.0369
	          there 0.0369
	           this 0.0369
	            iti 0.0369
	             it 0.0369
	              , 0.0369
	            itt 0.0369
	            its 0.0369
	              . 0.0369
	            cia 0.0369
	            ith 0.0369
	             ti 0.0369
	            iit 0.0369
	              a 0.0369
	              I 0.0369
	             in 0.0369
	             iu 0.0369
	          which 0.0369
	             is 0.0369
	             us 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000

            but   458182   1 (23)
	              s 0.0369
	            buy 0.0369
	            and 0.0369
	            but 0.0369
	             us 0.0369
	             by 0.0369
	            the 0.0369
	           butt 0.0369
	             bu 0.0369
	              a 0.0369
	            tub 0.0369
	             iu 0.0369
	              , 0.0369
	              - 0.0369
	             be 0.0369
	              . 0.0369
	           buts 0.0369
	              I 0.0369
	            bus 0.0369
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	              } 0.0000

            mj-   458369   7 (23)
	            may 0.4567
	              x 0.0369
	            mjw 0.0369
	            mje 0.0369
	            mji 0.0369
	            the 0.0059
	          major 0.0000
	           </S> 0.0000
	            you 0.0000
	             us 0.0000
	             my 0.0000
	              . 0.0000
	           your 0.0000
	            two 0.0000
	              - 0.0000
	              , 0.0000
	             me 0.0000
	             an 0.0000
	           very 0.0000
	            cia 0.0000
	              a 0.0000
	             mj 0.0000
	            his 0.0000

            old   458373   1 (22)
	            ola 0.0369
	           </S> 0.0369
	           olde 0.0369
	              , 0.0369
	             on 0.0369
	            odl 0.0369
	            ole 0.0369
	             of 0.0369
	           good 0.0369
	              a 0.0369
	           oold 0.0369
	           best 0.0369
	           alba 0.0369
	            cia 0.0369
	              . 0.0369
	           olds 0.0369
	              - 0.0369
	            old 0.0369
	              I 0.0369
	             us 0.0369
	             ol 0.0369
	             or 0.0369

       Grayling   458393   2 (26)
	              C 0.1000
	           Gray 0.0369
	        mailing 0.0369
	          Press 0.0369
	        Graying 0.0369
	      Grayingly 0.0369
	       Grayline 0.0369
	       Grayling 0.0369
	      Graylings 0.0369
	       Greyling 0.0369
	    Blatherwick 0.0369
	      Ankerberg 0.0369
	              , 0.0286
	           </S> 0.0059
	              M 0.0000
	              A 0.0000
	             's 0.0000
	              . 0.0000
	             M. 0.0000
	             A. 0.0000
	       Training 0.0000
	              - 0.0000
	       training 0.0000
	             J. 0.0000
	          <UNK> 0.0000
	          Kerry 0.0000

  Sittiugbourne   458406   1 (21)
	GlobalSecurity.org 0.0369
	              . 0.0369
	       Scituate 0.0369
	       Missouri 0.0369
	  Sittingbourne 0.0369
	              I 0.0369
	   registration 0.0369
	            the 0.0059
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	           your 0.0000
	          which 0.0000
	          State 0.0000
	         course 0.0000
	        Service 0.0000
	           this 0.0000
	            our 0.0000
	              - 0.0000
	             us 0.0000
	             it 0.0000

              ;   458420   1 (15)
	              ; 0.0369
	            and 0.0369
	           when 0.0369
	             us 0.0369
	              - 0.0369
	             of 0.0369
	           </S> 0.0369
	             iu 0.0369
	              , 0.0369
	            the 0.0369
	         things 0.0369
	           that 0.0369
	              . 0.0369
	           time 0.0369
	            cia 0.0369

             we   458422   1 (20)
	            wee 0.0369
	            the 0.0369
	             us 0.0369
	            was 0.0369
	             iu 0.0369
	            cia 0.0369
	             we 0.0369
	            web 0.0369
	            wet 0.0369
	             We 0.0369
	             ws 0.0369
	             wa 0.0369
	             be 0.0369
	             ew 0.0369
	           </S> 0.0059
	              ) 0.0000
	          <UNK> 0.0000
	              } 0.0000
	              " 0.0000
	              ] 0.0000

     delightful   458505  12 (27)
	    delightfull 1.0000
	     subjective 0.0369
	           news 0.0369
	           true 0.0369
	          theme 0.0369
	           very 0.0369
	          title 0.0369
	          sweet 0.0369
	           well 0.0369
	            the 0.0369
	           </S> 0.0059
	              " 0.0000
	          total 0.0000
	          right 0.0000
	     Delightful 0.0000
	           data 0.0000
	          <UNK> 0.0000
	      following 0.0000
	              ' 0.0000
	           list 0.0000
	          whole 0.0000
	     delightful 0.0000
	           date 0.0000
	          first 0.0000
	   delightfully 0.0000
	           same 0.0000
	              - 0.0000

        looking   458538   1 (21)
	        Looking 0.0369
	              a 0.0369
	      onlooking 0.0369
	  Melanocorypha 0.0369
	    Calandrella 0.0369
	        looking 0.0369
	              - 0.0369
	       lookings 0.0369
	        kolning 0.0369
	        lacking 0.0369
	        locking 0.0369
	              . 0.0369
	              , 0.0369
	        looming 0.0369
	        booking 0.0369
	         looing 0.0369
	           </S> 0.0059
	          <UNK> 0.0000
	              } 0.0000
	              " 0.0000
	              ) 0.0000

         espied   458557  11 (27)
	         espier 0.0369
	            put 0.0369
	            not 0.0369
	         espedi 0.0369
	            end 0.0369
	          espie 0.0369
	         espies 0.0369
	           need 0.0369
	        bespied 0.0369
	             as 0.0059
	            had 0.0000
	          found 0.0000
	           used 0.0000
	              I 0.0000
	              , 0.0000
	             to 0.0000
	           find 0.0000
	              i 0.0000
	              a 0.0000
	          spied 0.0000
	              . 0.0000
	            the 0.0000
	              ( 0.0000
	              - 0.0000
	           </S> 0.0000
	         espied 0.0000
	             be 0.0000

      promineut   458651  13 (27)
	      prominout 0.0369
	              i 0.0369
	        promine 0.0369
	    prominebunt 0.0369
	    prominuerat 0.0369
	       promineo 0.0369
	           send 0.0369
	      promineat 0.0369
	   prominuerunt 0.0369
	       prominet 0.0369
	    prominuerit 0.0369
	            the 0.0059
	          other 0.0000
	              - 0.0000
	              a 0.0000
	      prominent 0.0000
	          <UNK> 0.0000
	       services 0.0000
	              I 0.0000
	           more 0.0000
	            his 0.0000
	              , 0.0000
	           </S> 0.0000
	       Services 0.0000
	              ( 0.0000
	           stay 0.0000
	           from 0.0000

            eye   458661   1 (28)
	       informed 0.0369
	            Two 0.0369
	            new 0.0369
	              I 0.0369
	          snake 0.0369
	              . 0.0369
	            non 0.0369
	          split 0.0369
	            Pyi 0.0369
	           eyed 0.0369
	              C 0.0369
	           eyes 0.0369
	            yey 0.0369
	           </S> 0.0369
	           eyey 0.0369
	              c 0.0369
	              , 0.0369
	            the 0.0369
	            eys 0.0369
	            eya 0.0369
	              a 0.0369
	             ey 0.0369
	            cia 0.0369
	            get 0.0369
	              - 0.0369
	            eye 0.0369
	            New 0.0369
	             us 0.0369

              -   458664   1 (13)
	              - 0.8000
	            cia 0.0369
	             iu 0.0369
	              . 0.0059
	             -- 0.0000
	             on 0.0000
	            for 0.0000
	            the 0.0000
	            and 0.0000
	           </S> 0.0000
	              , 0.0000
	             us 0.0000
	             of 0.0000

      Presently   458673 inf (21)
	              . 0.7000
	              I 0.7000
	              A 0.3000
	              , 0.1000
	              - 0.1000
	     Presentity 0.0369
	     Presentday 0.0369
	    Presciently 0.0369
	        Present 0.0369
	      presented 0.0369
	       Presents 0.0369
	      presently 0.0369
	       recently 0.0369
	              a 0.0369
	        present 0.0369
	      Presented 0.0369
	           </S> 0.0059
	              " 0.0000
	              ] 0.0000
	              ) 0.0000
	             '' 0.0000

          awaj^   458693  15 (24)
	          award 0.0369
	           waaj 0.0369
	            awa 0.0369
	         Kawaja 0.0369
	             us 0.0369
	         always 0.0369
	          aware 0.0369
	           adam 0.0369
	           jawa 0.0369
	            not 0.0369
	              I 0.0369
	          Zawaj 0.0369
	          dawaj 0.0369
	             to 0.0059
	           </S> 0.0000
	              , 0.0000
	            off 0.0000
	           into 0.0000
	              . 0.0000
	           away 0.0000
	            and 0.0000
	              - 0.0000
	          again 0.0000
	              a 0.0000

         rising   458699   1 (20)
	         rating 0.0369
	        risings 0.0369
	        raising 0.0369
	        risking 0.0369
	              a 0.0369
	              I 0.0369
	         risine 0.0369
	         risina 0.0369
	        rinsing 0.0369
	           ring 0.0369
	           into 0.0369
	              , 0.0369
	             an 0.0369
	           </S> 0.0369
	            the 0.0369
	              . 0.0369
	           risk 0.0369
	         rising 0.0369
	        arising 0.0369
	          using 0.0369

      obliquely   458715  12 (23)
	             pm 0.0369
	          other 0.0369
	              i 0.0369
	          sight 0.0369
	        College 0.0369
	              a 0.0369
	      Obliquely 0.0369
	       obblique 0.0369
	       obliques 0.0369
	         slowly 0.0369
	           time 0.0059
	          order 0.0000
	              . 0.0000
	        oblique 0.0000
	             to 0.0000
	            ... 0.0000
	      obliquely 0.0000
	          major 0.0000
	              , 0.0000
	              - 0.0000
	           </S> 0.0000
	              I 0.0000
	            one 0.0000

       swinging   458744   1 (32)
	       swinging 0.8000
	            the 0.4667
	         coming 0.1000
	           </S> 0.1000
	            can 0.0369
	      swingings 0.0369
	        singing 0.0369
	       stinging 0.0369
	       slinging 0.0369
	       stunting 0.0369
	       swigging 0.0369
	     swingingly 0.0369
	           will 0.0369
	           said 0.0369
	        brought 0.0369
	        winging 0.0369
	           have 0.0369
	              a 0.0369
	             us 0.0369
	         swingi 0.0369
	              , 0.0059
	              . 0.0000
	             to 0.0000
	             it 0.0000
	       increase 0.0000
	          being 0.0000
	      decreased 0.0000
	         during 0.0000
	              I 0.0000
	              - 0.0000
	      increased 0.0000
	           came 0.0000

            aud   458775   1 (27)
	            are 0.0369
	           </S> 0.0369
	             at 0.0369
	            adu 0.0369
	            aud 0.0369
	            arz 0.0369
	           alba 0.0369
	            auf 0.0369
	            aux 0.0369
	              I 0.0369
	              ' 0.0369
	        dancing 0.0369
	             au 0.0369
	           audi 0.0369
	           aude 0.0369
	           auda 0.0369
	            and 0.0369
	            but 0.0369
	          <UNK> 0.0369
	              " 0.0369
	              x 0.0369
	            the 0.0059
	          which 0.0012
	             or 0.0000
	            who 0.0000
	             us 0.0000
	              i 0.0000

         rising   458779   1 (25)
	            the 0.0369
	          using 0.0369
	        raising 0.0369
	          being 0.0369
	              a 0.0369
	              I 0.0369
	              , 0.0369
	            and 0.0369
	         risine 0.0369
	         risina 0.0369
	         rising 0.0369
	              . 0.0369
	        risings 0.0369
	          cried 0.0369
	        rinsing 0.0369
	        arising 0.0369
	        risking 0.0369
	        Listing 0.0369
	              - 0.0369
	         lasted 0.0369
	           ring 0.0369
	              0 0.0059
	           </S> 0.0000
	              1 0.0000
	              3 0.0000

         spiral   458850  11 (21)
	         social 1.0000
	        spirals 0.6000
	              I 0.0369
	         spiras 0.0369
	        spirale 0.0369
	        spiraal 0.0369
	         calves 0.0369
	         spirat 0.0369
	         spinas 0.0369
	          range 0.0059
	              x 0.0000
	              , 0.0000
	          still 0.0000
	              . 0.0000
	         spiral 0.0000
	        special 0.0000
	           </S> 0.0000
	              - 0.0000
	        variety 0.0000
	           eyes 0.0000
	              a 0.0000

         curves   458857  16 (26)
	         course 0.7000
	        current 0.5000
	        curveis 0.0369
	           when 0.0369
	         curver 0.0369
	         cervus 0.0369
	         Corvus 0.0369
	         Turdus 0.0369
	       recurves 0.0369
	         cursor 0.0369
	        curvets 0.0369
	              a 0.0369
	          cures 0.0369
	              I 0.0369
	             of 0.0059
	         curved 0.0000
	         curves 0.0000
	              . 0.0000
	              - 0.0000
	              , 0.0000
	            and 0.0000
	             as 0.0000
	           </S> 0.0000
	          curve 0.0000
	          cover 0.0000
	      staircase 0.0000

      certainlj   458961  12 (23)
	        certain 0.1000
	       certaine 0.0369
	              I 0.0369
	        certans 0.0369
	             us 0.0369
	          being 0.0369
	           take 0.0369
	       certains 0.0369
	           work 0.0369
	       services 0.0369
	             is 0.0059
	              , 0.0000
	            was 0.0000
	              a 0.0000
	      certainty 0.0000
	           </S> 0.0000
	              . 0.0000
	      certainly 0.0000
	             up 0.0000
	             's 0.0000
	          could 0.0000
	              - 0.0000
	            the 0.0000

              ?   458970   1 (15)
	             it 0.0369
	            and 0.0369
	              , 0.0369
	            not 0.0369
	              ? 0.0369
	              . 0.0369
	           </S> 0.0369
	            cia 0.0369
	              - 0.0369
	             iu 0.0369
	            the 0.0369
	             he 0.0369
	             us 0.0369
	             of 0.0369
	              a 0.0369

           does   458972   1 (19)
	             us 0.0369
	           down 0.0369
	           does 0.0369
	            the 0.0369
	           deos 0.0369
	          Pales 0.0369
	           date 0.0369
	           doer 0.0369
	           doen 0.0369
	            doe 0.0369
	          doesn 0.0369
	          doest 0.0369
	           dose 0.0369
	             do 0.0369
	           </S> 0.0059
	              ] 0.0000
	              " 0.0000
	              ) 0.0000
	          <UNK> 0.0000

       gloaming   458998   1 (23)
	       gloaming 0.4000
	             of 0.2000
	       gleaming 0.1000
	       Services 0.0369
	           line 0.0369
	           Pogo 0.0369
	      gloamings 0.0369
	              s 0.0369
	           good 0.0369
	        loaming 0.0369
	        gloamin 0.0369
	           name 0.0369
	           </S> 0.0059
	              a 0.0000
	              - 0.0000
	              " 0.0000
	              I 0.0000
	              , 0.0000
	          <UNK> 0.0000
	              . 0.0000
	       gloating 0.0000
	              ) 0.0000
	              A 0.0000

        rustics   459023   3 (25)
	           some 1.0000
	              - 0.1000
	         rustic 0.0369
	        rustics 0.0369
	        tristis 0.0369
	       rusticus 0.0369
	         Rustic 0.0369
	           been 0.0369
	       rusticas 0.0369
	        rustica 0.0369
	        rustico 0.0369
	          Music 0.0369
	        rustici 0.0369
	             to 0.0059
	       research 0.0000
	             by 0.0000
	             me 0.0000
	            him 0.0000
	              , 0.0000
	           </S> 0.0000
	            the 0.0000
	          music 0.0000
	              a 0.0000
	             us 0.0000
	              . 0.0000

    Nightingale   459064   1 (25)
	    Nightingale 0.9000
	   Nightingales 0.2000
	              . 0.0369
	        details 0.0369
	       addition 0.0369
	    Nightengale 0.0369
	           soul 0.0369
	          mouse 0.0369
	        patient 0.0369
	            hip 0.0369
	          night 0.0369
	           </S> 0.0059
	           rest 0.0000
	          <UNK> 0.0000
	         public 0.0000
	           same 0.0000
	          world 0.0000
	              " 0.0000
	       National 0.0000
	          first 0.0000
	      following 0.0000
	          right 0.0000
	              - 0.0000
	    nightingale 0.0000
	          other 0.0000

            but   459078   1 (22)
	             bu 0.0369
	              I 0.0369
	             be 0.0369
	             by 0.0369
	           buts 0.0369
	              . 0.0369
	             us 0.0369
	             P. 0.0369
	            tub 0.0369
	             iu 0.0369
	              A 0.0369
	              a 0.0369
	            buy 0.0369
	            bus 0.0369
	              - 0.0369
	            but 0.0369
	           butt 0.0369
	              , 0.0369
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	              } 0.0000

       Although   459164   1 (18)
	       Although 1.0000
	       Althouse 0.0369
	         though 0.0369
	       although 0.0369
	        Althaus 0.0369
	         Anthus 0.0369
	      allthough 0.0369
	           </S> 0.0059
	              - 0.0000
	              , 0.0000
	              A 0.0000
	              ] 0.0000
	              . 0.0000
	              / 0.0000
	             In 0.0000
	              I 0.0000
	              ) 0.0000
	              " 0.0000

      sometimes   459183   1 (18)
	      sometimes 0.7000
	      sometiese 0.0369
	      Homerites 0.0369
	           site 0.0369
	       sometime 0.0369
	            set 0.0369
	            not 0.0369
	          still 0.0369
	      sometimos 0.0369
	            flu 0.0059
	              , 0.0000
	      Sometimes 0.0000
	           </S> 0.0000
	              . 0.0000
	             is 0.0000
	              a 0.0000
	              - 0.0000
	              I 0.0000

          soars   459193   1 (28)
	          soars 0.6000
	           some 0.2732
	          soare 0.0369
	          soara 0.0369
	        casoars 0.0369
	           sala 0.0369
	          Parus 0.0369
	            arz 0.0369
	        upsoars 0.0369
	         soarus 0.0369
	           oars 0.0369
	         soares 0.0369
	          Board 0.0369
	              , 0.0059
	             as 0.0000
	              I 0.0000
	              - 0.0000
	              . 0.0000
	              a 0.0000
	             be 0.0000
	           soar 0.0000
	          years 0.0000
	            the 0.0000
	           </S> 0.0000
	              i 0.0000
	       referred 0.0000
	             it 0.0000
	            not 0.0000

          quite   459199   2 (27)
	              a 0.3000
	         quitte 0.0369
	          quiet 0.0369
	          rates 0.0369
	         quelea 0.0369
	           Site 0.0369
	         quites 0.0369
	         quiter 0.0369
	              i 0.0369
	           site 0.0369
	          quite 0.0369
	          quits 0.0369
	          quita 0.0369
	           many 0.0369
	          peaks 0.0369
	              I 0.0369
	           quit 0.0369
	           much 0.0369
	             to 0.0059
	           with 0.0000
	              - 0.0000
	           </S> 0.0000
	            the 0.0000
	              . 0.0000
	           even 0.0000
	              ( 0.0000
	              , 0.0000

           this   459229   4 (24)
	           that 0.9000
	              . 0.8000
	             it 0.7000
	           thin 0.0369
	              a 0.0369
	          thish 0.0369
	           thie 0.0369
	             iu 0.0369
	          thisn 0.0369
	             us 0.0369
	              i 0.0369
	           tish 0.0369
	        address 0.0369
	            thi 0.0369
	           this 0.0369
	              I 0.0369
	            cia 0.0369
	           </S> 0.0059
	              , 0.0000
	            the 0.0000
	              " 0.0000
	              - 0.0000
	          Books 0.0000
	      Ascending 0.0000

       moreover   459261   1 (25)
	      thereover 0.0369
	        however 0.0369
	         taking 0.0369
	              , 0.0369
	       moreover 0.0369
	              . 0.0369
	              a 0.0369
	          mover 0.0369
	       mortifer 0.0369
	      mouseover 0.0369
	        moreote 0.0369
	        However 0.0369
	        whether 0.0369
	              I 0.0369
	       makeover 0.0369
	         Peover 0.0369
	          using 0.0369
	        morerer 0.0369
	       Moreover 0.0369
	        moverer 0.0369
	         moveor 0.0369
	           </S> 0.0059
	              " 0.0000
	              } 0.0000
	              ) 0.0000

             it   459270  13 (23)
	              . 0.8000
	              i 0.3000
	             us 0.0369
	            iit 0.0369
	             iu 0.0369
	            ith 0.0369
	            iti 0.0369
	            cia 0.0369
	              } 0.0369
	            itt 0.0369
	             ti 0.0369
	              , 0.0059
	            ... 0.0000
	             it 0.0000
	              I 0.0000
	            the 0.0000
	            its 0.0000
	              a 0.0000
	           nude 0.0000
	              - 0.0000
	           </S> 0.0000
	             is 0.0000
	             in 0.0000

      obliquely   459350   9 (22)
	      Obliquely 0.5000
	    arpagandalf 0.0369
	              p 0.0369
	           only 0.0369
	              ( 0.0369
	         online 0.0369
	       obblique 0.0369
	            the 0.0059
	          <UNK> 0.0000
	       obliques 0.0000
	              : 0.0000
	          other 0.0000
	        oblique 0.0000
	            one 0.0000
	           this 0.0000
	              , 0.0000
	              a 0.0000
	              - 0.0000
	      obliquely 0.0000
	           </S> 0.0000
	          their 0.0000
	             us 0.0000

            b}'   459363   6 (26)
	              C 0.0369
	              s 0.0369
	       Jalapeno 0.0369
	     publishers 0.0369
	            the 0.0059
	             br 0.0000
	       whatever 0.0000
	            but 0.0000
	              , 0.0000
	          other 0.0000
	              - 0.0000
	          three 0.0000
	              ( 0.0000
	             by 0.0000
	           more 0.0000
	             in 0.0000
	             us 0.0000
	           beef 0.0000
	              " 0.0000
	             be 0.0000
	          <UNK> 0.0000
	             bb 0.0000
	              ' 0.0000
	           </S> 0.0000
	              a 0.0000
	            cia 0.0000

          jerky   459367   1 (23)
	           were 0.0369
	              . 0.0369
	           jery 0.0369
	           very 0.0369
	              I 0.0369
	             us 0.0369
	              6 0.0369
	         jerzyk 0.0369
	              - 0.0369
	              , 0.0369
	          jerky 0.0369
	           here 0.0369
	          jerks 0.0369
	              a 0.0369
	            few 0.0369
	          jerke 0.0369
	           </S> 0.0369
	         jersey 0.0369
	        Omjerky 0.0369
	           jerk 0.0369
	            the 0.0369
	            dew 0.0369
	           erky 0.0369

          drops   459373   3 (23)
	         recipe 0.4000
	           does 0.3000
	         dropsy 0.0369
	         droops 0.0369
	          drops 0.0369
	         dropps 0.0369
	          dropt 0.0369
	          group 0.0369
	        hydrops 0.0369
	          dropp 0.0369
	           drop 0.0369
	          Group 0.0369
	              , 0.0059
	           </S> 0.0000
	              - 0.0000
	              I 0.0000
	              " 0.0000
	         treats 0.0000
	              . 0.0000
	         motion 0.0000
	              a 0.0000
	            and 0.0000
	      movements 0.0000

           Lark   459406  13 (32)
	           work 0.6000
	          Larks 0.5000
	           that 0.0369
	          Lakar 0.0369
	       wrapping 0.0369
	          which 0.0369
	           this 0.0369
	              s 0.0369
	          Larak 0.0369
	          there 0.0369
	              - 0.0079
	           </S> 0.0059
	           lava 0.0000
	             to 0.0000
	            Lar 0.0000
	             up 0.0000
	            are 0.0000
	            arz 0.0000
	           mail 0.0000
	         Larkin 0.0000
	          <UNK> 0.0000
	           Lars 0.0000
	           Lark 0.0000
	              I 0.0000
	           make 0.0000
	              a 0.0000
	           Lara 0.0000
	            the 0.0000
	             it 0.0000
	              A 0.0000
	              ) 0.0000
	              . 0.0000

             On   459475   3 (23)
	            One 0.4236
	             an 0.3642
	             On 0.3477
	             Of 0.2649
	             on 0.0660
	             in 0.0634
	              I 0.0418
	              a 0.0369
	           this 0.0369
	             iu 0.0369
	            cia 0.0369
	             us 0.0369
	             OF 0.0369
	            Ont 0.0369
	            Onn 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ) 0.0000
	              . 0.0000
	              , 0.0000
	              ] 0.0000

            but   459689   1 (23)
	              - 0.0369
	            but 0.0369
	              , 0.0369
	            bus 0.0369
	             bu 0.0369
	             iu 0.0369
	            cia 0.0369
	              a 0.0369
	            buy 0.0369
	           buts 0.0369
	              I 0.0369
	            the 0.0369
	            tub 0.0369
	              . 0.0369
	           butt 0.0369
	             be 0.0369
	             us 0.0369
	             by 0.0369
	              i 0.0369
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	              } 0.0000

            fed   459710   8 (27)
	           feds 0.0369
	            cia 0.0369
	             iu 0.0369
	             fe 0.0369
	           fede 0.0369
	            fee 0.0369
	             as 0.0059
	              . 0.0000
	              - 0.0000
	        becomes 0.0000
	            fed 0.0000
	           </S> 0.0000
	            new 0.0000
	             to 0.0000
	           feed 0.0000
	              I 0.0000
	             us 0.0000
	            few 0.0000
	             be 0.0000
	              i 0.0000
	            New 0.0000
	          found 0.0000
	            for 0.0000
	         became 0.0000
	              , 0.0000
	            not 0.0000
	              a 0.0000

      repletion   459728   1 (26)
	      repletion 0.8000
	              . 0.0369
	           </S> 0.0369
	           date 0.0369
	        repleta 0.0369
	      tripleton 0.0369
	         design 0.0369
	         people 0.0369
	          think 0.0369
	      reptilion 0.0369
	              - 0.0369
	     repletions 0.0369
	              , 0.0369
	      repleting 0.0369
	            the 0.0059
	           read 0.0000
	             me 0.0000
	           work 0.0000
	           cars 0.0000
	      depletion 0.0000
	            you 0.0000
	       replicon 0.0000
	             us 0.0000
	            say 0.0000
	             be 0.0000
	              a 0.0000

          Later   459770   1 (26)
	          Later 0.8000
	            For 0.2625
	              I 0.0418
	          major 0.0369
	          Lates 0.0369
	         Latter 0.0369
	          Pales 0.0369
	         Passer 0.0369
	           Late 0.0369
	          after 0.0369
	         Lateri 0.0369
	          Latex 0.0369
	              a 0.0369
	          moved 0.0369
	         Latera 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	           Date 0.0000
	              ] 0.0000
	              / 0.0000
	              , 0.0000
	              . 0.0000
	              ) 0.0000
	           Last 0.0000

            aud   459801  14 (23)
	             au 0.2000
	             us 0.1000
	           that 0.1000
	              I 0.1000
	           audi 0.0369
	           aude 0.0369
	           auda 0.0369
	            adu 0.0369
	            auf 0.0369
	            aud 0.0369
	            arz 0.0369
	           alba 0.0369
	             of 0.0059
	            aux 0.0000
	              a 0.0000
	             's 0.0000
	            are 0.0000
	              - 0.0000
	            and 0.0000
	           </S> 0.0000
	              . 0.0000
	              , 0.0000
	             at 0.0000

              I   459805   1 (20)
	              , 0.0369
	             It 0.0369
	             II 0.0369
	             WI 0.0369
	             MI 0.0369
	              . 0.0369
	             In 0.0369
	            cia 0.0369
	             iu 0.0369
	              I 0.0369
	              - 0.0369
	             us 0.0369
	            III 0.0369
	              0 0.0059
	            and 0.0000
	            the 0.0000
	           </S> 0.0000
	              3 0.0000
	              1 0.0000
	             of 0.0000

        exerted   459900  13 (30)
	       excreted 0.6000
	        everted 0.2000
	         exerte 0.0369
	        exected 0.0369
	           very 0.0369
	       recommit 0.0369
	           were 0.0369
	           open 0.0369
	              i 0.0369
	     rededicate 0.0369
	      unexerted 0.0369
	            the 0.0059
	             to 0.0000
	           that 0.0000
	          exert 0.0000
	             we 0.0000
	              , 0.0000
	              - 0.0000
	              I 0.0000
	        exerted 0.0000
	           then 0.0000
	           </S> 0.0000
	          would 0.0000
	              a 0.0000
	          there 0.0000
	            you 0.0000
	       exserted 0.0000
	              ( 0.0000
	          <UNK> 0.0000
	          other 0.0000

       hawthorn   459954   1 (19)
	       hawthorn 0.8000
	              a 0.0369
	      hawthorns 0.0369
	      hawthorny 0.0369
	          other 0.0369
	          hours 0.0369
	            has 0.0369
	             of 0.0369
	              , 0.0059
	              x 0.0000
	            and 0.0000
	              - 0.0000
	          order 0.0000
	          outer 0.0000
	            man 0.0000
	              I 0.0000
	         person 0.0000
	              . 0.0000
	           </S> 0.0000

          About   460079   1 (22)
	          About 1.0000
	        AboutUs 0.0369
	          about 0.0369
	          Aboud 0.0369
	         Abbout 0.0369
	         Abouta 0.0369
	          Aboub 0.0369
	          Abuot 0.0369
	           Abou 0.0369
	         Abouet 0.0369
	              a 0.0369
	           your 0.0369
	           </S> 0.0059
	              A 0.0000
	              / 0.0000
	              I 0.0000
	              ) 0.0000
	              ] 0.0000
	              . 0.0000
	              " 0.0000
	              - 0.0000
	              , 0.0000

           bird   460148   4 (30)
	             by 0.7000
	              a 0.6000
	             of 0.1000
	           anti 0.0369
	              e 0.0369
	            eye 0.0369
	           biro 0.0369
	           Pica 0.0369
	            arz 0.0369
	            non 0.0369
	           bird 0.0369
	           birt 0.0369
	          birdy 0.0369
	            cia 0.0369
	           brid 0.0369
	             be 0.0369
	              I 0.0369
	          birds 0.0369
	              A 0.0369
	          birdi 0.0369
	            bir 0.0369
	              , 0.0059
	            man 0.0000
	              - 0.0000
	            but 0.0000
	           flip 0.0000
	           </S> 0.0000
	              . 0.0000
	            and 0.0000
	             to 0.0000

           Wood   460190  16 (25)
	             We 0.4000
	              e 0.0369
	           File 0.0369
	         Woodoo 0.0369
	          MySQL 0.0369
	              E 0.0369
	          Wodoo 0.0369
	              I 0.0369
	           Wool 0.0369
	          Woods 0.0369
	           Woof 0.0369
	              a 0.0369
	          Woody 0.0369
	           good 0.0250
	              , 0.0059
	            Web 0.0000
	          place 0.0000
	              . 0.0000
	              - 0.0000
	           from 0.0000
	           Wood 0.0000
	            and 0.0000
	             of 0.0000
	           </S> 0.0000
	            day 0.0000

     splendidly   460248   1 (25)
	       splendid 0.0369
	        service 0.0369
	           said 0.0369
	            can 0.0369
	      splendida 0.0369
	      splendide 0.0369
	     splendidly 0.0369
	      splendidi 0.0369
	          major 0.0369
	       services 0.0369
	           shop 0.0369
	          whole 0.0369
	              , 0.0059
	              " 0.0000
	              a 0.0000
	             it 0.0000
	              . 0.0000
	          voice 0.0000
	              - 0.0000
	            and 0.0000
	             as 0.0000
	            the 0.0000
	          along 0.0000
	              I 0.0000
	           </S> 0.0000

            One   460260   1 (24)
	            One 0.4236
	             On 0.3477
	              I 0.0418
	              a 0.0369
	            new 0.0369
	            one 0.0369
	           Onne 0.0369
	            cia 0.0369
	             iu 0.0369
	             us 0.0369
	            Ont 0.0369
	            Ono 0.0369
	           Ones 0.0369
	           Onex 0.0369
	           Onen 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ) 0.0000
	              ] 0.0000
	              , 0.0000
	            and 0.0000
	              . 0.0000

              I   460381   3 (22)
	             In 0.5538
	             It 0.0900
	              I 0.0418
	             MI 0.0369
	             WI 0.0369
	            cia 0.0369
	             iu 0.0369
	             us 0.0369
	            III 0.0369
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              * 0.0000
	             of 0.0000
	              . 0.0000
	             '' 0.0000
	              , 0.0000
	             II 0.0000
	              ] 0.0000
	              ) 0.0000
	            and 0.0000
	            the 0.0000

             it   460463   1 (25)
	             is 0.0369
	              I 0.0369
	              , 0.0369
	            cia 0.0369
	            iti 0.0369
	              i 0.0369
	             in 0.0369
	            its 0.0369
	              a 0.0369
	            iit 0.0369
	             it 0.0369
	             ti 0.0369
	            ith 0.0369
	             iu 0.0369
	              . 0.0369
	              - 0.0369
	           they 0.0369
	            the 0.0369
	            itt 0.0369
	             us 0.0369
	             he 0.0369
	             we 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000

       uncann}'   460523   2 (26)
	              a 0.8000
	       uncanine 0.0369
	       uncanned 0.0369
	           upon 0.0369
	      uncannily 0.0369
	              I 0.0369
	            him 0.0369
	        uncanny 0.0369
	             me 0.0369
	             us 0.0369
	           more 0.0059
	      different 0.0000
	           </S> 0.0000
	              . 0.0000
	            and 0.0000
	              - 0.0000
	            the 0.0000
	             at 0.0000
	        limited 0.0000
	         unique 0.0000
	              , 0.0000
	             of 0.0000
	      arbitrary 0.0000
	     misleading 0.0000
	        unclear 0.0000
	           like 0.0000

              ;   460532   1 (14)
	              . 0.0369
	             of 0.0369
	           </S> 0.0369
	           .... 0.0369
	              ; 0.0369
	            cia 0.0369
	             iu 0.0369
	             to 0.0369
	              - 0.0369
	              a 0.0369
	            the 0.0369
	             us 0.0369
	              , 0.0369
	            and 0.0369

        however   460534   1 (16)
	         hoover 0.0369
	        whoever 0.0369
	        However 0.0369
	      howsoever 0.0369
	         hawker 0.0369
	          hovea 0.0369
	       whomever 0.0369
	        however 0.0369
	          homer 0.0369
	        nowever 0.0369
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	              } 0.0000
	              ] 0.0000
	          <UNK> 0.0000

           Lark   460594  10 (31)
	           work 0.6000
	          Larks 0.5000
	         profit 0.0369
	          Lakar 0.0369
	          Larak 0.0369
	         shirts 0.0369
	              s 0.0369
	              - 0.0079
	           </S> 0.0059
	              . 0.0000
	           year 0.0000
	             to 0.0000
	            Lar 0.0000
	           mail 0.0000
	              I 0.0000
	              ) 0.0000
	            are 0.0000
	            arz 0.0000
	          based 0.0000
	             up 0.0000
	           Lark 0.0000
	         Larkin 0.0000
	           Lars 0.0000
	              a 0.0000
	           make 0.0000
	            the 0.0000
	           Lara 0.0000
	           lava 0.0000
	          <UNK> 0.0000
	              A 0.0000
	           time 0.0000

            and   460675   1 (23)
	           aand 0.0369
	              . 0.0369
	             us 0.0369
	           andy 0.0369
	              , 0.0369
	   verification 0.0369
	           year 0.0369
	             an 0.0369
	              i 0.0369
	            and 0.0369
	           anda 0.0369
	            arz 0.0369
	           alba 0.0369
	              I 0.0369
	            ant 0.0369
	              - 0.0369
	          again 0.0369
	            the 0.0369
	            any 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000
	              " 0.0000

            Sky   460751   1 (26)
	            Ska 0.0369
	             Sk 0.0369
	            See 0.0369
	            Pyi 0.0369
	            Ski 0.0369
	           Skyy 0.0369
	            cia 0.0369
	            Syk 0.0369
	            Sky 0.0369
	           Skye 0.0369
	              , 0.0059
	          night 0.0000
	             by 0.0000
	              - 0.0000
	             my 0.0000
	              ! 0.0000
	              I 0.0000
	           </S> 0.0000
	          party 0.0000
	             of 0.0000
	          house 0.0000
	             's 0.0000
	              . 0.0000
	             us 0.0000
	              a 0.0000
	              i 0.0000

              -   460754   6 (14)
	            cia 0.0369
	             iu 0.0369
	             -- 0.0369
	             us 0.0369
	           </S> 0.0059
	              - 0.0000
	           Blue 0.0000
	             of 0.0000
	              . 0.0000
	            box 0.0000
	            the 0.0000
	            and 0.0000
	              , 0.0000
	            Air 0.0000

          whose   460760   2 (21)
	           when 0.3000
	          whoes 0.0369
	           whos 0.0369
	          whole 0.0369
	       whosever 0.0369
	          white 0.0369
	              I 0.0369
	          those 0.0369
	          howes 0.0369
	          whose 0.0369
	              a 0.0369
	         whosen 0.0369
	          whoso 0.0369
	           </S> 0.0059
	              " 0.0000
	          Books 0.0000
	            who 0.0000
	              , 0.0000
	              . 0.0000
	    Calandrella 0.0000
	              - 0.0000

              -   460803   1 (15)
	              - 0.3333
	          great 0.0369
	            cia 0.0369
	             iu 0.0369
	           good 0.0369
	             of 0.0059
	             be 0.0000
	              . 0.0000
	             to 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	            and 0.0000
	            the 0.0000
	             us 0.0000

              '   460879 inf (17)
	             iu 0.1000
	            cia 0.0857
	 representation 0.0369
	          young 0.0369
	              - 0.0369
	            the 0.0059
	             us 0.0000
	            and 0.0000
	           </S> 0.0000
	              , 0.0000
	              a 0.0000
	             is 0.0000
	            you 0.0000
	            old 0.0000
	             's 0.0000
	              . 0.0000
	             of 0.0000

        figured   460906   1 (26)
	         figure 0.0369
	        focuses 0.0369
	             us 0.0369
	        figuren 0.0369
	      refigured 0.0369
	          found 0.0369
	      figuredly 0.0369
	      defigured 0.0369
	       provided 0.0369
	              I 0.0369
	        figured 0.0369
	          rests 0.0369
	         figura 0.0369
	        figures 0.0369
	              , 0.0059
	              a 0.0000
	            for 0.0000
	              . 0.0000
	              " 0.0000
	             of 0.0000
	        hatches 0.0000
	             is 0.0000
	           from 0.0000
	           </S> 0.0000
	              - 0.0000
	         masses 0.0000

           Farn   460945   2 (30)
	        DeMille 0.3000
	          Farna 0.0369
	              s 0.0369
	            Mel 0.0369
	           Farn 0.0369
	            arz 0.0369
	           lava 0.0369
	             C. 0.0369
	         Schott 0.0369
	          Farne 0.0369
	              a 0.0369
	           Bock 0.0369
	           Fare 0.0369
	   Cocchiarella 0.0369
	       Vajpayee 0.0369
	           </S> 0.0059
	           Fran 0.0000
	              ( 0.0000
	              A 0.0000
	              I 0.0000
	            Far 0.0000
	            For 0.0000
	              . 0.0000
	        Johnson 0.0000
	              , 0.0000
	           Farm 0.0000
	           From 0.0000
	              - 0.0000
	           Free 0.0000
	             It 0.0000

             's   460949   1 (16)
	             's 0.6000
	              a 0.0369
	             as 0.0369
	              s 0.0369
	              I 0.0369
	             so 0.0369
	             us 0.0369
	             A. 0.0369
	             D. 0.0369
	           </S> 0.0059
	              - 0.0000
	             is 0.0000
	              , 0.0000
	              . 0.0000
	           Wang 0.0000
	              ' 0.0000

     Familx-ALA   460965 inf (20)
	         Finite 0.0369
	          First 0.0369
	       analysis 0.0369
	       original 0.0369
	              a 0.0369
	           will 0.0369
	         images 0.0369
	            all 0.0369
	           </S> 0.0059
	              ) 0.0000
	          While 0.0000
	              - 0.0000
	              I 0.0000
	              . 0.0000
	              ] 0.0000
	              A 0.0000
	              " 0.0000
	           From 0.0000
	              , 0.0000
	              / 0.0000

           UDID   460976 inf (22)
	              - 0.0369
	            UID 0.0369
	              . 0.0369
	              a 0.0369
	            USD 0.0369
	              n 0.0369
	            UDI 0.0369
	            DID 0.0369
	          <UNK> 0.0369
	              , 0.0369
	           UDIG 0.0369
	           UDIF 0.0369
	           </S> 0.0369
	      ChangeLog 0.0369
	           UUID 0.0369
	              ) 0.0369
	           UDDI 0.0369
	             US 0.0369
	             Us 0.0369
	            UDD 0.0369
	          GUDID 0.0369
	              g 0.0369

              E   460982 inf (24)
	             us 0.0369
	             RE 0.0369
	             ME 0.0369
	             DE 0.0369
	             EU 0.0369
	             EE 0.0369
	            cia 0.0369
	             iu 0.0369
	            EEE 0.0369
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	          <UNK> 0.0000
	             of 0.0000
	              ) 0.0000
	             Ed 0.0000
	              . 0.0000
	             El 0.0000
	            the 0.0000
	              / 0.0000
	              ] 0.0000
	              \ 0.0000
	              , 0.0000
	            and 0.0000

        Crested   460990  12 (25)
	              / 0.0369
	      Crestmead 0.0369
	            KDE 0.0369
	     Associated 0.0369
	        Crestet 0.0369
	        Crester 0.0369
	           Navy 0.0369
	        Custerd 0.0369
	              ) 0.0369
	         Creste 0.0369
	           </S> 0.0059
	          <UNK> 0.0000
	        Crested 0.0000
	         rested 0.0000
	          first 0.0000
	        Chester 0.0000
	          World 0.0000
	        related 0.0000
	              - 0.0000
	              ( 0.0000
	          Crest 0.0000
	        treated 0.0000
	      following 0.0000
	         system 0.0000
	         Center 0.0000

         Alanda   461005   1 (28)
	         Aaland 0.0369
	          Aland 0.0369
	           lava 0.0369
	         Awards 0.0369
	       Alamanda 0.0369
	              a 0.0369
	              L 0.0369
	          Alana 0.0369
	        Arlanda 0.0369
	        Alandia 0.0369
	         Aldana 0.0369
	         Alauda 0.0369
	         Alaska 0.0369
	        Atlanta 0.0369
	         Alando 0.0369
	         Alandi 0.0369
	         Alandy 0.0369
	          landa 0.0369
	           </S> 0.0059
	              ) 0.0000
	              ] 0.0000
	              I 0.0000
	              , 0.0000
	              / 0.0000
	             In 0.0000
	              - 0.0000
	              . 0.0000
	              " 0.0000

       crisfafa   461012   1 (26)
	       crispata 0.0369
	         Friday 0.0369
	          riffa 0.0369
	         crista 0.0369
	         crispa 0.0369
	vareSelskap.cgi 0.0369
	       contrast 0.0369
	        install 0.0369
	       cristata 0.0369
	       crisaras 0.0369
	              ) 0.0369
	              n 0.0369
	              a 0.0369
	      configure 0.0369
	       crispaba 0.0369
	              I 0.0369
	        crissas 0.0369
	       crisiasi 0.0369
	          crisa 0.0369
	           Club 0.0059
	          Carib 0.0000
	              - 0.0000
	           </S> 0.0000
	              . 0.0000
	              , 0.0000
	          <UNK> 0.0000

              ,   461020   1 (12)
	             us 0.0369
	           </S> 0.0369
	              - 0.0369
	            and 0.0369
	          Playa 0.0369
	              , 0.0369
	              . 0.0369
	            the 0.0369
	       Marbella 0.0369
	            cia 0.0369
	             iu 0.0369
	             of 0.0369

           LiNN   461022 inf (26)
	             pp 0.1857
	              { 0.0369
	   respectively 0.0369
	           LiON 0.0369
	       Marbella 0.0369
	            NiL 0.0369
	            cia 0.0369
	           Pica 0.0369
	          Links 0.0369
	            LNN 0.0369
	           List 0.0369
	              x 0.0369
	          LLiNK 0.0369
	             Li 0.0369
	           LiNK 0.0369
	           LiNa 0.0369
	           with 0.0062
	            the 0.0059
	          which 0.0012
	              i 0.0000
	              e 0.0000
	            too 0.0000
	             or 0.0000
	             iu 0.0000
	             to 0.0000
	             of 0.0000

              .   461026   1 (11)
	             iu 0.0369
	             of 0.0369
	           </S> 0.0369
	            ... 0.0369
	              , 0.0369
	            and 0.0369
	            cia 0.0369
	             us 0.0369
	              . 0.0369
	              - 0.0369
	            the 0.0369

       RESIDENT   461029 inf (20)
	        RESPECT 0.0369
	        TRIDENT 0.0369
	         RESIST 0.0369
	           Keep 0.0369
	        RESTENA 0.0369
	          ESENT 0.0369
	        REIDEEN 0.0369
	          IDENT 0.0369
	           </S> 0.0059
	              , 0.0000
	              ) 0.0000
	              / 0.0000
	              ] 0.0000
	              . 0.0000
	              " 0.0000
	              A 0.0000
	              I 0.0000
	              - 0.0000
	           More 0.0000
	             In 0.0000

        Central   461041   1 (28)
	        Central 0.8000
	       Northern 0.0369
	        Western 0.0369
	         Cettia 0.0369
	              x 0.0369
	        Centrax 0.0369
	        Centras 0.0369
	       Centrala 0.0369
	             us 0.0369
	            the 0.0059
	         Canada 0.0000
	           your 0.0000
	        general 0.0000
	          South 0.0000
	              , 0.0000
	           </S> 0.0000
	           time 0.0000
	           this 0.0000
	       Centrale 0.0000
	              . 0.0000
	         Center 0.0000
	         Centra 0.0000
	              a 0.0000
	        writing 0.0000
	          stock 0.0000
	          place 0.0000
	        General 0.0000
	              - 0.0000

        Eiirope   461062  28 (36)
	        piropea 0.0369
	            the 0.0369
	           time 0.0369
	           more 0.0369
	         Eiropa 0.0369
	         Eiropu 0.0369
	        piropeo 0.0369
	        America 0.0369
	           from 0.0369
	        siropen 0.0369
	         Valley 0.0369
	        Eiropas 0.0369
	         Evrope 0.0369
	             us 0.0369
	              a 0.0369
	    information 0.0369
	        Eoropie 0.0369
	          books 0.0369
	          grope 0.0369
	          Epiro 0.0369
	          trope 0.0369
	           Eirp 0.0369
	           rope 0.0369
	              I 0.0369
	        Epirote 0.0369
	           Eiro 0.0369
	     California 0.0059
	        Florida 0.0000
	         Living 0.0000
	         Africa 0.0000
	              ) 0.0000
	              - 0.0000
	              . 0.0000
	         Europe 0.0000
	              , 0.0000
	           </S> 0.0000

            60°   461106   1 (22)
	              6 0.0369
	           </S> 0.0369
	            100 0.0369
	             60 0.0369
	              . 0.0369
	             25 0.0369
	             10 0.0369
	              $ 0.0369
	            160 0.0369
	           date 0.0369
	              : 0.0369
	            600 0.0369
	              , 0.0369
	            the 0.0059
	             us 0.0000
	             of 0.0000
	             be 0.0000
	            cia 0.0000
	            and 0.0000
	             iu 0.0000
	            get 0.0000
	              a 0.0000

             N.   461110 inf (23)
	             us 0.0369
	             NO 0.0369
	            NNN 0.0369
	              a 0.0369
	            New 0.0369
	             No 0.0369
	           </S> 0.0369
	            cia 0.0369
	              , 0.0369
	          years 0.0369
	             of 0.0369
	             NN 0.0369
	              . 0.0369
	             iu 0.0369
	            the 0.0369
	              - 0.0369
	             NY 0.0369
	              % 0.0369
	        maximum 0.0369
	             nm 0.0369
	           feet 0.0369
	              I 0.0369
	              x 0.0369

             in   461118   1 (21)
	             in 0.0634
	              I 0.0418
	             us 0.0369
	            inc 0.0369
	            inn 0.0369
	            cia 0.0369
	            iin 0.0369
	             iu 0.0369
	            int 0.0369
	             ni 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              / 0.0000
	              ) 0.0000
	              , 0.0000
	              . 0.0000
	              ] 0.0000
	             it 0.0000
	             is 0.0000

          North   461141   1 (22)
	          South 0.0369
	              , 0.0369
	         Norths 0.0369
	         Northd 0.0369
	              - 0.0369
	            Now 0.0369
	          corax 0.0369
	          torax 0.0369
	          North 0.0369
	           Note 0.0369
	          Nortt 0.0369
	           Nort 0.0369
	            the 0.0369
	              a 0.0369
	              I 0.0369
	          Norte 0.0369
	              . 0.0369
	              S 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000
	              " 0.0000

     Senegambia   461168   2 (22)
	           them 0.4560
	      Senegalia 0.0369
	              , 0.0369
	       research 0.0369
	     Seranambia 0.0369
	     Senegambia 0.0369
	          <UNK> 0.0369
	         design 0.0369
	    Senegambian 0.0369
	          music 0.0369
	   Senegambians 0.0369
	        contact 0.0369
	            the 0.0059
	              a 0.0000
	            you 0.0000
	            use 0.0000
	           work 0.0000
	             be 0.0000
	            get 0.0000
	            try 0.0000
	            see 0.0000
	             us 0.0000

      Abyssinia   461221  11 (23)
	           </S> 0.3683
	          Phnom 0.0369
	      Abyssinie 0.0369
	              c 0.0369
	         places 0.0369
	         middle 0.0369
	           into 0.0369
	              I 0.0369
	       Abysinia 0.0369
	            the 0.0059
	              , 0.0000
	              - 0.0000
	              $ 0.0000
	         online 0.0000
	             us 0.0000
	              a 0.0000
	              . 0.0000
	     Abyssinian 0.0000
	             an 0.0000
	      Abyssinia 0.0000
	          there 0.0000
	         within 0.0000
	    Abyssinians 0.0000

           east   461231   4 (27)
	              - 0.3667
	            was 0.1000
	              a 0.1000
	           easy 0.0369
	           east 0.0369
	           drop 0.0369
	            non 0.0369
	           Baya 0.0369
	           eats 0.0369
	           eBay 0.0369
	           sala 0.0369
	          earst 0.0369
	           lava 0.0369
	              I 0.0369
	          eeast 0.0369
	           ease 0.0369
	           each 0.0369
	          easts 0.0369
	            eas 0.0369
	              A 0.0369
	             am 0.0369
	           esat 0.0369
	              , 0.0059
	              ( 0.0000
	             to 0.0000
	              . 0.0000
	           </S> 0.0000

             To   461286   1 (23)
	             To 0.3518
	              I 0.0418
	              a 0.0369
	             iu 0.0369
	           Asia 0.0369
	             us 0.0369
	             TV 0.0369
	              s 0.0369
	              A 0.0328
	             to 0.0265
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ) 0.0000
	              , 0.0000
	             TO 0.0000
	             of 0.0000
	              . 0.0000
	            Too 0.0000
	              ] 0.0000
	            Top 0.0000
	            Tom 0.0000
	            and 0.0000

            one   461452   1 (23)
	              . 0.0369
	              - 0.0369
	             on 0.0369
	              I 0.0369
	            ons 0.0369
	            ont 0.0369
	            the 0.0369
	            oen 0.0369
	            cia 0.0369
	             iu 0.0369
	           onee 0.0369
	            one 0.0369
	             of 0.0369
	           ones 0.0369
	           oner 0.0369
	           onen 0.0369
	             us 0.0369
	              a 0.0369
	              , 0.0369
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	              } 0.0000

         Sussex   461536  10 (25)
	           user 0.5000
	         Sxusem 0.0369
	      Sussexite 0.0369
	           them 0.0369
	         Sussen 0.0369
	         Sussey 0.0369
	              x 0.0369
	             us 0.0369
	            the 0.0059
	        advance 0.0000
	           this 0.0000
	           </S> 0.0000
	           used 0.0000
	         Sussex 0.0000
	              a 0.0000
	         sussex 0.0000
	          stock 0.0000
	           time 0.0000
	            use 0.0000
	              - 0.0000
	              . 0.0000
	        writing 0.0000
	         Passer 0.0000
	              , 0.0000
	           your 0.0000

   Macclesfield   461719  10 (27)
	    Madresfield 0.0369
	       moisture 0.0369
	        friends 0.0369
	        Welling 0.0369
	           heat 0.0369
	              i 0.0369
	        service 0.0369
	       business 0.0369
	            the 0.0059
	           more 0.0000
	    Eaglesfield 0.0000
	     Maresfield 0.0000
	              a 0.0000
	   Macclesfield 0.0000
	              - 0.0000
	         others 0.0000
	              I 0.0000
	    Micklefield 0.0000
	          <UNK> 0.0000
	              ( 0.0000
	           </S> 0.0000
	       services 0.0000
	              , 0.0000
	    Ecclesfield 0.0000
	          other 0.0000
	            all 0.0000
	       Services 0.0000

       climatic   461756  12 (25)
	      climatici 0.0369
	      climatica 0.0369
	      climatico 0.0369
	       climatis 0.0369
	        project 0.0369
	      companies 0.0369
	         within 0.0369
	             us 0.0369
	       clematis 0.0369
	              I 0.0369
	         chance 0.0059
	              , 0.0000
	              . 0.0000
	              - 0.0000
	    differences 0.0000
	       climatic 0.0000
	         change 0.0000
	              a 0.0000
	             to 0.0000
	     variations 0.0000
	           </S> 0.0000
	       increase 0.0000
	           that 0.0000
	            the 0.0000
	             of 0.0000

  modifications   461765   2 (27)
	        regions 0.1000
	        results 0.0369
	 modificationes 0.0369
	remodifications 0.0369
	  domifications 0.0369
	              I 0.0369
	       movement 0.0369
	 modificationis 0.0369
	             in 0.0369
	              a 0.0369
	  modifications 0.0369
	  modificationi 0.0369
	             of 0.0369
	      situation 0.0369
	  modificatione 0.0369
	     conditions 0.0059
	        effects 0.0000
	   modification 0.0000
	         change 0.0000
	           </S> 0.0000
	        history 0.0000
	      condition 0.0000
	         factor 0.0000
	              , 0.0000
	            and 0.0000
	              - 0.0000
	              . 0.0000

           Lark   461787  13 (30)
	            are 0.5000
	         Larkin 0.4174
	           lava 0.4000
	            and 0.2950
	           Lars 0.1000
	          Lakar 0.0369
	            arz 0.0369
	        posters 0.0369
	            Lar 0.0369
	          Larak 0.0369
	          Larks 0.0369
	             is 0.0059
	        section 0.0000
	           part 0.0000
	              . 0.0000
	           Last 0.0000
	           Park 0.0000
	              , 0.0000
	           page 0.0000
	           site 0.0000
	           sala 0.0000
	      Agreement 0.0000
	              - 0.0000
	           work 0.0000
	           </S> 0.0000
	           Lara 0.0000
	           Lark 0.0000
	           year 0.0000
	              a 0.0000
	            Web 0.0000

            all   461793   1 (27)
	              I 0.0369
	            all 0.0369
	              " 0.0369
	            alt 0.0369
	            als 0.0369
	            arz 0.0369
	            are 0.0369
	              ( 0.0369
	          <UNK> 0.0369
	           </S> 0.0369
	           ally 0.0369
	           alle 0.0369
	           alba 0.0369
	     regardless 0.0369
	            and 0.0369
	              x 0.0369
	             al 0.0369
	            ala 0.0369
	            the 0.0059
	          which 0.0012
	             or 0.0000
	            one 0.0000
	              i 0.0000
	           sala 0.0000
	            you 0.0000
	           some 0.0000
	             we 0.0000

           Tlie   461858  22 (27)
	           Time 0.8000
	           This 0.3358
	              I 0.0418
	       wildlife 0.0369
	           Trie 0.0369
	           Tiel 0.0369
	           Teil 0.0369
	           alba 0.0369
	            cia 0.0369
	             iu 0.0369
	            Tli 0.0369
	           fish 0.0369
	              a 0.0369
	           Tile 0.0369
	           Tlia 0.0369
	           Tlik 0.0369
	            Tie 0.0369
	            lie 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	            The 0.0131
	           </S> 0.0059
	              . 0.0000
	              ) 0.0000
	              ] 0.0000
	              , 0.0000

        typical   461863   1 (19)
	        topical 0.0369
	        typicae 0.0369
	        typicam 0.0369
	       typicall 0.0369
	              ) 0.0369
	              a 0.0369
	              - 0.0369
	       typicals 0.0369
	              n 0.0369
	              g 0.0369
	         typica 0.0369
	        typical 0.0369
	              , 0.0369
	              . 0.0369
	       atypical 0.0369
	        Typical 0.0369
	          <UNK> 0.0059
	          first 0.0000
	           </S> 0.0000

          watli   461911  20 (33)
	           wali 0.1000
	         walkit 0.0369
	              , 0.0369
	         witali 0.0369
	       becoming 0.0369
	        Quwatli 0.0369
	              ( 0.0369
	           </S> 0.0369
	          <UNK> 0.0369
	          Matli 0.0369
	          Catli 0.0369
	            but 0.0369
	              a 0.0369
	          black 0.0369
	              - 0.0369
	          watti 0.0369
	            and 0.0369
	        watalii 0.0369
	              I 0.0369
	           with 0.0062
	            the 0.0059
	          which 0.0012
	          tatli 0.0000
	            was 0.0000
	           wati 0.0000
	           will 0.0000
	             or 0.0000
	          wolfi 0.0000
	         rather 0.0000
	          warli 0.0000
	              i 0.0000
	          watin 0.0000
	           sala 0.0000

         darker   461917   1 (20)
	            the 0.0369
	         darken 0.0369
	          darke 0.0369
	              , 0.0369
	            and 0.0369
	         Passer 0.0369
	         market 0.0369
	         darker 0.0369
	          darer 0.0369
	         Parker 0.0369
	       darkener 0.0369
	           </S> 0.0369
	              . 0.0369
	         darkey 0.0369
	         Garden 0.0369
	              I 0.0369
	              - 0.0369
	              a 0.0369
	          daker 0.0369
	           date 0.0369

        centres   461924   1 (24)
	        centres 0.6000
	            the 0.5817
	        centers 0.2000
	            due 0.0369
	        centrum 0.0369
	        cinerea 0.0369
	         centro 0.0369
	        centred 0.0369
	        centrex 0.0369
	         centrs 0.0369
	       centreso 0.0369
	       centresi 0.0369
	           than 0.0059
	              - 0.0000
	           </S> 0.0000
	           side 0.0000
	          color 0.0000
	            and 0.0000
	         center 0.0000
	           edge 0.0000
	        central 0.0000
	              , 0.0000
	              . 0.0000
	         centre 0.0000

            the   462019   1 (20)
	           them 0.0369
	              a 0.0369
	            teh 0.0369
	            thy 0.0369
	            tho 0.0369
	           they 0.0369
	              I 0.0369
	           thee 0.0369
	              . 0.0369
	      sandcloth 0.0369
	            cia 0.0369
	             iu 0.0369
	            the 0.0369
	             us 0.0369
	              , 0.0369
	           </S> 0.0059
	              " 0.0000
	              } 0.0000
	          <UNK> 0.0000
	              ) 0.0000

          crest   462036  12 (25)
	           best 0.0369
	          great 0.0369
	          cress 0.0369
	          cresc 0.0369
	         creste 0.0369
	           cres 0.0369
	              I 0.0369
	         cresta 0.0369
	              i 0.0369
	           term 0.0369
	            out 0.0059
	             it 0.0000
	             to 0.0000
	              . 0.0000
	             at 0.0000
	            and 0.0000
	              - 0.0000
	          wings 0.0000
	         crests 0.0000
	              , 0.0000
	          crest 0.0000
	             us 0.0000
	              a 0.0000
	           case 0.0000
	           </S> 0.0000

      fcatliers   462065 inf (29)
	      flatliner 0.7000
	       flatters 0.1000
	          brain 0.0369
	          water 0.0369
	          major 0.0369
	     catlickers 0.0369
	           file 0.0369
	         faties 0.0369
	              a 0.0369
	            GNU 0.0369
	              , 0.0369
	        Eastern 0.0369
	            and 0.0369
	              . 0.0369
	           </S> 0.0059
	           eBay 0.0000
	          world 0.0000
	       outliers 0.0000
	          first 0.0000
	           page 0.0000
	              - 0.0000
	       Outliers 0.0000
	           most 0.0000
	           same 0.0000
	        country 0.0000
	     flatliners 0.0000
	      flatlines 0.0000
	         fliers 0.0000
	       ateliers 0.0000

         darker   462075   1 (22)
	          darer 0.0369
	         darkey 0.0369
	            day 0.0369
	           does 0.0369
	           date 0.0369
	         rather 0.0369
	         darker 0.0369
	           more 0.0369
	          daker 0.0369
	         Passer 0.0369
	          other 0.0369
	       darkener 0.0369
	              , 0.0369
	         darken 0.0369
	             of 0.0369
	              I 0.0369
	         Parker 0.0369
	           </S> 0.0369
	              . 0.0369
	              - 0.0369
	          darke 0.0369
	              a 0.0369

            the   462098   1 (18)
	            tho 0.0369
	           them 0.0369
	            cia 0.0369
	             iu 0.0369
	           thee 0.0369
	            teh 0.0369
	            thy 0.0369
	              I 0.0369
	              a 0.0369
	              , 0.0369
	              . 0.0369
	           they 0.0369
	            the 0.0369
	             us 0.0369
	           </S> 0.0059
	              } 0.0000
	              " 0.0000
	              ) 0.0000

        hastard   462102  11 (32)
	       hamstrad 0.0369
	         hastar 0.0369
	           term 0.0369
	        hastade 0.0369
	          major 0.0369
	          three 0.0369
	    transformer 0.0369
	            the 0.0369
	           </S> 0.0059
	           same 0.0037
	             UK 0.0000
	        Bastard 0.0000
	           hard 0.0000
	          first 0.0000
	        bastard 0.0000
	        country 0.0000
	      hardstand 0.0000
	              " 0.0000
	         hasard 0.0000
	          whole 0.0000
	            way 0.0000
	      headstart 0.0000
	        Mustard 0.0000
	              ' 0.0000
	      following 0.0000
	              - 0.0000
	          Board 0.0000
	           last 0.0000
	            two 0.0000
	          state 0.0000
	          <UNK> 0.0000
	          world 0.0000

        primary   462110   1 (24)
	      primarily 0.0369
	           that 0.0369
	              , 0.0369
	        program 0.0369
	         primar 0.0369
	      deviation 0.0369
	        primary 0.0369
	      coprimary 0.0369
	       primally 0.0369
	           size 0.0369
	        private 0.0369
	           area 0.0369
	        primacy 0.0369
	              a 0.0369
	           </S> 0.0369
	             it 0.0369
	              I 0.0369
	        primare 0.0369
	              - 0.0369
	        primari 0.0369
	              . 0.0369
	             of 0.0369
	        Primary 0.0369
	        Privacy 0.0369

            the   462128   1 (19)
	             to 0.0369
	           them 0.0369
	           thee 0.0369
	             us 0.0369
	              a 0.0369
	            cia 0.0369
	             iu 0.0369
	            teh 0.0369
	              , 0.0369
	            the 0.0369
	            thy 0.0369
	            tho 0.0369
	              I 0.0369
	             of 0.0369
	              . 0.0369
	           they 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000

         Ijrown   462155  17 (32)
	           Ijon 0.0369
	           from 0.0369
	         winner 0.0369
	        however 0.0369
	          below 0.0369
	           jown 0.0369
	             us 0.0369
	         Ingrow 0.0369
	      available 0.0369
	           good 0.0369
	              a 0.0369
	        Ijnhorn 0.0369
	          Itown 0.0369
	         Intown 0.0369
	         InTown 0.0369
	              , 0.0059
	              . 0.0000
	           down 0.0000
	            and 0.0000
	          Brown 0.0000
	            own 0.0000
	           </S> 0.0000
	            for 0.0000
	             to 0.0000
	           blue 0.0000
	              - 0.0000
	          brown 0.0000
	          grown 0.0000
	          green 0.0000
	             in 0.0000
	              I 0.0000
	           Iron 0.0000

          greyi   462168   1 (30)
	        greyish 1.0000
	          greys 1.0000
	            get 0.3683
	          print 0.0369
	          greyi 0.0369
	         geriyi 0.0369
	         girrey 0.0369
	            Pyi 0.0369
	   CheapTickets 0.0369
	              C 0.0369
	         greyin 0.0369
	              I 0.0369
	          pstat 0.0369
	            non 0.0369
	          greye 0.0369
	            the 0.0059
	           grey 0.0000
	              . 0.0000
	              - 0.0000
	            and 0.0000
	           real 0.0000
	              a 0.0000
	             Us 0.0000
	           Free 0.0000
	             an 0.0000
	             us 0.0000
	              , 0.0000
	           </S> 0.0000
	           free 0.0000
	           high 0.0000

              -   462173   1 (15)
	            the 0.0369
	              - 0.0369
	            and 0.0369
	              . 0.0369
	            cia 0.0369
	             iu 0.0369
	              " 0.0369
	           Unix 0.0369
	             of 0.0369
	           name 0.0369
	             us 0.0369
	           </S> 0.0059
	              ) 0.0000
	              ( 0.0000
	              , 0.0000

       luargius   462177 inf (27)
	             is 1.0000
	              a 0.1000
	      Selargius 0.0369
	        sources 0.0369
	              s 0.0369
	        lurgies 0.0369
	       luparius 0.0369
	           list 0.0369
	        service 0.0369
	         Vargiu 0.0369
	         Argius 0.0369
	  compatibility 0.0369
	          years 0.0369
	        largius 0.0369
	       larjigus 0.0369
	       largitus 0.0369
	         largus 0.0369
	              I 0.0369
	             .. 0.0059
	           </S> 0.0000
	              , 0.0000
	              - 0.0000
	              . 0.0000
	              ' 0.0000
	              : 0.0000
	              " 0.0000
	              ) 0.0000

              ,   462185   1 (13)
	           </S> 0.0369
	              t 0.0369
	              , 0.0369
	              s 0.0369
	              / 0.0369
	             us 0.0369
	            cia 0.0369
	              . 0.0369
	             of 0.0369
	            the 0.0369
	            and 0.0369
	              c 0.0369
	              - 0.0369

         whicli   462219  16 (25)
	          while 0.1000
	       Chiclida 0.0369
	         whilst 0.0369
	         whilie 0.0369
	           wili 0.0369
	         chwili 0.0369
	         whilis 0.0369
	          cicli 0.0369
	        Chiclid 0.0369
	         whirls 0.0369
	          wires 0.0369
	         whiche 0.0369
	          whill 0.0369
	          whick 0.0369
	              , 0.0059
	              - 0.0000
	         duster 0.0000
	              . 0.0000
	           </S> 0.0000
	            bed 0.0000
	              a 0.0000
	           that 0.0000
	              I 0.0000
	          which 0.0000
	          white 0.0000

          outer   462250   2 (25)
	            out 0.2000
	         checks 0.0369
	          outre 0.0369
	       complete 0.0369
	          tinge 0.0369
	           oute 0.0369
	         outers 0.0369
	          outer 0.0369
	          outed 0.0369
	          outen 0.0369
	          major 0.0369
	         router 0.0369
	         outher 0.0369
	           free 0.0369
	              , 0.0059
	            and 0.0000
	              I 0.0000
	              E 0.0000
	              - 0.0000
	              . 0.0000
	          other 0.0000
	           over 0.0000
	           </S> 0.0000
	          hunks 0.0000
	              a 0.0000

        feather   462276   6 (23)
	              I 0.0369
	              a 0.0369
	       feathery 0.0369
	       feathers 0.0369
	              - 0.0059
	              , 0.0000
	           half 0.0000
	             is 0.0000
	           </S> 0.0000
	          other 0.0000
	         father 0.0000
	        feather 0.0000
	            one 0.0000
	             to 0.0000
	        quarter 0.0000
	          major 0.0000
	          Other 0.0000
	             in 0.0000
	        farther 0.0000
	           time 0.0000
	             of 0.0000
	              . 0.0000
	        another 0.0000

          sandv   462296  19 (30)
	          sands 0.2000
	       sandvitx 0.0369
	              t 0.0369
	           zero 0.0369
	          vands 0.0369
	              T 0.0369
	        savande 0.0369
	         svenda 0.0369
	              . 0.0369
	          built 0.0369
	          sandi 0.0369
	          three 0.0369
	              a 0.0369
	       sandiver 0.0369
	           well 0.0369
	              , 0.0369
	            few 0.0097
	           </S> 0.0059
	          sandy 0.0000
	              - 0.0000
	           sand 0.0000
	            new 0.0000
	           said 0.0000
	            non 0.0000
	          since 0.0000
	            one 0.0000
	           sala 0.0000
	           same 0.0000
	            two 0.0000
	          major 0.0000

              -   462301   1 (11)
	              , 0.0369
	            and 0.0369
	             to 0.0369
	            the 0.0369
	             of 0.0369
	              - 0.0369
	             iu 0.0369
	             us 0.0369
	           </S> 0.0369
	              . 0.0369
	            cia 0.0369

         margin   462307   1 (28)
	        margine 0.0369
	        address 0.0369
	          cover 0.0369
	         margie 0.0369
	          icons 0.0369
	        margini 0.0369
	         access 0.0369
	           mail 0.0369
	        margina 0.0369
	         margir 0.0369
	          guide 0.0369
	            may 0.0369
	             us 0.0369
	         margin 0.0369
	       approach 0.0369
	         enough 0.0369
	              , 0.0059
	              . 0.0000
	              I 0.0000
	          again 0.0000
	             it 0.0000
	          hunks 0.0000
	              a 0.0000
	           this 0.0000
	           </S> 0.0000
	              - 0.0000
	        margins 0.0000
	              E 0.0000

         t)uter   462321  18 (31)
	         tjuter 0.0369
	           tuer 0.0369
	            the 0.0369
	          TWiki 0.0369
	         tutter 0.0369
	              a 0.0369
	        Company 0.0369
	          tuter 0.0369
	           them 0.0369
	          their 0.0369
	         teurer 0.0369
	             us 0.0369
	              . 0.0369
	          topic 0.0369
	              , 0.0369
	           </S> 0.0059
	           same 0.0037
	           tute 0.0000
	            top 0.0000
	           uter 0.0000
	              - 0.0000
	         touter 0.0000
	         public 0.0000
	          first 0.0000
	         hunter 0.0000
	          right 0.0000
	      following 0.0000
	          other 0.0000
	         tauter 0.0000
	         Hunter 0.0000
	          outer 0.0000

            web   462328   1 (22)
	            wee 0.0369
	              I 0.0369
	              . 0.0369
	           were 0.0369
	            wet 0.0369
	           webe 0.0369
	           </S> 0.0369
	             of 0.0369
	            web 0.0369
	            cia 0.0369
	             iu 0.0369
	              - 0.0369
	             us 0.0369
	            was 0.0369
	              a 0.0369
	              , 0.0369
	              ) 0.0369
	         States 0.0369
	           name 0.0369
	             we 0.0369
	           webb 0.0369
	           webs 0.0369

            the   462334   1 (17)
	              a 0.0369
	            thy 0.0369
	            tho 0.0369
	             us 0.0369
	            teh 0.0369
	              . 0.0369
	              I 0.0369
	           them 0.0369
	           they 0.0369
	            cia 0.0369
	             iu 0.0369
	              , 0.0369
	            the 0.0369
	           thee 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000

      backwards   462382   9 (23)
	   backasswards 0.0369
	   bassackwards 0.0369
	      backyards 0.0369
	      Backwards 0.0369
	     backwardly 0.0369
	        forward 0.0369
	      baccharis 0.0369
	             as 0.0059
	        removed 0.0000
	           more 0.0000
	      backwards 0.0000
	              I 0.0000
	              - 0.0000
	        between 0.0000
	              , 0.0000
	           away 0.0000
	            cry 0.0000
	              . 0.0000
	           </S> 0.0000
	           from 0.0000
	              a 0.0000
	       backward 0.0000
	           back 0.0000

        buffish   462419   2 (26)
	        because 0.1000
	              I 0.0369
	       informed 0.0369
	            non 0.0369
	          buffi 0.0369
	              - 0.0369
	        bugfish 0.0369
	        burfish 0.0369
	        buffish 0.0369
	           self 0.0369
	        buffins 0.0369
	            Two 0.0369
	        huffish 0.0369
	            off 0.0369
	              C 0.0369
	         uffish 0.0369
	         silver 0.0369
	              a 0.0059
	           best 0.0000
	          being 0.0000
	           </S> 0.0000
	              . 0.0000
	           used 0.0000
	            not 0.0000
	              , 0.0000
	            the 0.0000

            the   462435   1 (18)
	           thee 0.0369
	              . 0.0369
	            tho 0.0369
	            thy 0.0369
	           them 0.0369
	            teh 0.0369
	              , 0.0369
	            cia 0.0369
	             iu 0.0369
	              I 0.0369
	            the 0.0369
	           they 0.0369
	             us 0.0369
	              a 0.0369
	           </S> 0.0059
	              } 0.0000
	              " 0.0000
	              ) 0.0000

   principall}-   462455   1 (23)
	    principally 0.6000
	              . 0.2000
	     principall 0.0369
	     principals 0.0369
	     principale 0.0369
	       actually 0.0369
	              - 0.0369
	    principalis 0.0369
	     principali 0.0369
	        scarlet 0.0369
	    principalia 0.0369
	          white 0.0369
	            not 0.0059
	        usually 0.0000
	              , 0.0000
	         really 0.0000
	       provided 0.0000
	           </S> 0.0000
	            the 0.0000
	              a 0.0000
	      available 0.0000
	      principal 0.0000
	             in 0.0000

        buffish   462468   1 (24)
	              - 0.0369
	              a 0.0369
	            but 0.0369
	            off 0.0369
	             on 0.0369
	           well 0.0369
	        bugfish 0.0369
	        burfish 0.0369
	           with 0.0369
	           best 0.0369
	        buffish 0.0369
	         uffish 0.0369
	        huffish 0.0369
	          buffi 0.0369
	            non 0.0369
	              , 0.0369
	        buffins 0.0369
	          being 0.0369
	              . 0.0369
	           </S> 0.0369
	              e 0.0369
	        batfish 0.0369
	             to 0.0369
	             in 0.0369

         deeper   462483   1 (29)
	              . 0.0369
	          depee 0.0369
	              a 0.0369
	         people 0.0369
	         deeper 0.0369
	          deepe 0.0369
	          depre 0.0369
	        working 0.0369
	          black 0.0369
	              - 0.0369
	         Center 0.0369
	            but 0.0369
	       deepener 0.0369
	              I 0.0369
	           </S> 0.0369
	      depending 0.0369
	              , 0.0369
	         aerial 0.0369
	         deepen 0.0369
	         dreper 0.0369
	            and 0.0369
	            the 0.0059
	          which 0.0012
	         peeper 0.0000
	          while 0.0000
	           were 0.0000
	             or 0.0000
	            one 0.0000
	              i 0.0000

          sides   462517   1 (26)
	          grill 0.0369
	        desides 0.0369
	              . 0.0369
	          sides 0.0369
	          sided 0.0369
	              I 0.0369
	         sidens 0.0369
	          Pales 0.0369
	         spinas 0.0369
	         asides 0.0369
	         Asides 0.0369
	              a 0.0369
	         slides 0.0369
	           side 0.0369
	         siders 0.0369
	              - 0.0369
	              , 0.0369
	         deside 0.0369
	              A 0.0369
	          sites 0.0369
	           site 0.0369
	          sider 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000
	              " 0.0000

        spotted   462533   1 (25)
	       Atlantic 0.0369
	         sotted 0.0369
	              I 0.0369
	         spotte 0.0369
	      documents 0.0369
	        product 0.0369
	           bowl 0.0369
	       spottend 0.0369
	         potted 0.0369
	           site 0.0369
	         system 0.0369
	          state 0.0369
	        spotten 0.0369
	        spotted 0.0369
	     associated 0.0369
	        spotter 0.0369
	              . 0.0059
	            and 0.0000
	              - 0.0000
	              a 0.0000
	           </S> 0.0000
	              , 0.0000
	        stopped 0.0000
	         cancer 0.0000
	         posted 0.0000

         breast   462563   1 (20)
	              , 0.0369
	          least 0.0369
	        breasty 0.0369
	           with 0.0369
	          break 0.0369
	        breaste 0.0369
	              - 0.0369
	          breas 0.0369
	              I 0.0369
	            the 0.0369
	         brease 0.0369
	              . 0.0369
	        breasts 0.0369
	         breast 0.0369
	              a 0.0369
	           </S> 0.0059
	              " 0.0000
	              } 0.0000
	              ) 0.0000
	          <UNK> 0.0000

        spotted   462570  14 (23)
	        grilled 0.0369
	        spotter 0.0369
	        spotten 0.0369
	           rose 0.0369
	         sorted 0.0369
	              } 0.0369
	        shorten 0.0369
	       spottend 0.0369
	         potted 0.0369
	         sotted 0.0369
	         stated 0.0369
	         spotte 0.0369
	         cancer 0.0059
	          spots 0.0000
	         sports 0.0000
	           </S> 0.0000
	           milk 0.0000
	              , 0.0000
	        spotted 0.0000
	              - 0.0000
	              . 0.0000
	        stopped 0.0000
	         posted 0.0000

         flanks   462609   1 (22)
	          flash 0.0369
	       flaskans 0.0369
	              , 0.0369
	         Thanks 0.0369
	          flank 0.0369
	              . 0.0369
	         flanks 0.0369
	        flaskan 0.0369
	         plants 0.0369
	          flans 0.0369
	         flanko 0.0369
	         flanke 0.0369
	              - 0.0369
	              a 0.0369
	          lanks 0.0369
	              I 0.0369
	        flankes 0.0369
	         thanks 0.0369
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	              } 0.0000

       slightly   462616   1 (18)
	        Flights 0.0369
	        flights 0.0369
	              } 0.0369
	       slightly 0.0369
	         flight 0.0369
	        slighty 0.0369
	      sprightly 0.0369
	        sightly 0.0369
	      slightily 0.0369
	       plightly 0.0369
	        lightly 0.0369
	             of 0.0059
	           </S> 0.0000
	              - 0.0000
	              a 0.0000
	              , 0.0000
	              ) 0.0000
	              . 0.0000

       streaked   462625  13 (22)
	        straked 0.0369
	       Streaked 0.0369
	         streak 0.0369
	       streaker 0.0369
	     unstreaked 0.0369
	       streamed 0.0369
	     streakedly 0.0369
	       streamer 0.0369
	     restreaked 0.0369
	        speaker 0.0369
	        streams 0.0369
	            out 0.0059
	         stream 0.0000
	         better 0.0000
	              - 0.0000
	    differently 0.0000
	           more 0.0000
	              , 0.0000
	           </S> 0.0000
	              . 0.0000
	      different 0.0000
	       streaked 0.0000

              ;   462634   1 (16)
	              ; 0.5000
	             of 0.3000
	           gray 0.1000
	           than 0.0369
	            cia 0.0369
	             iu 0.0369
	             us 0.0369
	           with 0.0059
	              . 0.0000
	         across 0.0000
	            and 0.0000
	            the 0.0000
	              - 0.0000
	           </S> 0.0000
	          olive 0.0000
	              , 0.0000

           bill   462636   1 (23)
	            big 0.0369
	           dark 0.0369
	           will 0.0369
	              . 0.0369
	              - 0.0369
	          bills 0.0369
	          billy 0.0369
	              X 0.0369
	              a 0.0369
	           bill 0.0369
	            bil 0.0369
	            cia 0.0369
	           sala 0.0369
	           Pica 0.0369
	              , 0.0369
	           bild 0.0369
	           bile 0.0369
	           bili 0.0369
	           file 0.0369
	           </S> 0.0059
	              ) 0.0000
	              " 0.0000
	              } 0.0000

       mandible   462654  10 (19)
	       Mandible 0.0369
	         museum 0.0369
	              I 0.0369
	       mandrill 0.0369
	      mandibule 0.0369
	           more 0.0369
	      mandibles 0.0369
	            may 0.0369
	            the 0.0059
	       mandible 0.0000
	              a 0.0000
	              . 0.0000
	           </S> 0.0000
	           this 0.0000
	            and 0.0000
	          which 0.0000
	              - 0.0000
	         review 0.0000
	              , 0.0000

          paler   462663   2 (28)
	              a 0.2000
	  circumstances 0.0369
	         palere 0.0369
	          Sales 0.0369
	         palear 0.0369
	          Wales 0.0369
	        palermo 0.0369
	          paler 0.0369
	          Pales 0.0369
	          parva 0.0369
	           sala 0.0369
	          palre 0.0369
	          plaer 0.0369
	          pages 0.0369
	            Act 0.0369
	          pales 0.0369
	          paleo 0.0369
	           part 0.0369
	        section 0.0369
	           page 0.0369
	              . 0.0059
	           </S> 0.0000
	           pale 0.0000
	              , 0.0000
	            and 0.0000
	              ( 0.0000
	              - 0.0000
	              ) 0.0000

           feet   462671   1 (23)
	              - 0.0369
	            fee 0.0369
	              I 0.0369
	              . 0.0369
	         feetje 0.0369
	          feest 0.0369
	           fete 0.0369
	           fett 0.0369
	           feet 0.0369
	           face 0.0369
	              a 0.0369
	           free 0.0369
	           need 0.0369
	           been 0.0369
	           feel 0.0369
	           fees 0.0369
	              , 0.0369
	          feets 0.0369
	            fet 0.0369
	           </S> 0.0059
	              ) 0.0000
	              " 0.0000
	              } 0.0000

         fleshy   462676  11 (19)
	          files 0.9000
	          flesh 0.9000
	              x 0.0369
	         flashy 0.0369
	          leshy 0.0369
	              } 0.0369
	        fleshly 0.0369
	         flecha 0.0369
	       fleshfly 0.0369
	              . 0.0059
	         fleshy 0.0000
	           fees 0.0000
	             to 0.0000
	           fish 0.0000
	              , 0.0000
	             of 0.0000
	              a 0.0000
	              - 0.0000
	           </S> 0.0000

           iris   462696   1 (24)
	            its 0.0369
	              . 0.0369
	             in 0.0369
	           iris 0.0369
	             iu 0.0369
	            cia 0.0369
	            arz 0.0369
	              a 0.0369
	              - 0.0369
	            irs 0.0369
	          iiris 0.0369
	              I 0.0369
	          irish 0.0369
	          irisa 0.0369
	             is 0.0369
	              , 0.0369
	           irie 0.0369
	           irin 0.0369
	            iri 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000
	          <UNK> 0.0000
	              " 0.0000

          hazel   462701   1 (23)
	          hazel 1.0000
	          hazes 0.0369
	          hazed 0.0369
	           held 0.0369
	         Ghazel 0.0369
	              } 0.0369
	           haze 0.0369
	          Pales 0.0369
	          hotel 0.0369
	          hazle 0.0369
	           hard 0.0369
	         hazels 0.0369
	          halez 0.0369
	              , 0.0059
	              ) 0.0000
	           </S> 0.0000
	           have 0.0000
	              - 0.0000
	            has 0.0000
	    recognition 0.0000
	              . 0.0000
	           here 0.0000
	          scans 0.0000

              .   462706   1 (13)
	              . 0.9521
	              - 0.0426
	             us 0.0369
	       iris.htm 0.0369
	            cia 0.0369
	             iu 0.0369
	           eyes 0.0059
	            and 0.0000
	            ... 0.0000
	            the 0.0000
	             of 0.0000
	              , 0.0000
	           </S> 0.0000

          crest   462733   1 (26)
	          crest 0.6000
	             to 0.3000
	            one 0.1000
	           cres 0.0369
	              I 0.0369
	              N 0.0369
	          cress 0.0369
	          cresc 0.0369
	         cresta 0.0369
	         creste 0.0369
	           best 0.0369
	              a 0.0369
	         crests 0.0369
	          basis 0.0369
	            ago 0.0369
	           than 0.0059
	              . 0.0000
	         period 0.0000
	              , 0.0000
	          great 0.0000
	              - 0.0000
	           term 0.0000
	           </S> 0.0000
	           time 0.0000
	             of 0.0000
	           case 0.0000

      rufescent   462825   1 (25)
	      rufescent 0.4000
	       spacious 0.0369
	      rufescunt 0.0369
	      rufescens 0.0369
	      rubescent 0.0369
	       research 0.0369
	     rufescenti 0.0369
	      different 0.0369
	     rufescente 0.0369
	           than 0.0059
	              , 0.0000
	              - 0.0000
	      expensive 0.0000
	    information 0.0000
	       powerful 0.0000
	             to 0.0000
	              I 0.0000
	         likely 0.0000
	      effective 0.0000
	            for 0.0000
	              . 0.0000
	        complex 0.0000
	           </S> 0.0000
	        results 0.0000
	              a 0.0000

       blackish   462844  11 (21)
	           each 0.0369
	              - 0.0369
	           last 0.0369
	         blacky 0.0369
	       Blackish 0.0369
	      blackfish 0.0369
	     blackishly 0.0369
	         better 0.0369
	       blackism 0.0369
	           been 0.0059
	              , 0.0000
	       blackish 0.0000
	              . 0.0000
	            the 0.0000
	           </S> 0.0000
	             to 0.0000
	              I 0.0000
	              a 0.0000
	           also 0.0000
	             an 0.0000
	       brackish 0.0000

            sub   462853   1 (29)
	            sub 0.0369
	            sun 0.0369
	              C 0.0369
	             su 0.0369
	           subi 0.0369
	           subu 0.0369
	              N 0.0369
	             iu 0.0369
	           sala 0.0369
	            see 0.0369
	          amino 0.0369
	             us 0.0369
	            non 0.0369
	           subs 0.0369
	              e 0.0369
	            sum 0.0369
	              E 0.0369
	           such 0.0369
	             re 0.0369
	            the 0.0369
	             so 0.0369
	              a 0.0369
	              - 0.0059
	           </S> 0.0000
	          brown 0.0000
	             to 0.0000
	              , 0.0000
	              . 0.0000
	           lead 0.0000

              -   462856   5 (13)
	            the 0.8000
	          <UNK> 0.1667
	            cia 0.0369
	             iu 0.0369
	              - 0.0059
	             15 0.0000
	             us 0.0000
	            and 0.0000
	              , 0.0000
	              . 0.0000
	     navigation 0.0000
	           </S> 0.0000
	             of 0.0000

           tips   462886   1 (29)
	           tips 1.0000
	            tip 0.6000
	          tipis 0.0369
	          stips 0.0369
	            cia 0.0369
	           Pica 0.0369
	          tipsy 0.0369
	          tipsa 0.0369
	     comparison 0.0369
	          cover 0.0369
	           tipo 0.0369
	           tipi 0.0369
	          grief 0.0369
	          icons 0.0369
	        applied 0.0369
	       compared 0.0369
	              , 0.0059
	           </S> 0.0000
	            top 0.0000
	              a 0.0000
	              . 0.0000
	              - 0.0000
	           time 0.0000
	              E 0.0000
	          hunks 0.0000
	           this 0.0000
	          color 0.0000
	             us 0.0000
	              I 0.0000

           tlie   462910   8 (29)
	           trie 0.0500
	           teil 0.0369
	         outlie 0.0369
	          talie 0.0369
	         tlieta 0.0369
	           teie 0.0369
	          tliet 0.0369
	            the 0.0059
	          <UNK> 0.0000
	           this 0.0000
	           </S> 0.0000
	            lie 0.0000
	           alba 0.0000
	              , 0.0000
	           thie 0.0000
	           time 0.0000
	           your 0.0000
	            tie 0.0000
	           tile 0.0000
	          their 0.0000
	           Clie 0.0000
	            cia 0.0000
	              : 0.0000
	           take 0.0000
	              a 0.0000
	             iu 0.0000
	            tle 0.0000
	            his 0.0000
	              - 0.0000

          moult   462945   1 (22)
	          moult 1.0000
	            and 0.1575
	          multo 0.0369
	           moul 0.0369
	          moule 0.0369
	         moults 0.0369
	        moulted 0.0369
	          maura 0.0369
	         moulut 0.0369
	          mould 0.0369
	          mouth 0.0369
	              . 0.0059
	              a 0.0000
	              - 0.0000
	           most 0.0000
	          could 0.0000
	           </S> 0.0000
	          would 0.0000
	              I 0.0000
	             of 0.0000
	             in 0.0000
	              , 0.0000

        becomes   462983   3 (23)
	              . 0.8000
	       Galerida 0.1000
	         become 0.0369
	       becomers 0.0369
	        Lecomte 0.0369
	         becker 0.0369
	         became 0.0369
	        becomes 0.0369
	        becomse 0.0369
	     helicopter 0.0369
	        becomed 0.0369
	        becomer 0.0369
	        Decodes 0.0369
	       becomest 0.0369
	       Mountain 0.0369
	         combes 0.0369
	           </S> 0.0059
	              ( 0.0000
	             's 0.0000
	          Books 0.0000
	    Calandrella 0.0000
	              , 0.0000
	              - 0.0000

        centres   463024   1 (26)
	        centres 0.8000
	        control 0.1000
	         centrs 0.0369
	       centreso 0.0369
	           back 0.0369
	        cinerea 0.0369
	         Center 0.0369
	            way 0.0369
	              a 0.0369
	       centresi 0.0369
	         before 0.0369
	        centrex 0.0369
	              , 0.0059
	             as 0.0000
	              - 0.0000
	          brown 0.0000
	              I 0.0000
	            and 0.0000
	           </S> 0.0000
	        central 0.0000
	        centers 0.0000
	              . 0.0000
	           side 0.0000
	        centred 0.0000
	         centre 0.0000
	             of 0.0000

           less   463048  11 (21)
	          lesso 0.0369
	            les 0.0369
	          lesse 0.0369
	           lava 0.0369
	           News 0.0369
	          Pales 0.0369
	             us 0.0369
	           lese 0.0369
	           lest 0.0369
	              , 0.0059
	              I 0.0000
	             on 0.0000
	           </S> 0.0000
	              . 0.0000
	           also 0.0000
	              a 0.0000
	             of 0.0000
	           like 0.0000
	           less 0.0000
	            and 0.0000
	              - 0.0000

           Col.   463067   4 (24)
	            For 0.2625
	            for 0.0601
	              I 0.0418
	           Cold 0.0369
	           Cole 0.0369
	           Cola 0.0369
	              a 0.0369
	           Coll 0.0369
	           Colo 0.0369
	           sala 0.0369
	          wolfi 0.0369
	           City 0.0369
	            Col 0.0369
	           only 0.0369
	           Cool 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              . 0.0000
	              ) 0.0000
	              , 0.0000
	              ] 0.0000
	              / 0.0000

          Irb}-   463072   2 (29)
	              . 1.0000
	       instance 0.0369
	             Ir 0.0369
	          Irrrb 0.0369
	      configure 0.0369
	              i 0.0369
	           Iraq 0.0369
	           Iran 0.0369
	            Ibr 0.0369
	           Irob 0.0369
	          Irbil 0.0369
	          Irbid 0.0369
	          Irish 0.0369
	        Mustard 0.0369
	              a 0.0369
	            Irb 0.0369
	vareSelskap.cgi 0.0369
	           Irby 0.0369
	           </S> 0.0059
	             L. 0.0000
	             J. 0.0000
	              , 0.0000
	           John 0.0000
	              ) 0.0000
	             .. 0.0000
	         Juárez 0.0000
	              - 0.0000
	              A 0.0000
	          <UNK> 0.0000

    Ornithology   463087  14 (23)
	              A 0.1000
	   Ornithologie 0.0369
	            one 0.0369
	     University 0.0369
	           Site 0.0369
	    Ornothology 0.0369
	            One 0.0369
	        Journal 0.0369
	    Ornathology 0.0369
	    Proceedings 0.0369
	    Ornithologe 0.0369
	        version 0.0369
	           </S> 0.0059
	           with 0.0000
	    Ornithology 0.0000
	    ornithology 0.0000
	            and 0.0000
	              . 0.0000
	              a 0.0000
	              , 0.0000
	          <UNK> 0.0000
	              - 0.0000
	              I 0.0000

      Andalucia   463249   1 (28)
	      Andalucia 0.6000
	         sticky 0.0369
	       Analucia 0.0369
	       holidays 0.0369
	              i 0.0369
	           such 0.0369
	           said 0.0369
	        Tunisia 0.0369
	         abroad 0.0369
	       products 0.0369
	         online 0.0369
	    Andalucians 0.0369
	    destination 0.0369
	            the 0.0059
	              - 0.0000
	           </S> 0.0000
	          other 0.0000
	           more 0.0000
	              I 0.0000
	           that 0.0000
	              ( 0.0000
	          <UNK> 0.0000
	              a 0.0000
	     Andalucian 0.0000
	           used 0.0000
	              , 0.0000
	             in 0.0000
	      Andalusia 0.0000

           They   463309   1 (20)
	           They 1.0000
	           This 0.3358
	              I 0.0418
	              a 0.0369
	           Them 0.0369
	          Theys 0.0369
	          Theyr 0.0369
	           Tehy 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	            The 0.0131
	           </S> 0.0059
	              , 0.0000
	              ) 0.0000
	              ] 0.0000
	             '' 0.0000
	              . 0.0000
	           Then 0.0000
	           they 0.0000

            arc   463314  10 (23)
	              , 1.0000
	             ar 0.7000
	              ) 0.0369
	            rac 0.0369
	           alba 0.0369
	              . 0.0369
	            arz 0.0369
	           arcs 0.0369
	           arca 0.0369
	            are 0.0059
	           also 0.0000
	             us 0.0000
	             an 0.0000
	           have 0.0000
	             as 0.0000
	            arc 0.0000
	             at 0.0000
	           </S> 0.0000
	           were 0.0000
	           arch 0.0000
	            art 0.0000
	            and 0.0000
	           work 0.0000

    distributed   463318   2 (28)
	            the 0.8000
	    distributes 0.0369
	    distributer 0.0369
	    distributed 0.0369
	           work 0.0369
	        results 0.0369
	  distributedly 0.0369
	             us 0.0369
	              A 0.0369
	           sold 0.0369
	  redistributed 0.0369
	           well 0.0369
	             be 0.0369
	     distribute 0.0369
	   redistribute 0.0369
	      available 0.0369
	              . 0.0059
	        seconds 0.0000
	              s 0.0000
	         system 0.0000
	              , 0.0000
	              a 0.0000
	        minutes 0.0000
	           </S> 0.0000
	            not 0.0000
	             to 0.0000
	        through 0.0000
	              - 0.0000

          pairs   463333   1 (34)
	          pairs 0.5000
	          pairt 0.1000
	            any 0.0800
	          paire 0.0369
	         paires 0.0369
	          maura 0.0369
	              x 0.0369
	       reliance 0.0369
	         pairas 0.0369
	            use 0.0369
	            but 0.0369
	          touch 0.0369
	         apairs 0.0369
	     commission 0.0369
	            the 0.0059
	              - 0.0000
	          class 0.0000
	           page 0.0000
	          parva 0.0000
	              a 0.0000
	           past 0.0000
	              , 0.0000
	           this 0.0000
	           </S> 0.0000
	           pair 0.0000
	        repairs 0.0000
	          parsi 0.0000
	           pars 0.0000
	          Parus 0.0000
	           your 0.0000
	          paris 0.0000
	          price 0.0000
	           part 0.0000
	              . 0.0000

          onl}'   463397  12 (28)
	             nl 1.0000
	             30 0.0369
	          onlus 0.0369
	          ollon 0.0369
	           olon 0.0369
	              s 0.0369
	              T 0.0369
	            not 0.0369
	             50 0.0369
	           ongl 0.0369
	            the 0.0059
	           what 0.0000
	           </S> 0.0000
	           this 0.0000
	            our 0.0000
	              a 0.0000
	          their 0.0000
	              , 0.0000
	              : 0.0000
	           only 0.0000
	         online 0.0000
	             us 0.0000
	            one 0.0000
	              - 0.0000
	          which 0.0000
	          onlay 0.0000
	             on 0.0000
	          <UNK> 0.0000

           some   463403   1 (25)
	          somes 0.0369
	              . 0.0369
	           </S> 0.0369
	           than 0.0369
	            som 0.0369
	            sec 0.0369
	          comix 0.0369
	          somme 0.0369
	              I 0.0369
	           soms 0.0369
	           home 0.0369
	              - 0.0369
	           soma 0.0369
	           more 0.0369
	              a 0.0369
	           some 0.0369
	            and 0.0369
	             to 0.0369
	           soem 0.0369
	              m 0.0369
	              s 0.0369
	           Home 0.0369
	              , 0.0369
	          somer 0.0369
	           sala 0.0369

    Excessively   463422 inf (23)
	             us 0.0369
	           five 0.0369
	      Excessive 0.0369
	    Exclusively 0.0369
	   Expressively 0.0369
	       material 0.0369
	    exclusively 0.0369
	              a 0.0369
	    excessively 0.0369
	          front 0.0369
	            the 0.0369
	    recessively 0.0369
	           </S> 0.0059
	              - 0.0000
	        However 0.0000
	              ) 0.0000
	              / 0.0000
	              " 0.0000
	              . 0.0000
	              ] 0.0000
	              I 0.0000
	              , 0.0000
	              A 0.0000

           tame   463434   2 (30)
	           Free 0.0500
	          tamed 0.0369
	          tamer 0.0369
	           time 0.0369
	           tame 0.0369
	           lava 0.0369
	           sala 0.0369
	           Baya 0.0369
	              B 0.0369
	           take 0.0369
	            tam 0.0369
	           team 0.0369
	              ) 0.0369
	      configure 0.0369
	              a 0.0369
	           tama 0.0369
	           tami 0.0369
	         Bloody 0.0369
	          tamme 0.0369
	              n 0.0369
	           them 0.0369
	      Injurious 0.0059
	            dry 0.0000
	              , 0.0000
	              . 0.0000
	          <UNK> 0.0000
	           </S> 0.0000
	              - 0.0000
	         drowsy 0.0000
	    crossposted 0.0000

      Curiiicit   463486 inf (27)
	             it 0.2000
	           time 0.1000
	        reiicit 0.0369
	              s 0.0369
	          minor 0.0369
	       Curicica 0.0369
	        Curiini 0.0369
	      aurificii 0.0369
	          total 0.0369
	        Curtici 0.0369
	   organization 0.0369
	       services 0.0369
	              . 0.0369
	        Curacit 0.0369
	        country 0.0369
	            the 0.0059
	        service 0.0000
	              - 0.0000
	           your 0.0000
	           this 0.0000
	              a 0.0000
	              , 0.0000
	        Service 0.0000
	          their 0.0000
	           </S> 0.0000
	           them 0.0000
	             us 0.0000

    frequenting   463518  12 (25)
	     frequentis 0.0369
	      frequenti 0.0369
	    frequentino 0.0369
	          doing 0.0369
	      following 0.0369
	    frequentans 0.0369
	           free 0.0369
	          using 0.0369
	          major 0.0369
	      wallowing 0.0369
	            the 0.0059
	              a 0.0000
	           </S> 0.0000
	          their 0.0000
	      Education 0.0000
	           this 0.0000
	         public 0.0000
	              - 0.0000
	     frequentie 0.0000
	              , 0.0000
	             us 0.0000
	          <UNK> 0.0000
	            new 0.0000
	    frequenting 0.0000
	              : 0.0000

          roads   463530   5 (30)
	            and 0.9000
	              - 0.7000
	           </S> 0.3000
	              a 0.3000
	            had 0.0369
	          rufus 0.0369
	           year 0.0369
	           road 0.0369
	           made 0.0369
	    information 0.0369
	         broads 0.0369
	          roade 0.0369
	          roads 0.0369
	          rodas 0.0369
	         rosada 0.0369
	         roades 0.0369
	           rods 0.0369
	          world 0.0369
	        service 0.0369
	            Act 0.0369
	         Broads 0.0369
	              I 0.0369
	           most 0.0369
	            the 0.0059
	              , 0.0000
	             at 0.0000
	             it 0.0000
	             EL 0.0000
	              . 0.0000
	           this 0.0000

           dung   463599  13 (33)
	          Munia 0.9000
	          dungy 0.1701
	          dugnu 0.0369
	      consuming 0.0369
	          dungu 0.0369
	              s 0.0369
	          house 0.0369
	             or 0.0369
	         shirts 0.0369
	           well 0.0369
	              - 0.0079
	           </S> 0.0059
	           dunk 0.0000
	            the 0.0000
	            day 0.0000
	            dun 0.0000
	          <UNK> 0.0000
	              a 0.0000
	           mail 0.0000
	              I 0.0000
	             to 0.0000
	             us 0.0000
	              A 0.0000
	          being 0.0000
	             do 0.0000
	           time 0.0000
	           dune 0.0000
	          dungs 0.0000
	           dung 0.0000
	           does 0.0000
	              . 0.0000
	              ) 0.0000
	             up 0.0000

             at   463605   3 (31)
	             in 0.1021
	             on 0.0541
	            att 0.0369
	              ( 0.0369
	          <UNK> 0.0369
	            aat 0.0369
	            arz 0.0369
	              | 0.0369
	             an 0.0369
	              - 0.0369
	             at 0.0369
	              t 0.0369
	              I 0.0369
	              x 0.0369
	            ate 0.0369
	            and 0.0369
	             as 0.0369
	              a 0.0369
	           </S> 0.0369
	            but 0.0369
	           with 0.0062
	            the 0.0059
	          which 0.0012
	              i 0.0000
	             us 0.0000
	             to 0.0000
	        without 0.0000
	             or 0.0000
	             of 0.0000
	             iu 0.0000
	             ta 0.0000

             as   463643   1 (28)
	         thanks 0.0369
	            and 0.0369
	            arz 0.0369
	            ask 0.0369
	              I 0.0369
	             at 0.0369
	        written 0.0369
	             an 0.0369
	             as 0.0369
	           </S> 0.0369
	              " 0.0369
	            aas 0.0369
	            but 0.0369
	              a 0.0369
	            ass 0.0369
	        writing 0.0369
	          <UNK> 0.0369
	            the 0.0059
	          which 0.0012
	            yet 0.0000
	            one 0.0000
	             sa 0.0000
	              i 0.0000
	             iu 0.0000
	             us 0.0000
	             or 0.0000
	          while 0.0000
	            who 0.0000

        dusting   463665   1 (25)
	        dusting 0.9000
	        ducting 0.7000
	        rustica 0.0369
	     protecting 0.0369
	      providing 0.0369
	      enriching 0.0369
	     production 0.0369
	       distingu 0.0369
	            the 0.0059
	         during 0.0000
	              a 0.0000
	         Rating 0.0000
	          their 0.0000
	             us 0.0000
	           </S> 0.0000
	              : 0.0000
	          using 0.0000
	              , 0.0000
	         dustin 0.0000
	        Justine 0.0000
	              - 0.0000
	         Austin 0.0000
	       dustings 0.0000
	          <UNK> 0.0000
	           this 0.0000

            and   463686   1 (23)
	           what 0.0369
	           aand 0.0369
	              I 0.0369
	            any 0.0369
	            and 0.0369
	             an 0.0369
	            but 0.0369
	             us 0.0369
	           andy 0.0369
	           anda 0.0369
	              - 0.0369
	            arz 0.0369
	           alba 0.0369
	              a 0.0369
	           that 0.0369
	            ant 0.0369
	              , 0.0369
	              . 0.0369
	            way 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	              " 0.0000

     Sauderling   463758  21 (35)
	       Sperling 0.1000
	              . 0.0369
	      ouderling 0.0369
	           city 0.0369
	     Slandering 0.0369
	          state 0.0369
	              , 0.0369
	          reply 0.0369
	      Sawdering 0.0369
	            kid 0.0369
	       Mauderli 0.0369
	       response 0.0369
	          cross 0.0369
	      Soderling 0.0369
	        Sauling 0.0369
	     Silberling 0.0369
	     Spiderling 0.0369
	          wheel 0.0369
	        service 0.0369
	           </S> 0.0059
	              - 0.0000
	      different 0.0000
	     Sanderling 0.0000
	     laundering 0.0000
	         little 0.0000
	            lot 0.0000
	          major 0.0000
	       Sterling 0.0000
	         result 0.0000
	            bit 0.0000
	            new 0.0000
	           year 0.0000
	            few 0.0000
	         public 0.0000
	           good 0.0000

         within   463769   1 (18)
	        weithin 0.0369
	              , 0.0369
	        without 0.0369
	            and 0.0369
	         within 0.0369
	           with 0.0369
	             or 0.0369
	         withen 0.0369
	        withing 0.0369
	         withim 0.0369
	           </S> 0.0369
	             of 0.0369
	              . 0.0369
	              a 0.0369
	              I 0.0369
	              - 0.0369
	             in 0.0369
	        Swithin 0.0369

          birds   463887   2 (31)
	             on 0.8000
	             be 0.0369
	           bids 0.0369
	     convincing 0.0369
	          Parus 0.0369
	         Turdus 0.0369
	           bird 0.0369
	             us 0.0369
	          birds 0.0369
	         Vbirds 0.0369
	         attire 0.0369
	        birdsit 0.0369
	          birdy 0.0369
	         birdes 0.0369
	           more 0.0369
	          birda 0.0369
	         bridds 0.0369
	              . 0.0059
	             to 0.0000
	            the 0.0000
	              ) 0.0000
	              I 0.0000
	           </S> 0.0000
	     characters 0.0000
	          story 0.0000
	            and 0.0000
	              , 0.0000
	          first 0.0000
	              a 0.0000
	             by 0.0000
	              - 0.0000

           This   463894   1 (26)
	           This 0.3358
	              I 0.0418
	            cia 0.0369
	             iu 0.0369
	           Tihs 0.0369
	           Thin 0.0369
	           Thia 0.0369
	          Thise 0.0369
	           many 0.0369
	          Thies 0.0369
	              a 0.0369
	         Thisbe 0.0369
	             us 0.0369
	           Tish 0.0369
	            Thi 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	            The 0.0131
	           </S> 0.0059
	              ) 0.0000
	              ] 0.0000
	           this 0.0000
	              , 0.0000
	              . 0.0000
	              / 0.0000

      migrating   463948   2 (29)
	    differences 0.5000
	      migrating 0.2000
	           more 0.1000
	           many 0.1000
	              . 0.0400
	        migrati 0.0369
	      migrarint 0.0369
	    immigrating 0.0369
	    established 0.0369
	      Migrating 0.0369
	      misrating 0.0369
	             to 0.0369
	             us 0.0369
	              I 0.0369
	     emigrating 0.0369
	     Emigrating 0.0369
	          being 0.0369
	            the 0.0059
	      migration 0.0000
	            any 0.0000
	      migratory 0.0000
	             it 0.0000
	              , 0.0000
	            and 0.0000
	              a 0.0000
	           </S> 0.0000
	        changes 0.0000
	         errors 0.0000
	              - 0.0000

        Crested   463988  10 (23)
	      Crestmead 0.0369
	              ) 0.0369
	         Creste 0.0369
	              / 0.0369
	           Navy 0.0369
	        Crestet 0.0369
	        Crester 0.0369
	        Custerd 0.0369
	           </S> 0.0059
	         Center 0.0000
	         rested 0.0000
	            Art 0.0000
	        Crested 0.0000
	      following 0.0000
	          first 0.0000
	        Chester 0.0000
	        treated 0.0000
	          <UNK> 0.0000
	         system 0.0000
	              - 0.0000
	        related 0.0000
	              ( 0.0000
	          Crest 0.0000

        usually   464001   1 (17)
	        Usually 0.0369
	          usual 0.0369
	        usualis 0.0369
	        usually 0.0369
	       usuality 0.0369
	          Wally 0.0369
	         usuali 0.0369
	      unusually 0.0369
	          Bally 0.0369
	           </S> 0.0059
	          Books 0.0000
	              ( 0.0000
	              . 0.0000
	    Calandrella 0.0000
	   Contemporary 0.0000
	              , 0.0000
	              - 0.0000

           eart   464135  14 (31)
	           earn 0.9000
	           eart 0.3000
	          heart 0.3000
	           etra 0.0369
	            arz 0.0369
	           erat 0.0369
	              x 0.0369
	            non 0.0369
	           Long 0.0369
	           self 0.0369
	          earnt 0.0369
	              B 0.0369
	            the 0.0059
	            ear 0.0000
	              - 0.0000
	           lava 0.0000
	           ears 0.0000
	          <UNK> 0.0000
	           each 0.0000
	              a 0.0000
	           sala 0.0000
	           </S> 0.0000
	           eBay 0.0000
	          years 0.0000
	              : 0.0000
	           high 0.0000
	          earth 0.0000
	             re 0.0000
	          their 0.0000
	              , 0.0000
	           this 0.0000

              -   464140   7 (12)
	            the 0.1000
	             of 0.1000
	            cia 0.0369
	             us 0.0369
	             iu 0.0369
	              } 0.0059
	           </S> 0.0000
	            and 0.0000
	              , 0.0000
	             by 0.0000
	              . 0.0000
	              - 0.0000

          Larks   464179   1 (34)
	          Larks 0.8000
	           arks 0.3000
	           Last 0.2000
	         author 0.0369
	       Larkspur 0.0369
	         Lanius 0.0369
	          parva 0.0369
	              a 0.0369
	         Laskar 0.0369
	           site 0.0369
	          Parus 0.0369
	          Larus 0.0369
	         Laarks 0.0369
	              I 0.0369
	           year 0.0369
	       Larksmen 0.0369
	        nations 0.0369
	           than 0.0059
	          Links 0.0000
	              , 0.0000
	          Large 0.0000
	           hand 0.0000
	           Lark 0.0000
	    information 0.0000
	         people 0.0000
	              - 0.0000
	           </S> 0.0000
	          words 0.0000
	           part 0.0000
	      countries 0.0000
	            and 0.0000
	          items 0.0000
	         things 0.0000
	              . 0.0000

          bents   464206   1 (36)
	              " 0.0369
	           </S> 0.0369
	          worms 0.0369
	              x 0.0369
	         besten 0.0369
	          green 0.0369
	         bentsh 0.0369
	              I 0.0369
	             be 0.0369
	         bentos 0.0369
	            and 0.0369
	         leaves 0.0369
	          bento 0.0369
	          benta 0.0369
	          trees 0.0369
	          <UNK> 0.0369
	      therefore 0.0369
	           bent 0.0369
	      workshops 0.0369
	           best 0.0369
	       workflow 0.0369
	       bentshed 0.0369
	           been 0.0369
	              ( 0.0369
	            but 0.0369
	        writing 0.0369
	              y 0.0369
	         benets 0.0369
	              a 0.0369
	          bents 0.0369
	            the 0.0059
	          which 0.0012
	            too 0.0000
	         though 0.0000
	             or 0.0000
	              i 0.0000

           etc.   464213   1 (22)
	            etc 0.8000
	           etc. 0.4900
	        wedgies 0.0369
	              y 0.0369
	      therefore 0.0369
	              0 0.0369
	              , 0.0369
	              x 0.0369
	           Pica 0.0369
	              t 0.0369
	          <UNK> 0.0369
	            the 0.0059
	          which 0.0012
	           eBay 0.0000
	            too 0.0000
	         though 0.0000
	           even 0.0000
	           etch 0.0000
	           each 0.0000
	           tect 0.0000
	              i 0.0000
	             or 0.0000

       Saunders   464245   1 (29)
	       Saunders 1.0000
	      Sunderdas 0.0369
	              I 0.0369
	       Sounders 0.0369
	              A 0.0369
	       Sanderus 0.0369
	         Reader 0.0369
	       saunders 0.0369
	       launders 0.0369
	        Sunders 0.0369
	     Saunderson 0.0369
	    Saundersina 0.0369
	              a 0.0369
	             M. 0.0359
	              , 0.0059
	          Stern 0.0000
	              " 0.0000
	              - 0.0000
	           </S> 0.0000
	        Johnson 0.0000
	          under 0.0000
	           said 0.0000
	          <UNK> 0.0000
	           Dean 0.0000
	             J. 0.0000
	        Sanders 0.0000
	         Server 0.0000
	             A. 0.0000
	              . 0.0000

         says:-   464254   1 (23)
	           says 0.1000
	            Inn 0.0369
	          sayst 0.0369
	          sayso 0.0369
	          Hotel 0.0369
	            WMD 0.0369
	          sayas 0.0369
	          sassy 0.0369
	          aysay 0.0369
	           aysa 0.0369
	              a 0.0369
	         saying 0.0369
	             SA 0.0369
	              I 0.0369
	              , 0.0059
	         County 0.0000
	              A 0.0000
	              . 0.0000
	        Company 0.0000
	              - 0.0000
	            say 0.0000
	              " 0.0000
	           </S> 0.0000

              -   464261   1 (11)
	            the 0.0369
	              . 0.0369
	             J. 0.0369
	         sexual 0.0369
	             of 0.0369
	              - 0.0369
	            and 0.0369
	              , 0.0369
	             us 0.0369
	             A. 0.0369
	           </S> 0.0369

              "   464263   1 (20)
	              " 0.7265
	            and 0.0389
	           with 0.0369
	        selling 0.0369
	          node1 0.0369
	              s 0.0369
	              © 0.0369
	        winning 0.0369
	              - 0.0079
	           </S> 0.0059
	              ) 0.0000
	            cia 0.0000
	             to 0.0000
	              . 0.0000
	            the 0.0000
	             us 0.0000
	             up 0.0000
	          <UNK> 0.0000
	             of 0.0000
	           mail 0.0000

      commenced   464280   1 (29)
	      commenced 0.8000
	           died 0.0369
	    uncommenced 0.0369
	          occur 0.0369
	         begins 0.0369
	           some 0.0369
	          could 0.0369
	      commendem 0.0369
	      commencer 0.0369
	    recommenced 0.0369
	              , 0.0059
	           been 0.0000
	              - 0.0000
	            and 0.0000
	         occurs 0.0000
	            the 0.0000
	           need 0.0000
	             in 0.0000
	              a 0.0000
	      commences 0.0000
	       commence 0.0000
	        comment 0.0000
	      commended 0.0000
	             be 0.0000
	         called 0.0000
	              I 0.0000
	           </S> 0.0000
	              . 0.0000
	           with 0.0000

     depression   464337   2 (24)
	           that 0.2000
	     depression 0.1000
	              % 0.0369
	     depressior 0.0369
	         number 0.0369
	           kind 0.0369
	        details 0.0369
	            all 0.0369
	             us 0.0369
	           part 0.0369
	              - 0.0369
	    depressione 0.0369
	        portion 0.0369
	              I 0.0369
	             as 0.0059
	              a 0.0000
	              , 0.0000
	    information 0.0000
	              . 0.0000
	        service 0.0000
	    depressions 0.0000
	            use 0.0000
	           </S> 0.0000
	            the 0.0000

              -   464375   6 (13)
	             iu 0.0369
	            cia 0.0369
	             us 0.0369
	        edition 0.0369
	              . 0.0059
	             of 0.0000
	             -- 0.0000
	              : 0.0000
	            the 0.0000
	              , 0.0000
	              - 0.0000
	           </S> 0.0000
	            and 0.0000

        herbage   464394   1 (25)
	     herbergage 0.0369
	           part 0.0369
	        herbane 0.0369
	              I 0.0369
	        message 0.0369
	         losses 0.0369
	          herba 0.0369
	              ) 0.0369
	       herbager 0.0369
	       herbages 0.0369
	        herbage 0.0369
	            run 0.0369
	              - 0.0369
	            the 0.0059
	              , 0.0000
	           here 0.0000
	              a 0.0000
	          other 0.0000
	           them 0.0000
	         others 0.0000
	            her 0.0000
	     themselves 0.0000
	              . 0.0000
	             us 0.0000
	           </S> 0.0000

            the   464510   1 (18)
	            thy 0.0369
	           they 0.0369
	           them 0.0369
	           thee 0.0369
	              , 0.0369
	              I 0.0369
	              . 0.0369
	            cia 0.0369
	             iu 0.0369
	            the 0.0369
	            tho 0.0369
	            teh 0.0369
	              a 0.0369
	             us 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000
	              " 0.0000

            diy   464539 inf (26)
	             do 0.3000
	             di 0.1375
	         mainly 0.0369
	           dity 0.0369
	            yid 0.0369
	           yidi 0.0369
	            cia 0.0369
	            Pyi 0.0369
	             iu 0.0369
	          diyne 0.0369
	            dir 0.0369
	          diddy 0.0369
	           diya 0.0369
	           diye 0.0369
	              a 0.0059
	              , 0.0000
	            did 0.0000
	             of 0.0000
	            his 0.0000
	              . 0.0000
	            die 0.0000
	           </S> 0.0000
	            day 0.0000
	           used 0.0000
	             de 0.0000
	            the 0.0000

          grass   464543   1 (21)
	          grasp 0.0369
	              I 0.0369
	           last 0.0369
	             by 0.0369
	          grass 0.0369
	          great 0.0369
	         grassy 0.0369
	         grasso 0.0369
	              a 0.0369
	          grasa 0.0369
	             up 0.0369
	            out 0.0369
	          group 0.0369
	           gras 0.0369
	           </S> 0.0059
	              - 0.0000
	           help 0.0000
	              . 0.0000
	       projects 0.0000
	              , 0.0000
	             to 0.0000

     distinctly   464617   1 (23)
	     distinctly 0.0369
	              a 0.0369
	       distinct 0.0369
	      distincta 0.0369
	       national 0.0369
	        listing 0.0369
	     distinctes 0.0369
	   indistinctly 0.0369
	              I 0.0369
	         design 0.0369
	   undistinctly 0.0369
	      distincts 0.0369
	     districtly 0.0369
	      chequered 0.0369
	           user 0.0369
	              , 0.0059
	           </S> 0.0000
	              - 0.0000
	            mat 0.0000
	          paper 0.0000
	             to 0.0000
	            and 0.0000
	              . 0.0000

        average   464709   1 (17)
	        avegaar 0.0369
	        average 0.0369
	       averager 0.0369
	              , 0.0369
	              a 0.0369
	              I 0.0369
	       averaged 0.0369
	       averages 0.0369
	              . 0.0369
	            and 0.0369
	          avera 0.0369
	              - 0.0369
	           </S> 0.0059
	              } 0.0000
	              " 0.0000
	          <UNK> 0.0000
	              ) 0.0000

   measurements   464717   1 (19)
	         passer 0.0369
	   measurements 0.0369
	   Measurements 0.0369
	 remeasurements 0.0369
	        results 0.0369
	              } 0.0369
	             of 0.0059
	              - 0.0000
	           </S> 0.0000
	              , 0.0000
	    measurement 0.0000
	    performance 0.0000
	       exchange 0.0000
	              a 0.0000
	        student 0.0000
	       customer 0.0000
	          price 0.0000
	             is 0.0000
	              . 0.0000

            '95   464730 inf (19)
	             us 0.4000
	           size 0.0369
	             's 0.0369
	            cia 0.0369
	             iu 0.0369
	              5 0.0369
	             15 0.0369
	              a 0.0369
	          rates 0.0369
	             of 0.0059
	              . 0.0000
	            the 0.0000
	            and 0.0000
	          taken 0.0000
	       obtained 0.0000
	           </S> 0.0000
	              , 0.0000
	           made 0.0000
	              - 0.0000

              "   464737 inf (20)
	              " 0.3167
	              . 0.0472
	          major 0.0369
	           walk 0.0369
	           midi 0.0369
	          Lemon 0.0369
	           repo 0.0369
	            the 0.0059
	             us 0.0000
	              , 0.0000
	              : 0.0000
	             of 0.0000
	            cia 0.0000
	              - 0.0000
	              a 0.0000
	          <UNK> 0.0000
	          other 0.0000
	           this 0.0000
	           </S> 0.0000
	            and 0.0000

             bS   464738 inf (30)
	             by 0.6000
	            PbS 0.4000
	          DbSNP 0.0369
	      Harnessed 0.0369
	            Sbb 0.0369
	             J. 0.0369
	           PbSe 0.0369
	              s 0.0369
	         option 0.0369
	          order 0.0369
	            EbS 0.0369
	            WbS 0.0369
	              - 0.0235
	           </S> 0.0059
	              A 0.0000
	             he 0.0000
	              I 0.0000
	            but 0.0000
	              ( 0.0000
	             us 0.0000
	             be 0.0000
	           said 0.0000
	             br 0.0000
	              , 0.0000
	              . 0.0000
	            she 0.0000
	              ) 0.0000
	              a 0.0000
	          <UNK> 0.0000
	             Sb 0.0000

             in   464741   2 (25)
	              " 0.6000
	             in 0.3500
	             is 0.3000
	             it 0.0369
	             ni 0.0369
	              I 0.0369
	            inn 0.0369
	            cia 0.0369
	              n 0.0369
	             iu 0.0369
	             us 0.0369
	           said 0.0369
	            inc 0.0369
	            int 0.0369
	            iin 0.0369
	           says 0.0369
	           </S> 0.0059
	              c 0.0000
	              ) 0.0000
	          <UNK> 0.0000
	              - 0.0000
	              . 0.0000
	              ` 0.0000
	              a 0.0000
	              , 0.0000

              .   464743   3 (14)
	            St. 0.0369
	            the 0.0059
	             of 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	            and 0.0000
	              - 0.0000
	           your 0.0000
	              . 0.0000
	            cia 0.0000
	           this 0.0000
	             iu 0.0000
	             us 0.0000

     Incubation   464745   1 (25)
	       cubation 0.0369
	     Incubating 0.0369
	     Incubation 0.0369
	     incubation 0.0369
	              a 0.0369
	           case 0.0369
	         region 0.0369
	      Incubator 0.0369
	     Intubation 0.0369
	         United 0.0369
	          world 0.0369
	         public 0.0369
	          cases 0.0369
	           </S> 0.0059
	              ) 0.0000
	              " 0.0000
	              A 0.0000
	           Also 0.0000
	              I 0.0000
	      ChangeLog 0.0000
	              . 0.0000
	             In 0.0000
	              - 0.0000
	              , 0.0000
	        However 0.0000

         wdiich   464760  18 (32)
	        Midwich 0.7000
	           wich 0.2000
	           dich 0.1267
	         dioica 0.0369
	         wairch 0.0369
	        Bowdich 0.0369
	             in 0.0369
	             us 0.0369
	         widish 0.0369
	       windisch 0.0369
	          Riich 0.0369
	          fiich 0.0369
	         adiici 0.0369
	         within 0.0369
	              I 0.0369
	          wdech 0.0369
	            the 0.0059
	           </S> 0.0000
	           that 0.0000
	              , 0.0000
	            all 0.0000
	          weich 0.0000
	            and 0.0000
	           this 0.0000
	          which 0.0000
	            ich 0.0000
	              a 0.0000
	             to 0.0000
	              . 0.0000
	           with 0.0000
	           both 0.0000
	              - 0.0000

            the   464767   1 (17)
	             to 0.0369
	              , 0.0369
	            cia 0.0369
	            thy 0.0369
	           they 0.0369
	            gay 0.0369
	           </S> 0.0369
	           thee 0.0369
	             iu 0.0369
	             us 0.0369
	            tho 0.0369
	            the 0.0369
	             of 0.0369
	              . 0.0369
	              a 0.0369
	            teh 0.0369
	           them 0.0369

        Crested   464811  13 (25)
	           time 0.1000
	      Crestmead 0.0369
	              ) 0.0369
	        Crestet 0.0369
	        Crester 0.0369
	          major 0.0369
	         Creste 0.0369
	              / 0.0369
	              X 0.0369
	        Custerd 0.0369
	           Navy 0.0369
	           </S> 0.0059
	          Crest 0.0000
	         Center 0.0000
	        related 0.0000
	        Chester 0.0000
	              - 0.0000
	          first 0.0000
	         second 0.0000
	         rested 0.0000
	              ( 0.0000
	         system 0.0000
	        Crested 0.0000
	      following 0.0000
	          <UNK> 0.0000

         sandj^   464868   1 (18)
	         sadnja 0.0369
	        sandjan 0.0369
	          sandy 0.0369
	         sandja 0.0369
	           said 0.0369
	       insandja 0.0369
	              I 0.0369
	          sands 0.0369
	           sand 0.0369
	            the 0.0059
	              a 0.0000
	              . 0.0000
	           </S> 0.0000
	              - 0.0000
	           this 0.0000
	           many 0.0000
	              , 0.0000
	            and 0.0000

          roads   464875   1 (19)
	          Board 0.0369
	              , 0.0369
	         rosada 0.0369
	         roades 0.0369
	           real 0.0369
	              . 0.0369
	           area 0.0369
	          roade 0.0369
	              a 0.0369
	          roads 0.0369
	          rufus 0.0369
	           rods 0.0369
	           </S> 0.0369
	           read 0.0369
	          rodas 0.0369
	           road 0.0369
	         Broads 0.0369
	         broads 0.0369
	          round 0.0369

        dusting   464906   1 (24)
	        dusting 0.9000
	        ducting 0.7000
	             my 0.4533
	       pointing 0.0369
	        rustica 0.0369
	         saying 0.0369
	              . 0.0369
	       distingu 0.0369
	            the 0.0059
	           this 0.0000
	       dustings 0.0000
	          their 0.0000
	          using 0.0000
	         Rating 0.0000
	         Austin 0.0000
	         dustin 0.0000
	              a 0.0000
	              - 0.0000
	              , 0.0000
	             us 0.0000
	           life 0.0000
	         during 0.0000
	           </S> 0.0000
	        Justine 0.0000

      rapidit}'   464946   1 (28)
	           beer 0.0369
	              I 0.0369
	       rapidito 0.0369
	          other 0.0369
	       children 0.0369
	           read 0.0369
	         rapidi 0.0369
	        results 0.0369
	        leaping 0.0369
	    information 0.0369
	       rapidity 0.0369
	     rapiditati 0.0369
	      rapiditas 0.0369
	           deal 0.0059
	          deals 0.0000
	           care 0.0000
	              , 0.0000
	           rate 0.0000
	        success 0.0000
	             on 0.0000
	              . 0.0000
	            and 0.0000
	         prices 0.0000
	       addition 0.0000
	              - 0.0000
	           idea 0.0000
	           </S> 0.0000
	              a 0.0000

          glide   464984   2 (26)
	             in 0.1117
	          glide 0.1000
	          gilde 0.0369
	            get 0.0369
	              I 0.0369
	            yet 0.0369
	       afforded 0.0369
	         glider 0.0369
	          glida 0.0369
	          glidu 0.0369
	             is 0.0059
	           will 0.0000
	         before 0.0000
	              , 0.0000
	              - 0.0000
	              . 0.0000
	          Click 0.0000
	            was 0.0000
	         glided 0.0000
	          would 0.0000
	           like 0.0000
	         glides 0.0000
	              a 0.0000
	           </S> 0.0000
	             's 0.0000
	           side 0.0000

          wlien   465006  17 (29)
	          white 1.0000
	         walked 0.5667
	     technician 0.0369
	           look 0.0369
	              I 0.0369
	           wien 0.0369
	          wlink 0.0369
	        ewlieni 0.0369
	         willen 0.0369
	         wielen 0.0369
	          Alien 0.0369
	            bit 0.0369
	           lien 0.0369
	          welin 0.0369
	        walkien 0.0369
	            sex 0.0059
	           will 0.0000
	           cock 0.0000
	           when 0.0000
	              . 0.0000
	           </S> 0.0000
	            cum 0.0000
	              - 0.0000
	         racing 0.0000
	          alien 0.0000
	          while 0.0000
	              , 0.0000
	              a 0.0000
	             of 0.0000

            Its   465051   2 (23)
	             In 0.5538
	            Its 0.3584
	             It 0.0900
	              I 0.0418
	           Itsu 0.0369
	           Itse 0.0369
	            Ist 0.0369
	              a 0.0369
	            Ito 0.0369
	            Ita 0.0369
	             us 0.0369
	            cia 0.0369
	             iu 0.0369
	            its 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ) 0.0000
	              . 0.0000
	              , 0.0000
	              ] 0.0000
	              / 0.0000

           Lark   465107  15 (35)
	           work 0.6000
	          Larks 0.5000
	          Larak 0.0369
	       Anderson 0.0369
	        Tikchik 0.0369
	          Lakar 0.0369
	            Dog 0.0369
	          known 0.0369
	           side 0.0369
	          Mizer 0.0369
	              s 0.0369
	             Ox 0.0369
	              - 0.0079
	           </S> 0.0059
	           lava 0.0000
	              A 0.0000
	              . 0.0000
	             to 0.0000
	            Lar 0.0000
	           make 0.0000
	          based 0.0000
	            arz 0.0000
	              ) 0.0000
	           Lara 0.0000
	              I 0.0000
	           time 0.0000
	            the 0.0000
	            are 0.0000
	           Lars 0.0000
	         Larkin 0.0000
	           Lark 0.0000
	             up 0.0000
	          <UNK> 0.0000
	              a 0.0000
	           year 0.0000

              .   465111   1 (16)
	              . 0.8000
	              : 0.2000
	             .. 0.0369
	              } 0.0369
	              ] 0.0369
	             iu 0.0369
	             us 0.0369
	            cia 0.0369
	           </S> 0.0059
	            and 0.0000
	            ... 0.0000
	            the 0.0000
	             of 0.0000
	              , 0.0000
	              - 0.0000
	          Books 0.0000

     gregarious   465123   1 (26)
	     gregarious 0.9000
	          great 0.0369
	      gregarius 0.0369
	   gregariously 0.0369
	           easy 0.0369
	              I 0.0369
	          about 0.0369
	          clear 0.0369
	     Gregarious 0.0369
	    gregarinous 0.0369
	   ungregarious 0.0369
	       possible 0.0369
	     surprising 0.0369
	      gregarios 0.0369
	           good 0.0369
	             be 0.0059
	           have 0.0000
	      available 0.0000
	              . 0.0000
	            the 0.0000
	              - 0.0000
	              , 0.0000
	              a 0.0000
	             to 0.0000
	           that 0.0000
	           </S> 0.0000

     generall}'   465142  12 (22)
	        general 0.3000
	       generall 0.1000
	           also 0.0768
	              - 0.0369
	              I 0.0369
	     generalled 0.0369
	       generale 0.0369
	       generala 0.0369
	         widely 0.0369
	         easily 0.0369
	              a 0.0059
	           </S> 0.0000
	            the 0.0000
	          often 0.0000
	            all 0.0000
	           used 0.0000
	      generally 0.0000
	         really 0.0000
	          great 0.0000
	              , 0.0000
	            not 0.0000
	              . 0.0000

           seen   465153   1 (22)
	              - 0.0369
	           sene 0.0369
	           been 0.0369
	           seem 0.0369
	           seek 0.0369
	              I 0.0369
	          seene 0.0369
	            see 0.0369
	          seena 0.0369
	           </S> 0.0369
	           seen 0.0369
	              . 0.0369
	              , 0.0369
	          Aedon 0.0369
	           fall 0.0369
	            sen 0.0369
	            sex 0.0369
	            the 0.0369
	          found 0.0369
	              a 0.0369
	             to 0.0369
	           sala 0.0369

            (U-   465166  24 (27)
	             in 0.1021
	           </S> 0.0369
	             UU 0.0369
	             Us 0.0369
	            and 0.0369
	        working 0.0369
	            UUU 0.0369
	            cia 0.0369
	              a 0.0369
	          <UNK> 0.0369
	            BUY 0.0369
	              " 0.0369
	             EU 0.0369
	             AU 0.0369
	             SU 0.0369
	           work 0.0369
	            EUR 0.0369
	             US 0.0369
	            but 0.0369
	              - 0.0369
	              I 0.0369
	            the 0.0059
	          which 0.0012
	             us 0.0000
	             or 0.0000
	              i 0.0000
	             iu 0.0000

             iu   465170   1 (19)
	          pairs 0.0369
	              I 0.0369
	             ui 0.0369
	             iu 0.0369
	             is 0.0369
	            iun 0.0369
	            the 0.0369
	             us 0.0369
	              , 0.0369
	              . 0.0369
	           uiui 0.0369
	            and 0.0369
	              a 0.0369
	            ius 0.0369
	           </S> 0.0369
	             it 0.0369
	              - 0.0369
	            cia 0.0369
	             in 0.0369

          pairs   465173   2 (26)
	              a 0.1000
	           part 0.0369
	          paris 0.0369
	          parts 0.0369
	         paires 0.0369
	          pairs 0.0369
	          parva 0.0369
	          Parus 0.0369
	        repairs 0.0369
	         pairas 0.0369
	           pair 0.0369
	              B 0.0369
	         apairs 0.0369
	           pars 0.0369
	          parsi 0.0369
	          paire 0.0369
	          pairt 0.0369
	          pages 0.0369
	              - 0.0143
	           </S> 0.0059
	          <UNK> 0.0000
	              / 0.0000
	              ) 0.0000
	              , 0.0000
	              . 0.0000
	              s 0.0000

        fauiily   465183  18 (34)
	        private 0.0369
	           find 0.0369
	          guily 0.0369
	          Quily 0.0369
	        fairily 0.0369
	           uily 0.0369
	          minor 0.0369
	            win 0.0369
	      political 0.0369
	          small 0.0369
	        faufils 0.0369
	       kawaiily 0.0369
	        faufila 0.0369
	              i 0.0369
	          third 0.0369
	         faufil 0.0369
	            the 0.0059
	             in 0.0000
	              - 0.0000
	              a 0.0000
	           will 0.0000
	           faul 0.0000
	            for 0.0000
	          other 0.0000
	         family 0.0000
	           </S> 0.0000
	          their 0.0000
	       faultily 0.0000
	          <UNK> 0.0000
	         faulty 0.0000
	           more 0.0000
	              I 0.0000
	              , 0.0000
	              ( 0.0000

        parties   465191   1 (27)
	              - 0.0369
	        partise 0.0369
	       families 0.0369
	           part 0.0369
	              I 0.0369
	           </S> 0.0369
	              . 0.0369
	         points 0.0369
	           more 0.0369
	       partiers 0.0369
	      partieses 0.0369
	             on 0.0369
	             us 0.0369
	        process 0.0369
	        partied 0.0369
	        partiel 0.0369
	       particle 0.0369
	              ) 0.0369
	         prices 0.0369
	              , 0.0369
	         groups 0.0369
	        parties 0.0369
	       partiese 0.0369
	        patries 0.0369
	            the 0.0369
	         partie 0.0369
	              a 0.0369

         liquid   465221   1 (23)
	         liquid 0.2000
	        liquide 0.0369
	          would 0.0369
	              - 0.0369
	        liquids 0.0369
	        liquidi 0.0369
	         liquit 0.0369
	           film 0.0369
	           when 0.0369
	              i 0.0369
	         should 0.0369
	           than 0.0059
	            not 0.0000
	           like 0.0000
	            the 0.0000
	             to 0.0000
	            how 0.0000
	           </S> 0.0000
	              . 0.0000
	              I 0.0000
	       illiquid 0.0000
	              , 0.0000
	              a 0.0000

        uttered   465272  12 (24)
	       Futterer 0.0369
	        utterer 0.0369
	       muttered 0.0369
	        depends 0.0369
	       buttered 0.0369
	      dependent 0.0369
	        utreder 0.0369
	              I 0.0369
	          under 0.0369
	      reuttered 0.0369
	              , 0.0059
	          there 0.0000
	             to 0.0000
	       accepted 0.0000
	              a 0.0000
	              - 0.0000
	           </S> 0.0000
	      available 0.0000
	            not 0.0000
	        uttered 0.0000
	              . 0.0000
	     considered 0.0000
	           used 0.0000
	          based 0.0000

         duriug   465308  16 (29)
	         durmiu 0.0369
	          dugri 0.0369
	          durum 0.0369
	            was 0.0369
	          drugi 0.0369
	         durius 0.0369
	        dirigui 0.0369
	         Turdus 0.0369
	         dubius 0.0369
	           iuri 0.0369
	       Endurium 0.0369
	         durian 0.0369
	          durin 0.0369
	           duri 0.0369
	              , 0.0059
	              a 0.0000
	              . 0.0000
	             in 0.0000
	             is 0.0000
	            did 0.0000
	              I 0.0000
	          using 0.0000
	           with 0.0000
	           have 0.0000
	           </S> 0.0000
	            has 0.0000
	         during 0.0000
	            the 0.0000
	              - 0.0000

              a   465315   1 (18)
	              . 0.0369
	             at 0.0369
	              , 0.0369
	            the 0.0369
	             La 0.0369
	             us 0.0369
	             la 0.0369
	             to 0.0369
	              a 0.0369
	           lava 0.0369
	            cia 0.0369
	              - 0.0369
	           </S> 0.0369
	             aa 0.0369
	             up 0.0369
	             of 0.0369
	             as 0.0369
	            aaa 0.0369

            the   465364   1 (20)
	             in 0.0369
	            thy 0.0369
	            tho 0.0369
	           thee 0.0369
	              , 0.0369
	            teh 0.0369
	             iu 0.0369
	              a 0.0369
	            and 0.0369
	             us 0.0369
	              . 0.0369
	           they 0.0369
	             to 0.0369
	           them 0.0369
	            cia 0.0369
	            the 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	              " 0.0000

      syllabled   465380   1 (23)
	          cited 0.0369
	        defined 0.0369
	       regarded 0.0369
	    unsyllabled 0.0369
	      syllabled 0.0369
	      described 0.0369
	       selected 0.0369
	     syllabised 0.0369
	    disyllables 0.0369
	              a 0.0059
	      syllables 0.0000
	           </S> 0.0000
	       syllable 0.0000
	              . 0.0000
	              , 0.0000
	           used 0.0000
	      available 0.0000
	         called 0.0000
	            the 0.0000
	       syllabus 0.0000
	       slightly 0.0000
	        treated 0.0000
	              - 0.0000

              '   465393   5 (17)
	           they 0.4283
	            and 0.1000
	             '0 0.0369
	              a 0.0059
	            cia 0.0000
	             us 0.0000
	              , 0.0000
	            the 0.0000
	          <UNK> 0.0000
	              - 0.0000
	           </S> 0.0000
	             iu 0.0000
	              : 0.0000
	           well 0.0000
	              ' 0.0000
	             an 0.0000
	             of 0.0000

              '   465403   1 (16)
	              ' 1.0000
	             us 0.0369
	            cia 0.0369
	             iu 0.0369
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	            the 0.0000
	              , 0.0000
	              / 0.0000
	              ] 0.0000
	             of 0.0000
	            and 0.0000
	              . 0.0000
	             '' 0.0000
	              ) 0.0000

          horse   465559   1 (21)
	          horse 0.0500
	              - 0.0369
	          horst 0.0369
	          horsy 0.0369
	           hors 0.0369
	          corax 0.0369
	          torax 0.0369
	         corone 0.0369
	       clicking 0.0369
	              I 0.0369
	          hores 0.0369
	         horsey 0.0369
	            the 0.0059
	            how 0.0000
	           home 0.0000
	              , 0.0000
	              . 0.0000
	         horses 0.0000
	           here 0.0000
	              a 0.0000
	           </S> 0.0000

          Dixon   465619   1 (20)
	         Dixons 0.0369
	         Dixona 0.0369
	         Dioxin 0.0369
	          Dixon 0.0369
	          minor 0.0369
	          Aedon 0.0369
	          Diego 0.0369
	              a 0.0369
	           Down 0.0369
	          Dixom 0.0369
	           </S> 0.0059
	              ] 0.0000
	              I 0.0000
	              " 0.0000
	              - 0.0000
	            Did 0.0000
	              , 0.0000
	              ) 0.0000
	              . 0.0000
	              A 0.0000

            sa3   465625 inf (25)
	            saw 0.5000
	            see 0.4000
	             us 0.0369
	              a 0.0369
	            cia 0.0369
	            sas 0.0369
	           sala 0.0369
	              n 0.0369
	             sa 0.0369
	            saa 0.0369
	              , 0.0059
	          Hawke 0.0000
	            sat 0.0000
	           Hill 0.0000
	             so 0.0000
	           </S> 0.0000
	          Place 0.0000
	          <UNK> 0.0000
	           Bank 0.0000
	              - 0.0000
	              ) 0.0000
	            say 0.0000
	              . 0.0000
	           said 0.0000
	           Page 0.0000

             's   465628   1 (19)
	             Is 0.0369
	             as 0.0369
	              I 0.0369
	             's 0.0369
	              : 0.0369
	             is 0.0369
	            sss 0.0369
	             iu 0.0369
	            out 0.0369
	             ss 0.0369
	             us 0.0369
	             J. 0.0369
	           said 0.0369
	              a 0.0369
	             so 0.0369
	              - 0.0059
	              , 0.0000
	              . 0.0000
	           </S> 0.0000

      xA-lgeria   465639  13 (29)
	        Algerie 1.0000
	           what 0.0369
	        Aegeria 0.0369
	           were 0.0369
	              I 0.0369
	       Algieria 0.0369
	       Algjeria 0.0369
	             us 0.0369
	          there 0.0369
	        Alxeria 0.0369
	              t 0.0369
	            the 0.0059
	           your 0.0000
	           this 0.0000
	          which 0.0000
	           fact 0.0000
	         Algeri 0.0000
	              a 0.0000
	              - 0.0000
	              , 0.0000
	           that 0.0000
	          their 0.0000
	       Algerian 0.0000
	              . 0.0000
	           </S> 0.0000
	         Aleria 0.0000
	        Algeria 0.0000
	        algeria 0.0000
	             it 0.0000

             he   465649   1 (20)
	              , 0.0369
	            cia 0.0369
	             he 0.0369
	            hee 0.0369
	            heh 0.0369
	              . 0.0369
	             to 0.0369
	             eh 0.0369
	              a 0.0369
	            her 0.0369
	             iu 0.0369
	           </S> 0.0369
	             hi 0.0369
	            hey 0.0369
	             hr 0.0369
	             of 0.0369
	            the 0.0369
	              - 0.0369
	             us 0.0369
	              I 0.0369

           soar   465674  11 (28)
	          soare 0.0369
	           soap 0.0369
	           soak 0.0369
	           sala 0.0369
	          corax 0.0369
	            arz 0.0369
	           sora 0.0369
	            soa 0.0369
	              i 0.0369
	            flu 0.0059
	              - 0.0000
	           some 0.0000
	              , 0.0000
	           goes 0.0000
	             in 0.0000
	         flying 0.0000
	           soar 0.0000
	           said 0.0000
	          soars 0.0000
	           </S> 0.0000
	              a 0.0000
	              . 0.0000
	             on 0.0000
	             is 0.0000
	            the 0.0000
	              I 0.0000
	             so 0.0000
	          today 0.0000

           iuto   465679   1 (25)
	           into 0.2000
	            ito 0.0369
	             iu 0.0369
	          iutos 0.0369
	           iuto 0.0369
	          Sitta 0.0369
	             us 0.0369
	           uito 0.0369
	           iute 0.0369
	           iuta 0.0369
	           itou 0.0369
	            its 0.0369
	          aiuto 0.0369
	          iusto 0.0369
	              . 0.0059
	              - 0.0000
	              I 0.0000
	             in 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	          above 0.0000
	             to 0.0000
	        through 0.0000
	             on 0.0000

       warbling   465740   2 (20)
	              - 0.7000
	      warblings 0.0369
	       warbling 0.0369
	       wabbling 0.0369
	        warling 0.0369
	     warblingly 0.0369
	       marbling 0.0369
	         within 0.0369
	              . 0.0059
	              I 0.0000
	             to 0.0000
	              , 0.0000
	            and 0.0000
	            but 0.0000
	           </S> 0.0000
	             of 0.0000
	            was 0.0000
	          being 0.0000
	              a 0.0000
	              i 0.0000

       Theobald   465793   1 (23)
	       Theobold 0.0369
	            but 0.0369
	              a 0.0369
	            The 0.0369
	         people 0.0369
	            New 0.0369
	       Theobald 0.0369
	              " 0.0369
	            get 0.0369
	            and 0.0369
	         should 0.0369
	      Theobaldo 0.0369
	      Theobalda 0.0369
	          <UNK> 0.0369
	              I 0.0369
	      Theobalds 0.0369
	              ( 0.0369
	              - 0.0369
	           </S> 0.0369
	            the 0.0059
	          which 0.0000
	              i 0.0000
	             or 0.0000

      describes   465802   4 (21)
	             de 0.8000
	             of 0.2000
	              S 0.2000
	              a 0.0369
	         United 0.0369
	      describer 0.0369
	     describest 0.0369
	      describes 0.0369
	        because 0.0369
	        Zealand 0.0369
	      described 0.0369
	     describers 0.0369
	       describe 0.0369
	              , 0.0059
	            and 0.0000
	              . 0.0000
	            the 0.0000
	           </S> 0.0000
	             's 0.0000
	              I 0.0000
	              - 0.0000

 ovato-pyriform   465875 inf (25)
	       straight 0.7000
	    consecutive 0.1609
	              ( 0.1333
	             in 0.1000
	          major 0.0468
	              I 0.0369
	    information 0.0369
	    ovopyriform 0.0369
	       Category 0.0369
	              a 0.0369
	             at 0.0369
	       favorite 0.0369
	           over 0.0369
	  ovatopyriform 0.0369
	              C 0.0369
	              - 0.0059
	           </S> 0.0000
	             of 0.0000
	            for 0.0000
	             or 0.0000
	              . 0.0000
	          years 0.0000
	             to 0.0000
	         others 0.0000
	              , 0.0000

              3   465890 inf (12)
	              , 0.0369
	              - 0.0369
	              . 0.0369
	            and 0.0369
	             us 0.0369
	            the 0.0369
	             of 0.0369
	           year 0.0369
	           </S> 0.0369
	          wheel 0.0369
	            cia 0.0369
	             iu 0.0369

              -   465891   1 (17)
	              - 0.9000
	        shelves 0.0369
	         Column 0.0369
	            --- 0.0369
	           </S> 0.0059
	            and 0.0000
	              , 0.0000
	              ) 0.0000
	            the 0.0000
	              : 0.0000
	              . 0.0000
	             iu 0.0000
	            cia 0.0000
	             -- 0.0000
	             of 0.0000
	             us 0.0000
	              4 0.0000

       ellowish   465892 inf (22)
	      Yellowish 0.8000
	      yellowish 0.1000
	      mellowish 0.0369
	              , 0.0369
	          which 0.0369
	              s 0.0369
	           list 0.0369
	           with 0.0369
	              - 0.0079
	           </S> 0.0059
	          <UNK> 0.0000
	              4 0.0000
	              . 0.0000
	             of 0.0000
	            the 0.0000
	             rw 0.0000
	             in 0.0000
	              a 0.0000
	              3 0.0000
	              I 0.0000
	              A 0.0000
	             to 0.0000

              -   465900   1 (14)
	              . 0.0369
	             us 0.0369
	             -- 0.0369
	              - 0.0369
	            the 0.0369
	            --- 0.0369
	            and 0.0369
	           with 0.0369
	             iu 0.0369
	          round 0.0369
	              , 0.0369
	           </S> 0.0369
	            cia 0.0369
	             of 0.0369

      uuiformly   465912   2 (18)
	          until 0.8000
	    uniformally 0.0369
	    ununiformly 0.0369
	      Uniformly 0.0369
	        suiform 0.0369
	      uniformly 0.0369
	       uniforms 0.0369
	     muriformly 0.0369
	              , 0.0059
	              I 0.0000
	              . 0.0000
	              - 0.0000
	              a 0.0000
	            are 0.0000
	           </S> 0.0000
	            and 0.0000
	            for 0.0000
	         before 0.0000

       freckled   465922   1 (21)
	              - 0.0369
	           laid 0.0369
	     unfreckled 0.0369
	         filled 0.0369
	              . 0.0369
	        frecked 0.0369
	        spotted 0.0369
	       freckles 0.0369
	        freckle 0.0369
	              , 0.0369
	       freckled 0.0369
	              a 0.0369
	            and 0.0369
	              I 0.0369
	         served 0.0369
	           </S> 0.0369
	        checked 0.0369
	        Tracked 0.0369
	            the 0.0369
	       speckled 0.0369
	      fleckered 0.0369

         Jerdon   465971   7 (27)
	         Verdon 0.3000
	         Berdon 0.0369
	       Jerudong 0.0369
	           John 0.0369
	              - 0.0235
	           </S> 0.0059
	              , 0.0000
	             he 0.0000
	         Jordon 0.0000
	            and 0.0000
	              . 0.0000
	           Jero 0.0000
	         Jerson 0.0000
	             It 0.0000
	          <UNK> 0.0000
	              a 0.0000
	        version 0.0000
	         person 0.0000
	         Jerdon 0.0000
	         Jorden 0.0000
	              ) 0.0000
	            She 0.0000
	              A 0.0000
	             He 0.0000
	              I 0.0000
	          Aedon 0.0000
	             We 0.0000

        Chendul   465994 inf (25)
	            new 0.0369
	           real 0.0369
	       Phendula 0.0369
	       Chundale 0.0369
	        Chendur 0.0369
	         should 0.0369
	         Chendu 0.0369
	              s 0.0369
	         Chelun 0.0369
	        Chendol 0.0369
	           they 0.0369
	           when 0.0369
	              - 0.0235
	           </S> 0.0059
	              A 0.0000
	         msgstr 0.0000
	             of 0.0000
	              , 0.0000
	          <UNK> 0.0000
	         Chenda 0.0000
	              a 0.0000
	              " 0.0000
	            and 0.0000
	              I 0.0000
	              . 0.0000

        chiefly   466031   1 (22)
	            and 0.0369
	         chifle 0.0369
	          chiel 0.0369
	           </S> 0.0369
	          mites 0.0369
	        thiefly 0.0369
	        chiefly 0.0369
	          chief 0.0369
	         chifel 0.0369
	              " 0.0369
	          could 0.0369
	          <UNK> 0.0369
	              a 0.0369
	         chiefs 0.0369
	              I 0.0369
	           this 0.0186
	            the 0.0059
	          which 0.0012
	             or 0.0000
	              i 0.0000
	           such 0.0000
	      including 0.0000

          grass   466039   1 (25)
	          grass 0.5000
	              I 0.0369
	              - 0.0369
	         grassy 0.0369
	           self 0.0369
	          great 0.0369
	          grasa 0.0369
	           gras 0.0369
	           last 0.0369
	            non 0.0369
	         grasso 0.0369
	          grasp 0.0369
	             in 0.0059
	            and 0.0000
	             UK 0.0000
	              . 0.0000
	            has 0.0000
	            was 0.0000
	             of 0.0000
	           </S> 0.0000
	          major 0.0000
	             to 0.0000
	              a 0.0000
	              , 0.0000
	            the 0.0000

             II   466137  17 (23)
	             In 0.5538
	             It 0.0900
	             If 0.0570
	              I 0.0418
	            IIS 0.0369
	             iu 0.0369
	            cia 0.0369
	             us 0.0369
	            III 0.0369
	              a 0.0369
	           IIII 0.0369
	              B 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              . 0.0000
	              , 0.0000
	             II 0.0000
	              / 0.0000
	              ) 0.0000
	              ] 0.0000
	      ChangeLog 0.0000

            nor   466210   4 (22)
	            art 0.6000
	             no 0.2000
	             of 0.2000
	            nor 0.0369
	           norr 0.0369
	           noor 0.0369
	             us 0.0369
	            arz 0.0369
	           norm 0.0369
	           nord 0.0369
	           noro 0.0369
	          minor 0.0369
	              a 0.0369
	           </S> 0.0059
	              , 0.0000
	          <UNK> 0.0000
	             as 0.0000
	              - 0.0000
	           home 0.0000
	              . 0.0000
	            not 0.0000
	            now 0.0000

             iu   466214   9 (22)
	             ui 0.0369
	            ius 0.0369
	            iun 0.0369
	             iu 0.0369
	           uiui 0.0369
	            cia 0.0369
	              . 0.0369
	            the 0.0059
	           does 0.0000
	             to 0.0000
	             in 0.0000
	              - 0.0000
	            are 0.0000
	              , 0.0000
	             is 0.0000
	             it 0.0000
	              I 0.0000
	            any 0.0000
	             of 0.0000
	             us 0.0000
	              a 0.0000
	           </S> 0.0000

      Himalayas   466221   1 (22)
	      Himalayas 0.6000
	          times 0.0369
	        quality 0.0369
	          young 0.0369
	           </S> 0.0059
	     Himalayans 0.0000
	        company 0.0000
	           time 0.0000
	      Himilayas 0.0000
	       himalaya 0.0000
	          <UNK> 0.0000
	           same 0.0000
	              - 0.0000
	      Hamadryas 0.0000
	            way 0.0000
	              " 0.0000
	      following 0.0000
	              ' 0.0000
	          first 0.0000
	       Himalaya 0.0000
	      Himalayan 0.0000
	          world 0.0000

             iu   466236  10 (21)
	            and 0.6000
	            cia 0.0369
	            iun 0.0369
	            ius 0.0369
	           uiui 0.0369
	              . 0.0369
	             iu 0.0369
	             ui 0.0369
	            the 0.0059
	              , 0.0000
	             it 0.0000
	           </S> 0.0000
	              I 0.0000
	             is 0.0000
	              a 0.0000
	            any 0.0000
	              - 0.0000
	            are 0.0000
	             us 0.0000
	           does 0.0000
	             in 0.0000

             It   466270   3 (18)
	             In 0.5538
	            Its 0.3584
	             It 0.0900
	             If 0.0570
	              I 0.0418
	             iu 0.0369
	            cia 0.0369
	             us 0.0369
	              a 0.0369
	            Ito 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ] 0.0000
	              ) 0.0000
	              . 0.0000
	              , 0.0000

         plaius   466296  29 (39)
	       agelaius 0.0369
	         plaids 0.0369
	         plaits 0.0369
	         Lanius 0.0369
	        pilaris 0.0369
	          Parus 0.0369
	          plius 0.0369
	           plai 0.0369
	              I 0.0369
	           plan 0.0369
	         plausi 0.0369
	      developer 0.0369
	          plais 0.0369
	              a 0.0369
	         closed 0.0369
	           laiu 0.0369
	         pilaus 0.0369
	         pulais 0.0369
	           door 0.0369
	       products 0.0369
	            the 0.0369
	        planius 0.0369
	         planus 0.0369
	         plaque 0.0369
	          plaus 0.0369
	           file 0.0369
	       Agelaius 0.0369
	        beaches 0.0059
	          beach 0.0000
	           play 0.0000
	              , 0.0000
	           </S> 0.0000
	          plain 0.0000
	         plains 0.0000
	          place 0.0000
	           loam 0.0000
	              . 0.0000
	              - 0.0000
	            com 0.0000

       ploughed   466307  14 (25)
	              , 0.1000
	     ploughhead 0.0369
	          would 0.0369
	              I 0.0369
	       pleughed 0.0369
	         should 0.0369
	              . 0.0369
	        private 0.0369
	     unploughed 0.0369
	       plougher 0.0369
	            and 0.0369
	     reploughed 0.0369
	            the 0.0059
	            any 0.0000
	       ploughed 0.0000
	              e 0.0000
	             by 0.0000
	          other 0.0000
	             in 0.0000
	           </S> 0.0000
	              - 0.0000
	            zip 0.0000
	       sloughed 0.0000
	              a 0.0000
	             on 0.0000

             It   466361   3 (20)
	             In 0.5538
	            Its 0.3584
	             It 0.0900
	             If 0.0570
	              I 0.0418
	            Ito 0.0369
	             iu 0.0369
	            cia 0.0369
	             us 0.0369
	              a 0.0369
	       Although 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ) 0.0000
	              , 0.0000
	              / 0.0000
	              ] 0.0000
	              . 0.0000

             A.   466412 inf (26)
	             As 0.7000
	              . 0.0369
	              a 0.0059
	           well 0.0000
	            Add 0.0000
	            cia 0.0000
	             in 0.0000
	            AAA 0.0000
	            All 0.0000
	              $ 0.0000
	       possible 0.0000
	             iu 0.0000
	             he 0.0000
	             At 0.0000
	           </S> 0.0000
	              i 0.0000
	              I 0.0000
	             to 0.0000
	             AM 0.0000
	             it 0.0000
	             AA 0.0000
	            And 0.0000
	              - 0.0000
	            the 0.0000
	             us 0.0000
	              , 0.0000

     guli^iila*   466415 inf (32)
	             .. 0.7000
	     hydrophila 0.0369
	      pratensis 0.0369
	             as 0.0369
	        million 0.0369
	              a 0.0369
	      Similarly 0.0369
	          guide 0.0369
	              % 0.0369
	          would 0.0369
	           make 0.0369
	             be 0.0369
	           will 0.0369
	         advice 0.0369
	          limit 0.0369
	      fumigatus 0.0369
	       nidulans 0.0369
	         Philip 0.0369
	        billion 0.0369
	        percent 0.0369
	           like 0.0369
	      eliminate 0.0369
	           </S> 0.0059
	              I 0.0000
	              ( 0.0000
	              - 0.0000
	    Publication 0.0000
	          <UNK> 0.0000
	              A 0.0000
	              , 0.0000
	              . 0.0000
	              * 0.0000

            nor   466426   1 (21)
	           </S> 0.0369
	          minor 0.0369
	              . 0.0369
	              - 0.0369
	              A 0.0369
	             it 0.0369
	             us 0.0369
	             no 0.0369
	           noor 0.0369
	            arz 0.0369
	          there 0.0369
	            not 0.0369
	           norm 0.0369
	            now 0.0369
	           nord 0.0369
	           noro 0.0369
	            nor 0.0369
	              I 0.0369
	           norr 0.0369
	              , 0.0369
	              a 0.0369

           flue   466445 inf (28)
	           much 0.0536
	           flue 0.0369
	           alba 0.0369
	           flug 0.0369
	           fule 0.0369
	          flues 0.0369
	          flued 0.0369
	           that 0.0059
	            flu 0.0000
	              a 0.0000
	             iu 0.0000
	           flux 0.0000
	            bad 0.0000
	             us 0.0000
	              , 0.0000
	           from 0.0000
	            far 0.0000
	           well 0.0000
	           free 0.0000
	             on 0.0000
	              i 0.0000
	              I 0.0000
	            for 0.0000
	              . 0.0000
	              - 0.0000
	           fuel 0.0000
	           </S> 0.0000
	           long 0.0000

             In   466451   1 (19)
	             In 0.5538
	             It 0.0900
	             If 0.0570
	              I 0.0418
	            Inn 0.0369
	             iu 0.0369
	            cia 0.0369
	             us 0.0369
	            Inc 0.0369
	              a 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              . 0.0000
	              ] 0.0000
	              , 0.0000
	          <UNK> 0.0000
	              ) 0.0000

             iu   466507  11 (23)
	            ius 0.0369
	            iun 0.0369
	            cia 0.0369
	          other 0.0369
	             iu 0.0369
	           uiui 0.0369
	        actions 0.0369
	              c 0.0369
	             ui 0.0369
	              , 0.0059
	              - 0.0000
	            the 0.0000
	             us 0.0000
	              . 0.0000
	             in 0.0000
	             it 0.0000
	           even 0.0000
	              I 0.0000
	              i 0.0000
	           </S> 0.0000
	              a 0.0000
	           just 0.0000
	             is 0.0000

   considerable   466510   1 (22)
	             us 0.0369
	         people 0.0369
	              I 0.0369
	         called 0.0369
	  considerables 0.0369
	 inconsiderable 0.0369
	  considerabile 0.0369
	         really 0.0369
	   considerable 0.0369
	   considerably 0.0369
	              i 0.0369
	           </S> 0.0059
	              . 0.0000
	              s 0.0000
	             iu 0.0000
	             to 0.0000
	            the 0.0000
	              , 0.0000
	              a 0.0000
	              - 0.0000
	          <UNK> 0.0000
	              ) 0.0000

         flocks   466523   1 (22)
	         flocks 0.7000
	          flocs 0.0369
	              ) 0.0369
	          fleck 0.0369
	         flores 0.0369
	        flockas 0.0369
	         flocky 0.0369
	         talent 0.0369
	        Pflocks 0.0369
	         amount 0.0059
	           </S> 0.0000
	           flow 0.0000
	          focus 0.0000
	           time 0.0000
	              . 0.0000
	         extent 0.0000
	      influence 0.0000
	          flock 0.0000
	         effort 0.0000
	              , 0.0000
	         number 0.0000
	          floor 0.0000

         Jerdon   466584   2 (24)
	         person 0.8000
	       Jerudong 0.0369
	           John 0.0369
	         Jerson 0.0369
	         Jorden 0.0369
	         anyone 0.0369
	         Jerdon 0.0369
	          Aedon 0.0369
	           Jero 0.0369
	         Verdon 0.0369
	         Berdon 0.0369
	            you 0.0059
	         Jordon 0.0000
	             it 0.0000
	             is 0.0000
	              i 0.0000
	              I 0.0000
	             he 0.0000
	              a 0.0000
	              - 0.0000
	           </S> 0.0000
	              . 0.0000
	              , 0.0000
	         period 0.0000

        Chendul   466603 inf (24)
	         should 0.0369
	         Chendu 0.0369
	         Chelun 0.0369
	       daughter 0.0369
	        Chendol 0.0369
	           when 0.0369
	    unsubscribe 0.0369
	           they 0.0369
	       Chundale 0.0369
	             us 0.0369
	       Phendula 0.0369
	        Chendur 0.0369
	              s 0.0369
	              - 0.0235
	           </S> 0.0059
	              a 0.0000
	          <UNK> 0.0000
	              . 0.0000
	              I 0.0000
	             of 0.0000
	         Chenda 0.0000
	              , 0.0000
	              A 0.0000
	            and 0.0000

        Seebohm   466695   1 (26)
	              - 0.0369
	              : 0.0369
	              A 0.0369
	           Sebo 0.0369
	          Seebe 0.0369
	              ) 0.0369
	        Sexbomb 0.0369
	        Seebohm 0.0369
	       Seeboden 0.0369
	           Seeb 0.0369
	         Seeham 0.0369
	       Beerbohm 0.0369
	         Sembol 0.0369
	        Seebach 0.0369
	            the 0.0059
	           </S> 0.0000
	             we 0.0000
	              a 0.0000
	         people 0.0000
	              I 0.0000
	           both 0.0000
	           some 0.0000
	             it 0.0000
	             he 0.0000
	          <UNK> 0.0000
	              , 0.0000

         states   466703   1 (29)
	              a 0.0369
	         stated 0.0369
	         tatest 0.0369
	           know 0.0369
	          think 0.0369
	        statens 0.0369
	        estates 0.0369
	         sattes 0.0369
	          Pales 0.0369
	         staten 0.0369
	         estate 0.0369
	              I 0.0369
	        staters 0.0369
	         States 0.0369
	         states 0.0369
	          sites 0.0369
	        Estates 0.0369
	        believe 0.0369
	          stats 0.0369
	          state 0.0369
	            are 0.0369
	              , 0.0059
	       Rowntree 0.0000
	              . 0.0000
	              N 0.0000
	            was 0.0000
	             is 0.0000
	              - 0.0000
	           </S> 0.0000

        Bunting   466778   1 (30)
	        Bunting 0.6945
	       Buntings 0.2742
	       Buntingi 0.0369
	             us 0.0369
	           Corn 0.0369
	           list 0.0369
	           sink 0.0369
	           blog 0.0369
	         source 0.0369
	              s 0.0369
	              - 0.0079
	           </S> 0.0059
	        Buntine 0.0000
	             up 0.0000
	             to 0.0000
	              . 0.0000
	            the 0.0000
	           time 0.0000
	              ) 0.0000
	          <UNK> 0.0000
	         Rating 0.0000
	              a 0.0000
	             in 0.0000
	        Busting 0.0000
	         during 0.0000
	           year 0.0000
	        Butting 0.0000
	              I 0.0000
	          using 0.0000
	              A 0.0000

          caged   466820   3 (30)
	            can 1.0000
	           page 0.2000
	          cages 0.0369
	          cadge 0.0369
	              I 0.0369
	          caged 0.0369
	         coaged 0.0369
	          Pales 0.0369
	           cage 0.0369
	        Uncaged 0.0369
	        uncaged 0.0369
	           caed 0.0369
	           Page 0.0369
	         cadged 0.0369
	          cager 0.0369
	          asked 0.0059
	           that 0.0000
	           aged 0.0000
	           used 0.0000
	              , 0.0000
	             to 0.0000
	           seen 0.0000
	            the 0.0000
	      mentioned 0.0000
	              a 0.0000
	           </S> 0.0000
	              - 0.0000
	          Pages 0.0000
	          found 0.0000
	              . 0.0000

            the   466940   1 (18)
	              . 0.0369
	           they 0.0369
	            thy 0.0369
	              a 0.0369
	            teh 0.0369
	            tho 0.0369
	            cia 0.0369
	             iu 0.0369
	           them 0.0369
	            the 0.0369
	              , 0.0369
	           thee 0.0369
	             us 0.0369
	              I 0.0369
	           </S> 0.0059
	              " 0.0000
	              } 0.0000
	              ) 0.0000

         custom   466944   8 (28)
	          human 0.0369
	            the 0.0369
	           well 0.0369
	          trick 0.0369
	         custou 0.0369
	           </S> 0.0059
	           same 0.0037
	          world 0.0000
	          whole 0.0000
	         costum 0.0000
	           must 0.0000
	              ' 0.0000
	      following 0.0000
	          first 0.0000
	         custos 0.0000
	          custo 0.0000
	              - 0.0000
	            way 0.0000
	         custom 0.0000
	         cursor 0.0000
	              " 0.0000
	         system 0.0000
	       customer 0.0000
	           just 0.0000
	         cotton 0.0000
	        customs 0.0000
	          <UNK> 0.0000
	           time 0.0000

           Herr   467233   1 (23)
	           Herr 0.7000
	      Exercised 0.0369
	           etc. 0.0369
	              - 0.0235
	           </S> 0.0059
	            The 0.0000
	           Help 0.0000
	           were 0.0000
	              " 0.0000
	           Hero 0.0000
	              A 0.0000
	          Herre 0.0000
	              I 0.0000
	              , 0.0000
	           Here 0.0000
	           here 0.0000
	              . 0.0000
	            Her 0.0000
	          <UNK> 0.0000
	          Herrn 0.0000
	              a 0.0000
	              ) 0.0000
	            arz 0.0000

         Rausch   467238   2 (28)
	           </S> 0.1000
	         Rauchs 0.0369
	         Ruscha 0.0369
	         Raunch 0.0369
	              I 0.0369
	         Rausch 0.0369
	          March 0.0369
	          Bible 0.0369
	         Reusch 0.0369
	         Bausch 0.0369
	              A 0.0369
	         Tausch 0.0369
	       Rauschen 0.0369
	          Rasch 0.0369
	          cause 0.0369
	       Rauscher 0.0369
	              a 0.0369
	          Rauch 0.0369
	          which 0.0369
	           such 0.0369
	             he 0.0369
	              , 0.0059
	              " 0.0000
	          <UNK> 0.0000
	             M. 0.0000
	            der 0.0000
	              . 0.0000
	              - 0.0000

         speaks   467245   1 (20)
	       speakers 0.0369
	         speake 0.0369
	             C. 0.0369
	          Ringe 0.0369
	              a 0.0369
	         speaks 0.0369
	          speak 0.0369
	         spinas 0.0369
	          spent 0.0369
	         speako 0.0369
	             J. 0.0369
	          peaks 0.0369
	          speed 0.0369
	              , 0.0059
	              . 0.0000
	              - 0.0000
	              " 0.0000
	           </S> 0.0000
	              C 0.0000
	              I 0.0000

       songster   467287   1 (28)
	       Sangster 0.0369
	          bonus 0.0369
	     songstress 0.0369
	       songster 0.0369
	        thought 0.0369
	       singster 0.0369
	         system 0.0369
	       negative 0.0369
	       Songster 0.0369
	         matter 0.0369
	              I 0.0369
	      songsters 0.0369
	        measure 0.0369
	              , 0.0059
	           site 0.0000
	       sinister 0.0000
	             to 0.0000
	            one 0.0000
	          state 0.0000
	              - 0.0000
	              ) 0.0000
	           idea 0.0000
	         artist 0.0000
	             of 0.0000
	              . 0.0000
	           work 0.0000
	        posters 0.0000
	           </S> 0.0000

           wild   467338  17 (28)
	           well 0.1000
	          wilde 0.0369
	        singles 0.0369
	          wolfi 0.0369
	            cia 0.0369
	           sala 0.0369
	      materials 0.0369
	          great 0.0369
	          wildi 0.0369
	            wil 0.0369
	          wilds 0.0369
	          dwild 0.0369
	              a 0.0369
	           wilt 0.0369
	              I 0.0369
	            sex 0.0059
	              , 0.0000
	       material 0.0000
	           will 0.0000
	           wild 0.0000
	           with 0.0000
	           size 0.0000
	              - 0.0000
	           </S> 0.0000
	         dating 0.0000
	              . 0.0000
	            fun 0.0000
	     population 0.0000

         singer   467392   3 (27)
	          under 1.0000
	          since 0.1000
	        singers 0.0369
	        singera 0.0369
	         single 0.0369
	         singre 0.0369
	            day 0.0369
	          minor 0.0369
	             us 0.0369
	         singer 0.0369
	           year 0.0369
	         singed 0.0369
	         singel 0.0369
	          years 0.0369
	          singe 0.0369
	              . 0.0059
	              , 0.0000
	            and 0.0000
	            the 0.0000
	              I 0.0000
	              - 0.0000
	              ) 0.0000
	              a 0.0000
	           site 0.0000
	              " 0.0000
	             to 0.0000
	           </S> 0.0000

        Perhaps   467400   1 (19)
	        Perhaps 1.0000
	          Perps 0.0369
	      afterhaps 0.0369
	           that 0.0369
	         Perham 0.0369
	              a 0.0369
	        perhaps 0.0369
	       Periphas 0.0369
	           </S> 0.0059
	              - 0.0000
	              . 0.0000
	              " 0.0000
	              A 0.0000
	             '' 0.0000
	              ] 0.0000
	         Please 0.0000
	              ) 0.0000
	              , 0.0000
	              I 0.0000

           Herr   467408  11 (24)
	           </S> 1.0000
	           were 0.2611
	           Help 0.0369
	          Herrn 0.0369
	          Herre 0.0369
	           Here 0.0369
	           Hero 0.0369
	            arz 0.0369
	              ) 0.0369
	            the 0.0059
	             it 0.0000
	           here 0.0000
	           most 0.0000
	              i 0.0000
	              , 0.0000
	          <UNK> 0.0000
	           more 0.0000
	           Herr 0.0000
	              - 0.0000
	            you 0.0000
	              a 0.0000
	              I 0.0000
	            Her 0.0000
	              . 0.0000

         Rausch   467413   2 (33)
	           </S> 0.1000
	       Rauscher 0.0369
	    importantly 0.0369
	            are 0.0369
	           such 0.0369
	         Rausch 0.0369
	          Rasch 0.0369
	         Ruscha 0.0369
	          cause 0.0369
	         Raunch 0.0369
	      important 0.0369
	         Reusch 0.0369
	   surprisingly 0.0369
	              a 0.0369
	          Rauch 0.0369
	       Rauschen 0.0369
	         Rauchs 0.0369
	           most 0.0369
	              I 0.0369
	         should 0.0369
	              A 0.0369
	          March 0.0369
	         Bausch 0.0369
	         Tausch 0.0369
	              , 0.0059
	            der 0.0000
	           Gott 0.0000
	          <UNK> 0.0000
	             M. 0.0000
	              . 0.0000
	             is 0.0000
	              - 0.0000
	             HW 0.0000

           like   467421  16 (29)
	          llike 0.1000
	            der 0.0369
	            and 0.0369
	     Harrisburg 0.0369
	            cia 0.0369
	           Pica 0.0369
	          <UNK> 0.0369
	          James 0.0369
	              " 0.0369
	              I 0.0369
	           </S> 0.0369
	              a 0.0369
	          Sturm 0.0369
	            the 0.0059
	          which 0.0012
	           liek 0.0000
	           site 0.0000
	           time 0.0000
	          while 0.0000
	            you 0.0000
	          likee 0.0000
	          liked 0.0000
	           lika 0.0000
	           liks 0.0000
	             or 0.0000
	           like 0.0000
	          likes 0.0000
	        without 0.0000
	           lava 0.0000

        Seebohm   467426   2 (29)
	          about 0.5000
	          Seebe 0.0369
	       Beerbohm 0.0369
	        Seebohm 0.0369
	         Sembol 0.0369
	     simplicity 0.0369
	           Sebo 0.0369
	        Sexbomb 0.0369
	       Seeboden 0.0369
	        Seebach 0.0369
	         before 0.0369
	         Seeham 0.0369
	           Seeb 0.0369
	           need 0.0369
	             to 0.0059
	            and 0.0000
	              . 0.0000
	             me 0.0000
	              , 0.0000
	           that 0.0000
	              a 0.0000
	           this 0.0000
	              i 0.0000
	             it 0.0000
	              I 0.0000
	             us 0.0000
	           </S> 0.0000
	            the 0.0000
	              - 0.0000

        Bunting   467481   1 (30)
	        Bunting 0.6945
	       Buntings 0.2742
	         shirts 0.0369
	       Buntingi 0.0369
	              s 0.0369
	         profit 0.0369
	         Revere 0.0369
	          hyped 0.0369
	            fed 0.0369
	              - 0.0079
	           </S> 0.0059
	          <UNK> 0.0000
	              a 0.0000
	             to 0.0000
	        Butting 0.0000
	              ) 0.0000
	           Free 0.0000
	           year 0.0000
	              I 0.0000
	              A 0.0000
	            the 0.0000
	         Rating 0.0000
	              . 0.0000
	           mail 0.0000
	          using 0.0000
	             up 0.0000
	        Busting 0.0000
	           time 0.0000
	        Buntine 0.0000
	         during 0.0000

            aud   467490   1 (31)
	              x 0.0369
	              | 0.0369
	              I 0.0369
	            adu 0.0369
	            aud 0.0369
	            arz 0.0369
	           alba 0.0369
	              ( 0.0369
	             at 0.0369
	            auf 0.0369
	            aux 0.0369
	             au 0.0369
	           audi 0.0369
	            but 0.0369
	           aude 0.0369
	           auda 0.0369
	              - 0.0369
	          <UNK> 0.0369
	            are 0.0369
	            and 0.0369
	           </S> 0.0369
	            the 0.0059
	          which 0.0012
	           then 0.0000
	             so 0.0000
	          while 0.0000
	            yet 0.0000
	           that 0.0000
	             or 0.0000
	             us 0.0000
	              i 0.0000

  considerabl}'   467560   1 (23)
	   considerably 0.7000
	     domesticus 0.0369
	              I 0.0369
	  considerabile 0.0369
	     somniferum 0.0369
	           such 0.0369
	  considerables 0.0369
	          class 0.0369
	             us 0.0369
	           well 0.0369
	   considerable 0.0369
	         called 0.0369
	      different 0.0369
	           with 0.0059
	            the 0.0000
	              . 0.0000
	              - 0.0000
	             by 0.0000
	           </S> 0.0000
	              a 0.0000
	           from 0.0000
	             in 0.0000
	              , 0.0000

             as   467574   1 (20)
	             an 0.0369
	             sa 0.0369
	              - 0.0369
	            ask 0.0369
	              , 0.0369
	              a 0.0369
	             as 0.0369
	             on 0.0369
	           </S> 0.0369
	        package 0.0369
	            arz 0.0369
	             iu 0.0369
	            ass 0.0369
	             at 0.0369
	            the 0.0369
	            aas 0.0369
	             us 0.0369
	             in 0.0369
	          their 0.0369
	              . 0.0369

           This   467622   1 (25)
	           This 0.3358
	              I 0.0418
	           Thin 0.0369
	           Thia 0.0369
	            Thi 0.0369
	         Thisbe 0.0369
	            cia 0.0369
	             iu 0.0369
	              a 0.0369
	           Tish 0.0369
	          Thies 0.0369
	          Thise 0.0369
	             us 0.0369
	           Tihs 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	            The 0.0131
	           </S> 0.0059
	           this 0.0000
	              ] 0.0000
	              . 0.0000
	              ) 0.0000
	            the 0.0000
	              , 0.0000

           tlie   467641  16 (30)
	            lie 0.5000
	             in 0.4167
	            tie 0.4000
	           thie 0.3000
	          talie 0.0369
	            cia 0.0369
	            tle 0.0369
	         outlie 0.0369
	          tliet 0.0369
	           Clie 0.0369
	           teil 0.0369
	         tlieta 0.0369
	         untrue 0.0369
	           teie 0.0369
	              a 0.0059
	            the 0.0000
	           used 0.0000
	           true 0.0000
	              - 0.0000
	           </S> 0.0000
	           take 0.0000
	           tile 0.0000
	           able 0.0000
	             iu 0.0000
	           alba 0.0000
	           time 0.0000
	              , 0.0000
	           trie 0.0000
	           this 0.0000
	              . 0.0000

     PyauviotKs   467656 inf (29)
	      questions 0.5000
	          Quote 0.3000
	        various 0.0500
	         visual 0.0369
	              I 0.0369
	            not 0.0369
	        service 0.0369
	              x 0.0369
	      virtually 0.0369
	        support 0.0369
	       previous 0.0369
	             is 0.0369
	            the 0.0059
	             an 0.0000
	              . 0.0000
	        respect 0.0000
	           </S> 0.0000
	           your 0.0000
	              - 0.0000
	              a 0.0000
	             us 0.0000
	           some 0.0000
	         regard 0.0000
	            its 0.0000
	              , 0.0000
	            you 0.0000
	             at 0.0000
	           both 0.0000
	            all 0.0000

       Icucotis   467667 inf (25)
	              - 0.0369
	              a 0.0369
	           this 0.0369
	       leucotic 0.0369
	        cunctis 0.0369
	          cutis 0.0369
	        Racotis 0.0369
	          until 0.0369
	             in 0.0369
	          cotis 0.0369
	         Scotis 0.0369
	       Isocotin 0.0369
	          Ictis 0.0369
	             to 0.0369
	        support 0.0369
	              . 0.0369
	         scuoti 0.0369
	        Eucomis 0.0369
	       crocotis 0.0369
	        Iscotin 0.0369
	              , 0.0369
	              I 0.0369
	             of 0.0369
	        Iacobis 0.0369
	           </S> 0.0369

            the   467676   1 (17)
	             to 0.0369
	           thee 0.0369
	             of 0.0369
	            thy 0.0369
	            tho 0.0369
	            the 0.0369
	            cia 0.0369
	             iu 0.0369
	            her 0.0369
	             us 0.0369
	             he 0.0369
	             be 0.0369
	            teh 0.0369
	            The 0.0369
	           they 0.0369
	           them 0.0369
	            and 0.0369

      specimens   467688   2 (21)
	           game 0.1000
	        service 0.0369
	         number 0.0369
	        members 0.0369
	       majority 0.0369
	       invasion 0.0369
	           time 0.0369
	           side 0.0369
	      specimine 0.0369
	      specimeno 0.0369
	              a 0.0369
	             of 0.0369
	              I 0.0369
	       specimen 0.0369
	      specimens 0.0369
	           Gulf 0.0059
	           </S> 0.0000
	              . 0.0000
	              - 0.0000
	              , 0.0000
	              ( 0.0000

         wliich   467701  12 (28)
	        Zwilich 0.2000
	           wich 0.1000
	          Riich 0.0369
	          lwich 0.0369
	              u 0.0369
	         Iliich 0.0369
	        Fliicht 0.0369
	         liicht 0.0369
	          fiich 0.0369
	      walisisch 0.0369
	            the 0.0059
	              a 0.0000
	              , 0.0000
	           them 0.0000
	           </S> 0.0000
	          Click 0.0000
	          their 0.0000
	           lich 0.0000
	             us 0.0000
	            you 0.0000
	              - 0.0000
	         Eliica 0.0000
	          click 0.0000
	           this 0.0000
	              : 0.0000
	         Ulrich 0.0000
	          which 0.0000
	          <UNK> 0.0000

           have   467708   1 (25)
	          haven 0.0369
	              I 0.0369
	              a 0.0369
	             in 0.0369
	           lava 0.0369
	            hav 0.0369
	           hard 0.0369
	            and 0.0369
	              . 0.0369
	          haves 0.0369
	       requires 0.0369
	              - 0.0369
	           Baya 0.0369
	           have 0.0369
	          haave 0.0369
	            had 0.0369
	           hava 0.0369
	           havn 0.0369
	          heave 0.0369
	           sala 0.0369
	            the 0.0059
	            has 0.0000
	           </S> 0.0000
	             is 0.0000
	              , 0.0000

       variable   467720   1 (23)
	       variable 0.4000
	           time 0.0369
	       variabla 0.0369
	          value 0.0369
	      variabler 0.0369
	       variably 0.0369
	       variabel 0.0369
	          range 0.0369
	        version 0.0369
	              . 0.0059
	      selection 0.0000
	              , 0.0000
	           </S> 0.0000
	            job 0.0000
	            art 0.0000
	             to 0.0000
	              a 0.0000
	            not 0.0000
	      variables 0.0000
	             of 0.0000
	      available 0.0000
	              I 0.0000
	              - 0.0000

         liquid   467729  13 (20)
	              - 0.5000
	         listed 0.1000
	        liquids 0.0369
	        liquide 0.0369
	           like 0.0369
	        liquidi 0.0369
	       illiquid 0.0369
	              i 0.0369
	         living 0.0369
	              I 0.0369
	         liquit 0.0369
	              . 0.0059
	             in 0.0000
	         liquid 0.0000
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	             is 0.0000
	            for 0.0000
	             of 0.0000

           song   467736  13 (26)
	           some 0.7000
	           sons 0.0369
	           sony 0.0369
	           sala 0.0369
	              x 0.0369
	           sogn 0.0369
	          songy 0.0369
	              X 0.0369
	            son 0.0369
	              s 0.0369
	              a 0.0369
	              , 0.0059
	          phase 0.0000
	           form 0.0000
	             so 0.0000
	              . 0.0000
	           </S> 0.0000
	          <UNK> 0.0000
	       nitrogen 0.0000
	            one 0.0000
	              - 0.0000
	          waste 0.0000
	           song 0.0000
	          songs 0.0000
	            set 0.0000
	          water 0.0000

           N.W.   467780 inf (26)
	           NEWT 0.9000
	           NEWS 0.1000
	              x 0.0369
	             us 0.0369
	       southern 0.0369
	           NWWW 0.0369
	          which 0.0297
	            the 0.0059
	          South 0.0000
	           this 0.0000
	            New 0.0000
	              a 0.0000
	            NEW 0.0000
	           News 0.0000
	           your 0.0000
	            NWN 0.0000
	           </S> 0.0000
	              - 0.0000
	          these 0.0000
	              . 0.0000
	            NNW 0.0000
	           NPWS 0.0000
	            NOW 0.0000
	             No 0.0000
	              , 0.0000
	             NW 0.0000

          India   467785   1 (25)
	         Indian 0.0369
	         Inndia 0.0369
	          Media 0.0369
	           Info 0.0369
	          India 0.0369
	              a 0.0369
	              , 0.0369
	              . 0.0369
	           book 0.0369
	          Munia 0.0369
	          Loxia 0.0369
	             of 0.0369
	          Indio 0.0369
	           they 0.0369
	          Indie 0.0369
	            cia 0.0369
	          Index 0.0369
	           that 0.0369
	           area 0.0369
	           Indi 0.0369
	              - 0.0369
	         Indias 0.0369
	           site 0.0369
	           </S> 0.0059
	              : 0.0000

        Judging   467814   2 (19)
	              I 0.0418
	        judging 0.0369
	        funding 0.0369
	        Jugiong 0.0369
	              a 0.0369
	        Judging 0.0369
	        running 0.0369
	        Jugging 0.0369
	        nudging 0.0369
	         during 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              , 0.0000
	             '' 0.0000
	              . 0.0000
	              ] 0.0000
	              ) 0.0000

            b}^   467822   7 (18)
	             br 0.0369
	             bb 0.0369
	             iu 0.0369
	            cia 0.0369
	              } 0.0369
	              n 0.0369
	             by 0.0059
	           </S> 0.0000
	             us 0.0000
	           from 0.0000
	              . 0.0000
	             be 0.0000
	          <UNK> 0.0000
	              ) 0.0000
	              a 0.0000
	              - 0.0000
	            but 0.0000
	              , 0.0000

         Jerdou   467826   1 (27)
	         Judges 0.0369
	           </S> 0.0369
	         Jersey 0.0369
	         herdou 0.0369
	         Jerdon 0.0369
	          cerdo 0.0369
	          today 0.0369
	          Jerud 0.0369
	              J 0.0369
	        Jeddore 0.0369
	          Aedon 0.0369
	         Jordan 0.0369
	          Jerzu 0.0369
	          Jerry 0.0369
	             it 0.0369
	              A 0.0369
	              - 0.0369
	         Jerrod 0.0369
	            the 0.0369
	           what 0.0369
	              a 0.0369
	         Jordon 0.0369
	              . 0.0369
	           Jero 0.0369
	           Jeru 0.0369
	        Ferdous 0.0369
	              , 0.0369

             's   467832 inf (13)
	             so 0.0369
	             is 0.0369
	             ss 0.0369
	            sss 0.0369
	           ssss 0.0369
	            the 0.0369
	             iu 0.0369
	            cia 0.0369
	             of 0.0369
	             to 0.0369
	             us 0.0369
	             as 0.0369
	            and 0.0369

          India   467864   1 (27)
	          India 0.6000
	              x 0.0369
	          Munia 0.0369
	         Inndia 0.0369
	            the 0.0059
	              , 0.0000
	           them 0.0000
	          Index 0.0000
	          Media 0.0000
	           Info 0.0000
	              : 0.0000
	          <UNK> 0.0000
	           Indi 0.0000
	             us 0.0000
	          their 0.0000
	          Indie 0.0000
	          Indio 0.0000
	           what 0.0000
	            cia 0.0000
	         Indias 0.0000
	          which 0.0000
	           </S> 0.0000
	          Loxia 0.0000
	              - 0.0000
	         Indian 0.0000
	              a 0.0000
	           this 0.0000

       Tientsin   467913   8 (21)
	       Trentini 0.0369
	       Tientsen 0.0369
	         person 0.0369
	        Tibetan 0.0369
	      Tsientsin 0.0369
	        entsinn 0.0369
	            the 0.0059
	           more 0.0000
	              ( 0.0000
	              , 0.0000
	            any 0.0000
	              a 0.0000
	          <UNK> 0.0000
	              e 0.0000
	          visit 0.0000
	        contact 0.0000
	              - 0.0000
	             in 0.0000
	             to 0.0000
	       Tientsin 0.0000
	           </S> 0.0000

           Lark   467922   1 (27)
	           work 0.0369
	          Larak 0.0369
	              I 0.0369
	            Lar 0.0369
	           part 0.0369
	          Lakar 0.0369
	            arz 0.0369
	           sala 0.0369
	         losses 0.0369
	           Lara 0.0369
	           Lark 0.0369
	         Larkin 0.0369
	           Lars 0.0369
	           lava 0.0369
	           make 0.0369
	          Larks 0.0369
	              a 0.0369
	             10 0.0369
	              , 0.0059
	             to 0.0000
	              U 0.0000
	           </S> 0.0000
	              " 0.0000
	            are 0.0000
	              - 0.0000
	              ) 0.0000
	              . 0.0000

       scolding   467977   1 (23)
	       scolding 0.9000
	        working 0.2000
	            and 0.1737
	      scoldings 0.0369
	     scoldingly 0.0369
	             us 0.0369
	             my 0.0369
	        content 0.0369
	    information 0.0369
	        Golding 0.0369
	              I 0.0369
	             of 0.0369
	       scalding 0.0369
	              , 0.0059
	              - 0.0000
	           side 0.0000
	      criticism 0.0000
	      realities 0.0000
	              . 0.0000
	              a 0.0000
	            the 0.0000
	           </S> 0.0000
	          words 0.0000

             My   468056   1 (22)
	             My 0.5980
	              I 0.0418
	             us 0.0369
	              a 0.0369
	             iu 0.0369
	            Pyi 0.0369
	             Me 0.0369
	            MyM 0.0369
	            Mya 0.0369
	            Myc 0.0369
	             MD 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              . 0.0000
	             by 0.0000
	             my 0.0000
	          <UNK> 0.0000
	              , 0.0000
	              ] 0.0000
	              ) 0.0000

  aviculturists   468069   1 (26)
	  aviculturists 0.5000
	           them 0.0896
	          <UNK> 0.0369
	   Aviculturist 0.0369
	   aviculturist 0.0369
	         anyone 0.0369
	          first 0.0369
	   avicultrices 0.0369
	              " 0.0369
	       students 0.0369
	              u 0.0369
	           </S> 0.0369
	              I 0.0369
	            the 0.0059
	           this 0.0000
	 viticulturists 0.0000
	             us 0.0000
	            him 0.0000
	           help 0.0000
	            you 0.0000
	 agriculturists 0.0000
	             be 0.0000
	            get 0.0000
	        include 0.0000
	              a 0.0000
	          these 0.0000

          would   468083   1 (23)
	        changes 0.0369
	              - 0.0369
	          would 0.0369
	           woul 0.0369
	          world 0.0369
	             is 0.0369
	         wouled 0.0369
	          wouls 0.0369
	           them 0.0369
	              a 0.0369
	            the 0.0369
	         Twould 0.0369
	          wolfi 0.0369
	             us 0.0369
	         woulda 0.0369
	              I 0.0369
	          could 0.0369
	             it 0.0369
	              , 0.0059
	           </S> 0.0000
	              . 0.0000
	            who 0.0000
	            and 0.0000

         Rausch   468123  22 (35)
	         Bausch 0.9000
	          Rasch 0.6000
	        Clinton 0.5000
	       Rauscher 0.4000
	           such 0.4000
	         Reusch 0.1000
	         Ruscha 0.0634
	          offer 0.0369
	          major 0.0369
	              . 0.0369
	              a 0.0369
	          cause 0.0369
	              - 0.0369
	              C 0.0369
	              A 0.0369
	      Blackwell 0.0369
	       Rauschen 0.0369
	         Rauchs 0.0369
	         Raunch 0.0369
	         Tausch 0.0369
	       Chairman 0.0059
	            and 0.0000
	          Smith 0.0000
	             M. 0.0000
	           </S> 0.0000
	        Speaker 0.0000
	         Rausch 0.0000
	              , 0.0000
	           Bush 0.0000
	      President 0.0000
	             J. 0.0000
	          March 0.0000
	          <UNK> 0.0000
	          Rauch 0.0000
	        Lincoln 0.0000

             's   468129   9 (15)
	             as 0.6000
	              ' 0.3000
	             so 0.0369
	             A. 0.0369
	             J. 0.0369
	             us 0.0369
	             ss 0.0369
	              , 0.0059
	              - 0.0000
	              C 0.0000
	             is 0.0000
	              I 0.0000
	              . 0.0000
	           </S> 0.0000
	             's 0.0000

            but   468152   1 (25)
	              . 0.0369
	             by 0.0369
	            xxx 0.0369
	            bus 0.0369
	            tub 0.0369
	             iu 0.0369
	            cia 0.0369
	            yet 0.0369
	        binding 0.0369
	            buy 0.0369
	           buts 0.0369
	              I 0.0369
	             bu 0.0369
	             us 0.0369
	            but 0.0369
	           butt 0.0369
	              - 0.0369
	              a 0.0369
	             be 0.0369
	              x 0.0369
	              , 0.0369
	             of 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000

          the}'   468160   1 (19)
	           they 0.2950
	          thete 0.0369
	              . 0.0369
	          theet 0.0369
	            you 0.0059
	           </S> 0.0000
	              - 0.0000
	          their 0.0000
	             we 0.0000
	            the 0.0000
	              i 0.0000
	              ( 0.0000
	           them 0.0000
	              I 0.0000
	            and 0.0000
	              a 0.0000
	          there 0.0000
	           thee 0.0000
	              , 0.0000

         desire   468166   1 (22)
	           wish 0.0369
	         design 0.0369
	              - 0.0369
	             is 0.0369
	        desires 0.0369
	              , 0.0369
	         desire 0.0369
	              a 0.0369
	            are 0.0369
	           were 0.0369
	         desirs 0.0369
	           have 0.0369
	         desert 0.0369
	           </S> 0.0369
	        desired 0.0369
	           deer 0.0369
	         Design 0.0369
	           want 0.0369
	         desira 0.0369
	              . 0.0369
	         desier 0.0369
	           does 0.0369

        Crested   468185  13 (29)
	         rested 0.2625
	         policy 0.0369
	         Creste 0.0369
	       products 0.0369
	          peace 0.0369
	              . 0.0369
	        Crestet 0.0369
	        Crester 0.0369
	         things 0.0369
	        Custerd 0.0369
	           </S> 0.0059
	           same 0.0037
	        crested 0.0000
	           site 0.0000
	         Center 0.0000
	          Crest 0.0000
	           best 0.0000
	          world 0.0000
	              - 0.0000
	          <UNK> 0.0000
	      following 0.0000
	      Crestmead 0.0000
	        Chester 0.0000
	              " 0.0000
	         United 0.0000
	          first 0.0000
	         system 0.0000
	          whole 0.0000
	        Crested 0.0000

         import   468199  20 (31)
	        importa 1.0000
	          impor 0.5000
	       withdraw 0.0369
	    Calandrella 0.0369
	              " 0.0369
	        importi 0.0369
	  Melanocorypha 0.0369
	             CO 0.0369
	            DIA 0.0369
	              I 0.0369
	       Colorado 0.0369
	              a 0.0369
	              x 0.0369
	          <UNK> 0.0369
	              ( 0.0369
	       Galerida 0.0369
	           </S> 0.0369
	            the 0.0059
	          which 0.0012
	        support 0.0000
	             or 0.0000
	        imports 0.0000
	         impart 0.0000
	           more 0.0000
	         import 0.0000
	           then 0.0000
	           that 0.0000
	            who 0.0000
	            its 0.0000
	             so 0.0000
	        importo 0.0000

           Pere   468260 inf (27)
	          Perez 0.1000
	            Dr. 0.0369
	              : 0.0369
	         legend 0.0369
	          <UNK> 0.0369
	              ( 0.0369
	           </S> 0.0369
	         Perere 0.0369
	            the 0.0059
	           Peru 0.0000
	           Peer 0.0000
	          Parus 0.0000
	             be 0.0000
	          Peres 0.0000
	           Page 0.0000
	          Pales 0.0000
	           here 0.0000
	           Perl 0.0000
	           Pica 0.0000
	            Per 0.0000
	              a 0.0000
	          their 0.0000
	           Pere 0.0000
	            get 0.0000
	            his 0.0000
	           were 0.0000
	           Here 0.0000

         (P.Z.S   468271 inf (27)
	            the 0.1000
	              a 0.1000
	          <UNK> 0.0369
	             's 0.0369
	           IPZS 0.0369
	           WPZS 0.0369
	             S. 0.0369
	              , 0.0369
	         Niland 0.0369
	           </S> 0.0369
	             A. 0.0369
	      Letterman 0.0369
	              . 0.0369
	             P. 0.0369
	           Park 0.0369
	             J. 0.0369
	          Perry 0.0369
	         Turley 0.0369
	       Eckstein 0.0369
	          Bowie 0.0369
	              - 0.0369
	              A 0.0369
	            and 0.0059
	             W. 0.0000
	        Thoreau 0.0000
	           said 0.0000
	              T 0.0000

              .   468277   1 (14)
	           Deer 0.0369
	              . 0.0369
	            ... 0.0369
	             us 0.0369
	           deer 0.0369
	             of 0.0369
	           </S> 0.0369
	            cia 0.0369
	             iu 0.0369
	              , 0.0369
	              ( 0.0369
	            and 0.0369
	            the 0.0369
	              - 0.0369

            187   468279 inf (20)
	              ( 0.0910
	              I 0.0418
	            100 0.0369
	             us 0.0369
	            cia 0.0369
	             iu 0.0369
	             80 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	             of 0.0000
	              ] 0.0000
	          <UNK> 0.0000
	              , 0.0000
	            the 0.0000
	            and 0.0000
	              . 0.0000
	              / 0.0000
	              ) 0.0000

             In   468349   1 (19)
	             In 0.5538
	             It 0.0900
	             If 0.0570
	              I 0.0418
	            Inc 0.0369
	             us 0.0369
	             iu 0.0369
	            cia 0.0369
	              a 0.0369
	            Inn 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	          <UNK> 0.0000
	              ] 0.0000
	              ) 0.0000
	              , 0.0000
	              . 0.0000

         Jerdon   468382   1 (27)
	         Jerdon 1.0000
	         Jordon 0.6000
	         person 0.1000
	       equation 0.0369
	              : 0.0369
	        GeneLoc 0.0369
	              ( 0.0369
	      paragraph 0.0369
	         Jerson 0.0369
	              F 0.0369
	          <UNK> 0.0369
	         Berdon 0.0369
	           </S> 0.0369
	           John 0.0369
	              N 0.0369
	          Aedon 0.0369
	            the 0.0059
	              a 0.0000
	           Jero 0.0000
	          their 0.0000
	         Verdon 0.0000
	        version 0.0000
	             us 0.0000
	             be 0.0000
	            get 0.0000
	       Jerudong 0.0000
	         Jorden 0.0000

            Cat   468394   3 (29)
	            Can 0.7000
	              I 0.0418
	            Cat 0.0369
	            cia 0.0369
	            arz 0.0369
	            was 0.0369
	             us 0.0369
	            Cta 0.0369
	           Catt 0.0369
	              i 0.0369
	           Cats 0.0369
	           Cato 0.0369
	            Fig 0.0369
	             Ca 0.0369
	            Cor 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	          <UNK> 0.0000
	              , 0.0000
	             at 0.0000
	            Car 0.0000
	              ] 0.0000
	              . 0.0000
	              / 0.0000
	              ) 0.0000
	            can 0.0000
	             II 0.0000

          Birds   468399   2 (27)
	              I 0.0418
	        Birdsdo 0.0369
	              a 0.0369
	          Birds 0.0369
	           Bird 0.0369
	         Bairds 0.0369
	          Parus 0.0369
	         Turdus 0.0369
	         Birads 0.0369
	          Board 0.0369
	              s 0.0369
	          Birdy 0.0369
	         Birdos 0.0369
	         VBirds 0.0369
	          Birdo 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	          <UNK> 0.0000
	              , 0.0000
	              ) 0.0000
	              / 0.0000
	          first 0.0000
	          First 0.0000
	              ] 0.0000
	              . 0.0000

             E.   468406 inf (28)
	             in 0.1021
	             EE 0.0369
	     Amphibians 0.0369
	           Cats 0.0369
	            EEE 0.0369
	            cia 0.0369
	              " 0.0369
	             EU 0.0369
	             Ed 0.0369
	              A 0.0369
	              I 0.0369
	       Juvenile 0.0369
	           </S> 0.0369
	            and 0.0369
	              ( 0.0369
	           Fish 0.0369
	            The 0.0369
	              a 0.0369
	             El 0.0369
	          <UNK> 0.0369
	            the 0.0059
	          which 0.0012
	            see 0.0000
	             or 0.0000
	             of 0.0000
	             to 0.0000
	             iu 0.0000
	             us 0.0000

            Ind   468409   2 (28)
	            cia 0.8000
	            Ind 0.2000
	             It 0.1000
	             iu 0.0369
	           Indo 0.0369
	           Innd 0.0369
	              I 0.0369
	           IInd 0.0369
	     literature 0.0369
	              a 0.0369
	           Indy 0.0369
	            Inc 0.0369
	            Inn 0.0369
	           Indd 0.0369
	             us 0.0369
	              , 0.0059
	              . 0.0000
	             In 0.0000
	          <UNK> 0.0000
	              & 0.0000
	              A 0.0000
	           coli 0.0000
	            and 0.0000
	             ed 0.0000
	           </S> 0.0000
	              - 0.0000
	            the 0.0000
	            Lee 0.0000

              .   468412   7 (17)
	             of 0.3000
	             us 0.1000
	             .. 0.0369
	             A. 0.0369
	             J. 0.0369
	           </S> 0.0059
	              . 0.0000
	      Knowledge 0.0000
	         Hotels 0.0000
	            the 0.0000
	            Med 0.0000
	            Est 0.0000
	              - 0.0000
	            and 0.0000
	          Ocean 0.0000
	            ... 0.0000
	              , 0.0000

           Comp   468414   2 (23)
	              I 0.0418
	           home 0.0369
	              N 0.0369
	           Comm 0.0369
	           Comp 0.0369
	          comix 0.0369
	           some 0.0369
	            Com 0.0369
	          Comps 0.0369
	          Compa 0.0369
	          Compo 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	           Home 0.0000
	          <UNK> 0.0000
	              . 0.0000
	              / 0.0000
	              ] 0.0000
	              , 0.0000
	              ) 0.0000
	           Come 0.0000

             II   468426  18 (23)
	             In 0.5538
	             It 0.0900
	             If 0.0570
	              I 0.0418
	            IIS 0.0369
	             iu 0.0369
	            cia 0.0369
	             us 0.0369
	            III 0.0369
	              a 0.0369
	          othon 0.0369
	           IIII 0.0369
	              B 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	      ChangeLog 0.0000
	              ) 0.0000
	             II 0.0000
	              ] 0.0000
	              , 0.0000
	              . 0.0000

   grasshoppers   468474   5 (29)
	        depends 0.9000
	            and 0.6000
	              , 0.3000
	          major 0.3000
	              - 0.0369
	           time 0.0369
	 grasshopperish 0.0369
	       culpable 0.0369
	   grasshoppers 0.0369
	              I 0.0369
	        admired 0.0369
	           know 0.0369
	         should 0.0369
	          there 0.0369
	    Grasshopper 0.0369
	          pages 0.0369
	    grasshopper 0.0369
	   Grasshoppers 0.0369
	         people 0.0369
	        himself 0.0369
	             in 0.0059
	             to 0.0000
	              a 0.0000
	      concerned 0.0000
	             of 0.0000
	              . 0.0000
	        because 0.0000
	            the 0.0000
	           </S> 0.0000

        Seebohm   468574   1 (28)
	        Seebohm 0.9000
	           both 0.2000
	              . 0.0472
	              C 0.0369
	            non 0.0369
	          Seebe 0.0369
	       Seeboden 0.0369
	              A 0.0369
	         Sembol 0.0369
	             us 0.0369
	         Seeham 0.0369
	         saying 0.0369
	        Sexbomb 0.0369
	        members 0.0369
	            the 0.0059
	              e 0.0000
	           Sebo 0.0000
	              a 0.0000
	          <UNK> 0.0000
	              - 0.0000
	           Seeb 0.0000
	       Beerbohm 0.0000
	              , 0.0000
	           </S> 0.0000
	            Mr. 0.0000
	              : 0.0000
	        Seebach 0.0000
	           John 0.0000

              -   468583   7 (13)
	         person 0.0369
	            the 0.0369
	             iu 0.0369
	             us 0.0369
	            cia 0.0369
	              , 0.0059
	              : 0.0000
	       Rowntree 0.0000
	           </S> 0.0000
	              . 0.0000
	            and 0.0000
	             of 0.0000
	              - 0.0000

              "   468585   1 (20)
	              " 0.7265
	            and 0.0389
	             19 0.0369
	           with 0.0369
	        winning 0.0369
	              s 0.0369
	          party 0.0369
	              - 0.0079
	           </S> 0.0059
	             up 0.0000
	              ) 0.0000
	            cia 0.0000
	             of 0.0000
	           time 0.0000
	            the 0.0000
	          <UNK> 0.0000
	              . 0.0000
	             us 0.0000
	             to 0.0000
	           mail 0.0000

             In   468831   1 (22)
	             In 0.5538
	             It 0.0900
	             If 0.0570
	              I 0.0418
	            Inn 0.0369
	            Inc 0.0369
	             iu 0.0369
	            cia 0.0369
	              a 0.0369
	             us 0.0369
	           find 0.0369
	              A 0.0328
	             to 0.0265
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	          <UNK> 0.0000
	            the 0.0000
	              . 0.0000
	              ] 0.0000
	              ) 0.0000
	              , 0.0000

        insects   468902   1 (26)
	        insects 0.8000
	       insectos 0.0369
	              I 0.0369
	              - 0.0369
	        insecta 0.0369
	            its 0.0369
	       insectes 0.0369
	           true 0.0369
	        insecti 0.0369
	        insecte 0.0369
	            and 0.0369
	             be 0.0059
	            the 0.0000
	       inspects 0.0000
	              , 0.0000
	       possible 0.0000
	             in 0.0000
	              a 0.0000
	        include 0.0000
	          <UNK> 0.0000
	           said 0.0000
	         insect 0.0000
	           </S> 0.0000
	              . 0.0000
	           that 0.0000
	           used 0.0000

      mealworms   468911   1 (29)
	      mealworms 0.4000
	       mealworm 0.2000
	          <UNK> 0.0369
	              a 0.0369
	      maltworms 0.0369
	            and 0.0369
	            but 0.0369
	              I 0.0369
	          coins 0.0369
	      leafworms 0.0369
	           </S> 0.0369
	        spiders 0.0369
	              " 0.0369
	             as 0.0369
	      Mealworms 0.0369
	           work 0.0369
	      therefore 0.0369
	        rodents 0.0369
	          birds 0.0369
	            zip 0.0369
	            the 0.0059
	        however 0.0000
	           more 0.0000
	              i 0.0000
	         though 0.0000
	           most 0.0000
	            too 0.0000
	             or 0.0000
	          which 0.0000

     Familx-ALA   468928 inf (22)
	              I 0.9000
	           will 0.6000
	            all 0.5000
	              ) 0.4500
	           Free 0.0369
	       realtime 0.0369
	              a 0.0369
	        details 0.0369
	          Limit 0.0369
	       tramadol 0.0369
	          files 0.0369
	          still 0.0369
	       Analysis 0.0369
	           </S> 0.0059
	              . 0.0000
	            the 0.0000
	            and 0.0000
	              A 0.0000
	              - 0.0000
	            For 0.0000
	             .. 0.0000
	              , 0.0000

          UDID^   468939 inf (26)
	      selection 0.0369
	              a 0.0369
	              I 0.0369
	           USDA 0.0369
	           </S> 0.0369
	              ) 0.0369
	            DID 0.0369
	           UUID 0.0369
	              - 0.0369
	          UUIDs 0.0369
	             If 0.0369
	           UDIG 0.0369
	           UDIF 0.0369
	              . 0.0369
	          GUDID 0.0369
	            UDI 0.0369
	          UDIMM 0.0369
	             It 0.0369
	            DVD 0.0369
	          UNIDO 0.0369
	           UDDI 0.0369
	             us 0.0369
	              , 0.0369
	            UID 0.0369
	            UDD 0.0369
	          <UNK> 0.0369

              .   468944 inf (8)
	             of 0.0369
	             to 0.0369
	             us 0.0369
	            and 0.0369
	             in 0.0369
	            the 0.0369
	            cia 0.0369
	             iu 0.0369

        AVinged   468957 inf (28)
	         Winged 1.0000
	         winged 0.6000
	              I 0.0369
	         Vidgen 0.0369
	         Center 0.0369
	         hinged 0.0369
	           Ange 0.0369
	         Ainger 0.0369
	          thing 0.0369
	        Avinger 0.0369
	        Abinger 0.0369
	        Ayinger 0.0369
	          Ainge 0.0369
	             of 0.0369
	          Vinge 0.0369
	       Aldingen 0.0369
	           line 0.0369
	           </S> 0.0059
	          House 0.0000
	         Papers 0.0000
	              T 0.0000
	          Angel 0.0000
	        Stripes 0.0000
	              , 0.0000
	              - 0.0000
	       Countess 0.0000
	             is 0.0000
	              . 0.0000

           Lark   468965   1 (25)
	              . 0.0369
	          Larak 0.0369
	              , 0.0369
	            Lar 0.0369
	           Lars 0.0369
	           Lara 0.0369
	           </S> 0.0369
	           Lark 0.0369
	          Lakar 0.0369
	            arz 0.0369
	           lava 0.0369
	           sala 0.0369
	           Last 0.0369
	              | 0.0369
	           Lake 0.0369
	            The 0.0369
	              " 0.0369
	          <UNK> 0.0369
	           part 0.0369
	          Larks 0.0369
	         Larkin 0.0369
	              - 0.0369
	            are 0.0369
	              a 0.0369
	              : 0.0369

              .   468969   1 (14)
	              . 0.8000
	            cia 0.0369
	             iu 0.0369
	             us 0.0369
	           </S> 0.0059
	          Books 0.0000
	              , 0.0000
	              - 0.0000
	            ... 0.0000
	            and 0.0000
	            the 0.0000
	             in 0.0000
	             of 0.0000
	            St. 0.0000

ilTclanocorypha   468972 inf (25)
	     Salamander 0.0369
	       Savannah 0.0369
	              a 0.0369
	             in 0.0369
	           Tiny 0.0369
	           </S> 0.0059
	          Thank 0.0000
	              I 0.0000
	              / 0.0000
	              ) 0.0000
	           That 0.0000
	      ChangeLog 0.0000
	      Searching 0.0000
	              . 0.0000
	              ] 0.0000
	      Copyright 0.0000
	      According 0.0000
	           Each 0.0000
	              A 0.0000
	              - 0.0000
	             In 0.0000
	             To 0.0000
	              " 0.0000
	            For 0.0000
	              , 0.0000

       sidirica   468988   1 (31)
	      ossidrica 0.0369
	       sibirica 0.0369
	              , 0.0369
	          <UNK> 0.0369
	              ) 0.0369
	        sidrach 0.0369
	         source 0.0369
	       addition 0.0369
	       sindiria 0.0369
	         Sirica 0.0369
	      configure 0.0369
	       sibirico 0.0369
	       sibirici 0.0369
	              . 0.0369
	              a 0.0369
	       districa 0.0369
	         Vidiri 0.0369
	       satirica 0.0369
	          sidra 0.0369
	         ridica 0.0369
	       sekirica 0.0369
	              n 0.0369
	         silica 0.0369
	         idrica 0.0369
	      residiria 0.0369
	           </S> 0.0369
	              I 0.0369
	        Osirica 0.0369
	vareSelskap.cgi 0.0369
	              - 0.0369
	         lirica 0.0369

              ,   468996 inf (8)
	             of 0.0369
	             to 0.0369
	             us 0.0369
	            and 0.0369
	             in 0.0369
	            the 0.0369
	            cia 0.0369
	             iu 0.0369

          Gmp;l   468998 inf (25)
	             pp 0.1857
	         Gimpel 0.0369
	          Gmail 0.0369
	              { 0.0369
	          Gympl 0.0369
	             Gm 0.0369
	            Gml 0.0369
	          Email 0.0369
	   respectively 0.0369
	              x 0.0369
	           Gmol 0.0369
	            Gmp 0.0369
	          Gopal 0.0369
	            Gpm 0.0369
	            the 0.0059
	          which 0.0012
	             or 0.0000
	            too 0.0000
	             mp 0.0000
	           mail 0.0000
	             to 0.0000
	          email 0.0000
	              i 0.0000
	             of 0.0000
	              e 0.0000

              .   469003   1 (11)
	             iu 0.0369
	             of 0.0369
	           </S> 0.0369
	            ... 0.0369
	              , 0.0369
	            and 0.0369
	            cia 0.0369
	             us 0.0369
	              . 0.0369
	              - 0.0369
	            the 0.0369

           THIS   469006   1 (23)
	           THIS 1.0000
	            THE 0.6388
	           This 0.3358
	              I 0.0418
	            THI 0.0369
	        THISDAY 0.0369
	            TIS 0.0369
	           TISH 0.0369
	           SHIT 0.0369
	            HIS 0.0369
	           THIC 0.0369
	           THIQ 0.0369
	            THS 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	            The 0.0131
	           </S> 0.0059
	              / 0.0000
	              ) 0.0000
	              , 0.0000
	              . 0.0000
	              ] 0.0000

        species   469011  18 (26)
	              A 0.4000
	        specify 0.0369
	       speciest 0.0369
	       document 0.0369
	        speciem 0.0369
	        suecica 0.0369
	         specie 0.0369
	        especie 0.0369
	           case 0.0369
	              I 0.0369
	       especies 0.0369
	              " 0.0369
	       speciesm 0.0369
	              ) 0.0369
	        speciei 0.0369
	            one 0.0369
	             IS 0.0059
	              , 0.0000
	        special 0.0000
	           </S> 0.0000
	          <UNK> 0.0000
	              : 0.0000
	           PAGE 0.0000
	              . 0.0000
	        species 0.0000
	           SITE 0.0000

           1869   469141 inf (23)
	              " 0.0369
	           2006 0.0369
	           2004 0.0369
	           2003 0.0369
	           </S> 0.0369
	              I 0.0369
	           1862 0.0369
	           1864 0.0369
	           1986 0.0369
	          <UNK> 0.0369
	           2005 0.0369
	              a 0.0369
	           1861 0.0369
	            and 0.0369
	      therefore 0.0369
	           1968 0.0369
	            the 0.0059
	         though 0.0000
	             or 0.0000
	             of 0.0000
	              i 0.0000
	          which 0.0000
	            too 0.0000

         Rowley   469178   1 (23)
	        Rowsley 0.0369
	       received 0.0369
	              s 0.0369
	         Rewley 0.0369
	              A 0.0369
	              a 0.0369
	          Rowly 0.0369
	             J. 0.0369
	          Rules 0.0369
	           Rome 0.0369
	         Rowles 0.0369
	         Cowley 0.0369
	       Rowleyan 0.0369
	             A. 0.0369
	         Rowley 0.0369
	         Rodley 0.0369
	              , 0.0059
	              . 0.0000
	           </S> 0.0000
	           Rose 0.0000
	              : 0.0000
	              - 0.0000
	             's 0.0000

           1870   469241 inf (22)
	              " 0.0369
	            and 0.0369
	           1970 0.0369
	           2004 0.0369
	              x 0.0369
	           2005 0.0369
	              2 0.0369
	           1860 0.0369
	           1871 0.0369
	           1850 0.0369
	          <UNK> 0.0369
	           2006 0.0369
	   respectively 0.0369
	           </S> 0.0369
	              a 0.0369
	            the 0.0059
	              i 0.0000
	             pp 0.0000
	          which 0.0000
	             or 0.0000
	            too 0.0000
	             of 0.0000

        species   469270  21 (27)
	       specific 0.1000
	           </S> 0.0369
	       speciesm 0.0369
	              , 0.0369
	              . 0.0369
	        speciem 0.0369
	        suecica 0.0369
	           keys 0.0369
	        speciei 0.0369
	              a 0.0369
	              - 0.0369
	        especie 0.0369
	       speciest 0.0369
	     Federation 0.0369
	              ) 0.0369
	             of 0.0369
	       especies 0.0369
	         specie 0.0369
	              I 0.0369
	              ] 0.0059
	            and 0.0000
	        Spanish 0.0000
	             in 0.0000
	       language 0.0000
	        Special 0.0000
	        special 0.0000
	        species 0.0000

            and   469279   1 (23)
	              . 0.0369
	         optics 0.0369
	            ant 0.0369
	            and 0.0369
	             us 0.0369
	            any 0.0369
	           andy 0.0369
	           anda 0.0369
	              , 0.0369
	          birds 0.0369
	            arz 0.0369
	           aand 0.0369
	           alba 0.0369
	              - 0.0369
	              a 0.0369
	             eg 0.0369
	              A 0.0369
	             an 0.0369
	      Verbascum 0.0369
	           </S> 0.0059
	              } 0.0000
	              " 0.0000
	              ) 0.0000

             by   469284   1 (27)
	            but 0.0369
	              , 0.0369
	         whilst 0.0369
	              a 0.0369
	           </S> 0.0369
	            byd 0.0369
	              . 0.0369
	            Pyi 0.0369
	              - 0.0369
	             by 0.0369
	             be 0.0369
	             br 0.0369
	              I 0.0369
	            bye 0.0369
	           byby 0.0369
	            the 0.0059
	          which 0.0012
	             so 0.0000
	             yb 0.0000
	             if 0.0000
	            you 0.0000
	             to 0.0000
	            who 0.0000
	             iu 0.0000
	            for 0.0000
	             or 0.0000
	             us 0.0000

      Mongolian   469321   4 (22)
	       sciences 0.7000
	              - 0.6000
	         forces 0.5000
	      Mongolian 0.0369
	          would 0.0369
	      Mongoliae 0.0369
	      Mongoliad 0.0369
	     Mongolians 0.0369
	      Mongoolia 0.0369
	       Mongolia 0.0369
	             of 0.0369
	              a 0.0369
	         people 0.0369
	         should 0.0369
	              I 0.0369
	         health 0.0059
	           with 0.0000
	              . 0.0000
	              , 0.0000
	             to 0.0000
	           </S> 0.0000
	            and 0.0000

        Eugland   469383   4 (28)
	          gland 0.9000
	           them 0.0896
	             me 0.0461
	         Erlang 0.0369
	         public 0.0369
	            and 0.0369
	       Haugland 0.0369
	              . 0.0369
	        Egeland 0.0369
	        England 0.0369
	           </S> 0.0369
	       Euglenid 0.0369
	       Euglucan 0.0369
	        Rugland 0.0369
	        Englund 0.0369
	              , 0.0369
	     Euglandina 0.0369
	        justice 0.0369
	            the 0.0059
	            get 0.0000
	            use 0.0000
	            you 0.0000
	           play 0.0000
	           cars 0.0000
	             us 0.0000
	             be 0.0000
	              a 0.0000
	           your 0.0000

           This   469473   1 (24)
	           This 0.3358
	              I 0.0418
	             us 0.0369
	              a 0.0369
	           Thin 0.0369
	           Tihs 0.0369
	         Thisbe 0.0369
	           Thia 0.0369
	            cia 0.0369
	             iu 0.0369
	          Thies 0.0369
	            Thi 0.0369
	          Thise 0.0369
	           Tish 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	            The 0.0131
	           </S> 0.0059
	           this 0.0000
	              ) 0.0000
	              . 0.0000
	              ] 0.0000
	              , 0.0000

             in   469571   1 (20)
	            int 0.0369
	            inc 0.0369
	            iin 0.0369
	             is 0.0369
	             in 0.0369
	              . 0.0369
	              - 0.0369
	             ni 0.0369
	             iu 0.0369
	            inn 0.0369
	             us 0.0369
	              a 0.0369
	              s 0.0369
	              , 0.0369
	             it 0.0369
	              A 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	              " 0.0000

        January   469594  13 (27)
	       Januarye 0.0369
	       Janruary 0.0369
	       children 0.0369
	              . 0.0369
	            and 0.0369
	        Januaro 0.0369
	           said 0.0369
	              z 0.0369
	           died 0.0369
	    destination 0.0369
	       holidays 0.0369
	            the 0.0059
	        Januari 0.0000
	              a 0.0000
	            was 0.0000
	           </S> 0.0000
	       services 0.0000
	        Januray 0.0000
	        January 0.0000
	           many 0.0000
	         others 0.0000
	              I 0.0000
	              , 0.0000
	              - 0.0000
	       Januarys 0.0000
	         Januar 0.0000
	          other 0.0000

           1908   469603 inf (20)
	              I 0.0369
	              . 0.0369
	              - 0.0369
	           1999 0.0369
	              , 0.0369
	             as 0.0369
	              a 0.0369
	           2001 0.0369
	           1998 0.0369
	           2005 0.0369
	           </S> 0.0369
	            and 0.0369
	           2006 0.0369
	            the 0.0059
	           when 0.0000
	             or 0.0000
	             of 0.0000
	              i 0.0000
	           with 0.0000
	          which 0.0000

         Sussex   469628  11 (28)
	           user 0.5000
	           2003 0.1000
	         Sussen 0.0369
	         Sussey 0.0369
	             us 0.0369
	         Sxusem 0.0369
	          color 0.0369
	              x 0.0369
	      Sussexite 0.0369
	            the 0.0059
	           time 0.0000
	            use 0.0000
	              a 0.0000
	          Super 0.0000
	           this 0.0000
	              . 0.0000
	           </S> 0.0000
	           used 0.0000
	          stock 0.0000
	         sussex 0.0000
	         Sussex 0.0000
	          place 0.0000
	          their 0.0000
	           2004 0.0000
	              , 0.0000
	              - 0.0000
	         Passer 0.0000
	           your 0.0000

Faunlx-ALAUDID.E   469637 inf (22)
	        Falkirk 0.0369
	             DE 0.0369
	        Council 0.0369
	         Falmer 0.0369
	        England 0.0369
	Congratulations 0.0369
	           only 0.0369
	           Plan 0.0369
	              a 0.0369
	           </S> 0.0059
	              / 0.0000
	           Only 0.0000
	       SATURDAY 0.0000
	              - 0.0000
	              . 0.0000
	              A 0.0000
	              ) 0.0000
	          <UNK> 0.0000
	              " 0.0000
	              , 0.0000
	              I 0.0000
	              ] 0.0000

              .   469653   1 (15)
	            and 0.0369
	              ) 0.0369
	              - 0.0369
	              , 0.0369
	          .deps 0.0369
	             iu 0.0369
	            cia 0.0369
	          <UNK> 0.0369
	          a.out 0.0369
	             of 0.0369
	             us 0.0369
	             .. 0.0369
	           </S> 0.0369
	              . 0.0369
	            the 0.0369

              .   469670   1 (17)
	              . 0.8000
	          Dress 0.0369
	           Peas 0.0369
	          White 0.0369
	            cia 0.0369
	             iu 0.0369
	             .. 0.0369
	             us 0.0369
	           </S> 0.0059
	            ... 0.0000
	            The 0.0000
	             of 0.0000
	              , 0.0000
	            and 0.0000
	            the 0.0000
	          Books 0.0000
	              - 0.0000

 Mcla)iOLoyypha   469673 inf (22)
	           What 0.5000
	         Lazuli 0.0369
	             My 0.0369
	         Médico 0.0369
	           Love 0.0369
	   yeltoniensis 0.0369
	              a 0.0369
	         Martin 0.0369
	           </S> 0.0059
	              / 0.0000
	              " 0.0000
	              A 0.0000
	              , 0.0000
	              ] 0.0000
	              ) 0.0000
	             cp 0.0000
	              . 0.0000
	           More 0.0000
	              I 0.0000
	              - 0.0000
	      ChangeLog 0.0000
	      Copyright 0.0000

    ycltontemis   469688 inf (23)
	              . 0.0369
	       runtests 0.0369
	             is 0.0369
	           </S> 0.0369
	       instance 0.0369
	vareSelskap.cgi 0.0369
	         latest 0.0369
	       conftest 0.0369
	             to 0.0369
	      configure 0.0369
	              ) 0.0369
	              l 0.0369
	              - 0.0369
	       contrast 0.0369
	              a 0.0369
	      Montornés 0.0369
	             te 0.0369
	              n 0.0369
	     components 0.0369
	              I 0.0369
	              , 0.0369
	          <UNK> 0.0369
	        million 0.0369

              ,   469699 inf (8)
	             of 0.0369
	             to 0.0369
	             us 0.0369
	            and 0.0369
	             in 0.0369
	            the 0.0369
	            cia 0.0369
	             iu 0.0369

          FoRST   469701 inf (20)
	          FROST 0.0369
	              x 0.0369
	   respectively 0.0369
	           FRST 0.0369
	            For 0.0369
	            RST 0.0369
	           BRST 0.0369
	          Forum 0.0369
	              { 0.0369
	          FIRST 0.0369
	            the 0.0059
	              i 0.0000
	          which 0.0000
	             or 0.0000
	              e 0.0000
	            for 0.0000
	             to 0.0000
	            too 0.0000
	             pp 0.0000
	             of 0.0000

              .   469706   1 (12)
	             iu 0.0369
	             of 0.0369
	           </S> 0.0369
	            ... 0.0369
	            and 0.0369
	            cia 0.0369
	             us 0.0369
	              . 0.0369
	              - 0.0369
	            the 0.0369
	              ) 0.0059
	              , 0.0000

              A   469709  10 (22)
	             As 0.2611
	            cia 0.0369
	             iu 0.0369
	             PA 0.0369
	             CA 0.0369
	             AA 0.0369
	             us 0.0369
	             AM 0.0369
	            AAA 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	            The 0.0131
	           </S> 0.0059
	              , 0.0000
	              ) 0.0000
	             of 0.0000
	              / 0.0000
	            the 0.0000
	              ] 0.0000
	              . 0.0000
	            and 0.0000

          FLOCK   469711 inf (28)
	          CLOCK 0.9000
	            FLO 0.1000
	              N 0.0369
	        version 0.0369
	           FCOK 0.0369
	          FLDOC 0.0369
	           nest 0.0369
	           FLOC 0.0369
	          pinch 0.0369
	           </S> 0.0059
	           Free 0.0000
	         number 0.0000
	              : 0.0000
	             to 0.0000
	           list 0.0000
	          major 0.0000
	            lot 0.0000
	              A 0.0000
	            Car 0.0000
	          <UNK> 0.0000
	            new 0.0000
	           copy 0.0000
	          BLOCK 0.0000
	              B 0.0000
	              , 0.0000
	            FOR 0.0000
	              ) 0.0000
	              - 0.0000

          About   469822   1 (23)
	          About 1.0000
	              R 0.0369
	         Abbout 0.0369
	          Aboub 0.0369
	          about 0.0369
	         Abouet 0.0369
	          Abuot 0.0369
	           Abou 0.0369
	              a 0.0369
	        sources 0.0369
	           your 0.0369
	            the 0.0369
	         Abouta 0.0369
	          Aboud 0.0369
	        AboutUs 0.0369
	           </S> 0.0059
	              - 0.0000
	              ) 0.0000
	              , 0.0000
	              " 0.0000
	              ] 0.0000
	              . 0.0000
	              I 0.0000

       imported   469860   1 (27)
	       imported 0.4000
	     reimported 0.3000
	    importeerde 0.0369
	             us 0.0369
	       importen 0.0369
	        ranging 0.0369
	          items 0.0369
	     importerad 0.0369
	              a 0.0369
	           </S> 0.0369
	              , 0.0369
	              . 0.0369
	              - 0.0369
	         whilst 0.0369
	              I 0.0369
	            but 0.0369
	            and 0.0369
	            the 0.0059
	          which 0.0012
	       importer 0.0000
	             or 0.0000
	           many 0.0000
	          other 0.0000
	              e 0.0000
	           more 0.0000
	        importe 0.0000
	             if 0.0000

     Leadenhall   469905  13 (25)
	     Peasenhall 0.4000
	              I 0.0369
	          Japan 0.0369
	              x 0.0369
	          costa 0.0369
	           open 0.0369
	             us 0.0369
	          spain 0.0369
	         health 0.0369
	        January 0.0369
	          major 0.0369
	            the 0.0059
	           this 0.0000
	           your 0.0000
	         Canada 0.0000
	     Mendenhall 0.0000
	              a 0.0000
	              . 0.0000
	           </S> 0.0000
	              , 0.0000
	     Leadenhall 0.0000
	      Redenhall 0.0000
	      Leadenham 0.0000
	       Edenhall 0.0000
	              - 0.0000

          Larks   469924   1 (28)
	          Larus 0.0369
	       Research 0.0369
	          Larks 0.0369
	         Laskar 0.0369
	          Parus 0.0369
	         Lanius 0.0369
	          parva 0.0369
	       Larkspur 0.0369
	           Lark 0.0369
	   Philadelphia 0.0369
	       Larksmen 0.0369
	           arks 0.0369
	         London 0.0369
	         Laarks 0.0369
	           List 0.0369
	              a 0.0369
	           </S> 0.0059
	              " 0.0000
	              A 0.0000
	           Last 0.0000
	              - 0.0000
	              , 0.0000
	      ChangeLog 0.0000
	              ) 0.0000
	              I 0.0000
	          Links 0.0000
	              . 0.0000
	              ] 0.0000

       Ortolans   469931   1 (28)
	          women 0.0369
	              , 0.0369
	           </S> 0.0369
	          those 0.0369
	        drepper 0.0369
	       Ortolans 0.0369
	           work 0.0369
	              I 0.0369
	              s 0.0369
	           beat 0.0369
	        Oriolus 0.0369
	      therefore 0.0369
	        writing 0.0369
	        Ortolan 0.0369
	              " 0.0369
	       Swallows 0.0369
	       Ortolana 0.0369
	         online 0.0369
	       Ortolani 0.0369
	              a 0.0369
	          <UNK> 0.0369
	            the 0.0059
	          which 0.0012
	             or 0.0000
	         though 0.0000
	              i 0.0000
	           many 0.0000
	            too 0.0000

            and   469941   1 (18)
	            any 0.0369
	           andy 0.0369
	           anda 0.0369
	            arz 0.0369
	           alba 0.0369
	            and 0.0369
	              x 0.0369
	             an 0.0369
	            ant 0.0369
	           aand 0.0369
	            the 0.0059
	          which 0.0012
	              i 0.0000
	          while 0.0000
	            yet 0.0000
	             us 0.0000
	             or 0.0000
	             of 0.0000

         Quails   469945  11 (26)
	          Quals 0.4000
	              i 0.0369
	              . 0.0369
	       children 0.0369
	          these 0.0369
	         Quaile 0.0369
	          which 0.0369
	            and 0.0369
	        Qunasli 0.0369
	            the 0.0059
	            you 0.0000
	              I 0.0000
	          there 0.0000
	           mail 0.0000
	          Quail 0.0000
	          Email 0.0000
	              , 0.0000
	           will 0.0000
	              a 0.0000
	         Quails 0.0000
	          other 0.0000
	         Qualis 0.0000
	         dubius 0.0000
	           </S> 0.0000
	           they 0.0000
	              - 0.0000

              "   469984   6 (17)
	             us 0.4000
	             iu 0.3000
	         intake 0.0369
	            cia 0.0369
	              - 0.0059
	           time 0.0000
	           </S> 0.0000
	             as 0.0000
	             of 0.0000
	              . 0.0000
	            the 0.0000
	              , 0.0000
	              " 0.0000
	           term 0.0000
	       distance 0.0000
	            way 0.0000
	            and 0.0000

         almost   470050   1 (22)
	          <UNK> 0.0369
	            and 0.0369
	          about 0.0369
	         almost 0.0369
	              I 0.0369
	              x 0.0369
	        almosts 0.0369
	        maltosa 0.0369
	         almose 0.0369
	          almos 0.0369
	           also 0.0369
	           </S> 0.0369
	              " 0.0369
	            but 0.0369
	            the 0.0059
	          which 0.0012
	             or 0.0000
	             so 0.0000
	           just 0.0000
	           most 0.0000
	              i 0.0000
	           such 0.0000

       bullocks   470087   1 (27)
	       bullocks 0.3000
	              . 0.0369
	       unblocks 0.0369
	       bullocky 0.0369
	       partners 0.0369
	          place 0.0369
	     bullockies 0.0369
	              a 0.0059
	              , 0.0000
	              I 0.0000
	           </S> 0.0000
	       possible 0.0000
	      described 0.0000
	      subblocks 0.0000
	           part 0.0000
	            one 0.0000
	        defined 0.0000
	            all 0.0000
	             if 0.0000
	          close 0.0000
	        bullock 0.0000
	           well 0.0000
	          being 0.0000
	            the 0.0000
	          shown 0.0000
	              - 0.0000
	              i 0.0000

        jerking   470119  11 (26)
	         jerkin 0.7000
	              / 0.0369
	       kjerring 0.0369
	              ) 0.0369
	          major 0.0369
	          doors 0.0369
	        buttons 0.0369
	        jerkins 0.0369
	       jerkings 0.0369
	           </S> 0.0059
	        Herring 0.0000
	        Perkins 0.0000
	        working 0.0000
	          first 0.0000
	              ( 0.0000
	        looking 0.0000
	              - 0.0000
	          total 0.0000
	           main 0.0000
	         second 0.0000
	      following 0.0000
	        Burkina 0.0000
	        jerking 0.0000
	          <UNK> 0.0000
	       breaking 0.0000
	         making 0.0000

           open   470127  18 (28)
	           over 0.1000
	            one 0.1000
	       themself 0.0369
	              I 0.0369
	         number 0.0369
	          opene 0.0369
	          opent 0.0369
	           oper 0.0369
	             is 0.0369
	          opens 0.0369
	           opne 0.0369
	        version 0.0369
	           oped 0.0369
	           part 0.0369
	            ope 0.0369
	          value 0.0369
	            off 0.0059
	           guys 0.0000
	              . 0.0000
	             of 0.0000
	      movements 0.0000
	         motion 0.0000
	           </S> 0.0000
	              a 0.0000
	             us 0.0000
	           open 0.0000
	              , 0.0000
	              - 0.0000

       smashing   470184   1 (23)
	          being 0.0369
	          shall 0.0369
	      contained 0.0369
	       slashing 0.0369
	              a 0.0369
	             of 0.0369
	        sashing 0.0369
	      Yamashina 0.0369
	      smashings 0.0369
	     smashingly 0.0369
	              I 0.0369
	         system 0.0369
	       smashing 0.0369
	       stashing 0.0369
	           </S> 0.0059
	       pressure 0.0000
	    derivatives 0.0000
	              . 0.0000
	        mashing 0.0000
	              , 0.0000
	              - 0.0000
	             or 0.0000
	           list 0.0000

       liberate   470242   9 (21)
	           like 0.0369
	      liberates 0.0369
	       liberata 0.0369
	         become 0.0369
	       liberati 0.0369
	          State 0.0369
	             be 0.0369
	          again 0.0059
	       liberate 0.0000
	      liberated 0.0000
	           have 0.0000
	              , 0.0000
	              I 0.0000
	           </S> 0.0000
	              a 0.0000
	              - 0.0000
	           been 0.0000
	             to 0.0000
	            and 0.0000
	              i 0.0000
	              . 0.0000

         enough   470251  14 (22)
	              a 0.5000
	              - 0.1000
	              , 0.1000
	        through 0.0369
	         Enough 0.0369
	         eneugh 0.0369
	             to 0.0369
	              I 0.0369
	         Keough 0.0369
	       Glenough 0.0369
	        enoughs 0.0369
	        enrough 0.0369
	            the 0.0059
	           </S> 0.0000
	          South 0.0000
	             us 0.0000
	         enough 0.0000
	           your 0.0000
	              " 0.0000
	           them 0.0000
	            and 0.0000
	              . 0.0000

          flock   470292   2 (26)
	            job 0.3000
	          times 0.0369
	          click 0.0369
	         flocky 0.0369
	          flocs 0.0369
	            now 0.0369
	          Block 0.0369
	           floc 0.0369
	          flock 0.0369
	         flocks 0.0369
	          floco 0.0369
	          Click 0.0369
	          basis 0.0369
	              I 0.0369
	              , 0.0059
	              a 0.0000
	           time 0.0000
	              - 0.0000
	            and 0.0000
	             of 0.0000
	           </S> 0.0000
	              . 0.0000
	       distance 0.0000
	         family 0.0000
	           from 0.0000
	          third 0.0000

             No   470299   2 (23)
	            Not 0.4831
	             No 0.1700
	             NY 0.1327
	            Now 0.0765
	              I 0.0418
	              a 0.0369
	           NoNo 0.0369
	             iu 0.0369
	            cia 0.0369
	            Noo 0.0369
	             us 0.0369
	              A 0.0328
	             to 0.0265
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	             NO 0.0000
	              . 0.0000
	              , 0.0000
	             of 0.0000
	              ] 0.0000
	              ) 0.0000
	             '' 0.0000

   importations   470347   2 (34)
	    importation 0.4000
	   importations 0.1000
	  importassions 0.0369
	              u 0.0369
	            use 0.0369
	           tons 0.0369
	     importions 0.0369
	      thousands 0.0369
	 reimportations 0.0369
	     importatis 0.0369
	     Department 0.0369
	          years 0.0369
	   impartations 0.0369
	              x 0.0369
	           lots 0.0369
	          state 0.0369
	            the 0.0059
	           some 0.0000
	             an 0.0000
	             us 0.0000
	            one 0.0000
	            any 0.0000
	           your 0.0000
	              a 0.0000
	              - 0.0000
	          those 0.0000
	    information 0.0000
	           that 0.0000
	              . 0.0000
	            all 0.0000
	              , 0.0000
	            you 0.0000
	            two 0.0000
	           </S> 0.0000

          birds   470363   2 (31)
	           bird 0.5133
	          birds 0.5083
	         Vbirds 0.0369
	        society 0.0369
	          birda 0.0369
	         bridds 0.0369
	              x 0.0369
	              y 0.0369
	        birdsit 0.0369
	            the 0.0059
	         Turdus 0.0000
	           time 0.0000
	          birdy 0.0000
	             us 0.0000
	          <UNK> 0.0000
	          first 0.0000
	              , 0.0000
	           them 0.0000
	         birdes 0.0000
	             it 0.0000
	           </S> 0.0000
	          being 0.0000
	              a 0.0000
	            our 0.0000
	          their 0.0000
	              : 0.0000
	          Parus 0.0000
	              - 0.0000
	          First 0.0000
	           bids 0.0000
	           this 0.0000

         Family   470436   1 (22)
	         Family 0.9834
	            For 0.2625
	           From 0.0912
	              I 0.0418
	        Faimily 0.0369
	       Familypc 0.0369
	              a 0.0369
	            non 0.0369
	         Famila 0.0369
	         Famill 0.0369
	           mail 0.0369
	        Familly 0.0369
	       FamilyPC 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              . 0.0000
	              ) 0.0000
	              / 0.0000
	              , 0.0000
	              ] 0.0000

   ALAl'DID.-Ji   470444 inf (31)
	         Beauty 0.0369
	         August 0.0369
	              © 0.0369
	       friendly 0.0369
	              s 0.0369
	       Atlantis 0.0369
	            rev 0.0369
	              , 0.0369
	              p 0.0369
	            Vol 0.0369
	           will 0.0369
	           side 0.0369
	             L. 0.0369
	              l 0.0369
	      LifeFiles 0.0369
	     crests.com 0.0369
	   Planning.biz 0.0369
	           </S> 0.0059
	              - 0.0000
	              I 0.0000
	              . 0.0000
	            the 0.0000
	              L 0.0000
	              C 0.0000
	            All 0.0000
	           time 0.0000
	              D 0.0000
	              a 0.0000
	             to 0.0000
	          <UNK> 0.0000
	             up 0.0000

              .   470456   1 (15)
	              : 0.0369
	            And 0.0369
	            ... 0.0369
	            and 0.0369
	              - 0.0369
	             iu 0.0369
	             of 0.0369
	              , 0.0369
	             us 0.0369
	              . 0.0369
	             In 0.0369
	              ] 0.0369
	            the 0.0369
	            cia 0.0369
	           </S> 0.0369

  Ciila)idixlla   470481   1 (21)
	              a 0.0369
	        Comella 0.0369
	    Calandrella 0.0369
	         Kamala 0.0369
	       Reginald 0.0369
	           </S> 0.0059
	              ) 0.0000
	              . 0.0000
	            For 0.0000
	              ] 0.0000
	              A 0.0000
	              , 0.0000
	             In 0.0000
	      Copyright 0.0000
	            All 0.0000
	              - 0.0000
	              " 0.0000
	              I 0.0000
	              / 0.0000
	          Click 0.0000
	      ChangeLog 0.0000

   bnuhydaityla   470495 inf (21)
	       addition 0.0369
	     particular 0.0369
	          <UNK> 0.0369
	      configure 0.0369
	              . 0.0369
	       build.sh 0.0369
	              a 0.0369
	              ) 0.0369
	              n 0.0369
	        Tuesday 0.0369
	        Atlanta 0.0369
	          atlas 0.0369
	              I 0.0369
	              - 0.0369
	     install.sh 0.0369
	              , 0.0369
	          build 0.0369
	         Monday 0.0369
	           </S> 0.0369
	          daten 0.0369
	vareSelskap.cgi 0.0369

              ,   470507 inf (8)
	             of 0.0369
	             to 0.0369
	             us 0.0369
	            and 0.0369
	             in 0.0369
	            the 0.0369
	            cia 0.0369
	             iu 0.0369

          LEISL   470509 inf (17)
	   respectively 0.0369
	              x 0.0369
	           LESL 0.0369
	              { 0.0369
	           LEIS 0.0369
	           EISL 0.0369
	          LEISD 0.0369
	           LESI 0.0369
	            the 0.0059
	             of 0.0000
	            too 0.0000
	              i 0.0000
	              e 0.0000
	          which 0.0000
	             pp 0.0000
	             or 0.0000
	             to 0.0000

              .   470514   1 (11)
	             iu 0.0369
	             of 0.0369
	           </S> 0.0369
	            ... 0.0369
	              , 0.0369
	            and 0.0369
	            cia 0.0369
	             us 0.0369
	              . 0.0369
	              - 0.0369
	            the 0.0369

         HOWARD   470517 inf (21)
	            HOW 0.0369
	         HuCARD 0.0369
	         WHOART 0.0369
	           HWRD 0.0369
	           HWAD 0.0369
	          HOARD 0.0369
	         HAZARD 0.0369
	         SHORAD 0.0369
	           WARD 0.0369
	          HOWTO 0.0369
	          AWARD 0.0369
	         KOWARI 0.0369
	           </S> 0.0059
	              - 0.0000
	              ) 0.0000
	              I 0.0000
	              " 0.0000
	              , 0.0000
	              ] 0.0000
	              A 0.0000
	              . 0.0000

       SAUNDERS   470524 inf (20)
	          SUNDS 0.0369
	        SINGERS 0.0369
	        SINFERS 0.0369
	         UANDES 0.0369
	         FUNDER 0.0369
	         BANDES 0.0369
	              a 0.0369
	              , 0.0059
	              . 0.0000
	             A. 0.0000
	              ) 0.0000
	             E. 0.0000
	              - 0.0000
	          <UNK> 0.0000
	     UNIVERSITY 0.0000
	              A 0.0000
	        JOHNSON 0.0000
	              C 0.0000
	             J. 0.0000
	           </S> 0.0000

         admits   470533   1 (20)
	         admits 0.0369
	        admites 0.0369
	         adults 0.0369
	        admista 0.0369
	        admisti 0.0369
	         admite 0.0369
	         admito 0.0369
	          admis 0.0369
	          admit 0.0369
	       readmits 0.0369
	        admitas 0.0369
	          admin 0.0369
	              , 0.0059
	              - 0.0000
	              I 0.0000
	           </S> 0.0000
	              A 0.0000
	              : 0.0000
	              . 0.0000
	              B 0.0000

    justifiably   470568  12 (27)
	  unjustifiably 0.1000
	             by 0.1000
	    justiciable 0.1000
	 justifiability 0.0369
	    unsubscribe 0.0369
	           just 0.0369
	       business 0.0369
	   justifiables 0.0369
	         within 0.0369
	          major 0.0369
	           </S> 0.0059
	              - 0.0000
	          <UNK> 0.0000
	            The 0.0000
	    justifiable 0.0000
	            was 0.0000
	              A 0.0000
	    justifiably 0.0000
	              I 0.0000
	              . 0.0000
	            are 0.0000
	             in 0.0000
	             is 0.0000
	             to 0.0000
	              a 0.0000
	            the 0.0000
	              , 0.0000

          geuus   470594  12 (30)
	          guess 0.2000
	         genuus 0.0369
	              , 0.0369
	          geums 0.0369
	           geus 0.0369
	          egeus 0.0369
	              . 0.0369
	            geu 0.0369
	        greuous 0.0369
	           </S> 0.0059
	           same 0.0037
	         United 0.0000
	          right 0.0000
	            top 0.0000
	            get 0.0000
	          Egeus 0.0000
	           goes 0.0000
	          first 0.0000
	          world 0.0000
	          Parus 0.0000
	      following 0.0000
	           News 0.0000
	            uus 0.0000
	         second 0.0000
	          group 0.0000
	              - 0.0000
	             us 0.0000
	          rufus 0.0000
	          genus 0.0000
	           gues 0.0000

    Calandrclla   470600   1 (19)
	              . 0.0369
	             of 0.0369
	    Salandrella 0.0369
	            and 0.0369
	      Calandria 0.0369
	      direction 0.0369
	          value 0.0369
	           </S> 0.0369
	       Calandra 0.0369
	            way 0.0369
	     Calandreta 0.0369
	              a 0.0369
	    Calandrelli 0.0369
	    calandrella 0.0369
	              , 0.0369
	              - 0.0369
	    Calandrella 0.0369
	              I 0.0369
	          place 0.0369

              ,   470611 inf (8)
	             of 0.0369
	             to 0.0369
	             us 0.0369
	            and 0.0369
	             in 0.0369
	            the 0.0369
	            cia 0.0369
	             iu 0.0369

  characterized   470613   1 (23)
	       seconded 0.0369
	  characterizer 0.0369
	      published 0.0369
	  characterized 0.0369
	  characterizes 0.0369
	              x 0.0369
	        written 0.0369
	              { 0.0369
	   characterize 0.0369
	            the 0.0059
	recharacterized 0.0000
	            yet 0.0000
	            who 0.0000
	uncharacterized 0.0000
	          which 0.0000
	              i 0.0000
	             to 0.0000
	              e 0.0000
	             of 0.0000
	             or 0.0000
	          where 0.0000
	          their 0.0000
	          there 0.0000

          crest   470645   8 (27)
	            any 0.5633
	         crests 0.2000
	          major 0.0369
	         creste 0.0369
	          cresc 0.0369
	         cresta 0.0369
	            the 0.0059
	          Press 0.0000
	             it 0.0000
	           time 0.0000
	           case 0.0000
	              a 0.0000
	              - 0.0000
	          cress 0.0000
	          great 0.0000
	          <UNK> 0.0000
	              , 0.0000
	              : 0.0000
	          crest 0.0000
	           cres 0.0000
	           best 0.0000
	          press 0.0000
	             us 0.0000
	          their 0.0000
	           them 0.0000
	           this 0.0000
	           </S> 0.0000

        conical   470660  15 (23)
	            and 0.1250
	        control 0.0369
	      colonical 0.0369
	       iconical 0.0369
	         dollar 0.0369
	        conicas 0.0369
	          local 0.0369
	        conicae 0.0369
	       conicals 0.0369
	        Medical 0.0369
	       spending 0.0369
	         conica 0.0369
	       clinical 0.0369
	              , 0.0059
	          heart 0.0000
	              a 0.0000
	        conical 0.0000
	           </S> 0.0000
	              I 0.0000
	             of 0.0000
	            man 0.0000
	              - 0.0000
	              . 0.0000

           hind   470693  13 (29)
	          minor 0.6000
	         hindin 0.0369
	            hin 0.0369
	              C 0.0369
	           Pica 0.0369
	          hindu 0.0369
	            Two 0.0369
	       informed 0.0369
	              I 0.0369
	           hina 0.0369
	            cia 0.0369
	              - 0.0059
	           term 0.0000
	            non 0.0000
	            the 0.0000
	           half 0.0000
	           time 0.0000
	            had 0.0000
	              . 0.0000
	           </S> 0.0000
	          hindi 0.0000
	             of 0.0000
	        stories 0.0000
	           hint 0.0000
	              , 0.0000
	            his 0.0000
	            and 0.0000
	           hind 0.0000
	              a 0.0000

  infinitesimal   470707   1 (19)
	  infinitesimal 0.8000
	 infinitesimals 0.6000
	          crush 0.0369
	        twisted 0.0369
	              . 0.0369
	            and 0.0369
	          camel 0.0369
	 infinitesimale 0.0369
	           pale 0.0369
	            the 0.0059
	              a 0.0000
	              I 0.0000
	           </S> 0.0000
	           that 0.0000
	              , 0.0000
	    information 0.0000
	              - 0.0000
	       Services 0.0000
	            its 0.0000

        bastard   470721   2 (25)
	              - 0.1000
	       bastarda 0.0369
	              I 0.0369
	        bastard 0.0369
	        bastare 0.0369
	       bastardy 0.0369
	          extra 0.0369
	             us 0.0369
	          based 0.0369
	              a 0.0369
	           data 0.0369
	      stitching 0.0369
	       bastards 0.0369
	        bastart 0.0369
	            the 0.0369
	        Bastard 0.0369
	           both 0.0369
	       compared 0.0059
	      generator 0.0000
	             in 0.0000
	              , 0.0000
	             of 0.0000
	        numbers 0.0000
	              . 0.0000
	           </S> 0.0000

        primary   470729   2 (25)
	              i 0.3000
	        primare 0.0369
	        Privacy 0.0369
	      primarily 0.0369
	          since 0.0369
	        primary 0.0369
	          prior 0.0369
	      coprimary 0.0369
	         primar 0.0369
	        primari 0.0369
	        private 0.0369
	       primally 0.0369
	        primacy 0.0369
	              . 0.0059
	              ) 0.0000
	              ' 0.0000
	              , 0.0000
	              I 0.0000
	              a 0.0000
	            off 0.0000
	           </S> 0.0000
	              ! 0.0000
	          child 0.0000
	              " 0.0000
	              - 0.0000

        Alaiida   470795   2 (36)
	          Alain 0.7000
	        Alqaida 0.0369
	           Alai 0.0369
	        Algaida 0.0369
	        Albaida 0.0369
	          quits 0.0369
	          Alaid 0.0369
	         Alauda 0.0369
	         Aladia 0.0369
	        Adalida 0.0369
	         Alaidy 0.0369
	          Alaia 0.0369
	        maiidae 0.0369
	        raiidae 0.0369
	          first 0.0369
	         Alaiza 0.0369
	           said 0.0369
	        Alaimia 0.0369
	        Almeida 0.0369
	          laida 0.0369
	         Alaina 0.0369
	             is 0.0059
	            out 0.0000
	              ! 0.0000
	            all 0.0000
	            had 0.0000
	          again 0.0000
	              . 0.0000
	              , 0.0000
	              - 0.0000
	              a 0.0000
	           </S> 0.0000
	             up 0.0000
	             's 0.0000
	              ) 0.0000
	           that 0.0000

              .   470802   1 (14)
	            the 0.0369
	           </S> 0.0369
	              - 0.0369
	              " 0.0369
	            not 0.0369
	              . 0.0369
	              , 0.0369
	            cia 0.0369
	             of 0.0369
	              a 0.0369
	            ... 0.0369
	             iu 0.0369
	            and 0.0369
	             us 0.0369

       Inhabits   470805 inf (16)
	      Inhabited 0.0369
	        Inhabit 0.0369
	       inhabits 0.0369
	       enhabits 0.0369
	       inhabile 0.0369
	    Inhabitants 0.0369
	           </S> 0.0059
	              ) 0.0000
	              " 0.0000
	              , 0.0000
	              - 0.0000
	          <UNK> 0.0000
	              A 0.0000
	              ] 0.0000
	              . 0.0000
	              I 0.0000

       Southern   470814   1 (21)
	       Southern 0.0369
	          <UNK> 0.0369
	     Southerner 0.0369
	        Souther 0.0369
	     Southerton 0.0369
	              g 0.0369
	       Northern 0.0369
	       southern 0.0369
	        Sothern 0.0369
	              n 0.0369
	              . 0.0369
	              - 0.0369
	              , 0.0369
	              ) 0.0369
	       Southers 0.0369
	       Southery 0.0369
	        shallow 0.0059
	           </S> 0.0000
	          rocky 0.0000
	              a 0.0000
	            the 0.0000

             in   470927   1 (23)
	              a 0.0369
	             in 0.0369
	              - 0.0369
	            inc 0.0369
	            and 0.0369
	            int 0.0369
	              . 0.0369
	            inn 0.0369
	             ni 0.0369
	            cia 0.0369
	             us 0.0369
	             iu 0.0369
	             is 0.0369
	              I 0.0369
	             it 0.0369
	              i 0.0369
	            iin 0.0369
	              , 0.0369
	            the 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	              " 0.0000

     xAbyssinia   470992  10 (20)
	     Abyssinian 1.0000
	      Abyssinie 0.0369
	      Abissinia 0.0369
	    practicable 0.0369
	    Abyssinians 0.0369
	          using 0.0369
	              . 0.0369
	       Abysinia 0.0369
	              a 0.0059
	              - 0.0000
	          being 0.0000
	            the 0.0000
	       possible 0.0000
	              i 0.0000
	              , 0.0000
	              I 0.0000
	          <UNK> 0.0000
	           </S> 0.0000
	      Abyssinia 0.0000
	           well 0.0000

              ;   471003   1 (14)
	            the 0.0369
	              , 0.0369
	            can 0.0369
	           </S> 0.0369
	             of 0.0369
	             iu 0.0369
	             as 0.0369
	            cia 0.0369
	              ; 0.0369
	           know 0.0369
	              - 0.0369
	              . 0.0369
	             us 0.0369
	            and 0.0369

       eastward   471005   1 (15)
	      eastwards 0.0369
	        estward 0.0369
	       eastward 0.0369
	        eastern 0.0369
	        Bastard 0.0369
	     eastwardly 0.0369
	       Eastward 0.0369
	      weastward 0.0369
	         edward 0.0369
	           </S> 0.0059
	              } 0.0000
	          <UNK> 0.0000
	              " 0.0000
	              ] 0.0000
	              ) 0.0000

             To   471069   1 (24)
	             To 0.3518
	              ( 0.0910
	              I 0.0418
	             us 0.0369
	              a 0.0369
	             iu 0.0369
	            cia 0.0369
	             TV 0.0369
	              A 0.0328
	             to 0.0265
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	             of 0.0000
	            and 0.0000
	             '' 0.0000
	             TO 0.0000
	            Top 0.0000
	              ) 0.0000
	              ] 0.0000
	            Tom 0.0000
	              . 0.0000
	              , 0.0000
	            Too 0.0000

      straggler   471116  15 (25)
	        disease 0.2000
	      straggled 0.0369
	             of 0.0369
	           idea 0.0369
	        service 0.0369
	              a 0.0369
	              I 0.0369
	      straggles 0.0369
	          state 0.0369
	       straggle 0.0369
	      stragulum 0.0369
	        problem 0.0369
	     stragglers 0.0369
	              , 0.0059
	          cases 0.0000
	              - 0.0000
	    opportunity 0.0000
	              . 0.0000
	            and 0.0000
	      straggler 0.0000
	     occurrence 0.0000
	          event 0.0000
	          thing 0.0000
	           </S> 0.0000
	            one 0.0000

          about   471127   2 (23)
	           only 0.0692
	          about 0.0369
	              x 0.0369
	          About 0.0369
	              I 0.0369
	          <UNK> 0.0369
	            and 0.0369
	            but 0.0369
	         abouts 0.0369
	         aboute 0.0369
	         abauto 0.0369
	           </S> 0.0369
	           used 0.0369
	              " 0.0369
	          aboue 0.0369
	          abort 0.0369
	         abouta 0.0369
	           with 0.0062
	            the 0.0059
	          which 0.0012
	              i 0.0000
	             or 0.0000
	           your 0.0000

  authenticated   471138   3 (21)
	          major 0.9000
	       students 0.8000
	   authenticate 0.0369
	  Authenticated 0.0369
	  authenticated 0.0369
	              I 0.0369
	              o 0.0369
	       services 0.0369
	unauthenticated 0.0369
	  authenticates 0.0369
	              a 0.0369
	        contact 0.0369
	         months 0.0059
	              . 0.0000
	              , 0.0000
	            per 0.0000
	          years 0.0000
	              - 0.0000
	        o'clock 0.0000
	          miles 0.0000
	           </S> 0.0000

           si.x   471213  19 (31)
	            xis 0.7000
	            sit 0.5000
	            sxi 0.4000
	             on 0.0541
	          <UNK> 0.0369
	              I 0.0369
	              ( 0.0369
	            cia 0.0369
	           Pica 0.0369
	              " 0.0369
	            and 0.0369
	           siex 0.0369
	              a 0.0369
	            but 0.0369
	     regardless 0.0369
	           </S> 0.0369
	            the 0.0059
	          which 0.0012
	           said 0.0000
	            you 0.0000
	            six 0.0000
	              i 0.0000
	             or 0.0000
	           some 0.0000
	           sala 0.0000
	            sex 0.0000
	           most 0.0000
	           site 0.0000
	           sixe 0.0000
	             si 0.0000
	            one 0.0000

             of   471218   1 (20)
	            put 0.0369
	              I 0.0369
	              , 0.0369
	            oof 0.0369
	             iu 0.0369
	              - 0.0369
	           </S> 0.0369
	              a 0.0369
	             fo 0.0369
	             of 0.0369
	            oft 0.0369
	              . 0.0369
	            the 0.0369
	             on 0.0369
	            cia 0.0369
	            off 0.0369
	             us 0.0369
	            and 0.0369
	           puts 0.0369
	             or 0.0369

            one   471401  13 (20)
	             on 0.5000
	             of 0.4000
	           onee 0.0369
	            cia 0.0369
	             us 0.0369
	           ones 0.0369
	            oen 0.0369
	           oner 0.0369
	           onen 0.0369
	            ons 0.0369
	            ont 0.0369
	           </S> 0.0059
	              . 0.0000
	          <UNK> 0.0000
	              E 0.0000
	              s 0.0000
	              - 0.0000
	              a 0.0000
	            one 0.0000
	              , 0.0000

         caught   471405   9 (25)
	         Caught 0.7000
	        claught 0.0369
	        caudata 0.0369
	        ycaught 0.0369
	        Icaught 0.0369
	       caughten 0.0369
	         listed 0.0369
	             of 0.0059
	           </S> 0.0000
	          could 0.0000
	              - 0.0000
	             to 0.0000
	            was 0.0000
	         taught 0.0000
	             is 0.0000
	              . 0.0000
	         caught 0.0000
	              a 0.0000
	              , 0.0000
	              I 0.0000
	         Vaughn 0.0000
	             or 0.0000
	           case 0.0000
	            can 0.0000
	          right 0.0000

            was   471428  14 (20)
	           wash 0.0369
	            war 0.0369
	             wa 0.0369
	              a 0.0369
	           waas 0.0369
	            cia 0.0369
	            arz 0.0369
	             us 0.0369
	              I 0.0369
	           wasp 0.0369
	           wasa 0.0369
	            way 0.0369
	              , 0.0059
	           </S> 0.0000
	              - 0.0000
	            has 0.0000
	            was 0.0000
	              . 0.0000
	             we 0.0000
	            the 0.0000

             In   471465   1 (19)
	             In 0.5538
	             It 0.0900
	             If 0.0570
	              I 0.0418
	              a 0.0369
	             iu 0.0369
	            cia 0.0369
	             us 0.0369
	            Inn 0.0369
	            Inc 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ] 0.0000
	              ) 0.0000
	              . 0.0000
	              / 0.0000
	              , 0.0000

   sand3'-browu   471627 inf (23)
	           send 0.7000
	          <UNK> 0.2000
	  unenforceable 0.0369
	       software 0.0369
	         vendor 0.0369
	       password 0.0369
	        implied 0.0369
	          brown 0.0369
	           down 0.0369
	            the 0.0059
	              ( 0.0000
	      otherwise 0.0000
	             an 0.0000
	            any 0.0000
	              - 0.0000
	           from 0.0000
	            not 0.0000
	           more 0.0000
	              ' 0.0000
	              a 0.0000
	           </S> 0.0000
	              e 0.0000
	              , 0.0000

            the   471683   1 (18)
	           thee 0.0369
	              I 0.0369
	           they 0.0369
	            cia 0.0369
	             iu 0.0369
	            tho 0.0369
	              , 0.0369
	           them 0.0369
	              . 0.0369
	              a 0.0369
	            teh 0.0369
	            the 0.0369
	            thy 0.0369
	             us 0.0369
	           </S> 0.0059
	              " 0.0000
	              } 0.0000
	              ) 0.0000

              -   471699   1 (13)
	              - 0.5250
	            cia 0.0369
	             iu 0.0369
	              . 0.0059
	             -1 0.0000
	              , 0.0000
	       feathers 0.0000
	           </S> 0.0000
	             -- 0.0000
	             us 0.0000
	            and 0.0000
	             of 0.0000
	            the 0.0000

       blackish   471740   5 (25)
	     assessment 0.8000
	              , 0.6000
	              . 0.5000
	              ) 0.1000
	           site 0.0369
	       blackism 0.0369
	       Blackish 0.0369
	          place 0.0369
	       blackish 0.0369
	          least 0.0369
	       brackish 0.0369
	              I 0.0369
	      blackfish 0.0369
	           back 0.0369
	            way 0.0369
	          thing 0.0369
	     blackishly 0.0369
	             of 0.0059
	             is 0.0000
	              a 0.0000
	          being 0.0000
	           </S> 0.0000
	              - 0.0000
	              R 0.0000
	        thereof 0.0000

            but   471750   2 (28)
	             on 0.0541
	         within 0.0369
	           </S> 0.0369
	            cia 0.0369
	              , 0.0369
	            buy 0.0369
	            bus 0.0369
	             by 0.0369
	             be 0.0369
	           butt 0.0369
	              " 0.0369
	             bu 0.0369
	           buts 0.0369
	          <UNK> 0.0369
	            but 0.0369
	              a 0.0369
	              x 0.0369
	           with 0.0062
	            the 0.0059
	          which 0.0012
	            you 0.0000
	             us 0.0000
	          while 0.0000
	             or 0.0000
	              e 0.0000
	            tub 0.0000
	             iu 0.0000
	              i 0.0000

        huffish   471787   2 (24)
	              a 0.1000
	        Ruffing 0.0369
	      huffishly 0.0369
	         ufishi 0.0369
	        buffish 0.0369
	        muffish 0.0369
	             us 0.0369
	            VMS 0.0369
	         Duffin 0.0369
	         latest 0.0369
	        huffish 0.0369
	           this 0.0369
	         uffish 0.0369
	            him 0.0369
	              , 0.0059
	              - 0.0000
	              . 0.0000
	            and 0.0000
	           blue 0.0000
	           </S> 0.0000
	           with 0.0000
	            the 0.0000
	           skin 0.0000
	             to 0.0000

        patches   471795   1 (23)
	       patchers 0.0369
	      repatches 0.0369
	              I 0.0369
	        patches 0.0369
	     Despatches 0.0369
	        matches 0.0369
	       pataches 0.0369
	            and 0.0369
	          patch 0.0369
	          color 0.0369
	          death 0.0369
	              - 0.0369
	          grief 0.0369
	         patchs 0.0369
	       patchset 0.0369
	        Watches 0.0369
	        patched 0.0369
	        patcher 0.0369
	              a 0.0369
	              , 0.0059
	           </S> 0.0000
	              . 0.0000
	          <UNK> 0.0000

              a   471863   1 (21)
	              - 0.0369
	             la 0.0369
	            the 0.0369
	             us 0.0369
	             at 0.0369
	             of 0.0369
	              . 0.0369
	              a 0.0369
	           lava 0.0369
	            cia 0.0369
	             to 0.0369
	             La 0.0369
	             as 0.0369
	             aa 0.0369
	              , 0.0369
	            aaa 0.0369
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	          <UNK> 0.0000
	              } 0.0000

   superciliary   471871   1 (20)
	           hood 0.0369
	              a 0.0369
	    crystalline 0.0369
	   superciliare 0.0369
	   superciliari 0.0369
	   superciliary 0.0369
	        support 0.0369
	              I 0.0369
	        service 0.0369
	        reddish 0.0369
	       American 0.0369
	              T 0.0369
	              , 0.0059
	            man 0.0000
	          paper 0.0000
	     background 0.0000
	              - 0.0000
	           </S> 0.0000
	             of 0.0000
	              . 0.0000

         streak   471884   2 (21)
	            and 0.2000
	              . 0.0369
	        streaky 0.0369
	         strake 0.0369
	              I 0.0369
	          store 0.0369
	         stream 0.0369
	              a 0.0369
	         streak 0.0369
	      substance 0.0369
	        streaks 0.0369
	              - 0.0369
	         streap 0.0369
	           sore 0.0369
	         powder 0.0369
	         street 0.0369
	         ridges 0.0059
	              , 0.0000
	           </S> 0.0000
	         stripe 0.0000
	         arches 0.0000

          under   471892   1 (19)
	              , 0.0369
	              I 0.0369
	           user 0.0369
	              . 0.0369
	              - 0.0369
	         unders 0.0369
	         undera 0.0369
	          under 0.0369
	          undet 0.0369
	          undeb 0.0369
	          undre 0.0369
	              a 0.0369
	         undere 0.0369
	           unde 0.0369
	          Index 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000
	              " 0.0000

              a   471962   1 (20)
	             of 0.0369
	              , 0.0369
	            the 0.0369
	             to 0.0369
	            and 0.0369
	           lava 0.0369
	            cia 0.0369
	             as 0.0369
	             la 0.0369
	             La 0.0369
	             aa 0.0369
	             us 0.0369
	             at 0.0369
	              . 0.0369
	              a 0.0369
	            aaa 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	              " 0.0000

           tlie   471997  11 (28)
	             my 0.4533
	           trie 0.0500
	         outlie 0.0369
	              . 0.0369
	         tlieta 0.0369
	          talie 0.0369
	           teie 0.0369
	              I 0.0369
	           teil 0.0369
	          tliet 0.0369
	            the 0.0059
	           </S> 0.0000
	           time 0.0000
	           thie 0.0000
	            his 0.0000
	           alba 0.0000
	              - 0.0000
	           tile 0.0000
	            lie 0.0000
	           Clie 0.0000
	            cia 0.0000
	           this 0.0000
	            tle 0.0000
	          their 0.0000
	             iu 0.0000
	              a 0.0000
	              , 0.0000
	            tie 0.0000

           neck   472002   2 (26)
	            new 0.1000
	        section 0.0369
	          issue 0.0369
	          necke 0.0369
	          necks 0.0369
	              I 0.0369
	           neco 0.0369
	              a 0.0369
	       Atlantic 0.0369
	           Pica 0.0369
	           neck 0.0369
	           nece 0.0369
	            not 0.0369
	            and 0.0369
	          kneck 0.0369
	           need 0.0369
	         border 0.0369
	            nec 0.0369
	          <UNK> 0.0059
	          world 0.0000
	           same 0.0000
	           </S> 0.0000
	              - 0.0000
	              . 0.0000
	            Act 0.0000
	              , 0.0000

           bill   472009   1 (23)
	              I 0.0369
	              , 0.0369
	           bill 0.0369
	            bil 0.0369
	            cia 0.0369
	           sala 0.0369
	           Pica 0.0369
	            big 0.0369
	           will 0.0369
	           file 0.0369
	              . 0.0369
	          billy 0.0369
	              - 0.0369
	            and 0.0369
	              a 0.0369
	          bills 0.0369
	           bild 0.0369
	           bile 0.0369
	           bili 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	              " 0.0000

           dark   472014   1 (27)
	           dark 0.6000
	              } 0.0369
	          darks 0.0369
	          darky 0.0369
	           drka 0.0369
	            arz 0.0369
	           lava 0.0369
	           sala 0.0369
	              o 0.0369
	           drak 0.0369
	            dar 0.0369
	           dare 0.0369
	           darn 0.0369
	              . 0.0059
	           days 0.0000
	            day 0.0000
	              - 0.0000
	             to 0.0000
	              I 0.0000
	              , 0.0000
	           data 0.0000
	            and 0.0000
	              ' 0.0000
	           </S> 0.0000
	             of 0.0000
	             is 0.0000
	              a 0.0000

           feet   472040   1 (23)
	              . 0.0369
	           been 0.0369
	           fete 0.0369
	              a 0.0369
	              I 0.0369
	           feel 0.0369
	           fees 0.0369
	          feest 0.0369
	           need 0.0369
	              , 0.0369
	           feet 0.0369
	           face 0.0369
	            fee 0.0369
	           free 0.0369
	         feetje 0.0369
	           fett 0.0369
	          feets 0.0369
	              - 0.0369
	            fet 0.0369
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	              } 0.0000

     j^ellowish   472045   1 (16)
	      yellowish 0.6000
	      Yellowish 0.6000
	      mellowish 0.6000
	      galleries 0.0037
	              I 0.0000
	              } 0.0000
	           </S> 0.0000
	             to 0.0000
	              . 0.0000
	          below 0.0000
	             of 0.0000
	        stories 0.0000
	              , 0.0000
	              A 0.0000
	              - 0.0000
	              a 0.0000

           horn   472056   1 (24)
	              - 0.0369
	              a 0.0369
	              , 0.0369
	          horno 0.0369
	          hoorn 0.0369
	           </S> 0.0369
	           home 0.0369
	          horny 0.0369
	          horns 0.0369
	       Tide2006 0.0369
	           horn 0.0369
	          corax 0.0369
	            arz 0.0369
	          torax 0.0369
	              I 0.0369
	           here 0.0369
	            pre 0.0369
	           hors 0.0369
	           hora 0.0369
	            the 0.0369
	          Speed 0.0369
	              . 0.0369
	              R 0.0369
	            how 0.0369

           iris   472069   1 (24)
	            its 0.0369
	              . 0.0369
	             in 0.0369
	           iris 0.0369
	             iu 0.0369
	            cia 0.0369
	            arz 0.0369
	              a 0.0369
	              - 0.0369
	            irs 0.0369
	          iiris 0.0369
	              I 0.0369
	          irish 0.0369
	          irisa 0.0369
	             is 0.0369
	              , 0.0369
	           irie 0.0369
	           irin 0.0369
	            iri 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000
	          <UNK> 0.0000
	              " 0.0000

          hazel   472074   1 (23)
	          hazel 1.0000
	          hazes 0.0369
	          hazed 0.0369
	           held 0.0369
	         Ghazel 0.0369
	              } 0.0369
	           haze 0.0369
	          Pales 0.0369
	          hotel 0.0369
	          hazle 0.0369
	           hard 0.0369
	         hazels 0.0369
	          halez 0.0369
	              , 0.0059
	              ) 0.0000
	           </S> 0.0000
	           have 0.0000
	              - 0.0000
	            has 0.0000
	    recognition 0.0000
	              . 0.0000
	           here 0.0000
	          scans 0.0000

              .   472079   1 (13)
	              . 0.9521
	              - 0.0426
	             us 0.0369
	       iris.htm 0.0369
	            cia 0.0369
	             iu 0.0369
	           eyes 0.0059
	            and 0.0000
	            ... 0.0000
	            the 0.0000
	             of 0.0000
	              , 0.0000
	           </S> 0.0000

         tipped   472244   3 (22)
	          tepid 0.1000
	           time 0.1000
	        tripped 0.0369
	         tipped 0.0369
	         tippet 0.0369
	        tiepide 0.0369
	        tippend 0.0369
	        stipped 0.0369
	              A 0.0369
	          tippe 0.0369
	             of 0.0059
	          times 0.0000
	         tipper 0.0000
	              I 0.0000
	              . 0.0000
	              , 0.0000
	              a 0.0000
	           type 0.0000
	              1 0.0000
	             is 0.0000
	              - 0.0000
	           </S> 0.0000

           buff   472269   1 (31)
	           buff 0.8809
	          white 0.0369
	           bufo 0.0369
	           bufa 0.0369
	           gold 0.0369
	              x 0.0369
	          black 0.0369
	          buffu 0.0369
	              u 0.0369
	            the 0.0059
	          water 0.0000
	            buy 0.0000
	              . 0.0000
	          buffs 0.0000
	           them 0.0000
	              a 0.0000
	           your 0.0000
	          buffy 0.0000
	             us 0.0000
	            you 0.0000
	              - 0.0000
	              , 0.0000
	            buf 0.0000
	             it 0.0000
	           </S> 0.0000
	             an 0.0000
	             by 0.0000
	         others 0.0000
	             iu 0.0000
	          rufus 0.0000
	            but 0.0000

          moult   472292   1 (22)
	          moult 1.0000
	            and 0.1575
	          multo 0.0369
	           moul 0.0369
	          moule 0.0369
	         moults 0.0369
	        moulted 0.0369
	          maura 0.0369
	         moulut 0.0369
	          mould 0.0369
	          mouth 0.0369
	              . 0.0059
	              , 0.0000
	              a 0.0000
	           most 0.0000
	              - 0.0000
	          could 0.0000
	           </S> 0.0000
	          would 0.0000
	              I 0.0000
	             of 0.0000
	             in 0.0000

        Colonel   472322   3 (21)
	              - 0.3000
	              , 0.2000
	        Colones 0.0369
	        Colonet 0.0369
	        Colonel 0.0369
	       Colonels 0.0369
	        Colenel 0.0369
	         corone 0.0369
	      Colonelcy 0.0369
	              a 0.0369
	        Colored 0.0369
	        Colonne 0.0369
	        Cologne 0.0369
	           </S> 0.0059
	          <UNK> 0.0000
	              ) 0.0000
	              " 0.0000
	              ] 0.0000
	              . 0.0000
	              A 0.0000
	              I 0.0000

           Irby   472330   1 (25)
	              a 0.0369
	           Irby 0.0369
	           alba 0.0369
	            arz 0.0369
	      configure 0.0369
	             If 0.0369
	           Arby 0.0369
	          Ireby 0.0369
	              n 0.0369
	           Iriy 0.0369
	              \ 0.0369
	             It 0.0369
	            Irb 0.0369
	           Izby 0.0369
	              t 0.0369
	              , 0.0059
	             In 0.0000
	           </S> 0.0000
	              - 0.0000
	              . 0.0000
	          <UNK> 0.0000
	          Blimp 0.0000
	             's 0.0000
	          Kurtz 0.0000
	              ) 0.0000

    Ornithology   472337  14 (24)
	              A 0.1000
	   Ornithologie 0.0369
	        version 0.0369
	    Ornothology 0.0369
	    Ornithologe 0.0369
	          those 0.0369
	        Journal 0.0369
	            One 0.0369
	            one 0.0369
	    Ornathology 0.0369
	     University 0.0369
	    Proceedings 0.0369
	           </S> 0.0059
	              , 0.0000
	    Ornithology 0.0000
	          <UNK> 0.0000
	              - 0.0000
	              ) 0.0000
	    ornithology 0.0000
	             to 0.0000
	              . 0.0000
	              I 0.0000
	           with 0.0000
	              a 0.0000

         says:-   472379   1 (25)
	           says 0.6000
	              . 0.1726
	          sayas 0.0369
	              s 0.0369
	           aysa 0.0369
	          sayst 0.0369
	          sayso 0.0369
	           said 0.0369
	          aysay 0.0369
	           </S> 0.0059
	            say 0.0000
	              ( 0.0000
	              ; 0.0000
	              = 0.0000
	              " 0.0000
	              & 0.0000
	              - 0.0000
	              I 0.0000
	            and 0.0000
	          <UNK> 0.0000
	              , 0.0000
	             == 0.0000
	          sassy 0.0000
	              A 0.0000
	              a 0.0000

              "   472386   1 (15)
	              : 0.0369
	             iu 0.0369
	           </S> 0.0369
	             of 0.0369
	              , 0.0369
	              " 0.0369
	         Solent 0.0369
	              . 0.0369
	          <UNK> 0.0369
	            the 0.0369
	              ( 0.0369
	            cia 0.0369
	              - 0.0369
	             us 0.0369
	            and 0.0369

     Andalucian   472394   2 (23)
	    Andalucians 1.0000
	     Andalucian 0.6000
	      following 0.1000
	    Andalusiana 0.0369
	           plus 0.0369
	      Amendment 0.0369
	       positive 0.0369
	              , 0.0369
	           </S> 0.0059
	       American 0.0000
	          right 0.0000
	           left 0.0000
	          whole 0.0000
	          value 0.0000
	          first 0.0000
	              " 0.0000
	              - 0.0000
	          <UNK> 0.0000
	      Andalucia 0.0000
	            two 0.0000
	          other 0.0000
	           same 0.0000
	     Andalusian 0.0000

      commences   472445   1 (23)
	         summer 0.0369
	        comense 0.0369
	      companies 0.0369
	       commence 0.0369
	      commences 0.0369
	           2001 0.0369
	     commencest 0.0369
	      commenced 0.0369
	      commencer 0.0369
	        comment 0.0369
	       comments 0.0369
	           2003 0.0369
	       comences 0.0369
	             of 0.0059
	              a 0.0000
	              , 0.0000
	           </S> 0.0000
	              - 0.0000
	             at 0.0000
	              . 0.0000
	              I 0.0000
	           time 0.0000
	           date 0.0000

          nests   472541  10 (26)
	           ests 0.0369
	             us 0.0369
	          neste 0.0369
	         nestas 0.0369
	        Ernests 0.0369
	          nesta 0.0369
	         nestes 0.0369
	        renests 0.0369
	              . 0.0059
	             he 0.0000
	             of 0.0000
	           </S> 0.0000
	             to 0.0000
	              - 0.0000
	          nests 0.0000
	            not 0.0000
	            the 0.0000
	           nest 0.0000
	              a 0.0000
	           need 0.0000
	           they 0.0000
	           nets 0.0000
	              i 0.0000
	              , 0.0000
	              I 0.0000
	            new 0.0000

    Excessively   472586 inf (19)
	      excessive 0.0369
	    excessively 0.0369
	    Exclusively 0.0369
	    exclusively 0.0369
	      Excessive 0.0369
	   Expressively 0.0369
	    recessively 0.0369
	              a 0.0369
	           </S> 0.0059
	        However 0.0000
	              A 0.0000
	              " 0.0000
	              I 0.0000
	              ] 0.0000
	              . 0.0000
	              , 0.0000
	              - 0.0000
	              / 0.0000
	              ) 0.0000

       abundant   472598   5 (27)
	          <UNK> 0.3000
	       Volatile 0.2000
	     Overweight 0.1000
	              - 0.1000
	         Monday 0.0369
	              g 0.0369
	        abundan 0.0369
	       abundant 0.0369
	              I 0.0369
	        abundat 0.0369
	              ) 0.0369
	      configure 0.0369
	              n 0.0369
	vareSelskap.cgi 0.0369
	       abundans 0.0369
	      abundanta 0.0369
	      abundante 0.0369
	      abundanti 0.0369
	        Tuesday 0.0369
	      Injurious 0.0059
	        Drained 0.0000
	              . 0.0000
	              , 0.0000
	    crossposted 0.0000
	           Free 0.0000
	           </S> 0.0000
	            and 0.0000

       Cahuidra   472655  13 (29)
	          major 0.0369
	        Chhidru 0.0369
	              , 0.0369
	         Cahuil 0.0369
	             as 0.0369
	              . 0.0369
	       Caleidra 0.0369
	        Chidira 0.0369
	         family 0.0369
	        Cachira 0.0369
	        Chidrac 0.0369
	           </S> 0.0059
	           same 0.0000
	        Cahuita 0.0000
	       Cahuilla 0.0000
	              - 0.0000
	       Calandra 0.0000
	           most 0.0000
	       original 0.0000
	          first 0.0000
	           City 0.0000
	          <UNK> 0.0000
	       Cathedra 0.0000
	              " 0.0000
	          other 0.0000
	        Chandra 0.0000
	          Cidra 0.0000
	          Cahir 0.0000
	       National 0.0000

              ;   472664   1 (13)
	         master 0.0369
	              , 0.0369
	           </S> 0.0369
	            the 0.0369
	              ; 0.0369
	             us 0.0369
	           that 0.0369
	            cia 0.0369
	             iu 0.0369
	              . 0.0369
	            and 0.0369
	             of 0.0369
	              - 0.0369

           they   472666   1 (17)
	           they 0.0369
	           then 0.0369
	          thewy 0.0369
	          Athey 0.0369
	           them 0.0369
	          theyr 0.0369
	          tythe 0.0369
	           tree 0.0369
	            the 0.0369
	          other 0.0369
	          tehty 0.0369
	           </S> 0.0059
	          <UNK> 0.0000
	              " 0.0000
	              ) 0.0000
	              } 0.0000
	              ] 0.0000

         falhnv   472678 inf (24)
	         felhan 0.0369
	           find 0.0369
	         falcon 0.0369
	          falha 0.0369
	         falang 0.0369
	          falhe 0.0369
	          found 0.0369
	          falho 0.0369
	         fahlen 0.0369
	         falhas 0.0369
	        falhava 0.0369
	         falhou 0.0369
	             to 0.0059
	              . 0.0000
	              - 0.0000
	          being 0.0000
	              I 0.0000
	            the 0.0000
	             us 0.0000
	            not 0.0000
	           </S> 0.0000
	           full 0.0000
	              , 0.0000
	              a 0.0000

        i^round   472685   1 (23)
	             us 0.0369
	        impound 0.0369
	             to 0.0369
	          found 0.0369
	       inground 0.0369
	        unround 0.0369
	              , 0.0369
	           irou 0.0369
	       midround 0.0369
	         around 0.0369
	              - 0.0369
	              . 0.0369
	             be 0.0369
	              a 0.0369
	         direct 0.0369
	             do 0.0369
	        inbound 0.0369
	              I 0.0369
	          sound 0.0369
	          round 0.0369
	         ground 0.0369
	           </S> 0.0369
	            use 0.0369

              ,   472692 inf (8)
	             of 0.0369
	             to 0.0369
	             us 0.0369
	            and 0.0369
	             in 0.0369
	            the 0.0369
	            cia 0.0369
	             iu 0.0369

           clod   472724  13 (29)
	            cia 0.8000
	           clot 0.5000
	           sort 0.0867
	          clodo 0.0369
	           alba 0.0369
	          clode 0.0369
	              a 0.0369
	     References 0.0369
	         excuse 0.0369
	              I 0.0369
	           kind 0.0200
	             of 0.0059
	           code 0.0000
	           time 0.0000
	              , 0.0000
	          could 0.0000
	           clog 0.0000
	            and 0.0000
	           also 0.0000
	            clo 0.0000
	          other 0.0000
	           cold 0.0000
	           clod 0.0000
	           </S> 0.0000
	              . 0.0000
	          clods 0.0000
	            can 0.0000
	          major 0.0000
	              - 0.0000

           au}'   472735 inf (23)
	            aua 0.0369
	           auau 0.0369
	              I 0.0369
	            arz 0.0369
	       multiple 0.0369
	          maura 0.0369
	            the 0.0059
	              , 0.0000
	           this 0.0000
	           alba 0.0000
	           part 0.0000
	             au 0.0000
	           </S> 0.0000
	              . 0.0000
	           some 0.0000
	             at 0.0000
	            and 0.0000
	            aud 0.0000
	              - 0.0000
	              a 0.0000
	           auto 0.0000
	            are 0.0000
	            auf 0.0000

        sliglit   472740   1 (29)
	         slight 0.0369
	         stigli 0.0369
	           </S> 0.0369
	          sigli 0.0369
	           slig 0.0369
	         stilig 0.0369
	          major 0.0369
	         sialis 0.0369
	        Sniglit 0.0369
	         Liglig 0.0369
	              , 0.0369
	             in 0.0369
	        riglita 0.0369
	        seligit 0.0369
	          right 0.0369
	           site 0.0369
	          light 0.0369
	              - 0.0369
	             of 0.0369
	         Giglio 0.0369
	           slit 0.0369
	        stiligt 0.0369
	         Piglit 0.0369
	           with 0.0369
	        slights 0.0369
	              . 0.0369
	              a 0.0369
	        stiglio 0.0369
	        stiglia 0.0369

     depression   472748   1 (9)
	     expression 0.0369
	     depressior 0.0369
	     depressing 0.0369
	    depressione 0.0369
	    compression 0.0369
	     depression 0.0369
	     depressiva 0.0369
	    depressions 0.0369
	     depressius 0.0369

              I   472774   3 (20)
	             In 0.5538
	             It 0.0900
	              I 0.0418
	             us 0.0369
	            cia 0.0369
	             iu 0.0369
	             MI 0.0369
	             WI 0.0369
	            III 0.0369
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	            and 0.0000
	              ] 0.0000
	            the 0.0000
	              ) 0.0000
	             II 0.0000
	              , 0.0000
	              . 0.0000
	             of 0.0000

          l)ird   472829  14 (26)
	           list 0.6000
	              I 0.2833
	            lir 0.0369
	           dirl 0.0369
	          liard 0.0369
	             of 0.0369
	          flird 0.0369
	           wird 0.0369
	          loira 0.0369
	          loire 0.0369
	          thing 0.0369
	              a 0.0369
	              , 0.0059
	             in 0.0000
	              . 0.0000
	           Bird 0.0000
	            man 0.0000
	              - 0.0000
	          laird 0.0000
	            one 0.0000
	           ones 0.0000
	           bird 0.0000
	           </S> 0.0000
	           like 0.0000
	            and 0.0000
	           line 0.0000

            off   472835   1 (24)
	              , 0.0369
	           said 0.0369
	            oft 0.0369
	             on 0.0369
	              a 0.0369
	            ofo 0.0369
	              ) 0.0369
	             or 0.0369
	              - 0.0369
	              I 0.0369
	            new 0.0369
	            cia 0.0369
	             iu 0.0369
	           ooff 0.0369
	           back 0.0369
	      fashioned 0.0369
	             us 0.0369
	              . 0.0369
	            off 0.0369
	           offs 0.0369
	           offa 0.0369
	             of 0.0369
	           </S> 0.0369
	            ofa 0.0369

              "   472839   6 (14)
	            all 0.0369
	           link 0.0369
	            cia 0.0369
	             iu 0.0369
	             us 0.0369
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	            the 0.0000
	              . 0.0000
	              , 0.0000
	              ) 0.0000
	            and 0.0000
	             of 0.0000

       Saunders   472849   1 (30)
	       Saunders 1.0000
	        Sunders 0.0369
	              I 0.0369
	      Sunderdas 0.0369
	              A 0.0369
	       Sanderus 0.0369
	          added 0.0369
	              a 0.0369
	       saunders 0.0369
	       launders 0.0369
	             he 0.0369
	     Saunderson 0.0369
	    Saundersina 0.0369
	       Sounders 0.0369
	             M. 0.0359
	              , 0.0059
	           said 0.0000
	         Street 0.0000
	        Johnson 0.0000
	          under 0.0000
	           </S> 0.0000
	          Stern 0.0000
	          <UNK> 0.0000
	        Sanders 0.0000
	             A. 0.0000
	              " 0.0000
	           Dean 0.0000
	              - 0.0000
	             J. 0.0000
	              . 0.0000

          liird   472898 inf (22)
	          laird 0.2000
	         beauty 0.0369
	          liira 0.0369
	          liire 0.0369
	        surface 0.0369
	              , 0.0369
	           team 0.0369
	            pan 0.0369
	           dirl 0.0369
	         ilidir 0.0369
	        weather 0.0369
	              . 0.0369
	           club 0.0369
	           liir 0.0369
	           </S> 0.0059
	           same 0.0037
	           line 0.0000
	              - 0.0000
	           like 0.0000
	           list 0.0000
	      following 0.0000
	          first 0.0000

      frequents   472904   1 (22)
	              a 0.0369
	        between 0.0369
	             is 0.0369
	              I 0.0369
	             of 0.0369
	             to 0.0369
	      frequenti 0.0369
	      frequents 0.0369
	            and 0.0369
	        request 0.0369
	              - 0.0369
	            was 0.0369
	       frequent 0.0369
	              . 0.0369
	      frequente 0.0369
	              , 0.0369
	    frequentest 0.0369
	     frequentes 0.0369
	     frequentis 0.0369
	           </S> 0.0369
	           from 0.0369
	       frequens 0.0369

            dry   472914   2 (23)
	              - 0.2000
	             do 0.0369
	             dr 0.0369
	            dyr 0.0369
	            day 0.0369
	            dry 0.0369
	           dyrr 0.0369
	            arz 0.0369
	            Pyi 0.0369
	            dre 0.0369
	            dri 0.0369
	             us 0.0369
	             de 0.0369
	           drys 0.0369
	           dryg 0.0369
	            the 0.0059
	           </S> 0.0000
	              a 0.0000
	              . 0.0000
	           bars 0.0000
	           this 0.0000
	            are 0.0000
	              , 0.0000

          while   472984   1 (19)
	          hwile 0.0369
	          white 0.0369
	              : 0.0369
	              a 0.0369
	         whiles 0.0369
	         whiled 0.0369
	          while 0.0369
	          which 0.0369
	         whilie 0.0369
	              . 0.0369
	              , 0.0369
	          whill 0.0369
	              I 0.0369
	           will 0.0369
	          whilk 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000
	              " 0.0000

       tameuess   472994  25 (35)
	          value 0.3000
	        tahmeus 0.0369
	          teues 0.0369
	          meues 0.0369
	              . 0.0369
	        tagetes 0.0369
	       interior 0.0369
	          there 0.0369
	    composition 0.0369
	        ameutes 0.0369
	          tames 0.0369
	          major 0.0369
	        address 0.0369
	              , 0.0369
	          amess 0.0369
	              I 0.0369
	      condition 0.0369
	        ameutas 0.0369
	              - 0.0369
	       tameless 0.0369
	         nature 0.0369
	           disc 0.0369
	        tamemes 0.0369
	            own 0.0059
	         effect 0.0000
	            the 0.0000
	           time 0.0000
	        content 0.0000
	           </S> 0.0000
	       tameness 0.0000
	     affiliates 0.0000
	              a 0.0000
	       timeless 0.0000
	            use 0.0000
	           head 0.0000

             is   473003   1 (19)
	             in 0.0369
	            ist 0.0369
	             si 0.0369
	              - 0.0369
	            iso 0.0369
	             is 0.0369
	              ( 0.0369
	              a 0.0369
	            iss 0.0369
	             it 0.0369
	            iis 0.0369
	             us 0.0369
	              , 0.0369
	            cia 0.0369
	           </S> 0.0369
	              . 0.0369
	         brands 0.0369
	             iu 0.0369
	             on 0.0369

    difficult}'   473029  10 (24)
	            the 0.1000
	      dificulti 0.0369
	           data 0.0369
	          found 0.0369
	           part 0.0369
	    difficultly 0.0369
	      difficult 0.0369
	    difficultas 0.0369
	             of 0.0059
	             it 0.0000
	     difficulty 0.0000
	             us 0.0000
	           </S> 0.0000
	      different 0.0000
	              , 0.0000
	            any 0.0000
	       problems 0.0000
	              - 0.0000
	          which 0.0000
	              i 0.0000
	              a 0.0000
	              . 0.0000
	              I 0.0000
	          major 0.0000

             in   473041   1 (20)
	             us 0.0369
	              , 0.0369
	            the 0.0369
	              - 0.0369
	             ni 0.0369
	              . 0.0369
	              I 0.0369
	             it 0.0369
	             in 0.0369
	            int 0.0369
	          sharp 0.0369
	           </S> 0.0369
	              a 0.0369
	             to 0.0369
	             is 0.0369
	            iin 0.0369
	              s 0.0369
	            inc 0.0369
	             iu 0.0369
	            inn 0.0369

       shooting   473044  15 (26)
	           such 0.3178
	      shootings 0.2000
	        shooing 0.1000
	      obtaining 0.0369
	              x 0.0369
	           with 0.0369
	        through 0.0369
	       serotina 0.0369
	          using 0.0369
	             us 0.0369
	          being 0.0369
	       shotting 0.0369
	          which 0.0297
	            the 0.0059
	              a 0.0000
	            for 0.0000
	       shouting 0.0000
	           </S> 0.0000
	              , 0.0000
	        hooting 0.0000
	              - 0.0000
	              . 0.0000
	        writing 0.0000
	           this 0.0000
	           your 0.0000
	       shooting 0.0000

       withoiit   473083   1 (20)
	        without 0.7000
	       purposes 0.4000
	        lithoid 0.0369
	         whosit 0.0369
	       uithouwt 0.0369
	         Pithoi 0.0369
	              I 0.0369
	       Tithonia 0.0369
	        withsit 0.0369
	       withoute 0.0369
	       Githoito 0.0369
	              a 0.0369
	             of 0.0059
	              , 0.0000
	              - 0.0000
	           with 0.0000
	            and 0.0000
	         within 0.0000
	              . 0.0000
	           </S> 0.0000

        blowing   473092   1 (24)
	         bowing 0.0369
	           </S> 0.0369
	          bring 0.0369
	      editorial 0.0369
	         lowing 0.0369
	              a 0.0369
	      inblowing 0.0369
	            the 0.0369
	              , 0.0369
	      billowing 0.0369
	        blowing 0.0369
	         browni 0.0369
	        flowing 0.0369
	        bowling 0.0369
	            but 0.0369
	        looking 0.0369
	              - 0.0369
	      blowingly 0.0369
	       browning 0.0369
	       blowings 0.0369
	          being 0.0369
	           only 0.0369
	             so 0.0369
	              . 0.0369

            cut   473137  14 (28)
	            But 0.8000
	           cuts 0.6000
	            cup 0.4000
	            but 0.3000
	           cutt 0.0369
	             iu 0.0369
	            cia 0.0369
	        sitting 0.0369
	       increase 0.0369
	            cum 0.0369
	           like 0.0369
	            ctu 0.0369
	            flu 0.0059
	           that 0.0000
	              a 0.0000
	             in 0.0000
	           </S> 0.0000
	              - 0.0000
	             of 0.0000
	            cut 0.0000
	            can 0.0000
	            out 0.0000
	             us 0.0000
	              . 0.0000
	           cute 0.0000
	             's 0.0000
	              , 0.0000
	              I 0.0000

         utters   473180  13 (24)
	          under 0.4000
	         waters 0.2000
	         uttern 0.0369
	        utterns 0.0369
	        Cutters 0.0369
	              I 0.0369
	        cutters 0.0369
	         Waters 0.0369
	          utter 0.0369
	        sutters 0.0369
	        rutters 0.0369
	            and 0.0059
	           uses 0.0000
	             in 0.0000
	           </S> 0.0000
	              , 0.0000
	              - 0.0000
	             is 0.0000
	              . 0.0000
	           with 0.0000
	          other 0.0000
	             of 0.0000
	           user 0.0000
	         utters 0.0000

           song   473208   1 (25)
	           song 0.7000
	             to 0.1000
	           sony 0.0369
	              I 0.0369
	           sala 0.0369
	           life 0.0369
	             us 0.0369
	          songs 0.0369
	           some 0.0369
	           term 0.0369
	          songy 0.0369
	           sogn 0.0369
	              , 0.0059
	           </S> 0.0000
	            son 0.0000
	             so 0.0000
	           long 0.0000
	           sons 0.0000
	        attempt 0.0000
	              a 0.0000
	            one 0.0000
	            and 0.0000
	              - 0.0000
	              . 0.0000
	            the 0.0000

           clod   473235  14 (30)
	            cia 0.8000
	           clot 0.5000
	           site 0.0369
	          clodo 0.0369
	           high 0.0369
	           alba 0.0369
	        pretext 0.0369
	              I 0.0369
	              a 0.0369
	          issue 0.0369
	          clode 0.0369
	     References 0.0369
	             of 0.0059
	           cold 0.0000
	              . 0.0000
	            can 0.0000
	           time 0.0000
	          level 0.0000
	          other 0.0000
	           also 0.0000
	           clod 0.0000
	              , 0.0000
	          major 0.0000
	           clog 0.0000
	              - 0.0000
	          clods 0.0000
	           code 0.0000
	            clo 0.0000
	           </S> 0.0000
	          could 0.0000

         jerk}'   473297   1 (24)
	          jerky 0.6000
	             us 0.0369
	            her 0.0369
	         jerked 0.0369
	           jerk 0.0369
	           ball 0.0369
	           were 0.0369
	         jerker 0.0369
	          major 0.0369
	              I 0.0369
	          jeruk 0.0369
	          jerke 0.0369
	           work 0.0369
	          jerks 0.0369
	           more 0.0059
	              a 0.0000
	              , 0.0000
	              - 0.0000
	           less 0.0000
	             of 0.0000
	           </S> 0.0000
	      different 0.0000
	              . 0.0000
	            the 0.0000

         flight   473304   1 (18)
	        flighty 0.0369
	           </S> 0.0369
	              . 0.0369
	       features 0.0369
	          light 0.0369
	          might 0.0369
	   ostentatious 0.0369
	         flight 0.0369
	              - 0.0369
	              I 0.0369
	        dessert 0.0369
	              , 0.0369
	         fright 0.0369
	              a 0.0369
	        flights 0.0369
	          right 0.0369
	              ) 0.0369
	             to 0.0369

             In   473312   1 (19)
	             In 0.5538
	             It 0.0900
	             If 0.0570
	              I 0.0418
	              a 0.0369
	            Inc 0.0369
	            Inn 0.0369
	             iu 0.0369
	            cia 0.0369
	             us 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              / 0.0000
	              , 0.0000
	              ] 0.0000
	              ) 0.0000
	              . 0.0000

   nidification   473374   1 (28)
	   nidification 1.0000
	 nidificational 0.0369
	    nidificator 0.0369
	         Advent 0.0369
	           Lent 0.0369
	  nidifications 0.0369
	     nidificata 0.0369
	   nudification 0.0369
	   Nidification 0.0369
	          Angel 0.0369
	            the 0.0059
	           </S> 0.0000
	           time 0.0000
	   codification 0.0000
	              - 0.0000
	              , 0.0000
	              : 0.0000
	       American 0.0000
	          their 0.0000
	      Education 0.0000
	             it 0.0000
	              a 0.0000
	          <UNK> 0.0000
	  acidification 0.0000
	    information 0.0000
	             us 0.0000
	           this 0.0000
	           them 0.0000

             as   473388   1 (23)
	            aas 0.0369
	            ass 0.0369
	           </S> 0.0369
	              " 0.0369
	            and 0.0369
	            arz 0.0369
	          <UNK> 0.0369
	            but 0.0369
	            ask 0.0369
	              a 0.0369
	             as 0.0369
	             at 0.0369
	              ( 0.0369
	              I 0.0369
	             an 0.0369
	            the 0.0059
	          which 0.0012
	             it 0.0000
	             iu 0.0000
	              i 0.0000
	             us 0.0000
	             or 0.0000
	             sa 0.0000

        Seebohm   473391   1 (27)
	        members 0.0369
	          Seebe 0.0369
	        Sexbomb 0.0369
	           John 0.0369
	        Seebohm 0.0369
	         Sembol 0.0369
	       Seeboden 0.0369
	        Seebach 0.0369
	        someone 0.0369
	              . 0.0369
	           need 0.0369
	           Seeb 0.0369
	         Seeham 0.0369
	              a 0.0059
	              I 0.0000
	             he 0.0000
	             it 0.0000
	           </S> 0.0000
	              - 0.0000
	            she 0.0000
	           well 0.0000
	       Beerbohm 0.0000
	              i 0.0000
	            the 0.0000
	          <UNK> 0.0000
	           Sebo 0.0000
	              , 0.0000

         varies   473439   1 (25)
	        varieis 0.0369
	         vraies 0.0369
	        variety 0.0369
	         varies 0.0369
	          Parus 0.0369
	         Lanius 0.0369
	          Pales 0.0369
	        ovaries 0.0369
	              D 0.0369
	        various 0.0369
	         values 0.0369
	          varie 0.0369
	        avaries 0.0369
	        variest 0.0369
	              M 0.0369
	         varied 0.0369
	         variet 0.0369
	           </S> 0.0059
	          Books 0.0000
	              , 0.0000
	           Lane 0.0000
	         Series 0.0000
	              - 0.0000
	              . 0.0000
	    Calandrella 0.0000

     commencing   473447   1 (23)
	              I 0.0369
	     commenting 0.0369
	     commending 0.0369
	       starting 0.0369
	         online 0.0369
	     commencing 0.0369
	       comencin 0.0369
	            and 0.0369
	          being 0.0369
	              " 0.0369
	      depending 0.0369
	     commenciez 0.0369
	              a 0.0369
	            but 0.0369
	    commencions 0.0369
	            the 0.0059
	           some 0.0000
	   recommencing 0.0000
	              i 0.0000
	          which 0.0000
	          while 0.0000
	             of 0.0000
	             or 0.0000

             in   473550   1 (20)
	             ni 0.0369
	             at 0.0369
	            inc 0.0369
	            inn 0.0369
	              . 0.0369
	            iin 0.0369
	             us 0.0369
	              - 0.0369
	             is 0.0369
	            cia 0.0369
	              , 0.0369
	              a 0.0369
	             it 0.0369
	             in 0.0369
	              I 0.0369
	            int 0.0369
	             iu 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000

        nesting   473628   3 (19)
	             of 0.8000
	        listing 0.8000
	        netting 0.0369
	              I 0.0369
	        nesting 0.0369
	        Listing 0.0369
	       nestings 0.0369
	         nestin 0.0369
	        nestigi 0.0369
	              . 0.0059
	              , 0.0000
	           than 0.0000
	           </S> 0.0000
	        nursing 0.0000
	            and 0.0000
	              - 0.0000
	        meeting 0.0000
	          where 0.0000
	              a 0.0000

     operations   473636  16 (28)
	              a 0.6000
	          sites 0.5333
	        options 0.1000
	        Germany 0.0369
	              I 0.0369
	             it 0.0369
	    operationes 0.0369
	      operation 0.0369
	   cooperations 0.0369
	          which 0.0369
	     operatione 0.0369
	     operationi 0.0369
	    operationis 0.0369
	           they 0.0369
	              , 0.0059
	              - 0.0000
	           </S> 0.0000
	       operator 0.0000
	          there 0.0000
	              . 0.0000
	     operations 0.0000
	        habitat 0.0000
	          birds 0.0000
	         period 0.0000
	             to 0.0000
	             in 0.0000
	            the 0.0000
	         season 0.0000

      sheltered   473772   1 (27)
	      sheltered 0.4000
	           able 0.2000
	          other 0.0369
	      sweltered 0.0369
	      Sheltered 0.0369
	     shelterers 0.0369
	    ensheltered 0.0369
	         caused 0.0369
	       scraping 0.0369
	             to 0.0369
	              I 0.0369
	          their 0.0369
	        sheller 0.0369
	      shelterer 0.0369
	      holstered 0.0369
	    unsheltered 0.0369
	       affected 0.0369
	              - 0.0177
	          legal 0.0059
	              , 0.0000
	        getting 0.0000
	            the 0.0000
	          there 0.0000
	            get 0.0000
	           </S> 0.0000
	              a 0.0000
	              . 0.0000

          Larks   473842   1 (31)
	          Larks 0.8000
	           arks 0.3000
	           Last 0.2000
	         NSAIDs 0.0369
	         Laskar 0.0369
	          Parus 0.0369
	         Lanius 0.0369
	          parva 0.0369
	           else 0.0369
	          Larus 0.0369
	       Larkspur 0.0369
	       Larksmen 0.0369
	              I 0.0369
	         Laarks 0.0369
	           than 0.0059
	          items 0.0000
	         things 0.0000
	      countries 0.0000
	           hand 0.0000
	          Large 0.0000
	           Lark 0.0000
	         people 0.0000
	              . 0.0000
	       shoppers 0.0000
	          words 0.0000
	              - 0.0000
	              , 0.0000
	           </S> 0.0000
	           Park 0.0000
	        members 0.0000
	          Links 0.0000

          grass   473864  11 (23)
	         gratis 0.0369
	          Press 0.0369
	         grasso 0.0369
	          grasa 0.0369
	           gras 0.0369
	              - 0.0369
	            two 0.0369
	          grasp 0.0369
	      probation 0.0369
	            the 0.0059
	         others 0.0000
	          group 0.0000
	          great 0.0000
	             us 0.0000
	            one 0.0000
	          grass 0.0000
	         grassy 0.0000
	          other 0.0000
	              . 0.0000
	              a 0.0000
	     themselves 0.0000
	              , 0.0000
	           </S> 0.0000

       feathers   473988   1 (23)
	       feathers 0.4000
	        fathers 0.1000
	       heathers 0.0369
	           them 0.0369
	        feather 0.0369
	          their 0.0369
	          other 0.0369
	     unfeathers 0.0369
	             us 0.0369
	     associated 0.0369
	      fatherers 0.0369
	              , 0.0059
	           </S> 0.0000
	             it 0.0000
	              a 0.0000
	           even 0.0000
	              I 0.0000
	            the 0.0000
	              - 0.0000
	              i 0.0000
	          there 0.0000
	              . 0.0000
	       feathery 0.0000

           bird   474178  13 (31)
	          birdy 0.6000
	            cia 0.0857
	           brid 0.0369
	         matter 0.0369
	           birt 0.0369
	              A 0.0369
	            arz 0.0369
	           name 0.0369
	              ! 0.0369
	          birdi 0.0369
	              - 0.0369
	            the 0.0059
	              , 0.0000
	            but 0.0000
	              a 0.0000
	             by 0.0000
	           Pica 0.0000
	            bir 0.0000
	             it 0.0000
	           biro 0.0000
	           time 0.0000
	           </S> 0.0000
	          birds 0.0000
	              ? 0.0000
	              . 0.0000
	             is 0.0000
	           bird 0.0000
	          there 0.0000
	             be 0.0000
	              I 0.0000
	            you 0.0000

            but   474239   1 (23)
	              - 0.0369
	             bu 0.0369
	           that 0.0369
	            and 0.0369
	             be 0.0369
	            buy 0.0369
	           buts 0.0369
	            tub 0.0369
	              I 0.0369
	             iu 0.0369
	            cia 0.0369
	            but 0.0369
	              a 0.0369
	             us 0.0369
	            bus 0.0369
	              . 0.0369
	              , 0.0369
	           butt 0.0369
	             by 0.0369
	           </S> 0.0059
	              " 0.0000
	              } 0.0000
	              ) 0.0000

            Sky   474362  12 (32)
	            Ska 0.3000
	             my 0.1000
	            Ski 0.1000
	           well 0.0369
	          Black 0.0369
	          black 0.0369
	           self 0.0369
	              i 0.0369
	          three 0.0369
	              e 0.0369
	            the 0.0059
	           more 0.0000
	             us 0.0000
	            non 0.0000
	              , 0.0000
	           Skyy 0.0000
	             Sk 0.0000
	          other 0.0000
	             re 0.0000
	           </S> 0.0000
	            any 0.0000
	              a 0.0000
	              - 0.0000
	              ( 0.0000
	             by 0.0000
	              I 0.0000
	           Skye 0.0000
	            Sky 0.0000
	            Syk 0.0000
	            cia 0.0000
	            Pyi 0.0000
	          <UNK> 0.0000

              -   474365   6 (13)
	         Eagles 0.0369
	            cia 0.0369
	             iu 0.0369
	             us 0.0369
	           </S> 0.0059
	            the 0.0000
	              , 0.0000
	            and 0.0000
	             by 0.0000
	              - 0.0000
	             Is 0.0000
	              . 0.0000
	             of 0.0000

          Larks   474366   1 (33)
	          Larks 0.5000
	         namely 0.0369
	             ie 0.0369
	              s 0.0369
	           side 0.0369
	         Laarks 0.0369
	           well 0.0369
	            yes 0.0369
	       Larksmen 0.0369
	         shirts 0.0369
	              - 0.0079
	           </S> 0.0059
	              a 0.0000
	           mail 0.0000
	              . 0.0000
	           Lark 0.0000
	           time 0.0000
	       Larkspur 0.0000
	           arks 0.0000
	         Laskar 0.0000
	          Larus 0.0000
	           part 0.0000
	          Parus 0.0000
	              ) 0.0000
	              I 0.0000
	             up 0.0000
	            the 0.0000
	          Links 0.0000
	           Last 0.0000
	              A 0.0000
	         Lanius 0.0000
	          <UNK> 0.0000
	             to 0.0000

             In   474463   1 (19)
	             In 0.5538
	             It 0.0900
	             If 0.0570
	              I 0.0418
	            Inn 0.0369
	            Inc 0.0369
	             iu 0.0369
	            cia 0.0369
	              a 0.0369
	             us 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ) 0.0000
	             '' 0.0000
	              , 0.0000
	              ] 0.0000
	              . 0.0000

      colouring   474466   1 (23)
	      Colouring 0.3953
	      colouring 0.3953
	    recolouring 0.0369
	          using 0.0369
	     colourings 0.0369
	       clouring 0.0369
	      colubrina 0.0369
	    colourising 0.0369
	            the 0.0059
	       coloring 0.0000
	              , 0.0000
	              - 0.0000
	              A 0.0000
	            all 0.0000
	           this 0.0000
	       addition 0.0000
	           your 0.0000
	           fact 0.0000
	              a 0.0000
	              . 0.0000
	           </S> 0.0000
	           case 0.0000
	           Your 0.0000

        whitish   474496   1 (30)
	        whitish 0.9000
	           with 0.3433
	          whish 0.2000
	          whits 0.1000
	      whitishly 0.0369
	              s 0.0369
	      contained 0.0369
	         smooth 0.0369
	           what 0.0369
	         boiled 0.0369
	         yellow 0.0369
	              - 0.0079
	           </S> 0.0059
	        Whitish 0.0000
	          which 0.0000
	              5 0.0000
	              I 0.0000
	              a 0.0000
	          based 0.0000
	             to 0.0000
	      whitefish 0.0000
	          <UNK> 0.0000
	            the 0.0000
	             up 0.0000
	              . 0.0000
	        whities 0.0000
	          white 0.0000
	          whist 0.0000
	              A 0.0000
	              ) 0.0000

         freely   474504   4 (25)
	        vaginal 1.0000
	              - 0.5000
	        flowers 0.1000
	         freety 0.0369
	         finely 0.0369
	          ferly 0.0369
	          field 0.0369
	          feely 0.0369
	         freezy 0.0369
	          refly 0.0369
	          reely 0.0369
	       unfreely 0.0369
	              a 0.0369
	           free 0.0369
	       freendly 0.0369
	              I 0.0369
	         Greely 0.0369
	         friend 0.0369
	         freely 0.0369
	              , 0.0059
	             or 0.0000
	              . 0.0000
	         specks 0.0000
	           </S> 0.0000
	            and 0.0000

      sprinkled   474511  11 (19)
	    sprinklered 0.0369
	    besprinkled 0.0369
	       wrinkled 0.0369
	       crinkled 0.0369
	       Sprinkle 0.0369
	       supplied 0.0369
	       sprinkle 0.0369
	      sprinkler 0.0369
	      sprinkles 0.0369
	      available 0.0059
	         shared 0.0000
	           </S> 0.0000
	              . 0.0000
	              - 0.0000
	              , 0.0000
	            and 0.0000
	         linked 0.0000
	        printed 0.0000
	      sprinkled 0.0000

          smoky   474531  15 (27)
	          small 0.2000
	           show 0.0369
	           high 0.0369
	           moky 0.0369
	            one 0.0369
	        reddish 0.0369
	          smoko 0.0369
	              C 0.0369
	           smok 0.0369
	            non 0.0369
	              I 0.0369
	         Smokys 0.0369
	        unsmoky 0.0369
	              , 0.0059
	          smoke 0.0000
	           </S> 0.0000
	         smokey 0.0000
	          smoky 0.0000
	         yellow 0.0000
	              . 0.0000
	           blue 0.0000
	            and 0.0000
	              - 0.0000
	           buff 0.0000
	           some 0.0000
	              a 0.0000
	           gray 0.0000

         greyer   474558   2 (21)
	          green 0.7000
	         greyer 0.5000
	           were 0.0369
	          greer 0.0369
	          greye 0.0369
	              I 0.0369
	            the 0.0059
	              a 0.0000
	            all 0.0000
	              , 0.0000
	              - 0.0000
	         greyed 0.0000
	         grayer 0.0000
	           </S> 0.0000
	           grey 0.0000
	          great 0.0000
	             us 0.0000
	              . 0.0000
	             no 0.0000
	          order 0.0000
	             an 0.0000

          shell   474565   3 (25)
	              . 0.1000
	           than 0.1000
	              a 0.0369
	          sheld 0.0369
	           sala 0.0369
	           high 0.0369
	           shel 0.0369
	         people 0.0369
	         shells 0.0369
	            non 0.0369
	          shelf 0.0369
	              C 0.0369
	          shall 0.0369
	            she 0.0369
	              I 0.0369
	           Back 0.0369
	          shell 0.0369
	           well 0.0369
	         shelly 0.0369
	              , 0.0059
	          still 0.0000
	              - 0.0000
	             in 0.0000
	           </S> 0.0000
	            and 0.0000

          these   474579   1 (20)
	          those 0.0369
	              - 0.0369
	          thees 0.0369
	              , 0.0369
	          thesp 0.0369
	          thesi 0.0369
	              I 0.0369
	          these 0.0369
	              z 0.0369
	              . 0.0369
	          there 0.0369
	         thesem 0.0369
	              a 0.0369
	           thes 0.0369
	         theses 0.0369
	           </S> 0.0059
	              ) 0.0000
	          <UNK> 0.0000
	              } 0.0000
	              " 0.0000

        marking   474719   3 (22)
	         making 0.8000
	       markings 0.5000
	        marking 0.0369
	         Rating 0.0369
	              I 0.0369
	           city 0.0369
	       markigon 0.0369
	         marine 0.0369
	      remarking 0.0369
	         Nevada 0.0369
	        parking 0.0369
	              a 0.0369
	        masking 0.0369
	           than 0.0059
	            and 0.0000
	       elements 0.0000
	        working 0.0000
	              - 0.0000
	              . 0.0000
	           </S> 0.0000
	              , 0.0000
	        looking 0.0000

            but   474749   1 (23)
	            but 0.0369
	             us 0.0369
	             of 0.0369
	              I 0.0369
	              - 0.0369
	              , 0.0369
	            tub 0.0369
	            bus 0.0369
	             iu 0.0369
	            cia 0.0369
	           buts 0.0369
	             by 0.0369
	             bu 0.0369
	             be 0.0369
	              . 0.0369
	            buy 0.0369
	            the 0.0369
	           butt 0.0369
	              a 0.0369
	           </S> 0.0059
	              ) 0.0000
	          <UNK> 0.0000
	              } 0.0000

          Larks   474792   2 (31)
	           Lark 0.5000
	          Larks 0.3532
	          Larus 0.1000
	         Laarks 0.0369
	        members 0.0369
	       Larksmen 0.0369
	              . 0.0369
	          rules 0.0369
	          users 0.0369
	              , 0.0369
	           </S> 0.0059
	           same 0.0037
	          Links 0.0000
	          world 0.0000
	           arks 0.0000
	       Larkspur 0.0000
	          Large 0.0000
	    information 0.0000
	          parva 0.0000
	          terms 0.0000
	           time 0.0000
	          Parus 0.0000
	           Last 0.0000
	           Lake 0.0000
	         Laskar 0.0000
	          first 0.0000
	            way 0.0000
	      following 0.0000
	         Lanius 0.0000
	              - 0.0000
	           part 0.0000

         Jerdon   474838   1 (25)
	       Jerudong 0.0369
	         Verdon 0.0369
	           Jero 0.0369
	         Jorden 0.0369
	         Jerdon 0.0369
	              a 0.0369
	         Jerson 0.0369
	         Jordon 0.0369
	         Berdon 0.0369
	           from 0.0369
	             us 0.0369
	            her 0.0369
	           were 0.0369
	            the 0.0369
	          Aedon 0.0369
	           </S> 0.0059
	              . 0.0000
	              I 0.0000
	              " 0.0000
	              ] 0.0000
	              - 0.0000
	              ) 0.0000
	              , 0.0000
	             '' 0.0000
	              A 0.0000

             cf   474846   9 (33)
	            ccf 0.6000
	            cfa 0.2000
	        Metcalf 0.0369
	         Normal 0.0369
	           euro 0.0369
	              \ 0.0369
	     Restricted 0.0369
	          <UNK> 0.0059
	              c 0.0000
	            the 0.0000
	              - 0.0000
	             us 0.0000
	           </S> 0.0000
	            can 0.0000
	              1 0.0000
	             fc 0.0000
	              A 0.0000
	            cfu 0.0000
	             if 0.0000
	             cf 0.0000
	              ( 0.0000
	            cia 0.0000
	              2 0.0000
	              s 0.0000
	             of 0.0000
	              ) 0.0000
	              f 0.0000
	             co 0.0000
	              b 0.0000
	            The 0.0000
	              I 0.0000
	             US 0.0000
	              a 0.0000

            Cat   474849   2 (25)
	              ) 0.7000
	            Cta 0.0369
	             Ca 0.0369
	           Cato 0.0369
	            cia 0.0369
	            arz 0.0369
	              I 0.0369
	             us 0.0369
	              S 0.0369
	            Can 0.0369
	           Cats 0.0369
	            Car 0.0369
	           Catt 0.0369
	            Cat 0.0369
	            was 0.0211
	              . 0.0059
	              / 0.0000
	          v2.9s 0.0000
	              a 0.0000
	            can 0.0000
	           </S> 0.0000
	              - 0.0000
	             at 0.0000
	              , 0.0000
	          <UNK> 0.0000

          Birds   474854   2 (26)
	              I 0.0418
	        Birdsdo 0.0369
	          Birds 0.0369
	         Bairds 0.0369
	          Parus 0.0369
	         Turdus 0.0369
	           Bird 0.0369
	         Birads 0.0369
	              s 0.0369
	          Birdy 0.0369
	          Board 0.0369
	            Dog 0.0369
	         Birdos 0.0369
	         VBirds 0.0369
	              a 0.0369
	          Birdo 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              . 0.0000
	              ) 0.0000
	              ] 0.0000
	          first 0.0000
	          First 0.0000
	              , 0.0000

             E.   474861 inf (25)
	             in 0.1021
	             EE 0.0369
	     Amphibians 0.0369
	           Cats 0.0369
	            EEE 0.0369
	            cia 0.0369
	              " 0.0369
	             EU 0.0369
	             Ed 0.0369
	              A 0.0369
	              I 0.0369
	            The 0.0369
	           </S> 0.0369
	              ( 0.0369
	           Fish 0.0369
	          <UNK> 0.0369
	              a 0.0369
	             El 0.0369
	            the 0.0059
	          which 0.0012
	             or 0.0000
	             to 0.0000
	             iu 0.0000
	             us 0.0000
	             of 0.0000

             I.   474864   2 (19)
	             It 0.1000
	              J 0.0369
	             iu 0.0369
	              I 0.0369
	             us 0.0369
	             J. 0.0369
	              a 0.0369
	              , 0.0059
	             II 0.0000
	            and 0.0000
	              - 0.0000
	           coli 0.0000
	              . 0.0000
	             et 0.0000
	              A 0.0000
	             In 0.0000
	             If 0.0000
	           </S> 0.0000
	            the 0.0000

             II   474879  18 (23)
	             In 0.5538
	             It 0.0900
	             If 0.0570
	              I 0.0418
	            IIS 0.0369
	             iu 0.0369
	            cia 0.0369
	             us 0.0369
	            III 0.0369
	              a 0.0369
	          othon 0.0369
	           IIII 0.0369
	              B 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	      ChangeLog 0.0000
	              ) 0.0000
	             II 0.0000
	              ] 0.0000
	              , 0.0000
	              . 0.0000

             It   474970   3 (19)
	             In 0.5538
	            Its 0.3584
	             It 0.0900
	             If 0.0570
	              I 0.0418
	       November 0.0369
	             us 0.0369
	             iu 0.0369
	            cia 0.0369
	              a 0.0369
	            Ito 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	             '' 0.0000
	              ) 0.0000
	              , 0.0000
	              . 0.0000

     associates   474973   6 (15)
	     associatie 0.0369
	      associate 0.0369
	    associatest 0.0369
	     associator 0.0369
	             is 0.0059
	     associated 0.0000
	             's 0.0000
	            was 0.0000
	      Associate 0.0000
	           </S> 0.0000
	     Associates 0.0000
	              . 0.0000
	              - 0.0000
	     associates 0.0000
	              , 0.0000

    frequenting   475000   1 (23)
	    frequenting 1.0000
	          rufus 0.0369
	     variegated 0.0369
	      frequenti 0.0369
	            and 0.0369
	              " 0.0369
	              I 0.0369
	         online 0.0369
	              a 0.0369
	            but 0.0369
	            are 0.0369
	    frequentino 0.0369
	           </S> 0.0369
	            the 0.0059
	          which 0.0000
	           with 0.0000
	           free 0.0000
	             or 0.0000
	     frequentie 0.0000
	           find 0.0000
	             on 0.0000
	             of 0.0000
	              i 0.0000

           bare   475016  10 (36)
	           barn 0.6000
	           sons 0.0369
	            arz 0.0369
	           long 0.0369
	         valley 0.0369
	       ultimate 0.0369
	          green 0.0369
	           </S> 0.0059
	           same 0.0037
	            bar 0.0000
	           bare 0.0000
	           Cart 0.0000
	           very 0.0000
	           back 0.0000
	           bars 0.0000
	          three 0.0000
	           main 0.0000
	          <UNK> 0.0000
	          bared 0.0000
	           sala 0.0000
	              - 0.0000
	          whole 0.0000
	            the 0.0000
	           been 0.0000
	           tall 0.0000
	              ' 0.0000
	          bares 0.0000
	      following 0.0000
	            two 0.0000
	            are 0.0000
	           lava 0.0000
	              " 0.0000
	          first 0.0000
	           baer 0.0000
	           Park 0.0000
	          barre 0.0000

              -   475026   4 (12)
	            cia 0.0369
	             iu 0.0369
	              , 0.0059
	             -- 0.0000
	           </S> 0.0000
	             of 0.0000
	              . 0.0000
	          roots 0.0000
	             us 0.0000
	            the 0.0000
	              - 0.0000
	            and 0.0000

          downs   475027   8 (28)
	          downy 0.7000
	           down 0.5000
	          nowds 0.0369
	              s 0.0369
	         shirts 0.0369
	              - 0.0079
	           </S> 0.0059
	              A 0.0000
	              a 0.0000
	             to 0.0000
	          <UNK> 0.0000
	          downe 0.0000
	         drowns 0.0000
	           owns 0.0000
	           time 0.0000
	         downes 0.0000
	           does 0.0000
	           dons 0.0000
	              . 0.0000
	        downset 0.0000
	             up 0.0000
	             do 0.0000
	           mail 0.0000
	            the 0.0000
	        godowns 0.0000
	              I 0.0000
	          downs 0.0000
	              ) 0.0000

             it   475093   1 (24)
	             us 0.0369
	            iit 0.0369
	              I 0.0369
	            its 0.0369
	            can 0.0369
	             in 0.0369
	             ti 0.0369
	              - 0.0369
	             it 0.0369
	            iti 0.0369
	             iu 0.0369
	            cia 0.0369
	              . 0.0369
	              a 0.0369
	              , 0.0369
	            ith 0.0369
	            itt 0.0369
	            are 0.0369
	              i 0.0369
	             is 0.0369
	           </S> 0.0059
	              } 0.0000
	              " 0.0000
	              ) 0.0000

          grain   475111   3 (26)
	              a 0.7000
	              - 0.6000
	           said 0.0369
	          grail 0.0369
	          graig 0.0369
	            non 0.0369
	              E 0.0369
	          Multi 0.0369
	              I 0.0369
	          great 0.0369
	          built 0.0369
	             us 0.0369
	          grain 0.0369
	          grian 0.0369
	          grani 0.0369
	          Email 0.0369
	         grains 0.0369
	         grainy 0.0369
	             co 0.0369
	          front 0.0369
	            the 0.0059
	              . 0.0000
	             to 0.0000
	           this 0.0000
	           </S> 0.0000
	              , 0.0000

        retires   475143   1 (30)
	        retires 0.9000
	        reviews 0.6000
	          leads 0.0369
	         retina 0.0369
	       retirest 0.0369
	        rotifer 0.0369
	        retiree 0.0369
	        retries 0.0369
	       retirees 0.0369
	           lead 0.0369
	           turn 0.0369
	           been 0.0059
	        retired 0.0000
	           have 0.0000
	         return 0.0000
	         retire 0.0000
	             be 0.0000
	         wanted 0.0000
	           look 0.0000
	       required 0.0000
	              a 0.0000
	              - 0.0000
	            the 0.0000
	          ready 0.0000
	              . 0.0000
	           </S> 0.0000
	       striving 0.0000
	              , 0.0000
	           seem 0.0000
	            try 0.0000

           from   475200   1 (22)
	              a 0.0369
	           fron 0.0369
	              . 0.0369
	              - 0.0369
	              I 0.0369
	            arz 0.0369
	            the 0.0369
	           form 0.0369
	           from 0.0369
	          fromm 0.0369
	              s 0.0369
	           free 0.0369
	           frog 0.0369
	          fromt 0.0369
	            for 0.0369
	            and 0.0369
	              , 0.0369
	            fro 0.0369
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	              } 0.0000

             II   475298  17 (23)
	             In 0.5538
	             It 0.0900
	             If 0.0570
	              I 0.0418
	            IIS 0.0369
	             iu 0.0369
	            cia 0.0369
	             us 0.0369
	            III 0.0369
	              a 0.0369
	           IIII 0.0369
	              B 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              . 0.0000
	              , 0.0000
	             II 0.0000
	              / 0.0000
	              ) 0.0000
	              ] 0.0000
	      ChangeLog 0.0000

           both   475378   1 (20)
	              I 0.0369
	              . 0.0369
	              , 0.0369
	           both 0.0369
	              - 0.0369
	           hobt 0.0369
	           best 0.0369
	           body 0.0369
	            but 0.0369
	          booth 0.0369
	           bots 0.0369
	           boty 0.0369
	          bothe 0.0369
	          bothy 0.0369
	              a 0.0369
	            bot 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	              " 0.0000

           Lark   475454   6 (26)
	           lava 1.0000
	          world 0.6000
	           Last 0.5000
	              . 0.5000
	           make 0.3000
	          Larak 0.0369
	           Lark 0.0369
	          Lakar 0.0369
	         Larkin 0.0369
	            arz 0.0369
	          Larks 0.0369
	           sala 0.0369
	           Lars 0.0369
	            Lar 0.0369
	              a 0.0369
	              I 0.0369
	             of 0.0369
	         estate 0.0059
	           work 0.0000
	              , 0.0000
	           </S> 0.0000
	            are 0.0000
	          thing 0.0000
	           time 0.0000
	              - 0.0000
	           Lara 0.0000

             's   475458  13 (22)
	              . 0.8000
	             ss 0.0369
	           time 0.0369
	              I 0.0369
	          agent 0.0369
	              a 0.0369
	   transactions 0.0369
	             iu 0.0369
	            cia 0.0369
	             us 0.0369
	             so 0.0369
	           </S> 0.0059
	             is 0.0000
	             of 0.0000
	              - 0.0000
	             's 0.0000
	             as 0.0000
	              , 0.0000
	              ' 0.0000
	            Ave 0.0000
	          Books 0.0000
	      Ascending 0.0000

        Towards   475462 inf (24)
	             In 1.0000
	          There 0.4000
	              A 0.1000
	             in 0.0369
	         Toward 0.0369
	          Toads 0.0369
	        Troward 0.0369
	             at 0.0369
	        cowards 0.0369
	       Tawadros 0.0369
	             to 0.0369
	         Search 0.0369
	              a 0.0369
	      Towarzysz 0.0369
	        towards 0.0369
	           </S> 0.0059
	              " 0.0000
	              , 0.0000
	              I 0.0000
	              / 0.0000
	              ) 0.0000
	           This 0.0000
	              - 0.0000
	              . 0.0000

          April   475501   1 (20)
	          April 0.8000
	            All 0.1921
	              I 0.0418
	         Aprili 0.0369
	              a 0.0369
	          Avril 0.0369
	          Apris 0.0369
	         Aprile 0.0369
	         Aprils 0.0369
	         Aprill 0.0369
	             us 0.0369
	            the 0.0369
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              . 0.0000
	            And 0.0000
	              ) 0.0000
	              , 0.0000
	              ] 0.0000

         flocks   475540  14 (24)
	        Zealand 0.0369
	          flocs 0.0369
	        flockas 0.0369
	            the 0.0369
	        Pflocks 0.0369
	           jade 0.0369
	         flocky 0.0369
	    motivations 0.0369
	             is 0.0369
	              a 0.0369
	              I 0.0369
	          flock 0.0286
	           from 0.0059
	          Click 0.0000
	          Books 0.0000
	           </S> 0.0000
	         flocks 0.0000
	              - 0.0000
	            and 0.0000
	          focus 0.0000
	              . 0.0000
	              , 0.0000
	              ( 0.0000
	          types 0.0000

          nnite   475553 inf (24)
	         United 0.9000
	           nice 0.3000
	            run 0.0369
	          nuite 0.0369
	          neite 0.0369
	           nite 0.0369
	          ninte 0.0369
	          noite 0.0369
	        divided 0.0369
	         nanite 0.0369
	           fall 0.0369
	         annite 0.0369
	         Annite 0.0369
	           Site 0.0369
	        Sunnite 0.0369
	              , 0.0059
	           </S> 0.0000
	              . 0.0000
	            the 0.0000
	              I 0.0000
	              - 0.0000
	           more 0.0000
	              a 0.0000
	           site 0.0000

           into   475559   1 (21)
	              , 0.0369
	           </S> 0.0369
	            its 0.0369
	              a 0.0369
	              - 0.0369
	             in 0.0369
	            int 0.0369
	              . 0.0369
	              I 0.0369
	             iu 0.0369
	          Sitta 0.0369
	             to 0.0369
	          intoa 0.0369
	          intox 0.0369
	           into 0.0369
	          minor 0.0369
	          tinto 0.0369
	            the 0.0369
	           nito 0.0369
	           inte 0.0369
	           intl 0.0369

         troops   475569   1 (25)
	         troops 0.7000
	            top 0.2000
	          world 0.1000
	          Books 0.0369
	            air 0.0369
	         triops 0.0369
	          trout 0.0369
	          roops 0.0369
	         Brooks 0.0369
	          Group 0.0369
	         tropos 0.0369
	     dimensions 0.0369
	          torps 0.0369
	       majority 0.0059
	           room 0.0000
	              , 0.0000
	              . 0.0000
	          array 0.0000
	              - 0.0000
	           size 0.0000
	           </S> 0.0000
	          troop 0.0000
	            and 0.0000
	              a 0.0000
	     experience 0.0000

     containing   475577   1 (21)
	              a 0.0369
	        contain 0.0369
	           </S> 0.0369
	    containings 0.0369
	            but 0.0369
	     contacting 0.0369
	            and 0.0369
	          rufus 0.0369
	         online 0.0369
	     Containing 0.0369
	      contagino 0.0369
	          <UNK> 0.0369
	              I 0.0369
	     containing 0.0369
	              " 0.0369
	            the 0.0059
	          which 0.0012
	      including 0.0000
	              i 0.0000
	             or 0.0000
	          using 0.0000

          man}'   475588  14 (23)
	          major 0.6000
	            may 0.1000
	              I 0.0369
	           mann 0.0369
	              . 0.0369
	             to 0.0369
	          mania 0.0369
	          maura 0.0369
	              - 0.0369
	          manga 0.0369
	           mana 0.0369
	          manna 0.0369
	            the 0.0059
	          minor 0.0000
	           make 0.0000
	           </S> 0.0000
	              " 0.0000
	           many 0.0000
	            man 0.0000
	            and 0.0000
	              , 0.0000
	              S 0.0000
	              a 0.0000

      tliousand   475594   1 (17)
	           </S> 0.0369
	         tousan 0.0369
	      thousands 0.0369
	       blousant 0.0369
	              , 0.0369
	      triossani 0.0369
	       thousand 0.0369
	       Thousand 0.0369
	         lisand 0.0369
	              - 0.0369
	       thoosand 0.0369
	              a 0.0369
	            and 0.0369
	           list 0.0369
	              . 0.0369
	             of 0.0369
	       thousant 0.0369

          birds   475604   1 (22)
	             rd 0.0369
	             ds 0.0369
	            ads 0.0369
	          birdy 0.0369
	          birda 0.0369
	            rds 0.0369
	             is 0.0369
	          birds 0.0369
	           rods 0.0369
	           Urdu 0.0369
	          Parus 0.0369
	         Turdus 0.0369
	         birdes 0.0369
	          bands 0.0369
	           bias 0.0369
	           bird 0.0369
	         bridds 0.0369
	            his 0.0369
	            its 0.0369
	         Vbirds 0.0369
	           bids 0.0369
	        birdsit 0.0369

          qnite   475615   9 (25)
	           room 0.0369
	        quinite 0.0369
	              . 0.0369
	         quiten 0.0369
	         quinte 0.0369
	            and 0.0369
	        mammals 0.0369
	            the 0.0059
	           nite 0.0000
	              a 0.0000
	          other 0.0000
	              - 0.0000
	           some 0.0000
	           </S> 0.0000
	            one 0.0000
	             to 0.0000
	           Site 0.0000
	              , 0.0000
	              I 0.0000
	         United 0.0000
	           then 0.0000
	          quite 0.0000
	           site 0.0000
	          unite 0.0000
	          Unite 0.0000

      darkening   475621   1 (21)
	    darkeningly 0.0369
	             to 0.0369
	    endarkening 0.0369
	             of 0.0369
	              - 0.0369
	      Darkening 0.0369
	              a 0.0369
	      daikering 0.0369
	        darling 0.0369
	              . 0.0369
	           data 0.0369
	      darkening 0.0369
	              , 0.0369
	           </S> 0.0369
	          using 0.0369
	            the 0.0369
	     darkenings 0.0369
	             us 0.0369
	             in 0.0369
	              I 0.0369
	           does 0.0369

        flj'ing   475682  17 (32)
	        flowing 0.4000
	           they 0.1123
	        flaming 0.1000
	           ling 0.0369
	           jing 0.0369
	           full 0.0369
	         online 0.0369
	           fing 0.0369
	          fling 0.0369
	              - 0.0369
	          empty 0.0369
	         flings 0.0369
	             us 0.0369
	           flin 0.0369
	            wet 0.0369
	            the 0.0059
	             we 0.0000
	              , 0.0000
	            you 0.0000
	              . 0.0000
	        filling 0.0000
	           </S> 0.0000
	          using 0.0000
	         filing 0.0000
	              a 0.0000
	              i 0.0000
	      necessary 0.0000
	         flying 0.0000
	       flinging 0.0000
	              I 0.0000
	             it 0.0000
	        looking 0.0000

              .   475689   1 (13)
	             is 0.0369
	              , 0.0369
	            the 0.0369
	              - 0.0369
	            was 0.0369
	             iu 0.0369
	            are 0.0369
	            and 0.0369
	           </S> 0.0369
	             us 0.0369
	            cia 0.0369
	             of 0.0369
	              . 0.0369

          Great   475691   1 (21)
	          Great 0.3000
	              I 0.0418
	           reat 0.0369
	          areas 0.0369
	          great 0.0369
	          Greta 0.0369
	         Greats 0.0369
	           Grat 0.0369
	        Greater 0.0369
	          Graet 0.0369
	          Grean 0.0369
	          Greap 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              / 0.0000
	              ] 0.0000
	              , 0.0000
	              ) 0.0000
	              . 0.0000

       nnnibers   475697   1 (25)
	      inhiberes 0.0369
	       einibers 0.0369
	        nonners 0.0369
	       Enniberg 0.0369
	        nannies 0.0369
	       innitens 0.0369
	           ones 0.0369
	        answers 0.0369
	        nimbers 0.0369
	        numbers 0.0369
	         things 0.0369
	         fibers 0.0369
	         Fibers 0.0369
	      Anniceris 0.0369
	       inhibens 0.0369
	        Britain 0.0059
	         Plains 0.0000
	          Deals 0.0000
	           news 0.0000
	          <UNK> 0.0000
	          Lakes 0.0000
	              , 0.0000
	              . 0.0000
	           </S> 0.0000
	              - 0.0000

            are   475706   1 (20)
	            aer 0.0369
	           aare 0.0369
	            arz 0.0369
	            and 0.0369
	              . 0.0369
	           aree 0.0369
	             ar 0.0369
	              - 0.0369
	           </S> 0.0369
	              , 0.0369
	              a 0.0369
	           area 0.0369
	             us 0.0369
	             at 0.0369
	            art 0.0369
	            arm 0.0369
	           ares 0.0369
	           alba 0.0369
	            are 0.0369
	              I 0.0369

       conntr}-   475738  12 (26)
	         contro 0.1000
	       connerie 0.0369
	              . 0.0369
	              a 0.0369
	          major 0.0369
	            and 0.0369
	       construa 0.0369
	        License 0.0369
	              , 0.0369
	        connard 0.0369
	           </S> 0.0059
	           most 0.0000
	          world 0.0000
	        conners 0.0000
	          first 0.0000
	         contre 0.0000
	         conner 0.0000
	           same 0.0000
	        control 0.0000
	         United 0.0000
	    information 0.0000
	        company 0.0000
	              - 0.0000
	         contra 0.0000
	           eBay 0.0000
	        country 0.0000

            for   475781   1 (22)
	            fro 0.0369
	            foo 0.0369
	            fog 0.0369
	              , 0.0369
	           form 0.0369
	              I 0.0369
	            for 0.0369
	            For 0.0369
	           ford 0.0369
	           foro 0.0369
	            arz 0.0369
	            cia 0.0369
	              - 0.0369
	              a 0.0369
	              . 0.0369
	             us 0.0369
	           from 0.0369
	           forr 0.0369
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	              } 0.0000

             On   475830   3 (24)
	            One 0.4236
	             an 0.3642
	             On 0.3477
	             Of 0.2649
	             on 0.0660
	             in 0.0634
	              I 0.0418
	            Onn 0.0369
	            Ont 0.0369
	             iu 0.0369
	            cia 0.0369
	             OF 0.0369
	             us 0.0369
	              a 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              . 0.0000
	              , 0.0000
	              ) 0.0000
	            the 0.0000
	             '' 0.0000
	            and 0.0000

         parade   475862  14 (20)
	           page 0.0369
	              a 0.0369
	           para 0.0369
	        paraded 0.0369
	              I 0.0369
	           part 0.0369
	          parva 0.0369
	          place 0.0369
	         parede 0.0369
	         parada 0.0369
	         parado 0.0369
	        parades 0.0369
	              , 0.0059
	              - 0.0000
	              . 0.0000
	         parade 0.0000
	            was 0.0000
	            and 0.0000
	             of 0.0000
	           </S> 0.0000

        groiind   475869  20 (27)
	          route 0.2000
	          going 0.1000
	              a 0.1000
	       grooving 0.0369
	          groid 0.0369
	           roin 0.0369
	         groins 0.0369
	          fiind 0.0369
	        growing 0.0369
	        groping 0.0369
	       heroiini 0.0369
	        gromiid 0.0369
	        heroiin 0.0369
	        groined 0.0369
	         grondi 0.0369
	          groin 0.0369
	        gridino 0.0369
	        grondin 0.0369
	              . 0.0059
	           </S> 0.0000
	            ass 0.0000
	         ground 0.0000
	             of 0.0000
	              - 0.0000
	              , 0.0000
	           will 0.0000
	           with 0.0000

              ,   475876   1 (13)
	            and 0.0369
	            off 0.0369
	              , 0.0369
	              . 0.0369
	             us 0.0369
	           </S> 0.0369
	          begin 0.0369
	          start 0.0369
	            cia 0.0369
	             iu 0.0369
	            the 0.0369
	              - 0.0369
	             of 0.0369

             at   475878   1 (26)
	             as 0.0369
	           </S> 0.0369
	            aat 0.0369
	            arz 0.0369
	            att 0.0369
	             at 0.0369
	            ate 0.0369
	          <UNK> 0.0369
	              " 0.0369
	              I 0.0369
	              t 0.0369
	              | 0.0369
	              a 0.0369
	             an 0.0369
	              x 0.0369
	            and 0.0369
	           with 0.0062
	            the 0.0059
	          which 0.0012
	            you 0.0000
	             ta 0.0000
	              i 0.0000
	           your 0.0000
	             or 0.0000
	             us 0.0000
	             iu 0.0000

        Kamptee   475881   1 (33)
	           know 0.0369
	        Kempten 0.0369
	              a 0.0369
	        Kampyle 0.0369
	         dampte 0.0369
	         kampte 0.0369
	           </S> 0.0369
	       Kampfite 0.0369
	        Kamptee 0.0369
	          other 0.0369
	             me 0.0369
	           they 0.0369
	              , 0.0369
	            the 0.0369
	              I 0.0369
	          Kamet 0.0369
	            and 0.0369
	              - 0.0369
	           home 0.0369
	              . 0.0369
	          <UNK> 0.0369
	          Kampe 0.0369
	            all 0.0369
	          least 0.0369
	        amputee 0.0369
	           have 0.0369
	        Kampale 0.0369
	        Kampfer 0.0369
	           your 0.0059
	          which 0.0000
	             us 0.0000
	              x 0.0000
	           work 0.0000

              I   475890   1 (23)
	             MI 0.0369
	             It 0.0369
	            but 0.0369
	          <UNK> 0.0369
	            III 0.0369
	           </S> 0.0369
	             In 0.0369
	            cia 0.0369
	             WI 0.0369
	              " 0.0369
	              a 0.0369
	            and 0.0369
	              I 0.0369
	             II 0.0369
	            the 0.0059
	          which 0.0012
	             of 0.0000
	             us 0.0000
	             iu 0.0000
	            who 0.0000
	             we 0.0000
	             to 0.0000
	             or 0.0000

         bagged   475892  11 (26)
	         bagges 0.0369
	          bagge 0.0369
	              a 0.0369
	         bagger 0.0369
	       baggerde 0.0369
	            the 0.0369
	              I 0.0369
	       unbagged 0.0369
	         badgea 0.0369
	             'm 0.0059
	         bagged 0.0000
	            had 0.0000
	          based 0.0000
	              . 0.0000
	              - 0.0000
	           have 0.0000
	            was 0.0000
	          pages 0.0000
	             am 0.0000
	            and 0.0000
	        bragged 0.0000
	           Page 0.0000
	              J 0.0000
	         badged 0.0000
	           </S> 0.0000
	              , 0.0000

         twelve   475899   1 (20)
	          there 0.0369
	        twelves 0.0369
	          twelv 0.0369
	              O 0.0369
	         twelve 0.0369
	            not 0.0369
	              I 0.0369
	            and 0.0059
	          these 0.0000
	          their 0.0000
	            two 0.0000
	            the 0.0000
	             to 0.0000
	              a 0.0000
	        several 0.0000
	           </S> 0.0000
	              - 0.0000
	             it 0.0000
	              , 0.0000
	              . 0.0000

          birds   475912  15 (27)
	           bird 1.0000
	        birdsit 0.0369
	         Vbirds 0.0369
	          Parus 0.0369
	         Turdus 0.0369
	         birdes 0.0369
	              I 0.0369
	           days 0.0369
	              a 0.0369
	         bridds 0.0369
	          birdy 0.0369
	          birda 0.0369
	         months 0.0369
	             or 0.0059
	           </S> 0.0000
	           bids 0.0000
	          times 0.0000
	          first 0.0000
	              , 0.0000
	          First 0.0000
	              . 0.0000
	              - 0.0000
	          years 0.0000
	          major 0.0000
	             of 0.0000
	            big 0.0000
	          birds 0.0000

    discharging   475924   1 (24)
	    discharging 0.8000
	        hearing 0.4000
	        missing 0.0369
	       breaking 0.0369
	        driving 0.0369
	      discaging 0.0369
	 nondischarging 0.0369
	             by 0.0369
	    Discharging 0.0369
	    mischarging 0.0369
	             us 0.0369
	            the 0.0059
	              I 0.0000
	              , 0.0000
	     discarding 0.0000
	             we 0.0000
	      discharge 0.0000
	              - 0.0000
	          which 0.0000
	              . 0.0000
	              a 0.0000
	            all 0.0000
	           they 0.0000
	           </S> 0.0000

           both   475936  14 (21)
	           </S> 0.4000
	           boty 0.0369
	          booth 0.0369
	           hobt 0.0369
	           best 0.0369
	           body 0.0369
	          bothe 0.0369
	          bothy 0.0369
	            bot 0.0369
	              - 0.0369
	           bots 0.0369
	              I 0.0369
	            the 0.0059
	           both 0.0000
	          their 0.0000
	            its 0.0000
	              a 0.0000
	            but 0.0000
	              . 0.0000
	             by 0.0000
	              , 0.0000

        wonnded   475959  20 (33)
	         Wonder 0.2000
	         wonden 0.0369
	           guns 0.0369
	          wonne 0.0369
	         wonned 0.0369
	         wonted 0.0369
	           wonn 0.0369
	              I 0.0369
	        woonden 0.0369
	        Sonndeg 0.0369
	        sonndes 0.0369
	           most 0.0369
	       provided 0.0369
	            the 0.0369
	        wondend 0.0369
	          wonde 0.0369
	             us 0.0369
	          major 0.0369
	             of 0.0059
	       wondered 0.0000
	          other 0.0000
	              - 0.0000
	         people 0.0000
	         wonder 0.0000
	         others 0.0000
	              . 0.0000
	              , 0.0000
	           </S> 0.0000
	              a 0.0000
	           were 0.0000
	        wounded 0.0000
	           more 0.0000
	          would 0.0000

          birds   475967   1 (25)
	          First 0.0369
	           them 0.0369
	         Vbirds 0.0369
	         birdes 0.0369
	          Parus 0.0369
	         Turdus 0.0369
	              I 0.0369
	        birdsit 0.0369
	            big 0.0369
	          first 0.0369
	           have 0.0369
	              a 0.0369
	           bids 0.0369
	           whom 0.0369
	              - 0.0369
	            the 0.0369
	           bird 0.0369
	          birdy 0.0369
	          birda 0.0369
	             us 0.0369
	              , 0.0369
	              . 0.0369
	         bridds 0.0369
	           </S> 0.0369
	          birds 0.0369

        escaped   475973  14 (23)
	         escape 0.4000
	        located 0.2000
	        singing 0.1000
	        escapad 0.0369
	        escapes 0.0369
	        escapee 0.0369
	         scaped 0.0369
	         estate 0.0369
	       escarped 0.0369
	       escapade 0.0369
	      escapedes 0.0369
	        because 0.0369
	              , 0.0059
	              . 0.0000
	              a 0.0000
	             on 0.0000
	              - 0.0000
	           </S> 0.0000
	              I 0.0000
	              ) 0.0000
	        escaped 0.0000
	            and 0.0000
	              " 0.0000

           They   475982   1 (21)
	           They 1.0000
	           This 0.3358
	              I 0.0418
	           Tehy 0.0369
	           Them 0.0369
	          Theys 0.0369
	          Theyr 0.0369
	          minor 0.0369
	              a 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	            The 0.0131
	           </S> 0.0059
	           they 0.0000
	           Then 0.0000
	              / 0.0000
	              . 0.0000
	              ) 0.0000
	              ] 0.0000
	              , 0.0000

        alwa3'S   476069   6 (18)
	        already 0.1000
	       commonly 0.0369
	          alwas 0.0369
	            and 0.0369
	            not 0.0059
	          often 0.0000
	         always 0.0000
	              , 0.0000
	            all 0.0000
	            the 0.0000
	             in 0.0000
	              . 0.0000
	              a 0.0000
	        alwayes 0.0000
	           </S> 0.0000
	           also 0.0000
	          alway 0.0000
	              : 0.0000

         called   476077   1 (24)
	          caled 0.0369
	              a 0.0369
	             us 0.0369
	              I 0.0369
	          calle 0.0369
	              - 0.0369
	             to 0.0369
	           case 0.0369
	        ycalled 0.0369
	           call 0.0369
	        cablets 0.0369
	          Pales 0.0369
	              . 0.0369
	           </S> 0.0369
	             in 0.0369
	       calledst 0.0369
	           care 0.0369
	         callee 0.0369
	         calced 0.0369
	         caller 0.0369
	              , 0.0369
	          calls 0.0369
	        scalled 0.0369
	         called 0.0369

        Ortolan   476084   1 (23)
	     Hottentots 0.0369
	        Ortonal 0.0369
	        Ortolan 0.0369
	       Ortolani 0.0369
	       Ortolans 0.0369
	       Ortolana 0.0369
	        Oriolus 0.0369
	              " 0.0059
	              - 0.0000
	           </S> 0.0000
	             us 0.0000
	           from 0.0000
	            the 0.0000
	              A 0.0000
	           that 0.0000
	             in 0.0000
	              I 0.0000
	            for 0.0000
	              a 0.0000
	           upon 0.0000
	              . 0.0000
	              , 0.0000
	          today 0.0000

             by   476092   2 (21)
	              . 0.2000
	              I 0.0369
	             br 0.0369
	             yb 0.0369
	            but 0.0369
	             us 0.0369
	              a 0.0369
	            the 0.0369
	             iu 0.0369
	            Pyi 0.0369
	             be 0.0369
	           byby 0.0369
	             by 0.0369
	            bye 0.0369
	            byd 0.0369
	              " 0.0369
	        Bunting 0.0059
	       Pallucco 0.0000
	              , 0.0000
	           </S> 0.0000
	              - 0.0000

           They   476115   1 (20)
	           They 1.0000
	           This 0.3358
	              I 0.0418
	           Them 0.0369
	           Tehy 0.0369
	         Return 0.0369
	              a 0.0369
	          Theys 0.0369
	          Theyr 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	            The 0.0131
	           </S> 0.0059
	           they 0.0000
	              , 0.0000
	              . 0.0000
	           Then 0.0000
	              ] 0.0000
	              ) 0.0000

          the}'   476194  10 (21)
	          theet 0.0369
	          thete 0.0369
	            dog 0.0369
	             M. 0.0369
	         sister 0.0369
	           June 0.0369
	              . 0.0369
	            and 0.0369
	            the 0.0059
	              I 0.0000
	           </S> 0.0000
	              a 0.0000
	           they 0.0000
	          their 0.0000
	           them 0.0000
	              , 0.0000
	           thee 0.0000
	            was 0.0000
	          other 0.0000
	          there 0.0000
	              - 0.0000

          breed   476200   1 (22)
	           them 0.0369
	          breen 0.0369
	          break 0.0369
	              a 0.0369
	           bred 0.0369
	           bree 0.0369
	              . 0.0369
	          brede 0.0369
	          breed 0.0369
	           free 0.0369
	           been 0.0369
	         breede 0.0369
	              - 0.0369
	             it 0.0369
	         breeds 0.0369
	          brees 0.0369
	              I 0.0369
	              , 0.0369
	           </S> 0.0369
	          based 0.0369
	             us 0.0369
	            the 0.0369

         laying   476352  15 (30)
	        layings 0.7000
	           said 0.0369
	          takes 0.0369
	              i 0.0369
	            and 0.0369
	         within 0.0369
	           take 0.0369
	           find 0.0369
	         layins 0.0369
	           last 0.0369
	        alaying 0.0369
	              . 0.0369
	             J. 0.0369
	            the 0.0059
	              - 0.0000
	            his 0.0000
	              I 0.0000
	        playing 0.0000
	            may 0.0000
	         lading 0.0000
	              a 0.0000
	           then 0.0000
	            has 0.0000
	              , 0.0000
	          would 0.0000
	        allying 0.0000
	           </S> 0.0000
	           that 0.0000
	          layin 0.0000
	         laying 0.0000

         rufous   476406   2 (32)
	         Rufous 0.9000
	         rufous 0.2000
	           rufo 0.0369
	              i 0.0369
	     television 0.0369
	        foufous 0.0369
	          black 0.0369
	          rufos 0.0369
	          radio 0.0369
	         rukous 0.0369
	          white 0.0369
	        Aoufous 0.0369
	         rufula 0.0369
	          roufs 0.0369
	            the 0.0059
	         Turdus 0.0000
	              a 0.0000
	          other 0.0000
	            you 0.0000
	              I 0.0000
	           </S> 0.0000
	          <UNK> 0.0000
	              ( 0.0000
	          rufus 0.0000
	              - 0.0000
	             so 0.0000
	           more 0.0000
	          their 0.0000
	           your 0.0000
	            for 0.0000
	         rugous 0.0000
	              , 0.0000

          spots   476413   2 (32)
	             on 0.3000
	              a 0.0369
	             us 0.0369
	            set 0.0369
	              I 0.0369
	         spinas 0.0369
	           some 0.0369
	        Despots 0.0369
	           pots 0.0369
	       hotspots 0.0369
	         spouts 0.0369
	    information 0.0369
	        include 0.0369
	        despots 0.0369
	            the 0.0369
	         sports 0.0369
	           like 0.0369
	          spots 0.0369
	           spot 0.0369
	       Hotspots 0.0369
	          books 0.0369
	          spott 0.0369
	          spote 0.0369
	           site 0.0369
	              - 0.0059
	              ) 0.0000
	              . 0.0000
	    hummingbird 0.0000
	              , 0.0000
	          rufus 0.0000
	        streaks 0.0000
	           </S> 0.0000

      unspotted   476447  20 (25)
	      unslotted 0.2000
	       unpotted 0.1000
	           used 0.0369
	           </S> 0.0369
	     sunspotted 0.0369
	              a 0.0369
	              " 0.0369
	    unspottedly 0.0369
	      unsported 0.0369
	       unsotted 0.0369
	              , 0.0369
	              ' 0.0369
	              I 0.0369
	            and 0.0369
	              - 0.0369
	      unspouted 0.0369
	              . 0.0369
	            the 0.0059
	          which 0.0012
	             or 0.0000
	      unspotted 0.0000
	          other 0.0000
	              i 0.0000
	           that 0.0000
	            use 0.0000

         yellow   476457   1 (18)
	           your 0.0369
	              I 0.0369
	              a 0.0369
	        yellows 0.0369
	        yellowy 0.0369
	              - 0.0369
	              A 0.0369
	         yellow 0.0369
	           well 0.0369
	          yelow 0.0369
	           that 0.0369
	            you 0.0369
	           from 0.0059
	              , 0.0000
	           </S> 0.0000
	            and 0.0000
	            the 0.0000
	              . 0.0000

          Larks   476511   2 (30)
	           Lark 0.5000
	          Larks 0.3532
	          Larus 0.1000
	         Laarks 0.0369
	         others 0.0369
	       Larksmen 0.0369
	              , 0.0369
	           Star 0.0369
	              . 0.0369
	           </S> 0.0059
	           same 0.0037
	          Links 0.0000
	       Larkspur 0.0000
	           Lake 0.0000
	          parva 0.0000
	          world 0.0000
	          Parus 0.0000
	          first 0.0000
	          other 0.0000
	            way 0.0000
	         Laskar 0.0000
	      following 0.0000
	           part 0.0000
	         latest 0.0000
	         Lanius 0.0000
	           arks 0.0000
	          Large 0.0000
	           Last 0.0000
	           time 0.0000
	              - 0.0000

        insects   476518  15 (24)
	        insecti 0.6000
	             in 0.1021
	              I 0.0369
	           </S> 0.0369
	            but 0.0369
	              " 0.0369
	              x 0.0369
	              ( 0.0369
	              a 0.0369
	            and 0.0369
	          <UNK> 0.0369
	          under 0.0369
	            the 0.0059
	          which 0.0012
	            its 0.0000
	        insects 0.0000
	             to 0.0000
	       insectes 0.0000
	       inspects 0.0000
	             or 0.0000
	         insect 0.0000
	        insecte 0.0000
	            who 0.0000
	       insectos 0.0000

           Herr   476601   2 (22)
	              I 0.0418
	           Hero 0.0369
	          Herrn 0.0369
	          Herre 0.0369
	      uncovered 0.0369
	           Herr 0.0369
	            arz 0.0369
	           here 0.0369
	              a 0.0369
	           were 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              , 0.0000
	           Help 0.0000
	              ] 0.0000
	          <UNK> 0.0000
	              . 0.0000
	              ) 0.0000
	            Her 0.0000
	           Here 0.0000

          Gatke   476606 inf (26)
	         Doctor 0.2000
	           Gate 0.0369
	              n 0.0369
	        Gatokae 0.0369
	          Latke 0.0369
	          latke 0.0369
	          Games 0.0369
	        Gaskets 0.0369
	          Gatte 0.0369
	         Gasket 0.0369
	        Gataket 0.0369
	           Game 0.0369
	          Gatka 0.0369
	              a 0.0369
	          Gatae 0.0369
	           take 0.0369
	              , 0.0059
	              - 0.0000
	           </S> 0.0000
	          Gates 0.0000
	             M. 0.0000
	              . 0.0000
	          <UNK> 0.0000
	            der 0.0000
	              ) 0.0000
	              W 0.0000

           says   476612   1 (23)
	          sayst 0.0369
	          sayso 0.0369
	     Dispatches 0.0369
	            say 0.0369
	              - 0.0369
	         Kaefer 0.0369
	           days 0.0369
	           says 0.0369
	           said 0.0369
	           Baya 0.0369
	           lava 0.0369
	           saya 0.0369
	           sayd 0.0369
	           aysa 0.0369
	              a 0.0369
	              . 0.0369
	          aysay 0.0369
	         Christ 0.0369
	           sala 0.0369
	          Ringe 0.0369
	              , 0.0059
	           </S> 0.0000
	          Corp. 0.0000

     Heligoland   476633   1 (25)
	     Heligoland 0.9000
	     Helgioland 0.0369
	   Heligolandic 0.0369
	   Heligolander 0.0369
	      Heliolais 0.0369
	           Prey 0.0369
	            the 0.0059
	          their 0.0000
	      Helgoland 0.0000
	     Technology 0.0000
	           this 0.0000
	           that 0.0000
	              , 0.0000
	           </S> 0.0000
	           them 0.0000
	             it 0.0000
	             us 0.0000
	         people 0.0000
	              - 0.0000
	              a 0.0000
	          <UNK> 0.0000
	              : 0.0000
	         Health 0.0000
	           time 0.0000
	        America 0.0000

              "   476644   1 (17)
	              ( 0.0369
	           </S> 0.0369
	            but 0.0369
	        Germany 0.0369
	            and 0.0369
	              = 0.0369
	            cia 0.0369
	              a 0.0369
	              " 0.0369
	          <UNK> 0.0369
	            the 0.0059
	          which 0.0012
	             iu 0.0000
	             of 0.0000
	             or 0.0000
	             us 0.0000
	             to 0.0000

            pp.   476646   6 (24)
	            ppp 0.2000
	            ppl 0.1000
	              s 0.0369
	              - 0.0235
	           </S> 0.0059
	          <UNK> 0.0000
	            and 0.0000
	           says 0.0000
	             pp 0.0000
	              A 0.0000
	            cia 0.0000
	            ppm 0.0000
	              , 0.0000
	           said 0.0000
	              " 0.0000
	             us 0.0000
	           page 0.0000
	              I 0.0000
	             he 0.0000
	              ) 0.0000
	              a 0.0000
	              . 0.0000
	            the 0.0000
	             up 0.0000

       359-360)   476650 inf (24)
	          32-33 0.3833
	          30-31 0.1500
	          debug 0.0369
	            and 0.0369
	              " 0.0369
	              a 0.0369
	              A 0.0369
	              . 0.0369
	              , 0.0369
	              # 0.0369
	              s 0.0369
	              I 0.0369
	             of 0.0369
	            the 0.0369
	          <UNK> 0.0059
	              1 0.0000
	              - 0.0000
	           </S> 0.0000
	            2-3 0.0000
	          29-30 0.0000
	            5-6 0.0000
	             35 0.0000
	             33 0.0000
	           3-20 0.0000

              :   476659 inf (12)
	              - 0.0369
	             us 0.0369
	            and 0.0369
	           </S> 0.0369
	              . 0.0369
	              ) 0.0369
	            the 0.0369
	          <UNK> 0.0369
	             of 0.0369
	              , 0.0369
	            cia 0.0369
	             iu 0.0369

              "   476663   1 (19)
	              " 0.7265
	            and 0.0389
	              : 0.0369
	          party 0.0369
	           open 0.0369
	              , 0.0369
	              - 0.0079
	           </S> 0.0059
	              . 0.0000
	             of 0.0000
	             us 0.0000
	             up 0.0000
	            cia 0.0000
	           mail 0.0000
	          <UNK> 0.0000
	            lib 0.0000
	            the 0.0000
	             in 0.0000
	             iu 0.0000

           Lark   476723  12 (30)
	           Lars 0.4000
	           Lara 0.1000
	          vased 0.0369
	          Lakar 0.0369
	            arz 0.0369
	            Lar 0.0369
	          Larak 0.0369
	         Larkin 0.0369
	              a 0.0369
	         selves 0.0369
	            bit 0.0059
	           more 0.0000
	           Lake 0.0000
	           lava 0.0000
	           sala 0.0000
	             or 0.0000
	            are 0.0000
	           </S> 0.0000
	           Last 0.0000
	              , 0.0000
	          piece 0.0000
	              - 0.0000
	              I 0.0000
	          Larks 0.0000
	              . 0.0000
	           part 0.0000
	           girl 0.0000
	          thing 0.0000
	             is 0.0000
	           Lark 0.0000

          being   476728  17 (23)
	        bouquet 0.0369
	              I 0.0369
	       bracelet 0.0369
	         beinge 0.0369
	         beeing 0.0369
	           bein 0.0369
	           over 0.0369
	              a 0.0369
	           been 0.0369
	          beint 0.0369
	          beina 0.0369
	          thing 0.0369
	           best 0.0369
	           from 0.0369
	         beings 0.0369
	           </S> 0.0059
	          being 0.0000
	    Calandrella 0.0000
	          Books 0.0000
	              . 0.0000
	             of 0.0000
	              , 0.0000
	              - 0.0000

          ver}-   476795   7 (22)
	           were 0.3000
	             of 0.0369
	              I 0.0369
	             us 0.0369
	              C 0.0369
	            the 0.0059
	              . 0.0000
	              - 0.0000
	           your 0.0000
	           very 0.0000
	          verve 0.0000
	              a 0.0000
	            its 0.0000
	              , 0.0000
	           </S> 0.0000
	            ver 0.0000
	           this 0.0000
	          verre 0.0000
	           here 0.0000
	           verb 0.0000
	          verse 0.0000
	           vere 0.0000

      solitar}'   476801   1 (19)
	       solitary 0.0369
	             of 0.0369
	              / 0.0369
	              - 0.0369
	       solitari 0.0369
	          state 0.0369
	              , 0.0369
	            few 0.0369
	      following 0.0369
	         solita 0.0369
	              a 0.0369
	              . 0.0369
	         system 0.0369
	      solitaire 0.0369
	      solitario 0.0369
	      solitaria 0.0369
	           site 0.0369
	           rare 0.0369
	           </S> 0.0369

      instances   476811   1 (13)
	      instancie 0.0369
	        instans 0.0369
	      instantes 0.0369
	      insurance 0.0369
	      instincta 0.0369
	    insistances 0.0369
	     instancies 0.0369
	       distance 0.0369
	      installed 0.0369
	     Winstanley 0.0369
	      instanced 0.0369
	      instances 0.0369
	       instance 0.0369

              .   476820   5 (12)
	             us 0.0369
	            cia 0.0369
	             iu 0.0369
	             of 0.0059
	            the 0.0000
	              , 0.0000
	           </S> 0.0000
	              . 0.0000
	              - 0.0000
	            ... 0.0000
	            and 0.0000
	          where 0.0000

             In   476823   1 (19)
	             In 0.5538
	             It 0.0900
	             If 0.0570
	              I 0.0418
	             us 0.0369
	            Inn 0.0369
	            Inc 0.0369
	             iu 0.0369
	            cia 0.0369
	              a 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              . 0.0000
	              , 0.0000
	              ] 0.0000
	            the 0.0000
	              ) 0.0000

            and   477069   1 (22)
	           than 0.0369
	           size 0.0369
	            ant 0.0369
	              , 0.0369
	           much 0.0369
	            and 0.0369
	           andy 0.0369
	           anda 0.0369
	              - 0.0369
	            arz 0.0369
	           alba 0.0369
	              . 0.0369
	             us 0.0369
	            any 0.0369
	           aand 0.0369
	             an 0.0369
	              I 0.0369
	              a 0.0369
	           </S> 0.0059
	              } 0.0000
	              " 0.0000
	              ) 0.0000

        besides   477073  12 (32)
	       bedsides 0.1000
	        betides 0.0369
	              i 0.0369
	            say 0.0369
	        without 0.0369
	           said 0.0369
	          found 0.0369
	         ensure 0.0369
	        obeside 0.0369
	         beides 0.0369
	            the 0.0059
	              - 0.0000
	              ( 0.0000
	         deside 0.0000
	              , 0.0000
	       services 0.0000
	          their 0.0000
	             so 0.0000
	              I 0.0000
	         beside 0.0000
	              a 0.0000
	           </S> 0.0000
	           with 0.0000
	          <UNK> 0.0000
	        Besides 0.0000
	        desides 0.0000
	       business 0.0000
	          other 0.0000
	       Services 0.0000
	            use 0.0000
	        besides 0.0000
	           more 0.0000

              I   477171   3 (21)
	             In 0.5538
	             It 0.0900
	              I 0.0418
	            cia 0.0369
	             iu 0.0369
	             us 0.0369
	             MI 0.0369
	             WI 0.0369
	            III 0.0369
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              . 0.0000
	             of 0.0000
	            and 0.0000
	             '' 0.0000
	              ] 0.0000
	              , 0.0000
	             II 0.0000
	              ) 0.0000
	            the 0.0000

             it   477235   1 (22)
	            ith 0.0369
	          which 0.0369
	             in 0.0369
	             is 0.0369
	             ti 0.0369
	            iti 0.0369
	            itt 0.0369
	             iu 0.0369
	              I 0.0369
	            cia 0.0369
	              . 0.0369
	             us 0.0369
	              a 0.0369
	             it 0.0369
	            its 0.0369
	            iit 0.0369
	              , 0.0369
	              - 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000
	              " 0.0000

   momeutaril}-   477247   1 (24)
	            out 0.0369
	             me 0.0369
	  automatically 0.0369
	      necessary 0.0369
	           left 0.0369
	        married 0.0369
	      seriously 0.0369
	              - 0.0369
	     absolutely 0.0369
	          great 0.0369
	    momentarily 0.0369
	              a 0.0059
	          taken 0.0000
	           </S> 0.0000
	           made 0.0000
	            the 0.0000
	              . 0.0000
	              , 0.0000
	           some 0.0000
	       obtained 0.0000
	             to 0.0000
	             in 0.0000
	             so 0.0000
	           more 0.0000

        stunned   477260   1 (23)
	              , 0.0369
	          major 0.0369
	        stunned 0.0369
	              . 0.0369
	              - 0.0369
	        stunted 0.0369
	           </S> 0.0369
	      unstunned 0.0369
	             to 0.0369
	              a 0.0369
	        stunner 0.0369
	          since 0.0369
	             in 0.0369
	         sunned 0.0369
	              I 0.0369
	       astunned 0.0369
	          under 0.0369
	         tunned 0.0369
	        subject 0.0369
	             by 0.0369
	        shunned 0.0369
	        stunden 0.0369
	        stannea 0.0369

          ver\'   477342  12 (27)
	            was 0.8298
	              i 0.0369
	            not 0.0369
	          verre 0.0369
	           vere 0.0369
	             's 0.0369
	          verve 0.0369
	           verb 0.0369
	          verse 0.0369
	            ver 0.0369
	           from 0.0059
	              . 0.0000
	              I 0.0000
	             by 0.0000
	            the 0.0000
	           will 0.0000
	             is 0.0000
	             as 0.0000
	             in 0.0000
	              a 0.0000
	           very 0.0000
	             to 0.0000
	           here 0.0000
	              - 0.0000
	              , 0.0000
	           were 0.0000
	           </S> 0.0000

           soon   477348   1 (25)
	           sooo 0.0369
	           sono 0.0369
	        spirits 0.0369
	          soone 0.0369
	          soond 0.0369
	              a 0.0369
	         senses 0.0369
	        however 0.0369
	           sala 0.0369
	          Aedon 0.0369
	         corone 0.0369
	              , 0.0369
	           soon 0.0369
	            soo 0.0369
	              . 0.0369
	           soot 0.0369
	           </S> 0.0369
	           some 0.0369
	              - 0.0369
	           good 0.0369
	              I 0.0369
	            the 0.0369
	      composure 0.0369
	             so 0.0369
	            son 0.0369

extraordinarilj''   477365   3 (29)
	             so 1.0000
	             to 0.1000
	    information 0.0369
	              I 0.0369
	             or 0.0369
	         people 0.0369
	        forward 0.0369
	internationally 0.0369
	            'll 0.0369
	             us 0.0369
	              - 0.0369
	           will 0.0369
	extraordinarily 0.0369
	        looking 0.0369
	              a 0.0059
	          quite 0.0000
	           very 0.0000
	            the 0.0000
	             an 0.0000
	           more 0.0000
	              . 0.0000
	          final 0.0000
	           </S> 0.0000
	              , 0.0000
	    operational 0.0000
	        extinct 0.0000
	             in 0.0000
	      extremely 0.0000
	      available 0.0000

           tame   477383   1 (25)
	        reality 0.0369
	          tamme 0.0369
	              - 0.0369
	           lava 0.0369
	           sala 0.0369
	           Baya 0.0369
	            tam 0.0369
	           name 0.0369
	             in 0.0369
	           time 0.0369
	           </S> 0.0369
	        popular 0.0369
	        friends 0.0369
	              a 0.0369
	           tame 0.0369
	              . 0.0369
	           tama 0.0369
	           tami 0.0369
	          tamed 0.0369
	          tamer 0.0369
	           them 0.0369
	              , 0.0369
	             of 0.0369
	           team 0.0369
	           take 0.0369

             It   477389   4 (20)
	             In 0.5538
	            Its 0.3584
	           This 0.3358
	             It 0.0900
	             If 0.0570
	              I 0.0418
	             us 0.0369
	             iu 0.0369
	            cia 0.0369
	            Ito 0.0369
	              a 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ) 0.0000
	          There 0.0000
	              ] 0.0000
	              , 0.0000
	              . 0.0000

            but   477514   1 (22)
	             bu 0.0369
	           buts 0.0369
	              I 0.0369
	             be 0.0369
	            but 0.0369
	            buy 0.0369
	              . 0.0369
	             iu 0.0369
	            cia 0.0369
	         summer 0.0369
	              - 0.0369
	              , 0.0369
	             by 0.0369
	            tub 0.0369
	              a 0.0369
	           butt 0.0369
	            bus 0.0369
	             us 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000
	              " 0.0000

            Its   477575   2 (23)
	             In 0.5538
	            Its 0.3584
	             It 0.0900
	              I 0.0418
	            Ist 0.0369
	             us 0.0369
	            cia 0.0369
	             iu 0.0369
	           Itsu 0.0369
	           Itse 0.0369
	            Ito 0.0369
	            Ita 0.0369
	            its 0.0369
	              a 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ) 0.0000
	              . 0.0000
	              ] 0.0000
	              , 0.0000
	             '' 0.0000

        Bunting   477613  17 (28)
	        Burkina 0.8000
	        Busting 0.6083
	        Hunting 0.1000
	              . 0.0369
	       Buntingi 0.0369
	           less 0.0369
	       Buntings 0.0369
	    functionary 0.0369
	        Buntine 0.0369
	        greater 0.0369
	              a 0.0369
	            and 0.0369
	        Butting 0.0369
	              , 0.0369
	            few 0.0097
	           </S> 0.0059
	         Rating 0.0000
	          major 0.0000
	            new 0.0000
	          child 0.0000
	              - 0.0000
	           more 0.0000
	        Bunting 0.0000
	            man 0.0000
	          using 0.0000
	         result 0.0000
	          woman 0.0000
	         during 0.0000

           than   477621  14 (23)
	              . 0.4560
	              - 0.1064
	          thank 0.0369
	            cia 0.0369
	          thana 0.0369
	            tha 0.0369
	          torax 0.0369
	           thai 0.0369
	           tanh 0.0369
	              a 0.0369
	              I 0.0369
	          thanx 0.0369
	           </S> 0.0059
	           that 0.0000
	             of 0.0000
	              , 0.0000
	           than 0.0000
	             is 0.0000
	            and 0.0000
	              C 0.0000
	       Emberiza 0.0000
	           then 0.0000
	              ( 0.0000

          Sk}--   477628  10 (24)
	           Skip 0.4333
	              . 0.0369
	            the 0.0369
	          minor 0.0369
	            and 0.0369
	              , 0.0369
	         decade 0.0369
	            few 0.0097
	           </S> 0.0059
	            Ska 0.0000
	             Sk 0.0000
	          Skunk 0.0000
	          small 0.0000
	            Ski 0.0000
	            lot 0.0000
	         little 0.0000
	          major 0.0000
	         single 0.0000
	           Skin 0.0000
	            new 0.0000
	              - 0.0000
	           year 0.0000
	            Sky 0.0000
	           more 0.0000

           Lark   477634   1 (26)
	           part 0.0369
	          Larak 0.0369
	         Larkin 0.0369
	           work 0.0369
	           lava 0.0369
	          Lakar 0.0369
	            arz 0.0369
	           </S> 0.0369
	              . 0.0369
	           Lark 0.0369
	              I 0.0369
	           Lara 0.0369
	              - 0.0369
	            one 0.0369
	           Lake 0.0369
	            Lar 0.0369
	            are 0.0369
	          modem 0.0369
	           sala 0.0369
	           Lars 0.0369
	            ago 0.0369
	              , 0.0369
	             of 0.0369
	          Larks 0.0369
	          basis 0.0369
	              a 0.0369

              .   477638   1 (14)
	              . 0.8000
	            cia 0.0369
	             iu 0.0369
	             us 0.0369
	           </S> 0.0059
	          Books 0.0000
	              , 0.0000
	              - 0.0000
	            ... 0.0000
	            the 0.0000
	             in 0.0000
	             of 0.0000
	            and 0.0000
	            St. 0.0000

              I   477640   3 (22)
	             In 0.5538
	             It 0.0900
	              I 0.0418
	            III 0.0369
	             MI 0.0369
	             WI 0.0369
	            cia 0.0369
	             iu 0.0369
	             us 0.0369
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              . 0.0000
	             II 0.0000
	              ] 0.0000
	              , 0.0000
	            the 0.0000
	              ) 0.0000
	            and 0.0000
	              / 0.0000
	             of 0.0000
	        However 0.0000

         Canary   477652  11 (26)
	         Canari 0.1000
	              I 0.0369
	              E 0.0369
	          Cynar 0.0369
	          Canar 0.0369
	      Canarypox 0.0369
	            oil 0.0369
	            non 0.0369
	            pre 0.0369
	            the 0.0059
	              - 0.0000
	            top 0.0000
	           </S> 0.0000
	         Canada 0.0000
	        January 0.0000
	              a 0.0000
	           many 0.0000
	         Canary 0.0000
	              1 0.0000
	              , 0.0000
	         Cynara 0.0000
	             CD 0.0000
	             my 0.0000
	         Canard 0.0000
	           this 0.0000
	              . 0.0000

              -   477658   1 (17)
	              - 0.1986
	           your 0.0369
	           from 0.0369
	            cia 0.0369
	              s 0.0369
	         sesame 0.0369
	             us 0.0369
	        Islands 0.0059
	            the 0.0000
	              , 0.0000
	          Wharf 0.0000
	           </S> 0.0000
	              . 0.0000
	            and 0.0000
	         Island 0.0000
	             of 0.0000
	             -- 0.0000

              a   477762   1 (21)
	              . 0.0369
	              , 0.0369
	             of 0.0369
	              a 0.0369
	             to 0.0369
	             La 0.0369
	              - 0.0369
	           lava 0.0369
	            cia 0.0369
	             aa 0.0369
	             as 0.0369
	             us 0.0369
	             la 0.0369
	        product 0.0369
	            the 0.0369
	             at 0.0369
	            aaa 0.0369
	           </S> 0.0059
	              ) 0.0000
	              " 0.0000
	              } 0.0000

       Familx-A   477857   7 (21)
	       Families 0.2000
	           From 0.0369
	      FamiliaDA 0.0369
	         Famila 0.0369
	         Famill 0.0369
	           </S> 0.0059
	              . 0.0000
	             he 0.0000
	        Familia 0.0000
	       Familial 0.0000
	              , 0.0000
	              I 0.0000
	         Family 0.0000
	              a 0.0000
	              ) 0.0000
	              ] 0.0000
	       Familiar 0.0000
	           will 0.0000
	              A 0.0000
	          <UNK> 0.0000
	              - 0.0000

             LA   477866   1 (23)
	            LAN 0.0369
	              " 0.0369
	             to 0.0369
	              a 0.0369
	              , 0.0369
	             LA 0.0369
	            BUT 0.0369
	             of 0.0369
	             in 0.0369
	            LLA 0.0369
	              - 0.0369
	              A 0.0369
	              I 0.0369
	             La 0.0369
	            LAA 0.0369
	            LAL 0.0369
	             us 0.0369
	           </S> 0.0369
	             AL 0.0369
	            cia 0.0369
	             iu 0.0369
	            LAW 0.0369
	              . 0.0369

              E   477876 inf (25)
	             RE 0.0369
	             DE 0.0369
	             EU 0.0369
	             EE 0.0369
	            cia 0.0369
	             iu 0.0369
	             us 0.0369
	            EEE 0.0369
	           KNOW 0.0369
	             ME 0.0369
	          kills 0.0369
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	             of 0.0000
	              ) 0.0000
	             Ed 0.0000
	             El 0.0000
	            and 0.0000
	            the 0.0000
	          <UNK> 0.0000
	              , 0.0000
	              ] 0.0000
	              . 0.0000
	              / 0.0000

           Lark   477891  15 (35)
	           work 0.6000
	          Larks 0.5000
	          Larak 0.0369
	            Vol 0.0369
	          Lakar 0.0369
	              s 0.0369
	             St 0.0369
	          Acker 0.0369
	           side 0.0369
	       Picayune 0.0369
	          Files 0.0369
	           None 0.0369
	              - 0.0079
	           </S> 0.0059
	              ) 0.0000
	           lava 0.0000
	              . 0.0000
	           Lara 0.0000
	             up 0.0000
	           Lars 0.0000
	         Larkin 0.0000
	            the 0.0000
	            Lar 0.0000
	            are 0.0000
	            arz 0.0000
	              a 0.0000
	             to 0.0000
	              A 0.0000
	           make 0.0000
	           time 0.0000
	           Lark 0.0000
	           year 0.0000
	              I 0.0000
	          <UNK> 0.0000
	            The 0.0000

              .   477895   1 (17)
	              . 0.8000
	             P. 0.0369
	           Bilk 0.0369
	         Island 0.0369
	            cia 0.0369
	           Road 0.0369
	             us 0.0369
	           </S> 0.0059
	             Of 0.0000
	             of 0.0000
	              " 0.0000
	            the 0.0000
	              , 0.0000
	              - 0.0000
	          Books 0.0000
	            ... 0.0000
	            and 0.0000

       Olocurvs   477898 inf (23)
	        locuras 0.0369
	         locura 0.0369
	         locuri 0.0369
	       closures 0.0369
	          Olous 0.0369
	         Olorus 0.0369
	       cloruros 0.0369
	       Closures 0.0369
	       Procurve 0.0369
	              a 0.0369
	         clours 0.0369
	       Olokurto 0.0369
	          locus 0.0369
	           </S> 0.0059
	              A 0.0000
	              . 0.0000
	              / 0.0000
	              - 0.0000
	              ] 0.0000
	              ) 0.0000
	              " 0.0000
	              I 0.0000
	              , 0.0000

      alpcstris   477907   1 (24)
	              - 0.0369
	              I 0.0369
	              g 0.0369
	              ) 0.0369
	       alpestri 0.0369
	        lustris 0.0369
	       alcestis 0.0369
	          <UNK> 0.0369
	        austris 0.0369
	      alpestria 0.0369
	vareSelskap.cgi 0.0369
	              n 0.0369
	     campestris 0.0369
	      alpestris 0.0369
	      palustris 0.0369
	        authors 0.0369
	         astris 0.0369
	              . 0.0369
	              , 0.0369
	       addition 0.0369
	      bootstrap 0.0369
	      alpestras 0.0369
	           </S> 0.0369
	      configure 0.0369

              ,   477916 inf (8)
	             of 0.0369
	             to 0.0369
	             us 0.0369
	            and 0.0369
	             in 0.0369
	            the 0.0369
	            cia 0.0369
	             iu 0.0369

           LiNX   477918 inf (27)
	             pp 0.1857
	              { 0.0369
	            LNX 0.0369
	   respectively 0.0369
	            LXN 0.0369
	            cia 0.0369
	           Pica 0.0369
	          Links 0.0369
	              x 0.0369
	           LiNK 0.0369
	           LiNa 0.0369
	           LibX 0.0369
	           LYNX 0.0369
	           LiXi 0.0369
	           List 0.0369
	             Li 0.0369
	          LLiNK 0.0369
	           with 0.0062
	            the 0.0059
	          which 0.0012
	              i 0.0000
	              e 0.0000
	            too 0.0000
	             iu 0.0000
	             to 0.0000
	             of 0.0000
	             or 0.0000

              .   477922   1 (11)
	             iu 0.0369
	             of 0.0369
	            ... 0.0369
	              , 0.0369
	            and 0.0369
	            cia 0.0369
	             us 0.0369
	              . 0.0369
	              - 0.0369
	            the 0.0369
	           </S> 0.0059

         BREEDS   477925 inf (24)
	           This 0.2000
	           BRES 0.0369
	          BREEF 0.0369
	          GREEN 0.0369
	          BREAK 0.0369
	        BORDERS 0.0369
	         BREEAM 0.0369
	            BRE 0.0369
	        FREEBSD 0.0369
	          BRAND 0.0369
	         BRENDA 0.0369
	          LEEDS 0.0369
	          SEEDS 0.0369
	           </S> 0.0059
	              . 0.0000
	              ] 0.0000
	              ) 0.0000
	              - 0.0000
	              / 0.0000
	              I 0.0000
	              A 0.0000
	              , 0.0000
	              " 0.0000
	             To 0.0000

         within   477932   1 (21)
	              a 0.0369
	        Swithin 0.0369
	        weithin 0.0369
	        withing 0.0369
	             to 0.0369
	         withen 0.0369
	           with 0.0369
	         withim 0.0369
	         Within 0.0369
	         within 0.0369
	              n 0.0369
	             is 0.0369
	           </S> 0.0059
	            FAQ 0.0000
	          <UNK> 0.0000
	              - 0.0000
	              . 0.0000
	              ) 0.0000
	              , 0.0000
	              A 0.0000
	             of 0.0000

        bej'ond   477957   1 (26)
	           bond 0.0369
	          bejan 0.0369
	        bendone 0.0369
	        bestond 0.0369
	         bedone 0.0369
	         before 0.0369
	          blond 0.0369
	          bjond 0.0369
	         bevond 0.0369
	         betond 0.0369
	         bendon 0.0369
	         beyond 0.0369
	           beon 0.0369
	              T 0.0286
	             of 0.0059
	             is 0.0000
	             in 0.0000
	              A 0.0000
	            and 0.0000
	         behind 0.0000
	           </S> 0.0000
	              , 0.0000
	              . 0.0000
	              - 0.0000
	              C 0.0000
	             to 0.0000

            the   477965   1 (17)
	           them 0.0369
	              a 0.0369
	           </S> 0.0369
	             us 0.0369
	           thee 0.0369
	            thy 0.0369
	            tho 0.0369
	            cia 0.0369
	             iu 0.0369
	            the 0.0369
	              I 0.0369
	              , 0.0369
	              ! 0.0369
	              . 0.0369
	           they 0.0369
	            teh 0.0369
	     Excellence 0.0369

             on   478047   1 (22)
	         issues 0.0369
	              . 0.0369
	             of 0.0369
	            ono 0.0369
	            one 0.0369
	              a 0.0369
	             us 0.0369
	             on 0.0369
	            onn 0.0369
	              , 0.0369
	              - 0.0369
	             iu 0.0369
	            cia 0.0369
	             or 0.0369
	            oon 0.0369
	            ons 0.0369
	             no 0.0369
	              A 0.0369
	           </S> 0.0059
	              } 0.0000
	              " 0.0000
	              ) 0.0000

       eastward   478164   1 (21)
	     eastwardly 0.0369
	          award 0.0369
	              - 0.0369
	      eastwards 0.0369
	       password 0.0369
	              A 0.0369
	       eastward 0.0369
	           East 0.0369
	      weastward 0.0369
	       Eastward 0.0369
	              , 0.0369
	            the 0.0369
	        eastern 0.0369
	              a 0.0369
	        estward 0.0369
	       Password 0.0369
	              . 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000
	              " 0.0000

      Turkestan   478191   1 (27)
	      Turkestan 0.9000
	     Tuerkistan 0.0369
	     Turkestani 0.0369
	              x 0.0369
	         Turkes 0.0369
	          great 0.0369
	        subject 0.0369
	             us 0.0369
	              I 0.0369
	        success 0.0369
	            the 0.0059
	            The 0.0000
	     Washington 0.0000
	           fact 0.0000
	              a 0.0000
	           </S> 0.0000
	           this 0.0000
	           time 0.0000
	           your 0.0000
	              - 0.0000
	              , 0.0000
	        England 0.0000
	     particular 0.0000
	           turn 0.0000
	              . 0.0000
	      Turkistan 0.0000
	        writing 0.0000

             S.   478202 inf (29)
	             in 0.1021
	            but 0.0369
	             SC 0.0369
	          <UNK> 0.0369
	             St 0.0369
	             So 0.0369
	            SSS 0.0369
	           SSSS 0.0369
	              I 0.0369
	              a 0.0369
	              | 0.0369
	             SS 0.0369
	              s 0.0369
	            and 0.0369
	             US 0.0369
	          China 0.0369
	           work 0.0369
	           </S> 0.0369
	              " 0.0369
	            the 0.0059
	          which 0.0012
	             to 0.0000
	             us 0.0000
	           your 0.0000
	             or 0.0000
	              i 0.0000
	             iu 0.0000
	            you 0.0000
	             of 0.0000

             To   478229   1 (25)
	             To 0.3518
	              I 0.0418
	              s 0.0369
	        Germany 0.0369
	             iu 0.0369
	           Asia 0.0369
	             us 0.0369
	              a 0.0369
	             TV 0.0369
	              A 0.0328
	             to 0.0265
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ) 0.0000
	             TO 0.0000
	              . 0.0000
	              , 0.0000
	            Top 0.0000
	            and 0.0000
	             '' 0.0000
	             of 0.0000
	            Too 0.0000
	              ] 0.0000
	            Tom 0.0000

           when   478331   3 (19)
	              , 0.2500
	              - 0.1000
	              a 0.0369
	           well 0.0369
	           were 0.0369
	              I 0.0369
	            who 0.0369
	           whet 0.0369
	           whey 0.0369
	          wheen 0.0369
	          wehen 0.0369
	          whens 0.0369
	          whenu 0.0369
	            out 0.0369
	           when 0.0369
	            New 0.0059
	            and 0.0000
	              . 0.0000
	           </S> 0.0000

      according   478451   1 (19)
	              I 0.0369
	        pattern 0.0369
	    accordingly 0.0369
	      accordion 0.0369
	         access 0.0369
	    unaccording 0.0369
	      according 0.0369
	        Accordi 0.0369
	              - 0.0369
	              . 0.0369
	      accordino 0.0369
	         coming 0.0369
	              a 0.0369
	     camcording 0.0369
	   accordioning 0.0369
	              , 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000

          Aplin   478468  25 (36)
	           Alin 1.0000
	         online 0.9000
	         Online 0.5000
	        Appling 0.3000
	              . 0.0369
	             us 0.0369
	          Alpin 0.0369
	          Aedon 0.0369
	          Aplia 0.0369
	        Aplinki 0.0369
	        Delgado 0.0369
	              I 0.0369
	          Aplio 0.0369
	           plin 0.0369
	         Alpini 0.0369
	              1 0.0369
	              - 0.0369
	              a 0.0369
	       category 0.0369
	            the 0.0369
	        changes 0.0369
	             it 0.0369
	         Apelin 0.0369
	       Chairman 0.0059
	           </S> 0.0000
	            All 0.0000
	          <UNK> 0.0000
	      President 0.0000
	              B 0.0000
	           Bush 0.0000
	             .. 0.0000
	              , 0.0000
	             J. 0.0000
	          Aplin 0.0000
	        Speaker 0.0000
	         Asplin 0.0000

             In   478643   1 (19)
	             In 0.5538
	             It 0.0900
	             If 0.0570
	              I 0.0418
	            Inc 0.0369
	             us 0.0369
	              a 0.0369
	            Inn 0.0369
	       Scotland 0.0369
	             iu 0.0369
	            cia 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ] 0.0000
	              , 0.0000
	              ) 0.0000
	              . 0.0000

           Fair   478665   2 (24)
	           Free 0.7000
	           Fair 0.1000
	             of 0.0369
	          Fairy 0.0369
	          Fairs 0.0369
	            Fax 0.0369
	           lava 0.0369
	            cia 0.0369
	           sala 0.0369
	              I 0.0369
	           Fail 0.0369
	           Fain 0.0369
	          Faira 0.0369
	           Fari 0.0369
	            the 0.0059
	             by 0.0000
	              . 0.0000
	              , 0.0000
	              a 0.0000
	            For 0.0000
	           </S> 0.0000
	           this 0.0000
	              - 0.0000
	           said 0.0000

         partly   478775   3 (26)
	            set 0.6000
	              a 0.6000
	         partly 0.0369
	         partay 0.0369
	          artly 0.0369
	          party 0.0369
	         paltry 0.0369
	        reddish 0.0369
	          parly 0.0369
	         region 0.0369
	              I 0.0369
	        prattly 0.0369
	         person 0.0369
	         family 0.0369
	         Hartly 0.0369
	         portly 0.0369
	          parva 0.0369
	              , 0.0059
	        already 0.0000
	        running 0.0000
	             of 0.0000
	              . 0.0000
	           part 0.0000
	              t 0.0000
	              - 0.0000
	           </S> 0.0000

         creamy   478912   2 (25)
	          cream 0.3000
	         creams 0.0369
	        screamy 0.0369
	              I 0.0369
	       creamery 0.0369
	           Zope 0.0369
	         fucker 0.0369
	         creamy 0.0369
	    competition 0.0369
	              E 0.0369
	         creamh 0.0369
	            off 0.0369
	            all 0.0369
	         credit 0.0369
	              . 0.0059
	           </S> 0.0000
	              - 0.0000
	              a 0.0000
	          areas 0.0000
	            and 0.0000
	        fucking 0.0000
	           jobs 0.0000
	              , 0.0000
	          <UNK> 0.0000
	          great 0.0000

            the   478927   1 (19)
	            the 0.0369
	           thee 0.0369
	              . 0.0369
	            tho 0.0369
	            thy 0.0369
	           them 0.0369
	            teh 0.0369
	             in 0.0369
	            cia 0.0369
	             iu 0.0369
	              a 0.0369
	              I 0.0369
	              , 0.0369
	           they 0.0369
	             us 0.0369
	           </S> 0.0059
	              } 0.0000
	              " 0.0000
	              ) 0.0000

       erectile   478957   1 (30)
	       erectile 0.2000
	     adjustable 0.0369
	            the 0.0369
	        adverse 0.0369
	        tercile 0.0369
	   introduction 0.0369
	            add 0.0369
	              a 0.0369
	    nonerectile 0.0369
	              . 0.0369
	              , 0.0369
	              - 0.0369
	       ejectile 0.0369
	      automatic 0.0369
	              I 0.0369
	       electric 0.0369
	         erecti 0.0369
	        erectie 0.0369
	         apical 0.0369
	           </S> 0.0059
	         online 0.0000
	              e 0.0000
	           item 0.0000
	        article 0.0000
	       erective 0.0000
	          email 0.0000
	       Erectile 0.0000
	    opportunity 0.0000
	     additional 0.0000
	        receive 0.0000

           tuft   478966   3 (29)
	             of 0.1000
	    disfunction 0.1000
	         effect 0.0369
	             us 0.0369
	           turn 0.0369
	          based 0.0369
	          rufus 0.0369
	             iu 0.0369
	           tuft 0.0369
	           tufa 0.0369
	            tuf 0.0369
	           test 0.0369
	              I 0.0369
	          tufts 0.0369
	          tufty 0.0369
	           have 0.0369
	            tax 0.0369
	           tuff 0.0369
	    dysfunction 0.0059
	       function 0.0000
	              . 0.0000
	             to 0.0000
	            the 0.0000
	              , 0.0000
	              - 0.0000
	         tissue 0.0000
	           </S> 0.0000
	           drug 0.0000
	           that 0.0000

         cheeks   479009   2 (30)
	          where 0.0793
	        writing 0.0369
	            and 0.0369
	          cheek 0.0369
	          women 0.0369
	          <UNK> 0.0369
	         chekes 0.0369
	              " 0.0369
	         cheeks 0.0369
	           </S> 0.0369
	      workshops 0.0369
	         checks 0.0369
	            yes 0.0369
	              ( 0.0369
	         cheeke 0.0369
	              a 0.0369
	      asscheeks 0.0369
	         cheeky 0.0369
	      therefore 0.0369
	              I 0.0369
	            but 0.0369
	            the 0.0059
	          which 0.0012
	        however 0.0000
	         though 0.0000
	             or 0.0000
	          there 0.0000
	          these 0.0000
	              i 0.0000
	            too 0.0000

            ear   479072   1 (28)
	            was 0.0369
	          white 0.0369
	            arz 0.0369
	            cia 0.0369
	           ears 0.0369
	            and 0.0369
	              X 0.0369
	              . 0.0369
	              , 0.0369
	            ham 0.0369
	             us 0.0369
	              T 0.0369
	            are 0.0369
	           earr 0.0369
	            eau 0.0369
	            eat 0.0369
	          frame 0.0369
	           year 0.0369
	              - 0.0369
	            ear 0.0369
	            era 0.0369
	           earn 0.0369
	              a 0.0369
	           eare 0.0369
	           </S> 0.0059
	              } 0.0000
	              " 0.0000
	              ) 0.0000

         creamy   479084   2 (25)
	              - 0.1000
	          cream 0.0369
	          music 0.0369
	       creamery 0.0369
	        sources 0.0369
	           fife 0.0369
	         creams 0.0369
	           read 0.0369
	         creamh 0.0369
	           area 0.0369
	         creamy 0.0369
	         design 0.0369
	        screamy 0.0369
	              I 0.0369
	          great 0.0369
	              . 0.0059
	              ) 0.0000
	           </S> 0.0000
	             is 0.0000
	          black 0.0000
	              a 0.0000
	            and 0.0000
	            are 0.0000
	              , 0.0000
	          white 0.0000

           nape   479112   1 (25)
	           naps 0.0369
	           napa 0.0369
	              a 0.0369
	              I 0.0369
	           lava 0.0369
	           sala 0.0369
	           Baya 0.0369
	              - 0.0369
	              . 0.0369
	           need 0.0369
	          nappe 0.0369
	          naped 0.0369
	          napes 0.0369
	            and 0.0369
	              , 0.0369
	           neap 0.0369
	           nape 0.0369
	            new 0.0369
	          black 0.0369
	            nap 0.0369
	           name 0.0369
	           </S> 0.0059
	              } 0.0000
	              " 0.0000
	              ) 0.0000

              ,   479124   7 (11)
	             us 0.9000
	           </S> 0.8000
	              a 0.0369
	             iu 0.0369
	            cia 0.0369
	             of 0.0059
	            and 0.0000
	              - 0.0000
	              . 0.0000
	              , 0.0000
	            the 0.0000

      vinaceous   479170   1 (24)
	           Zope 0.0369
	              I 0.0369
	              E 0.0369
	       vinaceus 0.0369
	    vinoacetous 0.0369
	           Eyes 0.0369
	      vinaceous 0.0369
	        process 0.0369
	       vinaceos 0.0369
	      minaceous 0.0369
	      pinaceous 0.0369
	         single 0.0369
	              . 0.0059
	            and 0.0000
	      yellowish 0.0000
	              - 0.0000
	          <UNK> 0.0000
	           </S> 0.0000
	              a 0.0000
	           your 0.0000
	            are 0.0000
	       brownish 0.0000
	              , 0.0000
	          white 0.0000

           wing   479188   1 (25)
	           with 0.0369
	         wining 0.0369
	            cia 0.0369
	           Pica 0.0369
	           want 0.0369
	            win 0.0369
	          minor 0.0369
	              a 0.0369
	           wine 0.0369
	          wingi 0.0369
	           will 0.0369
	          wings 0.0369
	           wing 0.0369
	              t 0.0369
	           wind 0.0369
	          winge 0.0369
	              I 0.0369
	              , 0.0369
	              . 0.0369
	              - 0.0369
	           </S> 0.0059
	              } 0.0000
	          <UNK> 0.0000
	              ) 0.0000
	              " 0.0000

              -   479192   1 (12)
	              - 0.2276
	            and 0.1000
	              } 0.0369
	            cia 0.0369
	             iu 0.0369
	              , 0.0059
	             us 0.0000
	              ) 0.0000
	              . 0.0000
	             of 0.0000
	           </S> 0.0000
	            the 0.0000

         quills   479221   1 (25)
	              , 0.0369
	          quill 0.0369
	              I 0.0369
	         skills 0.0369
	         quills 0.0369
	        squilli 0.0369
	         quelea 0.0369
	        pusilla 0.0369
	          quite 0.0369
	         quille 0.0369
	         quilla 0.0369
	          Hills 0.0369
	            and 0.0369
	        squills 0.0369
	              - 0.0369
	        quillst 0.0369
	        quickly 0.0369
	              a 0.0369
	        quilles 0.0369
	              . 0.0369
	        coverts 0.0369
	           </S> 0.0059
	              ) 0.0000
	              " 0.0000
	              } 0.0000

          smoky   479228   3 (21)
	          <UNK> 0.2000
	              I 0.1000
	           some 0.0369
	         Smokys 0.0369
	          smoke 0.0369
	           smok 0.0369
	          smoky 0.0369
	           moky 0.0369
	          shock 0.0369
	          stock 0.0369
	          smoko 0.0369
	              } 0.0369
	        unsmoky 0.0369
	         smokey 0.0369
	          story 0.0369
	              , 0.0059
	              a 0.0000
	           </S> 0.0000
	              . 0.0000
	              ) 0.0000
	              - 0.0000

          white   479259  17 (26)
	            and 0.3417
	              - 0.2786
	         whitei 0.0369
	          whits 0.0369
	              Z 0.0369
	         whites 0.0369
	           whit 0.0369
	          whith 0.0369
	              a 0.0369
	      partition 0.0369
	              I 0.0369
	         whiter 0.0369
	             of 0.0369
	          withe 0.0369
	              : 0.0369
	           care 0.0059
	       election 0.0000
	              , 0.0000
	          while 0.0000
	           </S> 0.0000
	          which 0.0000
	         health 0.0000
	           with 0.0000
	              . 0.0000
	          white 0.0000
	         school 0.0000

           ashy   479293   2 (33)
	            any 0.2867
	           ashy 0.2000
	          washy 0.1000
	              I 0.0369
	          trade 0.0369
	          yasha 0.0369
	            arz 0.0369
	            non 0.0369
	          metta 0.0369
	              E 0.0369
	           well 0.0369
	          Bashy 0.0369
	           life 0.0369
	              x 0.0369
	          hashy 0.0369
	            the 0.0059
	           high 0.0000
	           your 0.0000
	           easy 0.0000
	           alba 0.0000
	           ashe 0.0000
	           also 0.0000
	             as 0.0000
	              , 0.0000
	            you 0.0000
	             an 0.0000
	              . 0.0000
	              a 0.0000
	           asha 0.0000
	              - 0.0000
	           </S> 0.0000
	            ash 0.0000
	             us 0.0000

              -   479297   8 (13)
	             us 0.0369
	             of 0.0369
	            cia 0.0369
	             iu 0.0369
	       interest 0.0369
	           same 0.0369
	            the 0.0369
	              - 0.0059
	           pale 0.0000
	              . 0.0000
	            and 0.0000
	           </S> 0.0000
	              , 0.0000

        margins   479298  15 (28)
	          serif 0.0369
	          ylang 0.0369
	       marginis 0.0369
	        margine 0.0369
	           offs 0.0369
	             us 0.0369
	           made 0.0369
	        version 0.0369
	       margines 0.0369
	        margini 0.0369
	       marginas 0.0369
	              s 0.0369
	              - 0.0079
	           </S> 0.0059
	             to 0.0000
	              A 0.0000
	         marins 0.0000
	              I 0.0000
	            the 0.0000
	             up 0.0000
	              a 0.0000
	              ) 0.0000
	        margins 0.0000
	         margin 0.0000
	              . 0.0000
	             in 0.0000
	          <UNK> 0.0000
	           mail 0.0000

       feathers   479308   1 (21)
	           some 0.0369
	       heathers 0.0369
	              . 0.0369
	              , 0.0369
	           each 0.0369
	       feathers 0.0369
	     unfeathers 0.0369
	           most 0.0369
	       features 0.0369
	              a 0.0369
	        Weather 0.0369
	       feathery 0.0369
	        further 0.0369
	        fathers 0.0369
	        feather 0.0369
	      fatherers 0.0369
	           </S> 0.0059
	              " 0.0000
	              } 0.0000
	              ) 0.0000
	          <UNK> 0.0000

        greyish   479329   2 (28)
	             of 0.1000
	       Freygish 0.0369
	        drawing 0.0369
	              e 0.0369
	        Greyish 0.0369
	          teeth 0.0369
	        greyish 0.0369
	          greyi 0.0369
	      greyishly 0.0369
	        greeish 0.0369
	            are 0.0369
	           Free 0.0369
	              A 0.0369
	        grayish 0.0369
	            non 0.0369
	             to 0.0059
	              . 0.0000
	             in 0.0000
	           Back 0.0000
	             on 0.0000
	           with 0.0000
	              , 0.0000
	              - 0.0000
	              " 0.0000
	           side 0.0000
	              a 0.0000
	              I 0.0000
	           </S> 0.0000

        centres   479354   1 (33)
	        centres 0.8000
	         Center 0.5000
	         pepper 0.2610
	      attention 0.0369
	           view 0.0369
	        ability 0.0369
	              I 0.0369
	        changes 0.0369
	        cinerea 0.0369
	              a 0.0369
	           Back 0.0369
	           site 0.0369
	             Up 0.0369
	           wire 0.0369
	        centrex 0.0369
	      reference 0.0369
	         centrs 0.0369
	           text 0.0369
	       centreso 0.0369
	       centresi 0.0369
	            and 0.0059
	         centre 0.0000
	           jack 0.0000
	           </S> 0.0000
	              - 0.0000
	           hole 0.0000
	        centers 0.0000
	              , 0.0000
	          woman 0.0000
	        centred 0.0000
	        central 0.0000
	              . 0.0000
	        control 0.0000

            two   479380   1 (23)
	            tow 0.0369
	              I 0.0369
	             to 0.0369
	            wot 0.0369
	             tw 0.0369
	              - 0.0369
	           twos 0.0369
	           twon 0.0369
	            cia 0.0369
	             iu 0.0369
	            the 0.0369
	              , 0.0369
	            top 0.0369
	              . 0.0369
	              a 0.0369
	            twp 0.0369
	            twa 0.0369
	            two 0.0369
	             us 0.0369
	           </S> 0.0059
	              " 0.0000
	              } 0.0000
	              ) 0.0000

       coloured   479406   4 (21)
	           look 0.4000
	              - 0.3000
	              I 0.1000
	       coloured 0.0369
	           your 0.0369
	     recoloured 0.0369
	      coloureds 0.0369
	        cloured 0.0369
	     uncoloured 0.0369
	           care 0.0369
	       colourer 0.0369
	        colored 0.0369
	              , 0.0059
	            and 0.0000
	              ; 0.0000
	              a 0.0000
	             of 0.0000
	           come 0.0000
	           </S> 0.0000
	              . 0.0000
	            are 0.0000

      remainder   479515   1 (23)
	       remained 0.0369
	              a 0.0369
	      companies 0.0369
	        reviews 0.0369
	          email 0.0369
	      Remainder 0.0369
	     remainders 0.0369
	              - 0.0369
	      retainder 0.0369
	    remainderer 0.0369
	       notified 0.0369
	      remainder 0.0369
	    remaindered 0.0369
	      remaindre 0.0369
	              . 0.0369
	       reminder 0.0369
	              I 0.0369
	        romaine 0.0369
	              , 0.0369
	           site 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000

          under   479528   1 (25)
	          under 1.0000
	          major 0.0369
	         undere 0.0369
	          undet 0.0369
	          undeb 0.0369
	         undera 0.0369
	          undre 0.0369
	          spare 0.0369
	            the 0.0059
	          <UNK> 0.0000
	             us 0.0000
	           </S> 0.0000
	              , 0.0000
	           used 0.0000
	          Index 0.0000
	              a 0.0000
	            two 0.0000
	           unde 0.0000
	           this 0.0000
	              - 0.0000
	          three 0.0000
	              : 0.0000
	         unders 0.0000
	          their 0.0000
	          index 0.0000

         creamy   479540   1 (23)
	            off 0.0369
	           toll 0.0369
	       creamery 0.0369
	           over 0.0369
	         creamy 0.0369
	         creams 0.0369
	              A 0.0369
	        screamy 0.0369
	      directory 0.0369
	         creamh 0.0369
	             of 0.0059
	              . 0.0000
	           read 0.0000
	              - 0.0000
	            the 0.0000
	           </S> 0.0000
	              I 0.0000
	          great 0.0000
	              , 0.0000
	              : 0.0000
	              a 0.0000
	           area 0.0000
	          cream 0.0000

         vinous   479564   2 (35)
	        popular 0.0400
	        veinous 0.0369
	         minous 0.0369
	         Vinous 0.0369
	   photographic 0.0369
	      dependent 0.0369
	       emphasis 0.0369
	        Cinclus 0.0369
	       unvinous 0.0369
	              I 0.0369
	       vinously 0.0369
	           know 0.0369
	        vinosus 0.0369
	          vinos 0.0369
	         virous 0.0369
	          Links 0.0369
	       covinous 0.0369
	            was 0.0369
	         venous 0.0369
	         vinous 0.0369
	         Lanius 0.0369
	              a 0.0059
	          virus 0.0000
	          minor 0.0000
	              . 0.0000
	              - 0.0000
	           your 0.0000
	      effective 0.0000
	            the 0.0000
	           more 0.0000
	              , 0.0000
	      available 0.0000
	           </S> 0.0000
	            one 0.0000
	            and 0.0000

             on   479571   3 (21)
	              - 1.0000
	           with 0.2000
	             of 0.0369
	            ons 0.0369
	            one 0.0369
	              a 0.0369
	            oon 0.0369
	             us 0.0369
	            ono 0.0369
	             iu 0.0369
	            cia 0.0369
	             on 0.0369
	            onn 0.0369
	             no 0.0369
	              , 0.0059
	      beverages 0.0000
	             in 0.0000
	           </S> 0.0000
	              . 0.0000
	            and 0.0000
	             or 0.0000

         flanks   479606   1 (23)
	       flaskans 0.0369
	              , 0.0369
	              a 0.0369
	              I 0.0369
	        flankes 0.0369
	              A 0.0369
	          flans 0.0369
	        flaskan 0.0369
	              - 0.0369
	          grill 0.0369
	          lanks 0.0369
	         flanks 0.0369
	         flanko 0.0369
	         flanke 0.0369
	              . 0.0369
	          plans 0.0369
	          flank 0.0369
	         Thanks 0.0369
	          links 0.0369
	           </S> 0.0059
	              " 0.0000
	              } 0.0000
	              ) 0.0000

           bill   479635   1 (23)
	              a 0.0369
	           will 0.0369
	          bills 0.0369
	          billy 0.0369
	            and 0.0369
	           bill 0.0369
	              I 0.0369
	           file 0.0369
	            bil 0.0369
	            cia 0.0369
	           sala 0.0369
	           Pica 0.0369
	            big 0.0369
	              . 0.0369
	              , 0.0369
	           bild 0.0369
	           bile 0.0369
	           bili 0.0369
	              - 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000
	              " 0.0000

           iris   479657   1 (24)
	              a 0.0369
	            its 0.0369
	            irs 0.0369
	             iu 0.0369
	            cia 0.0369
	            arz 0.0369
	              - 0.0369
	          iiris 0.0369
	             in 0.0369
	          irisa 0.0369
	              i 0.0369
	              , 0.0369
	           irie 0.0369
	           irin 0.0369
	              . 0.0369
	           iris 0.0369
	             is 0.0369
	            and 0.0369
	          irish 0.0369
	            iri 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000
	              " 0.0000

           deep   479662   2 (22)
	           dark 0.4000
	           depe 0.0369
	            dee 0.0369
	            dep 0.0369
	           been 0.0369
	              } 0.0369
	           deep 0.0369
	           date 0.0369
	          deeps 0.0369
	          deepe 0.0369
	           deer 0.0369
	           deed 0.0369
	              , 0.0059
	           does 0.0000
	          <UNK> 0.0000
	           need 0.0000
	              . 0.0000
	             de 0.0000
	              ) 0.0000
	              - 0.0000
	           </S> 0.0000
	            and 0.0000

       erectile   479728   1 (28)
	       erectile 0.1000
	        erectie 0.0369
	    nonerectile 0.0369
	          major 0.0369
	      electrice 0.0369
	              I 0.0369
	       erective 0.0369
	       services 0.0369
	          white 0.0369
	        erectus 0.0369
	              a 0.0369
	       Erectile 0.0369
	        tercile 0.0369
	         people 0.0369
	         erecti 0.0369
	        service 0.0369
	            the 0.0369
	       ejectile 0.0369
	            ear 0.0369
	         longer 0.0059
	            one 0.0000
	           </S> 0.0000
	              , 0.0000
	          other 0.0000
	              . 0.0000
	    significant 0.0000
	              - 0.0000
	           more 0.0000

          tufts   479737   2 (31)
	           that 0.2000
	           test 0.0369
	         impact 0.0369
	             us 0.0369
	              I 0.0369
	          tufts 0.0369
	           tuft 0.0369
	       tuftsins 0.0369
	          rufus 0.0369
	             is 0.0369
	          limit 0.0369
	          tufty 0.0369
	           tufs 0.0369
	           tuts 0.0369
	           just 0.0369
	        tuftsin 0.0369
	          tuffs 0.0369
	         effect 0.0369
	             of 0.0369
	              a 0.0369
	           this 0.0369
	     complaints 0.0369
	    dysfunction 0.0059
	             to 0.0000
	              - 0.0000
	    disfunction 0.0000
	              , 0.0000
	              . 0.0000
	           </S> 0.0000
	       function 0.0000
	         tissue 0.0000

        centres   479770   1 (29)
	        centres 0.8000
	        control 0.1000
	        changes 0.0369
	           view 0.0369
	        cinerea 0.0369
	         images 0.0369
	         centrs 0.0369
	           Back 0.0369
	        centrex 0.0369
	          paper 0.0369
	       centreso 0.0369
	       centresi 0.0369
	         access 0.0369
	         Center 0.0369
	              a 0.0369
	        ability 0.0369
	              , 0.0059
	              - 0.0000
	           </S> 0.0000
	         centre 0.0000
	             as 0.0000
	        centers 0.0000
	              . 0.0000
	           side 0.0000
	        central 0.0000
	            and 0.0000
	              I 0.0000
	        centred 0.0000
	          brown 0.0000

          Young   479818   1 (22)
	          Young 1.0000
	         Youngs 0.0369
	              a 0.0369
	          Yount 0.0369
	          Yound 0.0369
	           Youn 0.0369
	        Younger 0.0369
	        Youngun 0.0369
	        Youngou 0.0369
	            the 0.0369
	          found 0.0369
	           </S> 0.0059
	              " 0.0000
	            You 0.0000
	              , 0.0000
	              ) 0.0000
	              A 0.0000
	              ] 0.0000
	              I 0.0000
	              - 0.0000
	           Your 0.0000
	              . 0.0000

          moult   479990   1 (22)
	          moult 1.0000
	        moulted 0.0369
	           moul 0.0369
	         moulut 0.0369
	          mouth 0.0369
	         moults 0.0369
	        trellis 0.0369
	          maura 0.0369
	          mould 0.0369
	          multo 0.0369
	          moule 0.0369
	              . 0.0059
	              , 0.0000
	              a 0.0000
	              I 0.0000
	           </S> 0.0000
	           most 0.0000
	             is 0.0000
	          could 0.0000
	             of 0.0000
	              - 0.0000
	          would 0.0000

          adult   479996   3 (18)
	          about 0.8000
	            and 0.6000
	          adula 0.0369
	         adulta 0.0369
	         adultu 0.0369
	            add 0.0369
	          adule 0.0369
	          adult 0.0369
	           able 0.0369
	              I 0.0369
	         adults 0.0369
	          Adult 0.0369
	         adulto 0.0369
	              . 0.0059
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	              - 0.0000

             In   480066   1 (19)
	             In 0.5538
	             It 0.0900
	             If 0.0570
	              I 0.0418
	            Inn 0.0369
	            Inc 0.0369
	             us 0.0369
	             iu 0.0369
	            cia 0.0369
	              a 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              . 0.0000
	              ) 0.0000
	              ] 0.0000
	              , 0.0000
	            and 0.0000

         vShore   480080  22 (37)
	         Shorey 1.0000
	           Shor 0.2000
	           vore 0.1000
	           long 0.0369
	              e 0.0369
	         griots 0.0369
	           well 0.0369
	            mid 0.0369
	          three 0.0369
	            cgi 0.0369
	         Schore 0.0369
	              x 0.0369
	           park 0.0369
	         Sehore 0.0369
	    temperature 0.0369
	          women 0.0369
	              i 0.0369
	            non 0.0369
	         vapore 0.0369
	           </S> 0.0059
	           same 0.0037
	            two 0.0000
	           hore 0.0000
	          Shore 0.0000
	          <UNK> 0.0000
	         valore 0.0000
	         Shrove 0.0000
	         Shover 0.0000
	         Shores 0.0000
	          first 0.0000
	           More 0.0000
	           more 0.0000
	              ' 0.0000
	      following 0.0000
	          there 0.0000
	              " 0.0000
	              - 0.0000

              -   480086   1 (14)
	            are 0.0369
	             of 0.0369
	         fished 0.0369
	              - 0.0369
	            cia 0.0369
	             iu 0.0369
	           </S> 0.0369
	    countryside 0.0369
	              , 0.0369
	             us 0.0369
	              . 0.0369
	            the 0.0369
	            and 0.0369
	             is 0.0369

       inhabits   480092   2 (23)
	            and 0.3000
	       inhabita 0.0369
	      inhabitas 0.0369
	              I 0.0369
	             us 0.0369
	       inhabile 0.0369
	      inhabites 0.0369
	     coinhabits 0.0369
	        inhabit 0.0369
	       inhabits 0.0369
	     inhabitans 0.0369
	              a 0.0369
	           into 0.0369
	        include 0.0369
	       inhabito 0.0369
	           </S> 0.0059
	              . 0.0000
	             of 0.0000
	    Calandrella 0.0000
	             in 0.0000
	              - 0.0000
	          Books 0.0000
	              , 0.0000

         liills   480132 inf (28)
	            the 0.0369
	          lills 0.0369
	           lils 0.0369
	          lilli 0.0369
	             us 0.0369
	         lillii 0.0369
	          liila 0.0369
	           lill 0.0369
	          lilis 0.0369
	              a 0.0369
	          links 0.0369
	         liilan 0.0369
	              I 0.0369
	          lille 0.0369
	           ills 0.0369
	          lilly 0.0369
	       mountain 0.0059
	              . 0.0000
	          areas 0.0000
	              , 0.0000
	           will 0.0000
	         little 0.0000
	          coves 0.0000
	           </S> 0.0000
	      mountains 0.0000
	       outcrops 0.0000
	         shores 0.0000
	              - 0.0000

             nf   480139   1 (19)
	           </S> 0.0369
	              a 0.0369
	              . 0.0369
	             us 0.0369
	              , 0.0369
	            and 0.0369
	             in 0.0369
	            nfr 0.0369
	            inf 0.0369
	           nfor 0.0369
	             nf 0.0369
	             iu 0.0369
	            cia 0.0369
	             of 0.0369
	             fn 0.0369
	              I 0.0369
	              - 0.0369
	             no 0.0369
	             na 0.0369

        Seebohm   480193   1 (23)
	          Seebe 0.0369
	       Seeboden 0.0369
	        Seebach 0.0369
	           Sebo 0.0369
	        Seebohm 0.0369
	           Seeb 0.0369
	        Sexbomb 0.0369
	              a 0.0369
	        Sheboon 0.0369
	       Beerbohm 0.0369
	         Seeham 0.0369
	           </S> 0.0059
	              ] 0.0000
	            See 0.0000
	              I 0.0000
	              " 0.0000
	              . 0.0000
	              , 0.0000
	              ) 0.0000
	         Select 0.0000
	           Some 0.0000
	              A 0.0000
	              - 0.0000

           says   480201   1 (24)
	           said 0.0369
	          sayst 0.0369
	          sayso 0.0369
	            say 0.0369
	      configure 0.0369
	           sala 0.0369
	           saya 0.0369
	           sayd 0.0369
	              a 0.0369
	           says 0.0369
	           Baya 0.0369
	           lava 0.0369
	           aysa 0.0369
	           days 0.0369
	              n 0.0369
	          aysay 0.0369
	              , 0.0059
	              ) 0.0000
	              - 0.0000
	              N 0.0000
	          <UNK> 0.0000
	       Rowntree 0.0000
	              . 0.0000
	           </S> 0.0000

              '   480234   2 (21)
	             by 0.6000
	            cia 0.0369
	       composed 0.0369
	          major 0.0369
	              ' 0.0369
	             on 0.0059
	           </S> 0.0000
	              a 0.0000
	            new 0.0000
	             in 0.0000
	             us 0.0000
	            the 0.0000
	            and 0.0000
	         within 0.0000
	              , 0.0000
	             as 0.0000
	              - 0.0000
	             to 0.0000
	             of 0.0000
	             at 0.0000
	              . 0.0000

          Inish   480293 inf (40)
	            Inn 0.1000
	         report 0.0369
	       Inishnee 0.0369
	       Inishark 0.0369
	         tenant 0.0369
	           Insh 0.0369
	       Inisheer 0.0369
	              . 0.0369
	        disease 0.0369
	         duplex 0.0369
	        Isnashi 0.0369
	         sunset 0.0369
	       Inishail 0.0369
	          minor 0.0369
	              , 0.0369
	          Inisa 0.0369
	              a 0.0369
	             us 0.0369
	          shrub 0.0369
	        Ienishi 0.0369
	       products 0.0369
	           rock 0.0369
	           Inis 0.0369
	            few 0.0097
	           </S> 0.0059
	            day 0.0000
	              ) 0.0000
	          India 0.0000
	          <UNK> 0.0000
	             In 0.0000
	          Index 0.0000
	           nish 0.0000
	          Irish 0.0000
	           week 0.0000
	              - 0.0000
	           year 0.0000
	            new 0.0000
	           Info 0.0000
	          woman 0.0000
	          major 0.0000

       Everyone   480301   1 (16)
	       everyone 0.0369
	       Everyone 0.0369
	      Everyoned 0.0369
	       Eversole 0.0369
	        Everton 0.0369
	     EveryoneOn 0.0369
	           </S> 0.0059
	              . 0.0000
	              I 0.0000
	              , 0.0000
	              A 0.0000
	              ) 0.0000
	              ] 0.0000
	              - 0.0000
	             '' 0.0000
	              " 0.0000

        melod3^   480412  10 (26)
	        melodia 0.0369
	         melodi 0.0369
	             me 0.0369
	         meloid 0.0369
	           most 0.0369
	              . 0.0369
	       features 0.0369
	           bugs 0.0369
	            the 0.0059
	              a 0.0000
	           life 0.0000
	         people 0.0000
	          melon 0.0000
	              , 0.0000
	           </S> 0.0000
	           melo 0.0000
	              - 0.0000
	        melodic 0.0000
	           this 0.0000
	         melody 0.0000
	          their 0.0000
	        melodie 0.0000
	             us 0.0000
	    information 0.0000
	           more 0.0000
	             my 0.0000

             It   480420   1 (16)
	              I 0.0369
	              - 0.0369
	             us 0.0369
	             In 0.0369
	            and 0.0369
	           </S> 0.0369
	           site 0.0369
	            Its 0.0369
	             iu 0.0369
	              a 0.0369
	             It 0.0369
	            Ito 0.0369
	              , 0.0369
	              . 0.0369
	             If 0.0369
	            cia 0.0369

             At   480557   1 (23)
	             At 0.3536
	             As 0.2611
	              I 0.0418
	            Ate 0.0369
	             tA 0.0369
	              a 0.0369
	             AM 0.0369
	             us 0.0369
	             iu 0.0369
	            Att 0.0369
	            cia 0.0369
	              A 0.0328
	             to 0.0265
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	             at 0.0000
	              ) 0.0000
	              . 0.0000
	              , 0.0000
	              ] 0.0000
	             it 0.0000
	             '' 0.0000

         .Uauda   480682   1 (27)
	          Usuda 0.0369
	          Uudam 0.0369
	          Lauda 0.0369
	          cauda 0.0369
	          Cauda 0.0369
	        Uzmauda 0.0369
	         Alauda 0.0369
	          maura 0.0369
	           daud 0.0369
	           auda 0.0369
	           Uaua 0.0369
	              ( 0.0369
	           Paul 0.0369
	          Uduwa 0.0369
	            you 0.0059
	             is 0.0000
	              a 0.0000
	             it 0.0000
	              , 0.0000
	              - 0.0000
	            had 0.0000
	            the 0.0000
	              i 0.0000
	           </S> 0.0000
	              I 0.0000
	              . 0.0000
	          would 0.0000

    arz'i-fis/s   480689 inf (24)
	   organization 0.0369
	           </S> 0.0369
	              , 0.0369
	            and 0.0369
	            web 0.0369
	             is 0.0369
	             's 0.0369
	   organisation 0.0369
	           this 0.0369
	              i 0.0369
	              . 0.0369
	       software 0.0369
	              I 0.0369
	           hook 0.0369
	    application 0.0369
	            are 0.0369
	           file 0.0369
	             if 0.0369
	              a 0.0369
	              " 0.0369
	             do 0.0369
	            the 0.0369
	           hell 0.0369
	       business 0.0369

           does   480701   1 (22)
	           dose 0.0369
	             se 0.0369
	          Shoes 0.0369
	             es 0.0369
	          doesn 0.0369
	          doest 0.0369
	            doe 0.0369
	            due 0.0369
	             us 0.0369
	          Pales 0.0369
	           date 0.0369
	           down 0.0369
	           deos 0.0369
	             do 0.0369
	            the 0.0369
	           does 0.0369
	            Yes 0.0369
	            yes 0.0369
	             to 0.0369
	             of 0.0369
	           doer 0.0369
	           doen 0.0369

           3'OU   480709   7 (24)
	           they 0.2950
	            HOU 0.0369
	            MOU 0.0369
	              U 0.0369
	              . 0.0369
	            UOU 0.0369
	            you 0.0059
	            the 0.0000
	            YOU 0.0000
	             UO 0.0000
	             OU 0.0000
	             we 0.0000
	              I 0.0000
	             it 0.0000
	              a 0.0000
	              ( 0.0000
	              , 0.0000
	           </S> 0.0000
	              i 0.0000
	             On 0.0000
	             OF 0.0000
	              - 0.0000
	              ' 0.0000
	             Of 0.0000

           take   480714   1 (24)
	           lava 0.0369
	          taken 0.0369
	             is 0.0369
	              a 0.0369
	            tax 0.0369
	            are 0.0369
	              , 0.0369
	           took 0.0369
	          takes 0.0369
	          takke 0.0369
	           sala 0.0369
	           Baya 0.0369
	           take 0.0369
	           make 0.0369
	              - 0.0369
	             of 0.0369
	           that 0.0369
	           have 0.0369
	            the 0.0369
	           </S> 0.0369
	           taka 0.0369
	           tako 0.0369
	              . 0.0369
	          taket 0.0369

             As   480808   3 (29)
	             At 0.3536
	           This 0.3358
	             As 0.2611
	            All 0.1921
	             It 0.0900
	           What 0.0807
	              I 0.0418
	             iu 0.0369
	            cia 0.0369
	              a 0.0369
	             us 0.0369
	             AM 0.0369
	             sA 0.0369
	            AAs 0.0369
	            Ass 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ) 0.0000
	              , 0.0000
	              ] 0.0000
	              . 0.0000
	           this 0.0000
	             is 0.0000
	            Ask 0.0000
	            the 0.0000
	             as 0.0000
	             it 0.0000

          Larks   480836   2 (35)
	           Lark 0.3000
	              . 0.0369
	         Laarks 0.0369
	          heart 0.0369
	              - 0.0369
	              , 0.0369
	         Laskar 0.0369
	          Parus 0.0369
	         Lanius 0.0369
	          parva 0.0369
	              a 0.0369
	         hotels 0.0369
	            the 0.0369
	             of 0.0369
	              I 0.0369
	          Larus 0.0369
	          Larks 0.0369
	          sites 0.0369
	       Larksmen 0.0369
	          items 0.0369
	           site 0.0059
	       products 0.0000
	          Links 0.0000
	            own 0.0000
	           Last 0.0000
	           time 0.0000
	           arks 0.0000
	          Large 0.0000
	      knowledge 0.0000
	           part 0.0000
	          staff 0.0000
	      customers 0.0000
	       Larkspur 0.0000
	        website 0.0000
	           </S> 0.0000

         stones   480916  17 (30)
	       American 0.0486
	              . 0.0369
	        estones 0.0369
	              ) 0.0369
	         stoner 0.0369
	         spinas 0.0369
	         stoned 0.0369
	        stonest 0.0369
	            law 0.0369
	   underwriters 0.0369
	           site 0.0369
	              I 0.0369
	         stonen 0.0369
	              - 0.0369
	         estone 0.0369
	            the 0.0059
	           </S> 0.0000
	          stone 0.0000
	          other 0.0000
	         others 0.0000
	           them 0.0000
	         stones 0.0000
	             us 0.0000
	          state 0.0000
	        stoners 0.0000
	              , 0.0000
	              a 0.0000
	      countries 0.0000
	           some 0.0000
	       students 0.0000

      sometimes   480925   1 (15)
	              , 0.0369
	      sometimos 0.0369
	      Homerites 0.0369
	              a 0.0369
	      sometiese 0.0369
	       sometime 0.0369
	      Sometimes 0.0369
	              . 0.0369
	              - 0.0369
	      sometimes 0.0369
	              I 0.0369
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	              } 0.0000

      naturally   481061  14 (21)
	            but 0.0369
	      Naturally 0.0369
	      naturalny 0.0369
	              a 0.0369
	          <UNK> 0.0369
	        January 0.0369
	              " 0.0369
	            and 0.0369
	              ( 0.0369
	           </S> 0.0369
	              I 0.0369
	            all 0.0369
	            the 0.0059
	    unnaturally 0.0000
	             it 0.0000
	       naturall 0.0000
	            not 0.0000
	      naturally 0.0000
	             or 0.0000
	          which 0.0000
	              i 0.0000

        differs   481071  11 (21)
	       differes 0.0369
	        diffusa 0.0369
	            did 0.0369
	           does 0.0369
	        differt 0.0369
	        diferes 0.0369
	           were 0.0369
	        differe 0.0369
	       differas 0.0369
	      occurring 0.0059
	              . 0.0000
	        differs 0.0000
	             is 0.0000
	              a 0.0000
	           </S> 0.0000
	            the 0.0000
	              I 0.0000
	         differ 0.0000
	              , 0.0000
	            and 0.0000
	              - 0.0000

     externally   481169   1 (22)
	        Germany 0.0369
	       external 0.0369
	            but 0.0369
	      eternally 0.0369
	     externally 0.0369
	     Externally 0.0369
	              , 0.0369
	      externals 0.0369
	      Australia 0.0369
	    externality 0.0369
	        Western 0.0369
	              a 0.0369
	              . 0.0369
	              I 0.0369
	          where 0.0369
	              - 0.0369
	            and 0.0369
	              N 0.0369
	           </S> 0.0059
	              " 0.0000
	              } 0.0000
	              ) 0.0000

           dead   481211   1 (27)
	           dead 0.8000
	             de 0.1000
	       flexible 0.0369
	          deade 0.0369
	           deae 0.0369
	           deda 0.0369
	         native 0.0369
	          adead 0.0369
	            the 0.0059
	          their 0.0000
	           </S> 0.0000
	           dear 0.0000
	              : 0.0000
	              a 0.0000
	           deal 0.0000
	           Read 0.0000
	            day 0.0000
	            cia 0.0000
	              - 0.0000
	           year 0.0000
	          <UNK> 0.0000
	          deads 0.0000
	              , 0.0000
	            dea 0.0000
	           this 0.0000
	             us 0.0000
	           data 0.0000

          bents   481225   1 (34)
	         shrubs 0.0369
	        worship 0.0369
	         benets 0.0369
	              y 0.0369
	      therefore 0.0369
	            but 0.0369
	         sedges 0.0369
	          bents 0.0369
	         besten 0.0369
	            and 0.0369
	            zip 0.0369
	          <UNK> 0.0369
	          bento 0.0369
	          benta 0.0369
	           been 0.0369
	           </S> 0.0369
	              " 0.0369
	          forbs 0.0369
	              I 0.0369
	           best 0.0369
	         bentos 0.0369
	           work 0.0369
	       bentshed 0.0369
	              a 0.0369
	      workshops 0.0369
	         bentsh 0.0369
	           bent 0.0369
	             be 0.0369
	            the 0.0059
	          which 0.0012
	             or 0.0000
	         though 0.0000
	              i 0.0000
	            too 0.0000

            but   481239   1 (22)
	           butt 0.0369
	            bus 0.0369
	              . 0.0369
	              , 0.0369
	            tub 0.0369
	             iu 0.0369
	            cia 0.0369
	           buts 0.0369
	             us 0.0369
	              - 0.0369
	             bu 0.0369
	            but 0.0369
	              I 0.0369
	             be 0.0369
	             by 0.0369
	            buy 0.0369
	              a 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000
	              ] 0.0000
	              " 0.0000

       reindeer   481287  16 (29)
	      reindexed 0.7000
	      reindeers 0.4000
	       thinning 0.0369
	           shut 0.0369
	           were 0.0369
	           find 0.0369
	              i 0.0369
	            red 0.0369
	          dirty 0.0369
	       erindrer 0.0369
	          pubic 0.0369
	           kill 0.0369
	          under 0.0369
	        worship 0.0369
	            the 0.0059
	             to 0.0000
	          <UNK> 0.0000
	           </S> 0.0000
	              ( 0.0000
	          their 0.0000
	              - 0.0000
	              I 0.0000
	          other 0.0000
	       Reindeer 0.0000
	              a 0.0000
	       reindeer 0.0000
	              , 0.0000
	       raindeer 0.0000
	         reined 0.0000

         number   481311   1 (25)
	         number 1.0000
	        gathers 0.0369
	        nnumber 0.0369
	         numbre 0.0369
	          price 0.0369
	          comes 0.0369
	           need 0.0369
	         numbed 0.0369
	        numbers 0.0369
	       benefits 0.0369
	        numbere 0.0369
	              , 0.0059
	              I 0.0000
	           </S> 0.0000
	              a 0.0000
	           were 0.0000
	              - 0.0000
	             is 0.0000
	          under 0.0000
	            are 0.0000
	             of 0.0000
	           come 0.0000
	              . 0.0000
	            and 0.0000
	          hatch 0.0000

         tlieir   481453  17 (30)
	          Rural 0.0369
	        Entropy 0.0369
	              x 0.0369
	         telier 0.0369
	          times 0.0369
	           ieir 0.0369
	          there 0.0369
	          tliet 0.0369
	         trieri 0.0369
	             us 0.0369
	          tiler 0.0369
	             da 0.0369
	          lieis 0.0369
	         tlieta 0.0369
	           tiei 0.0369
	            the 0.0059
	           teir 0.0000
	            one 0.0000
	           this 0.0000
	           </S> 0.0000
	              . 0.0000
	         tiller 0.0000
	              , 0.0000
	           your 0.0000
	          their 0.0000
	              a 0.0000
	           tier 0.0000
	          stock 0.0000
	              - 0.0000
	         trivia 0.0000

      generally   481460   1 (20)
	             or 0.0369
	             of 0.0369
	      generally 0.0369
	              . 0.0369
	        General 0.0369
	            for 0.0369
	      generalis 0.0369
	       generale 0.0369
	              - 0.0369
	            get 0.0369
	              a 0.0369
	           were 0.0369
	              , 0.0369
	     generalled 0.0369
	       generall 0.0369
	      generalcy 0.0369
	      generalty 0.0369
	        general 0.0369
	          <UNK> 0.0059
	           </S> 0.0000

             To   481488   1 (22)
	             To 0.3518
	              I 0.0418
	             us 0.0369
	             iu 0.0369
	            cia 0.0369
	             TV 0.0369
	              a 0.0369
	              A 0.0328
	             to 0.0265
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              . 0.0000
	              ] 0.0000
	          <UNK> 0.0000
	            Top 0.0000
	              , 0.0000
	             of 0.0000
	             TO 0.0000
	            Tom 0.0000
	            Too 0.0000
	              ) 0.0000

    conspicuous   481523   2 (26)
	            the 0.4000
	    conspicious 0.0369
	          minor 0.0369
	     conspicuus 0.0369
	  inconspicuous 0.0369
	      conspicuo 0.0369
	         happen 0.0369
	  conspicuously 0.0369
	    conspicuous 0.0369
	     technology 0.0369
	        illegal 0.0369
	     conspicuos 0.0369
	              , 0.0059
	             is 0.0000
	            not 0.0000
	        because 0.0000
	             be 0.0000
	        without 0.0000
	              I 0.0000
	              . 0.0000
	          could 0.0000
	           </S> 0.0000
	         simple 0.0000
	              - 0.0000
	             of 0.0000
	              a 0.0000

            Mr.   481562   1 (23)
	             My 0.0369
	           More 0.0369
	              I 0.0369
	              a 0.0369
	              " 0.0369
	            but 0.0369
	            are 0.0369
	       complete 0.0369
	             Mr 0.0369
	            arz 0.0369
	            cia 0.0369
	             as 0.0369
	          <UNK> 0.0369
	            Mrs 0.0369
	            Mrz 0.0369
	            Mrk 0.0369
	            and 0.0369
	           </S> 0.0369
	            the 0.0059
	          which 0.0012
	              i 0.0000
	             us 0.0000
	             or 0.0000

           Hole   481574   3 (31)
	           said 0.6000
	              . 0.1000
	           more 0.0369
	           Hold 0.0369
	           Help 0.0369
	           Holy 0.0369
	           sala 0.0369
	          wolfi 0.0369
	          Pales 0.0369
	      President 0.0369
	           Hole 0.0369
	              A 0.0369
	              I 0.0369
	            Hol 0.0369
	              E 0.0369
	       Capralos 0.0369
	           Hoel 0.0369
	          Holes 0.0369
	          Holen 0.0369
	          Holle 0.0369
	          Hoole 0.0369
	        Speaker 0.0369
	              , 0.0059
	           Home 0.0000
	              - 0.0000
	           </S> 0.0000
	          <UNK> 0.0000
	             's 0.0000
	              ) 0.0000
	         Island 0.0000
	           Lane 0.0000

            Sky   481733   2 (26)
	             my 0.8000
	             Sk 0.0369
	           Skye 0.0369
	            Pyi 0.0369
	            cia 0.0369
	              e 0.0369
	              I 0.0369
	           Skyy 0.0369
	            Ski 0.0369
	            Ska 0.0369
	            Syk 0.0369
	              a 0.0369
	            Sky 0.0369
	       basename 0.0059
	          sense 0.0000
	           </S> 0.0000
	             in 0.0000
	              . 0.0000
	             to 0.0000
	             by 0.0000
	            the 0.0000
	       keywords 0.0000
	             us 0.0000
	              - 0.0000
	            See 0.0000
	              , 0.0000

          Larks   481737   1 (34)
	          Larks 0.5000
	           High 0.0369
	         Laarks 0.0369
	           side 0.0369
	      Tours.com 0.0369
	          files 0.0369
	          house 0.0369
	          being 0.0369
	            rev 0.0369
	       Larksmen 0.0369
	             TV 0.0369
	              s 0.0369
	              - 0.0079
	           </S> 0.0059
	             to 0.0000
	              a 0.0000
	          <UNK> 0.0000
	         Laskar 0.0000
	          Parus 0.0000
	              A 0.0000
	            the 0.0000
	             up 0.0000
	           Last 0.0000
	              . 0.0000
	              I 0.0000
	           time 0.0000
	           Lark 0.0000
	              ) 0.0000
	       Larkspur 0.0000
	         Lanius 0.0000
	          Larus 0.0000
	           arks 0.0000
	          Links 0.0000
	           part 0.0000

             He   481744   1 (24)
	             He 0.8274
	              I 0.0418
	             be 0.0369
	             eH 0.0369
	             HP 0.0369
	             Hi 0.0369
	             us 0.0369
	              a 0.0369
	             iu 0.0369
	            cia 0.0369
	            Hee 0.0369
	            Hey 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              . 0.0000
	            Her 0.0000
	              / 0.0000
	             we 0.0000
	              ) 0.0000
	              , 0.0000
	              ] 0.0000
	             he 0.0000

            you   481867   1 (23)
	             us 0.0369
	            the 0.0369
	              a 0.0369
	            You 0.0369
	              , 0.0369
	              - 0.0369
	              I 0.0369
	            yon 0.0369
	            yoy 0.0369
	            you 0.0369
	            ouy 0.0369
	             iu 0.0369
	            Pyi 0.0369
	            oyu 0.0369
	              . 0.0369
	           your 0.0369
	            and 0.0369
	           yous 0.0369
	             yo 0.0369
	           </S> 0.0059
	              ) 0.0000
	              " 0.0000
	              } 0.0000

        firstly   481979   3 (27)
	         firsts 0.3000
	              A 0.1948
	        firstly 0.1000
	            but 0.0369
	       frostily 0.0369
	         fyrsti 0.0369
	         shirts 0.0369
	      firstling 0.0369
	          stone 0.0369
	              s 0.0369
	           </S> 0.0059
	            for 0.0000
	              ) 0.0000
	            and 0.0000
	              a 0.0000
	             up 0.0000
	           time 0.0000
	          First 0.0000
	           mail 0.0000
	              I 0.0000
	             to 0.0000
	            the 0.0000
	          first 0.0000
	              . 0.0000
	              - 0.0000
	          <UNK> 0.0000
	        Firstly 0.0000

       chancing   481988   1 (30)
	        hancing 0.0369
	              a 0.0369
	       chancing 0.0369
	            but 0.0369
	        chacing 0.0369
	      according 0.0369
	         chanci 0.0369
	          <UNK> 0.0369
	              I 0.0369
	          minor 0.0369
	       chaining 0.0369
	         online 0.0369
	        subject 0.0369
	           easy 0.0369
	      chancings 0.0369
	            and 0.0369
	       chanting 0.0369
	            due 0.0369
	              - 0.0369
	           than 0.0369
	             up 0.0369
	           </S> 0.0369
	       changing 0.0369
	              ( 0.0369
	            the 0.0059
	          which 0.0012
	             or 0.0000
	              i 0.0000
	          using 0.0000
	            how 0.0000

            and   482026   1 (19)
	            and 0.0369
	             us 0.0369
	            ant 0.0369
	              . 0.0369
	            the 0.0369
	           andy 0.0369
	           anda 0.0369
	            arz 0.0369
	           alba 0.0369
	            any 0.0369
	              , 0.0369
	           aand 0.0369
	              A 0.0369
	             an 0.0369
	              I 0.0369
	           </S> 0.0059
	              " 0.0000
	              } 0.0000
	              ) 0.0000

     speciniens   482081  16 (29)
	             or 0.4000
	       pliniens 0.0369
	      Definiens 0.0369
	      specimine 0.0369
	              a 0.0369
	       services 0.0369
	         horses 0.0369
	      spiciness 0.0369
	              I 0.0369
	      specimini 0.0369
	       socinien 0.0369
	      specifies 0.0369
	       specient 0.0369
	        section 0.0369
	              - 0.0059
	         people 0.0000
	          years 0.0000
	              . 0.0000
	      questions 0.0000
	      specimens 0.0000
	              , 0.0000
	            and 0.0000
	              " 0.0000
	       specimen 0.0000
	     specifiers 0.0000
	         months 0.0000
	        species 0.0000
	           </S> 0.0000
	          major 0.0000

           shot   482092   1 (23)
	              : 0.0369
	          shots 0.0369
	           shop 0.0369
	           show 0.0369
	          shott 0.0369
	           </S> 0.0369
	           site 0.0369
	              , 0.0369
	           four 0.0369
	           some 0.0369
	             of 0.0369
	          short 0.0369
	            she 0.0369
	           sala 0.0369
	          shoot 0.0369
	             us 0.0369
	              a 0.0369
	              - 0.0369
	           shot 0.0369
	            sho 0.0369
	              I 0.0369
	              . 0.0369
	              ( 0.0369

    Polygonacea   482260  11 (27)
	    Polygonella 0.9000
	              a 0.4438
	         nature 0.0369
	         online 0.0369
	  Polygonaceous 0.0369
	   Polygalaceae 0.0369
	    Polygonales 0.0369
	       Polygona 0.0369
	   polygonaceae 0.0369
	            the 0.0059
	          <UNK> 0.0000
	              , 0.0000
	          women 0.0000
	            one 0.0000
	           Page 0.0000
	             us 0.0000
	          local 0.0000
	          their 0.0000
	           </S> 0.0000
	           life 0.0000
	           this 0.0000
	              - 0.0000
	           work 0.0000
	    information 0.0000
	           time 0.0000
	              : 0.0000
	   Polygonaceae 0.0000

            and   482272   1 (19)
	            ant 0.0369
	           </S> 0.0369
	             an 0.0369
	              a 0.0369
	              . 0.0369
	          among 0.0369
	              I 0.0369
	             of 0.0369
	           aand 0.0369
	             us 0.0369
	              , 0.0369
	            arz 0.0369
	           andy 0.0369
	            and 0.0369
	              - 0.0369
	             in 0.0369
	           anda 0.0369
	           alba 0.0369
	            any 0.0369

           Lark   482331  13 (31)
	            are 0.5000
	         Larkin 0.4174
	           lava 0.4000
	            and 0.2950
	           Lars 0.1000
	            Lar 0.0369
	          Lakar 0.0369
	            arz 0.0369
	          Larks 0.0369
	              e 0.0369
	          Larak 0.0369
	             is 0.0059
	           Lara 0.0000
	              , 0.0000
	           Lake 0.0000
	           sala 0.0000
	           site 0.0000
	           item 0.0000
	              a 0.0000
	              . 0.0000
	           kind 0.0000
	           book 0.0000
	          paper 0.0000
	           </S> 0.0000
	              - 0.0000
	           work 0.0000
	            Web 0.0000
	           part 0.0000
	          study 0.0000
	           Lark 0.0000
	           page 0.0000

       consists   482336   2 (22)
	             is 0.7000
	      consistis 0.0369
	       consitus 0.0369
	       consiste 0.0369
	       consista 0.0369
	        consist 0.0369
	       consists 0.0369
	            can 0.0369
	              a 0.0369
	            are 0.0369
	           site 0.0369
	              I 0.0369
	      consistes 0.0369
	       consisti 0.0369
	       consisto 0.0369
	          could 0.0369
	           </S> 0.0059
	          Books 0.0000
	              , 0.0000
	    Calandrella 0.0000
	              - 0.0000
	              . 0.0000

             it   482468   1 (22)
	              I 0.0369
	            the 0.0369
	             is 0.0369
	            iit 0.0369
	            its 0.0369
	             iu 0.0369
	              - 0.0369
	              . 0.0369
	            ith 0.0369
	             it 0.0369
	            iti 0.0369
	            cia 0.0369
	             in 0.0369
	            itt 0.0369
	             ti 0.0369
	             us 0.0369
	              , 0.0369
	              a 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	              " 0.0000

        devours   482476   1 (27)
	        devours 0.7000
	          means 0.7000
	        detours 0.2000
	      devourers 0.0369
	      indevours 0.0369
	        devorus 0.0369
	              - 0.0369
	           your 0.0369
	              s 0.0369
	            too 0.0369
	             us 0.0369
	              I 0.0369
	        devouts 0.0369
	           does 0.0369
	             be 0.0059
	              . 0.0000
	            not 0.0000
	         accept 0.0000
	         devour 0.0000
	            the 0.0000
	            has 0.0000
	           very 0.0000
	       provides 0.0000
	              , 0.0000
	        because 0.0000
	              a 0.0000
	           </S> 0.0000

          small   482484   1 (25)
	         smalls 0.0369
	           smal 0.0369
	          smale 0.0369
	          smalt 0.0369
	           sala 0.0369
	              I 0.0369
	          still 0.0369
	         smalle 0.0369
	          small 0.0369
	             to 0.0369
	          Email 0.0369
	          shall 0.0369
	          smala 0.0369
	          smalm 0.0369
	            the 0.0059
	              a 0.0000
	              - 0.0000
	              . 0.0000
	             it 0.0000
	          apace 0.0000
	              M 0.0000
	           </S> 0.0000
	           them 0.0000
	             us 0.0000
	              , 0.0000

       mollusca   482490   1 (20)
	       mollusca 0.6000
	        mollusc 0.4000
	         orders 0.0369
	           game 0.0369
	          house 0.0369
	      molluscan 0.0369
	      molluscas 0.0369
	       mollusco 0.0369
	        molusca 0.0369
	              , 0.0059
	              a 0.0000
	       business 0.0000
	            and 0.0000
	              - 0.0000
	     businesses 0.0000
	          world 0.0000
	              . 0.0000
	       molluscs 0.0000
	           </S> 0.0000
	         medium 0.0000

      Crustacea   482503   8 (24)
	              i 0.0369
	           pick 0.0369
	          shall 0.0369
	           just 0.0369
	            set 0.0369
	      Crustacen 0.0369
	            the 0.0059
	    Crustaceans 0.0000
	     Crustacean 0.0000
	              ( 0.0000
	              a 0.0000
	              I 0.0000
	      Crustacea 0.0000
	        rustica 0.0000
	              , 0.0000
	              - 0.0000
	           more 0.0000
	          <UNK> 0.0000
	       Services 0.0000
	        Privacy 0.0000
	           then 0.0000
	             to 0.0000
	          other 0.0000
	           </S> 0.0000

           cast   482513   2 (25)
	              . 0.1890
	           cats 0.0369
	            cas 0.0369
	           cast 0.0369
	            can 0.0369
	           lava 0.0369
	          casts 0.0369
	            has 0.0369
	            cia 0.0369
	           Last 0.0369
	           case 0.0369
	          caste 0.0369
	         cassia 0.0369
	         follow 0.0369
	             it 0.0369
	              a 0.0369
	           them 0.0369
	           cash 0.0369
	              , 0.0059
	              - 0.0000
	            the 0.0000
	           </S> 0.0000
	              : 0.0000
	            was 0.0000
	              I 0.0000

          Being   482540   1 (24)
	          Being 1.0000
	           Bein 0.0369
	          Begin 0.0369
	           find 0.0369
	            and 0.0369
	       Beingzoe 0.0369
	          using 0.0369
	          being 0.0369
	              a 0.0369
	        Beining 0.0369
	          Beinn 0.0369
	          Beine 0.0369
	         Benign 0.0369
	         Beings 0.0369
	         Beijng 0.0369
	           </S> 0.0059
	              " 0.0000
	              ] 0.0000
	              , 0.0000
	              ) 0.0000
	              A 0.0000
	              I 0.0000
	              . 0.0000
	              - 0.0000

           both   482546  10 (21)
	          bothe 0.0369
	          bothy 0.0369
	          booth 0.0369
	              ) 0.0369
	           hobt 0.0369
	           bots 0.0369
	           boty 0.0369
	            bot 0.0369
	              a 0.0059
	           both 0.0000
	           best 0.0000
	              - 0.0000
	             in 0.0000
	           body 0.0000
	          <UNK> 0.0000
	              . 0.0000
	           </S> 0.0000
	              A 0.0000
	            but 0.0000
	            the 0.0000
	              , 0.0000

           tame   482551  11 (28)
	           lava 0.4000
	            tam 0.1000
	           sala 0.0369
	           Baya 0.0369
	          tamer 0.0369
	       intimate 0.0369
	           tama 0.0369
	           tami 0.0369
	          tamme 0.0369
	            the 0.0059
	              a 0.0000
	           tame 0.0000
	          cases 0.0000
	          tamed 0.0000
	           ways 0.0000
	              , 0.0000
	           take 0.0000
	              . 0.0000
	              - 0.0000
	        parties 0.0000
	           name 0.0000
	           </S> 0.0000
	             of 0.0000
	           team 0.0000
	             in 0.0000
	           them 0.0000
	          sides 0.0000
	           time 0.0000

      beautiful   482557   1 (29)
	           </S> 0.0369
	      beautyful 0.0369
	              - 0.0369
	      obfuscate 0.0369
	      beautiful 0.0369
	    beautifully 0.0369
	      therefore 0.0369
	              I 0.0369
	          <UNK> 0.0369
	      Beautiful 0.0369
	        writing 0.0369
	      workshops 0.0369
	            and 0.0369
	        because 0.0369
	           work 0.0369
	              a 0.0369
	        chasten 0.0369
	            but 0.0369
	              ( 0.0369
	        between 0.0369
	          women 0.0369
	     beautifull 0.0369
	            hey 0.0369
	            the 0.0059
	             or 0.0000
	          which 0.0000
	         though 0.0000
	            too 0.0000
	              i 0.0000

          caged   482606  14 (28)
	          cadge 0.0369
	          Pages 0.0369
	           cage 0.0369
	         cadged 0.0369
	          Pales 0.0369
	          cages 0.0369
	        omitted 0.0369
	        Uncaged 0.0369
	        uncaged 0.0369
	          cager 0.0369
	           caed 0.0369
	         coaged 0.0369
	              , 0.0059
	              . 0.0000
	            can 0.0000
	           used 0.0000
	           aged 0.0000
	             to 0.0000
	      difficult 0.0000
	              I 0.0000
	           page 0.0000
	           very 0.0000
	              - 0.0000
	          caged 0.0000
	              a 0.0000
	            the 0.0000
	           Page 0.0000
	           </S> 0.0000

            and   482614   1 (20)
	              , 0.0369
	              a 0.0369
	              - 0.0369
	          sings 0.0369
	            ant 0.0369
	            any 0.0369
	            arz 0.0369
	           alba 0.0369
	             an 0.0369
	            and 0.0369
	             us 0.0369
	           andy 0.0369
	           anda 0.0369
	              . 0.0369
	           aand 0.0369
	              I 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	              " 0.0000

    frequentl}^   482640   1 (24)
	     frequently 0.5000
	          never 0.2833
	     frequented 0.1000
	      frequents 0.0369
	    frequenting 0.0369
	     frequenter 0.0369
	           free 0.0369
	      frequente 0.0369
	    frequential 0.0369
	              s 0.0369
	              - 0.0369
	           from 0.0369
	              I 0.0369
	           been 0.0059
	           </S> 0.0000
	          found 0.0000
	         become 0.0000
	              , 0.0000
	              . 0.0000
	              a 0.0000
	       frequent 0.0000
	       pictures 0.0000
	            not 0.0000
	           also 0.0000

           bird   482670   1 (31)
	              - 0.0369
	           brid 0.0369
	            bir 0.0369
	          birds 0.0369
	           </S> 0.0369
	       numerous 0.0369
	          birdy 0.0369
	            arz 0.0369
	            but 0.0369
	          birdi 0.0369
	           this 0.0369
	              . 0.0369
	            the 0.0369
	           biro 0.0369
	            cia 0.0369
	           Pica 0.0369
	           bird 0.0369
	             be 0.0369
	           birt 0.0369
	            gun 0.0369
	              a 0.0369
	          least 0.0369
	              , 0.0369
	             by 0.0369
	      galleries 0.0369
	           your 0.0059
	              y 0.0000
	          trade 0.0000
	              x 0.0000
	           work 0.0000
	          which 0.0000

           Herr   482683   2 (21)
	              I 0.0418
	        Britain 0.0369
	           here 0.0369
	              a 0.0369
	           Herr 0.0369
	            arz 0.0369
	           Hero 0.0369
	          Herrn 0.0369
	          Herre 0.0369
	           were 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              . 0.0000
	            Her 0.0000
	           Help 0.0000
	              ] 0.0000
	              ) 0.0000
	              , 0.0000
	           Here 0.0000

          Gatke   482688 inf (25)
	           Gate 0.0369
	              n 0.0369
	        Gatokae 0.0369
	          Latke 0.0369
	          latke 0.0369
	          Games 0.0369
	        Gaskets 0.0369
	          Gatte 0.0369
	         Gasket 0.0369
	        Gataket 0.0369
	           Game 0.0369
	          Gatka 0.0369
	              a 0.0369
	          Gatae 0.0369
	           take 0.0369
	              , 0.0059
	          <UNK> 0.0000
	           </S> 0.0000
	          Gates 0.0000
	              - 0.0000
	             M. 0.0000
	              . 0.0000
	              ) 0.0000
	              W 0.0000
	            der 0.0000

       observes   482694   1 (20)
	      observest 0.0369
	      observans 0.0369
	              . 0.0369
	       observed 0.0369
	             C. 0.0369
	       observer 0.0369
	         Hoyman 0.0369
	          Ringe 0.0369
	       observes 0.0369
	         Joined 0.0369
	      observees 0.0369
	       observee 0.0369
	        observe 0.0369
	              - 0.0369
	             J. 0.0369
	              a 0.0369
	      observata 0.0369
	              , 0.0059
	           </S> 0.0000
	          Corp. 0.0000

      agreeably   482850   1 (20)
	          great 0.0369
	     agreeables 0.0369
	    unagreeably 0.0369
	      agreeable 0.0369
	      Agreeably 0.0369
	      agreeably 0.0369
	      available 0.0369
	              , 0.0059
	             to 0.0000
	            the 0.0000
	              - 0.0000
	              a 0.0000
	            are 0.0000
	           </S> 0.0000
	           true 0.0000
	              I 0.0000
	              . 0.0000
	             be 0.0000
	             an 0.0000
	             it 0.0000

           Lark   482860   1 (29)
	         impart 0.0369
	           Lark 0.0369
	          Lakar 0.0369
	            arz 0.0369
	           lava 0.0369
	           sala 0.0369
	              i 0.0369
	            are 0.0369
	            Lar 0.0369
	           Lars 0.0369
	           Lara 0.0369
	          Larak 0.0369
	              I 0.0369
	           work 0.0369
	         Larkin 0.0369
	           well 0.0369
	          Larks 0.0369
	           make 0.0369
	             to 0.0059
	              a 0.0000
	            old 0.0000
	            off 0.0000
	           that 0.0000
	           </S> 0.0000
	      surprised 0.0000
	              . 0.0000
	              , 0.0000
	              - 0.0000
	            the 0.0000

            its   482872   1 (24)
	            cia 0.0369
	             us 0.0369
	              I 0.0369
	             in 0.0369
	            ith 0.0369
	            ita 0.0369
	              a 0.0369
	           itsy 0.0369
	           itse 0.0369
	           tits 0.0369
	              . 0.0369
	            ist 0.0369
	             iu 0.0369
	            its 0.0369
	              C 0.0369
	              - 0.0369
	             it 0.0369
	         enable 0.0369
	        typical 0.0369
	              , 0.0369
	           </S> 0.0059
	              ) 0.0000
	              " 0.0000
	              } 0.0000

        peevish   483014  14 (27)
	         pelvis 0.3000
	        vepsish 0.0369
	      peevishly 0.0369
	        Peevish 0.0369
	      impeevish 0.0369
	        beevish 0.0369
	           kept 0.0369
	        singing 0.0369
	        peevits 0.0369
	        present 0.0369
	           dead 0.0369
	        pervius 0.0369
	            not 0.0059
	           </S> 0.0000
	          found 0.0000
	              : 0.0000
	     interested 0.0000
	              , 0.0000
	            the 0.0000
	             in 0.0000
	        several 0.0000
	              . 0.0000
	        peevish 0.0000
	         listed 0.0000
	       provided 0.0000
	      appearing 0.0000
	              a 0.0000

     captivit}'   483025   1 (30)
	      captivity 0.8298
	     captivitas 0.0369
	       children 0.0369
	    captivitati 0.0369
	           with 0.0369
	              x 0.0369
	           them 0.0369
	       captivat 0.0369
	    captivities 0.0369
	      captivait 0.0369
	             us 0.0369
	            the 0.0059
	        writing 0.0000
	           this 0.0000
	           turn 0.0000
	              , 0.0000
	              - 0.0000
	              . 0.0000
	     captivated 0.0000
	           </S> 0.0000
	             it 0.0000
	        general 0.0000
	          place 0.0000
	           time 0.0000
	           your 0.0000
	           fact 0.0000
	              a 0.0000
	        captivi 0.0000
	     Washington 0.0000
	           case 0.0000

            and   483037   1 (21)
	          <UNK> 0.0369
	          spare 0.0369
	           </S> 0.0369
	              I 0.0369
	            ant 0.0369
	           anda 0.0369
	            arz 0.0369
	           alba 0.0369
	              " 0.0369
	            but 0.0369
	            and 0.0369
	            any 0.0369
	           andy 0.0369
	           aand 0.0369
	             an 0.0369
	            the 0.0059
	          which 0.0012
	             us 0.0000
	              i 0.0000
	             or 0.0000
	           snow 0.0000

    impetuously   483060   3 (23)
	      impetuous 0.5000
	           </S> 0.1000
	          brand 0.0369
	  tempestuously 0.0369
	       security 0.0369
	       thinking 0.0369
	    impetuously 0.0369
	    imperiously 0.0369
	      impetuosa 0.0369
	            the 0.0059
	              . 0.0000
	            one 0.0000
	              : 0.0000
	              a 0.0000
	              , 0.0000
	      Impetuous 0.0000
	          <UNK> 0.0000
	              e 0.0000
	       Category 0.0000
	          their 0.0000
	              - 0.0000
	    impetuosity 0.0000
	         people 0.0000

     fluttering   483072   3 (23)
	           </S> 0.3000
	            the 0.1000
	          about 0.0369
	     fluttering 0.0369
	     Glittering 0.0369
	      futtering 0.0369
	   flutteringly 0.0369
	      flowering 0.0369
	     cluttering 0.0369
	     flittering 0.0369
	          their 0.0369
	              a 0.0369
	   unfluttering 0.0369
	     flattering 0.0369
	    flutterings 0.0369
	      countries 0.0369
	        railway 0.0369
	        Company 0.0369
	      following 0.0369
	              , 0.0059
	              . 0.0000
	            and 0.0000
	              - 0.0000

           this   483128   1 (24)
	              . 0.0369
	            the 0.0369
	           that 0.0369
	              - 0.0369
	           thie 0.0369
	          thish 0.0369
	              I 0.0369
	           tish 0.0369
	              s 0.0369
	            cia 0.0369
	             he 0.0369
	             us 0.0369
	            thi 0.0369
	              a 0.0369
	           this 0.0369
	          thisn 0.0369
	              , 0.0369
	             it 0.0369
	           thin 0.0369
	            and 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	              " 0.0000

       prettily   483208  18 (29)
	        pettily 0.8000
	         pretti 0.8000
	              A 0.0369
	          three 0.0369
	              E 0.0369
	            mid 0.0369
	           long 0.0369
	              2 0.0369
	            the 0.0369
	            non 0.0369
	       prettify 0.0369
	     unprettily 0.0369
	              i 0.0369
	            per 0.0369
	      pretimely 0.0369
	           well 0.0369
	           </S> 0.0059
	       priestly 0.0000
	      following 0.0000
	              - 0.0000
	         people 0.0000
	          first 0.0000
	              " 0.0000
	           same 0.0000
	            two 0.0000
	           best 0.0000
	         public 0.0000
	          <UNK> 0.0000
	       prettily 0.0000

           cage   483238   2 (32)
	          caged 0.5400
	           cage 0.5083
	          early 0.0369
	        bristol 0.0369
	           self 0.0369
	           cags 0.0369
	           cago 0.0369
	           cega 0.0369
	             on 0.0369
	            sea 0.0369
	              C 0.0369
	              I 0.0369
	         caggee 0.0369
	            the 0.0059
	           Page 0.0000
	             re 0.0000
	            can 0.0000
	              . 0.0000
	              a 0.0000
	              - 0.0000
	           high 0.0000
	              , 0.0000
	           lava 0.0000
	           page 0.0000
	          cages 0.0000
	            cia 0.0000
	           your 0.0000
	           this 0.0000
	             in 0.0000
	           </S> 0.0000
	            non 0.0000
	           sala 0.0000

             My   483251   1 (23)
	             My 0.5980
	            for 0.0601
	              I 0.0418
	             Me 0.0369
	             MD 0.0369
	            MyM 0.0369
	             us 0.0369
	             iu 0.0369
	            Pyi 0.0369
	            Mya 0.0369
	            Myc 0.0369
	              a 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	             my 0.0000
	              / 0.0000
	              , 0.0000
	              ] 0.0000
	              . 0.0000
	             by 0.0000
	              ) 0.0000

          flies   483348   1 (25)
	          flies 0.9000
	           lies 0.4000
	          false 0.1000
	         fliers 0.1000
	          Pales 0.0369
	             be 0.0369
	         fliest 0.0369
	          fleis 0.0369
	          filed 0.0369
	        oxflies 0.0369
	          flied 0.0369
	          flier 0.0369
	              a 0.0059
	           free 0.0000
	           like 0.0000
	              - 0.0000
	          first 0.0000
	              , 0.0000
	           </S> 0.0000
	            the 0.0000
	          files 0.0000
	              . 0.0000
	            you 0.0000
	          place 0.0000
	             us 0.0000

        earwigs   483509   1 (26)
	       services 0.0369
	        earwigs 0.0369
	        service 0.0369
	         earwig 0.0369
	        badware 0.0369
	       earywigs 0.0369
	        Earwigs 0.0369
	       wearings 0.0369
	        sources 0.0369
	          years 0.0369
	              " 0.0059
	              . 0.0000
	              ) 0.0000
	            the 0.0000
	              ' 0.0000
	          <UNK> 0.0000
	              A 0.0000
	           life 0.0000
	              a 0.0000
	              - 0.0000
	           </S> 0.0000
	             it 0.0000
	              , 0.0000
	             us 0.0000
	            for 0.0000
	              I 0.0000

        rejects   483547  13 (27)
	            and 0.0369
	         rejets 0.0369
	        rejecta 0.0369
	        rejecte 0.0369
	              - 0.0369
	       rejectus 0.0369
	       rejectos 0.0369
	              . 0.0369
	      rejectest 0.0369
	      rejecters 0.0369
	           free 0.0369
	              I 0.0059
	           they 0.0000
	             it 0.0000
	         ejects 0.0000
	           </S> 0.0000
	         reject 0.0000
	              i 0.0000
	            not 0.0000
	        rejects 0.0000
	              , 0.0000
	            its 0.0000
	             we 0.0000
	            may 0.0000
	              a 0.0000
	            the 0.0000
	           were 0.0000

          Small   483596   1 (23)
	          Small 0.5000
	              I 0.0418
	          shall 0.0369
	       teaching 0.0369
	          Smale 0.0369
	          Smalt 0.0369
	         Smalls 0.0369
	              a 0.0369
	           Smal 0.0369
	           sala 0.0369
	          Samal 0.0369
	        Smaller 0.0369
	       learning 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	          State 0.0000
	          Email 0.0000
	              , 0.0000
	              ) 0.0000
	              ] 0.0000
	              . 0.0000

          moths   483623  15 (26)
	         smooth 1.0000
	          motor 0.8000
	          mouse 0.2989
	           moth 0.2000
	          month 0.0369
	         Anthus 0.0369
	       Mammoths 0.0369
	          motha 0.0369
	          mothe 0.0369
	         months 0.0369
	       mammoths 0.0369
	        smooths 0.0369
	          image 0.0092
	     businesses 0.0059
	       business 0.0000
	              , 0.0000
	      companies 0.0000
	           most 0.0000
	           </S> 0.0000
	              - 0.0000
	          moths 0.0000
	    enterprises 0.0000
	              . 0.0000
	          mouth 0.0000
	             to 0.0000
	    Enterprises 0.0000

              -   483724   1 (15)
	              - 0.7645
	              ) 0.2018
	            +1- 0.0369
	             iu 0.0369
	            cia 0.0369
	           </S> 0.0059
	             -- 0.0000
	            and 0.0000
	            the 0.0000
	              . 0.0000
	              , 0.0000
	              = 0.0000
	             us 0.0000
	             of 0.0000
	             th 0.0000

            ear   483725   1 (35)
	            ear 0.6179
	           ears 0.1921
	      invariant 0.0369
	          known 0.0369
	         league 0.0369
	              s 0.0369
	       function 0.0369
	           side 0.0369
	        student 0.0369
	              - 0.0079
	           </S> 0.0059
	              1 0.0000
	            cia 0.0000
	            eau 0.0000
	              ) 0.0000
	           earn 0.0000
	             to 0.0000
	            the 0.0000
	            was 0.0000
	            arz 0.0000
	             up 0.0000
	            era 0.0000
	           earr 0.0000
	              A 0.0000
	              I 0.0000
	           time 0.0000
	            are 0.0000
	             th 0.0000
	           eare 0.0000
	           year 0.0000
	            eat 0.0000
	          <UNK> 0.0000
	          based 0.0000
	              a 0.0000
	              . 0.0000

            Its   483730   2 (22)
	             In 0.5538
	            Its 0.3584
	             It 0.0900
	            cia 0.0369
	             iu 0.0369
	              O 0.0369
	            its 0.0369
	            Ito 0.0369
	            Ita 0.0369
	              a 0.0369
	            Ist 0.0369
	             us 0.0369
	           Itsu 0.0369
	           Itse 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              , 0.0000
	              . 0.0000
	              ) 0.0000
	              ] 0.0000

         staple   483734  15 (27)
	          start 0.1000
	              ) 0.0369
	        staples 0.0369
	       Derelict 0.0369
	           sala 0.0369
	         stapel 0.0369
	        stapled 0.0369
	         stapla 0.0369
	       favorite 0.0369
	              : 0.0369
	              , 0.0369
	              . 0.0369
	     diminutive 0.0369
	              a 0.0059
	          major 0.0000
	         staple 0.0000
	            not 0.0000
	          still 0.0000
	         sample 0.0000
	            the 0.0000
	           main 0.0000
	           </S> 0.0000
	          <UNK> 0.0000
	              A 0.0000
	        primary 0.0000
	         stable 0.0000
	          state 0.0000

         Canary   483759  15 (23)
	         Cynara 0.1000
	            not 0.0564
	      Canarypox 0.0369
	              - 0.0369
	         Canari 0.0369
	              I 0.0369
	         Canard 0.0369
	          Cynar 0.0369
	          Canar 0.0369
	           self 0.0369
	            non 0.0369
	              e 0.0369
	            and 0.0369
	              a 0.0059
	        January 0.0000
	         Canary 0.0000
	              , 0.0000
	           well 0.0000
	           </S> 0.0000
	           many 0.0000
	            the 0.0000
	              . 0.0000
	           that 0.0000

              -   483765   1 (17)
	              - 0.1986
	            Cap 0.1000
	              a 0.0369
	              s 0.0369
	            cia 0.0369
	             us 0.0369
	        Islands 0.0059
	              . 0.0000
	            the 0.0000
	             of 0.0000
	            and 0.0000
	          Wharf 0.0000
	              , 0.0000
	           </S> 0.0000
	          grass 0.0000
	             -- 0.0000
	             to 0.0000

     procurable   483801  15 (27)
	              - 0.0369
	           drug 0.0369
	    practicable 0.0369
	          whole 0.0369
	         reward 0.0369
	           shop 0.0369
	     prohibited 0.0369
	     procurarle 0.0369
	      procurata 0.0369
	   reprocurable 0.0369
	         people 0.0369
	    procurabile 0.0369
	          cooks 0.0369
	              a 0.0059
	       required 0.0000
	     procurable 0.0000
	            the 0.0000
	       possible 0.0000
	              , 0.0000
	           </S> 0.0000
	       provided 0.0000
	              " 0.0000
	              . 0.0000
	            not 0.0000
	      available 0.0000
	     procurator 0.0000
	   unprocurable 0.0000

      Sustained   483813   1 (19)
	      Sustainer 0.0369
	           Keep 0.0369
	        Sustain 0.0369
	      unstained 0.0369
	        stained 0.0369
	      Sustained 0.0369
	      sustained 0.0369
	    Sustainedly 0.0369
	           </S> 0.0059
	              " 0.0000
	              . 0.0000
	              ] 0.0000
	              / 0.0000
	              A 0.0000
	              - 0.0000
	              I 0.0000
	              , 0.0000
	          <UNK> 0.0000
	              ) 0.0000

          keeps   483848  13 (26)
	           need 0.9000
	           keep 0.8000
	            key 0.1000
	           eeps 0.0369
	       provided 0.0369
	        upkeeps 0.0369
	       keepsake 0.0369
	           keps 0.0369
	          skeps 0.0369
	         keleps 0.0369
	          keepe 0.0369
	            flu 0.0059
	           teen 0.0000
	              , 0.0000
	          keeps 0.0000
	              - 0.0000
	             is 0.0000
	             on 0.0000
	             of 0.0000
	        species 0.0000
	              . 0.0000
	              I 0.0000
	              a 0.0000
	       watching 0.0000
	           been 0.0000
	           </S> 0.0000

          every   483899   2 (23)
	              a 0.1000
	          every 0.0369
	           ever 0.0369
	         revery 0.0369
	         severe 0.0369
	         Severy 0.0369
	         Devery 0.0369
	          evert 0.0369
	          evers 0.0369
	           eery 0.0369
	          veery 0.0369
	           even 0.0369
	         Severe 0.0369
	              , 0.0059
	             in 0.0000
	            and 0.0000
	            for 0.0000
	           </S> 0.0000
	             to 0.0000
	           very 0.0000
	             is 0.0000
	              . 0.0000
	              - 0.0000

          Larks   484087  14 (29)
	         Lanius 0.4000
	          Larus 0.1000
	              B 0.0369
	            HIV 0.0369
	          parva 0.0369
	           self 0.0369
	       patients 0.0369
	         Laarks 0.0369
	              . 0.0369
	            non 0.0369
	       Larksmen 0.0369
	              x 0.0369
	            the 0.0059
	           Lark 0.0000
	           part 0.0000
	              - 0.0000
	          their 0.0000
	           this 0.0000
	          Links 0.0000
	           high 0.0000
	       Larkspur 0.0000
	          Larks 0.0000
	           </S> 0.0000
	              a 0.0000
	            are 0.0000
	          Parus 0.0000
	              , 0.0000
	         Laskar 0.0000
	           arks 0.0000

              -   484093   8 (13)
	             -- 0.6000
	        1956-63 0.4000
	            the 0.0369
	             us 0.0369
	       vulgaris 0.0369
	            cia 0.0369
	              ' 0.0059
	            and 0.0000
	              . 0.0000
	             of 0.0000
	           </S> 0.0000
	              - 0.0000
	              , 0.0000

        Canar3^   484202   9 (22)
	           </S> 0.1000
	        Cannara 0.0369
	              A 0.0369
	        January 0.0369
	             us 0.0369
	              I 0.0369
	        Canaria 0.0369
	            the 0.0059
	         Canara 0.0000
	           many 0.0000
	         Canard 0.0000
	         Canada 0.0000
	         Canary 0.0000
	          Canar 0.0000
	              a 0.0000
	             an 0.0000
	              , 0.0000
	          <UNK> 0.0000
	              e 0.0000
	              : 0.0000
	              . 0.0000
	              - 0.0000

              -   484209   1 (11)
	              - 0.0369
	            the 0.0369
	             us 0.0369
	       attorney 0.0369
	            cia 0.0369
	             of 0.0369
	              . 0.0369
	            and 0.0369
	           </S> 0.0369
	              , 0.0369
	             iu 0.0369

        Canar}'   484267   4 (25)
	           </S> 0.6000
	           this 0.5000
	              a 0.4000
	         Canary 0.0369
	         Canard 0.0369
	         Canada 0.0369
	          large 0.0369
	        Canaria 0.0369
	        Cannara 0.0369
	         Canara 0.0369
	          Canar 0.0369
	              V 0.0369
	           many 0.0369
	             to 0.0059
	         PayPal 0.0000
	             it 0.0000
	            the 0.0000
	              I 0.0000
	         paypal 0.0000
	         Paypal 0.0000
	              . 0.0000
	              , 0.0000
	             us 0.0000
	         PAYPAL 0.0000
	              - 0.0000

             iu   484329  11 (23)
	              - 0.3000
	             as 0.3000
	            cia 0.0369
	             iu 0.0369
	           uiui 0.0369
	            ius 0.0369
	             ui 0.0369
	              I 0.0369
	            iun 0.0369
	       argument 0.0059
	           with 0.0000
	             to 0.0000
	              , 0.0000
	            the 0.0000
	             us 0.0000
	             is 0.0000
	              a 0.0000
	           </S> 0.0000
	           from 0.0000
	              . 0.0000
	             by 0.0000
	             in 0.0000
	             it 0.0000

            one   484332  13 (22)
	             is 1.0000
	           with 0.0369
	            ons 0.0369
	            ont 0.0369
	            oen 0.0369
	           onee 0.0369
	           oner 0.0369
	           onen 0.0369
	             us 0.0369
	            cia 0.0369
	           ones 0.0369
	           </S> 0.0059
	              s 0.0000
	             of 0.0000
	          <UNK> 0.0000
	              . 0.0000
	              a 0.0000
	              , 0.0000
	             on 0.0000
	            one 0.0000
	              - 0.0000
	            the 0.0000

           Lark   484433   1 (27)
	            Lar 0.2000
	         Larkin 0.2000
	           Lark 0.2000
	          Lakar 0.0369
	            arz 0.0369
	          Larak 0.0369
	              a 0.0369
	              , 0.0369
	              . 0.0369
	            few 0.0097
	           </S> 0.0059
	           part 0.0000
	           Last 0.0000
	           lava 0.0000
	          Larks 0.0000
	            are 0.0000
	          place 0.0000
	            way 0.0000
	              - 0.0000
	           link 0.0000
	           sala 0.0000
	            new 0.0000
	         chance 0.0000
	           Park 0.0000
	           Lara 0.0000
	          while 0.0000
	           Lars 0.0000

           husk   484441  11 (23)
	            hus 0.3000
	            has 0.3000
	           huse 0.1000
	          <UNK> 0.0369
	              : 0.0369
	              H 0.0369
	              " 0.0369
	           </S> 0.0369
	            win 0.0369
	            the 0.0059
	          husky 0.0000
	             iu 0.0000
	             be 0.0000
	           just 0.0000
	              a 0.0000
	           huge 0.0000
	           husk 0.0000
	           hush 0.0000
	           kush 0.0000
	            his 0.0000
	             us 0.0000
	            get 0.0000
	          husks 0.0000

         ever}'   484446   2 (22)
	              a 0.2000
	          evert 0.0369
	          evers 0.0369
	             us 0.0369
	         revere 0.0369
	           even 0.0369
	           very 0.0369
	              I 0.0369
	          every 0.0369
	          chaff 0.0369
	         everre 0.0369
	           ever 0.0369
	         severe 0.0369
	              , 0.0059
	            the 0.0000
	            and 0.0000
	           </S> 0.0000
	              - 0.0000
	           corn 0.0000
	           over 0.0000
	              . 0.0000
	             of 0.0000

           seed   484453   1 (16)
	              , 0.0369
	          seeds 0.0369
	            sex 0.0369
	            the 0.0369
	              : 0.0369
	           seem 0.0369
	           seed 0.0369
	            see 0.0369
	           need 0.0369
	           </S> 0.0369
	           sala 0.0369
	           sede 0.0369
	          seedy 0.0369
	              . 0.0369
	              a 0.0369
	           seen 0.0369

           this   484481   1 (24)
	          there 0.0369
	           this 0.0369
	             us 0.0369
	              . 0.0369
	              I 0.0369
	            thi 0.0369
	              , 0.0369
	           thin 0.0369
	            cia 0.0369
	           thie 0.0369
	              a 0.0369
	             iu 0.0369
	          thisn 0.0369
	           tish 0.0369
	            not 0.0369
	              - 0.0369
	             it 0.0369
	            the 0.0369
	           that 0.0369
	          thish 0.0369
	           </S> 0.0059
	              } 0.0000
	              " 0.0000
	              ) 0.0000

            but   484640   1 (23)
	              . 0.0369
	            tub 0.0369
	              I 0.0369
	             be 0.0369
	           buts 0.0369
	             by 0.0369
	            buy 0.0369
	            bus 0.0369
	            the 0.0369
	             iu 0.0369
	            cia 0.0369
	              , 0.0369
	            and 0.0369
	           butt 0.0369
	              - 0.0369
	              a 0.0369
	            but 0.0369
	             bu 0.0369
	             us 0.0369
	           </S> 0.0059
	              " 0.0000
	              } 0.0000
	              ) 0.0000

           Lark   484653   1 (26)
	          Larak 0.0369
	              a 0.0369
	           Lark 0.0369
	          Lakar 0.0369
	            arz 0.0369
	            Lar 0.0369
	         Larkin 0.0369
	           lava 0.0369
	           Lars 0.0369
	           Lara 0.0369
	           sala 0.0369
	          Larks 0.0369
	              T 0.0369
	              . 0.0059
	            for 0.0000
	              - 0.0000
	            are 0.0000
	             of 0.0000
	            man 0.0000
	              , 0.0000
	            and 0.0000
	          child 0.0000
	           part 0.0000
	              I 0.0000
	           </S> 0.0000
	           work 0.0000

       swallows   484658   1 (21)
	        wallows 0.0369
	        sallows 0.0369
	            but 0.0369
	        swallow 0.0369
	       swallows 0.0369
	              a 0.0369
	     swallowers 0.0369
	       swallowe 0.0369
	        battled 0.0369
	         allows 0.0369
	              i 0.0369
	              I 0.0369
	          allow 0.0369
	        follows 0.0369
	           </S> 0.0059
	              , 0.0000
	          Books 0.0000
	              - 0.0000
	    Calandrella 0.0000
	              . 0.0000
	            and 0.0000

         ejects   484701   1 (30)
	         ejecto 0.0369
	        ejectas 0.0369
	              I 0.0369
	        dejects 0.0369
	          jects 0.0369
	         ejects 0.0369
	            its 0.0369
	         ejecta 0.0369
	        ejectes 0.0369
	             us 0.0369
	              - 0.0369
	           past 0.0369
	            the 0.0059
	             be 0.0000
	           that 0.0000
	            not 0.0000
	           will 0.0000
	           were 0.0000
	           </S> 0.0000
	        rejects 0.0000
	            see 0.0000
	           find 0.0000
	          eject 0.0000
	             do 0.0000
	              a 0.0000
	           been 0.0000
	           take 0.0000
	            use 0.0000
	              . 0.0000
	              , 0.0000

          later   484723   1 (26)
	         laters 0.0369
	         latter 0.0369
	          later 0.0369
	          lated 0.0369
	          Pales 0.0369
	          latex 0.0369
	            out 0.0369
	           lava 0.0369
	          major 0.0369
	           late 0.0369
	         latere 0.0369
	              a 0.0369
	              I 0.0369
	           last 0.0369
	           Date 0.0369
	            was 0.0059
	            gun 0.0000
	             to 0.0000
	          stove 0.0000
	              , 0.0000
	              . 0.0000
	             of 0.0000
	              - 0.0000
	           guns 0.0000
	           </S> 0.0000
	          after 0.0000

  insectivorous   484738   2 (22)
	          other 0.1000
	          items 0.0369
	  insectivorous 0.0369
	              a 0.0369
	        service 0.0369
	    information 0.0369
	             as 0.0369
	    insectivora 0.0369
	              I 0.0369
	    insectivore 0.0369
	   insectivores 0.0369
	  Insectivorous 0.0369
	            was 0.0369
	             of 0.0059
	          major 0.0000
	        popular 0.0000
	           </S> 0.0000
	              - 0.0000
	              . 0.0000
	      important 0.0000
	              , 0.0000
	         people 0.0000

           When   484763   1 (21)
	           When 1.0000
	           when 0.3642
	           What 0.0807
	              I 0.0418
	          WhenU 0.0369
	           have 0.0369
	           Whew 0.0369
	          Wehen 0.0369
	          Wheen 0.0369
	         Whenua 0.0369
	              a 0.0369
	            hen 0.0369
	           Whey 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              . 0.0000
	           then 0.0000
	              , 0.0000
	              ) 0.0000

          Larks   484807   1 (25)
	           Lark 0.0369
	         Laarks 0.0369
	           work 0.0369
	          Larks 0.0369
	         Laskar 0.0369
	          Parus 0.0369
	         Lanius 0.0369
	          parva 0.0369
	            are 0.0369
	           arks 0.0369
	       Larksmen 0.0369
	       Larkspur 0.0369
	              a 0.0369
	           part 0.0369
	          Larus 0.0369
	           </S> 0.0059
	              ) 0.0000
	              ] 0.0000
	              " 0.0000
	              A 0.0000
	              . 0.0000
	              , 0.0000
	             '' 0.0000
	              - 0.0000
	              I 0.0000

          would   484813   1 (21)
	         woulda 0.0369
	         Twould 0.0369
	         wouled 0.0369
	          wouls 0.0369
	          could 0.0369
	              g 0.0369
	          would 0.0369
	          wolfi 0.0369
	              a 0.0369
	           woul 0.0369
	              n 0.0369
	          world 0.0369
	              ' 0.0059
	              , 0.0000
	           will 0.0000
	           </S> 0.0000
	              ) 0.0000
	            can 0.0000
	              - 0.0000
	          <UNK> 0.0000
	              . 0.0000

        insects   484875  10 (25)
	        effects 0.7000
	        inserta 0.0369
	        insecta 0.0369
	       insectos 0.0369
	        insecte 0.0369
	        insecti 0.0369
	       insectes 0.0369
	       inspects 0.0369
	            the 0.0059
	            him 0.0000
	              , 0.0000
	           both 0.0000
	        request 0.0000
	              - 0.0000
	              a 0.0000
	             us 0.0000
	        insects 0.0000
	           them 0.0000
	           </S> 0.0000
	              . 0.0000
	          their 0.0000
	             it 0.0000
	         itself 0.0000
	         incest 0.0000
	         insect 0.0000

            and   484885   1 (18)
	              , 0.0369
	            and 0.0369
	             an 0.0369
	              . 0.0369
	            ant 0.0369
	              a 0.0369
	           andy 0.0369
	           anda 0.0369
	            arz 0.0369
	           alba 0.0369
	           aand 0.0369
	              I 0.0369
	             us 0.0369
	            any 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	              " 0.0000

        subsist   484917   1 (28)
	        subsist 0.6000
	             be 0.2000
	             do 0.0945
	             us 0.0369
	       subsists 0.0369
	       subsiste 0.0369
	        sublist 0.0369
	         subsis 0.0369
	            not 0.0369
	          still 0.0369
	       subsisti 0.0369
	            the 0.0059
	            you 0.0000
	            use 0.0000
	           have 0.0000
	              - 0.0000
	              a 0.0000
	        subject 0.0000
	           said 0.0000
	            can 0.0000
	              i 0.0000
	             to 0.0000
	              , 0.0000
	              I 0.0000
	           </S> 0.0000
	             go 0.0000
	            had 0.0000
	              . 0.0000

          seeds   484946   2 (27)
	           seed 0.5460
	          seeds 0.1317
	          needs 0.1000
	         seedas 0.0369
	             up 0.0369
	         seedes 0.0369
	           seds 0.0369
	          seedy 0.0369
	          seede 0.0369
	        seedset 0.0369
	        reseeds 0.0369
	            the 0.0059
	        receipt 0.0000
	           </S> 0.0000
	        payment 0.0000
	        request 0.0000
	              a 0.0000
	              , 0.0000
	              . 0.0000
	              - 0.0000
	             us 0.0000
	          Leeds 0.0000
	            his 0.0000
	     completion 0.0000
	    termination 0.0000
	           need 0.0000
	            see 0.0000

             it   484972   1 (22)
	             us 0.0369
	             is 0.0369
	            ith 0.0369
	              - 0.0369
	            its 0.0369
	             it 0.0369
	            cia 0.0369
	             ti 0.0369
	            iti 0.0369
	              , 0.0369
	              . 0.0369
	              I 0.0369
	             in 0.0369
	             iu 0.0369
	            itt 0.0369
	              a 0.0369
	            iit 0.0369
	           </S> 0.0059
	             '' 0.0000
	              " 0.0000
	              } 0.0000
	              ) 0.0000

         solely   485024   2 (24)
	           some 0.7000
	        solelhs 0.0369
	         solelh 0.0369
	          solly 0.0369
	           time 0.0369
	           sole 0.0369
	           turn 0.0369
	         soyles 0.0369
	         solely 0.0369
	       solemnly 0.0369
	          soyle 0.0369
	         Policy 0.0369
	         soleil 0.0369
	            car 0.0369
	         sorely 0.0369
	              . 0.0059
	             of 0.0000
	           </S> 0.0000
	              - 0.0000
	              I 0.0000
	            and 0.0000
	         should 0.0000
	              , 0.0000
	              a 0.0000

         soaked   485034   9 (23)
	          snake 0.2000
	        stoaked 0.0369
	           Wall 0.0369
	       resoaked 0.0369
	          oaked 0.0369
	         soaken 0.0369
	       unsoaked 0.0369
	            the 0.0059
	           make 0.0000
	              , 0.0000
	          Naked 0.0000
	              a 0.0000
	         soaked 0.0000
	             an 0.0000
	              . 0.0000
	            its 0.0000
	              ' 0.0000
	           some 0.0000
	           this 0.0000
	           </S> 0.0000
	          state 0.0000
	         soaker 0.0000
	              - 0.0000

           ants   485041   1 (29)
	        parties 0.0369
	           ants 0.0369
	     Newspapers 0.0369
	       Watchers 0.0369
	            arz 0.0369
	           alba 0.0369
	          antsa 0.0369
	           ante 0.0369
	           rock 0.0369
	     applicants 0.0369
	            ant 0.0369
	       material 0.0369
	              I 0.0369
	          antsy 0.0369
	           anst 0.0369
	          basis 0.0369
	             in 0.0059
	             us 0.0000
	           with 0.0000
	           anti 0.0000
	              a 0.0000
	             up 0.0000
	           </S> 0.0000
	              - 0.0000
	              , 0.0000
	             an 0.0000
	              . 0.0000
	            any 0.0000
	            and 0.0000

              '   485045   1 (12)
	              ' 1.0000
	            cia 0.0369
	             iu 0.0369
	              , 0.0059
	              ( 0.0000
	            the 0.0000
	              - 0.0000
	              . 0.0000
	             us 0.0000
	            and 0.0000
	           </S> 0.0000
	             of 0.0000

        cocoons   485047   1 (30)
	        cocoons 1.0000
	        beetles 0.0369
	       comments 0.0369
	        cochons 0.0369
	       cocotons 0.0369
	        Affairs 0.0369
	           bees 0.0369
	        Library 0.0369
	         corone 0.0369
	         cocons 0.0369
	        Cocoons 0.0369
	           nest 0.0369
	          nests 0.0369
	       termites 0.0369
	      Priscilla 0.0369
	          found 0.0369
	           </S> 0.0059
	         common 0.0000
	          coons 0.0000
	              ] 0.0000
	         cocoon 0.0000
	              A 0.0000
	              I 0.0000
	              . 0.0000
	              a 0.0000
	              ) 0.0000
	          <UNK> 0.0000
	              , 0.0000
	              s 0.0000
	              - 0.0000

      unnatural   485109   2 (27)
	        natural 0.1419
	         earned 0.0369
	      standards 0.0369
	      Unnatural 0.0369
	      innatural 0.0369
	       received 0.0369
	      unnatural 0.0369
	       possible 0.0369
	          under 0.0369
	         return 0.0369
	         Canada 0.0369
	   unnaturalism 0.0369
	       lunatura 0.0369
	    unnaturally 0.0369
	             of 0.0059
	              ; 0.0000
	              I 0.0000
	         online 0.0000
	              . 0.0000
	           </S> 0.0000
	        program 0.0000
	              , 0.0000
	              - 0.0000
	             in 0.0000
	       programs 0.0000
	              a 0.0000
	              C 0.0000

          Larks   485158   2 (31)
	           Lark 0.5000
	          Larks 0.3532
	          Larus 0.1000
	              , 0.0369
	         Laarks 0.0369
	            and 0.0369
	       Larksmen 0.0369
	      questions 0.0369
	              . 0.0369
	              a 0.0369
	           </S> 0.0059
	           same 0.0037
	           Last 0.0000
	          Large 0.0000
	          world 0.0000
	      following 0.0000
	           arks 0.0000
	          parva 0.0000
	             US 0.0000
	           part 0.0000
	           most 0.0000
	          above 0.0000
	          other 0.0000
	              - 0.0000
	       Larkspur 0.0000
	         Lanius 0.0000
	         Laskar 0.0000
	          first 0.0000
	    information 0.0000
	          Parus 0.0000
	          Links 0.0000

            you   485164   1 (21)
	            yon 0.0369
	            yoy 0.0369
	         listed 0.0369
	              I 0.0369
	            you 0.0369
	             us 0.0369
	            ouy 0.0369
	             iu 0.0369
	            Pyi 0.0369
	            oyu 0.0369
	              a 0.0369
	           yous 0.0369
	           your 0.0369
	            You 0.0369
	             yo 0.0369
	              ' 0.0059
	              . 0.0000
	              , 0.0000
	              - 0.0000
	             of 0.0000
	           </S> 0.0000

       recently   485214   9 (22)
	         recent 0.9000
	     recreantly 0.0369
	              - 0.0369
	       Recently 0.0369
	      credently 0.0369
	           into 0.0369
	     reticently 0.0369
	            the 0.0059
	              . 0.0000
	            you 0.0000
	       recently 0.0000
	           </S> 0.0000
	             he 0.0000
	       required 0.0000
	          their 0.0000
	              i 0.0000
	           only 0.0000
	       decently 0.0000
	              I 0.0000
	              , 0.0000
	              a 0.0000
	           they 0.0000

      branchers   485244  13 (26)
	     branschers 0.0369
	      branchera 0.0369
	              s 0.0369
	             us 0.0369
	     brancheras 0.0369
	         better 0.0369
	           race 0.0369
	          other 0.0369
	      branchery 0.0369
	      Anonymous 0.0369
	              - 0.0235
	           </S> 0.0059
	       ranchers 0.0000
	          <UNK> 0.0000
	       brancher 0.0000
	              , 0.0000
	              1 0.0000
	              a 0.0000
	              A 0.0000
	          There 0.0000
	      branchers 0.0000
	       branches 0.0000
	              I 0.0000
	              . 0.0000
	            and 0.0000
	             as 0.0000

          Larks   485290  20 (30)
	           Last 0.9000
	           part 0.2545
	           arks 0.0369
	         errors 0.0369
	          Parus 0.0369
	         Lanius 0.0369
	          parva 0.0369
	              A 0.0369
	         Laskar 0.0369
	          users 0.0369
	           Lark 0.0369
	       Larkspur 0.0369
	              a 0.0369
	            now 0.0369
	          Larus 0.0369
	       Larksmen 0.0369
	         Laarks 0.0369
	              I 0.0369
	         people 0.0059
	        readers 0.0000
	          Links 0.0000
	          girls 0.0000
	           </S> 0.0000
	              . 0.0000
	            man 0.0000
	         adults 0.0000
	              , 0.0000
	       children 0.0000
	              - 0.0000
	          Larks 0.0000

             it   485330   1 (21)
	              - 0.0369
	             is 0.0369
	              . 0.0369
	             in 0.0369
	             us 0.0369
	            ith 0.0369
	              , 0.0369
	            cia 0.0369
	             ti 0.0369
	            iti 0.0369
	             it 0.0369
	             iu 0.0369
	    responsible 0.0369
	            itt 0.0369
	            its 0.0369
	              a 0.0369
	            iit 0.0369
	           </S> 0.0059
	              ) 0.0000
	              " 0.0000
	              } 0.0000

      branchers   485381   1 (28)
	        animals 0.0369
	        mammals 0.0369
	     branschers 0.0369
	      branchers 0.0369
	              i 0.0369
	       brancher 0.0369
	      branchera 0.0369
	      branchery 0.0369
	     brancheras 0.0369
	          where 0.0369
	            the 0.0059
	           will 0.0000
	             we 0.0000
	       branches 0.0000
	             to 0.0000
	              I 0.0000
	              - 0.0000
	           </S> 0.0000
	          there 0.0000
	          their 0.0000
	              ( 0.0000
	          other 0.0000
	             it 0.0000
	          <UNK> 0.0000
	              , 0.0000
	              a 0.0000
	            you 0.0000
	       ranchers 0.0000

          tamer   485399  14 (32)
	          tames 0.0369
	          Pales 0.0369
	         Passer 0.0369
	      difficult 0.0369
	         tameir 0.0369
	         manual 0.0369
	         tamers 0.0369
	         teamer 0.0369
	         tammer 0.0369
	        tamerai 0.0369
	      confusing 0.0369
	           hard 0.0369
	              a 0.0059
	           held 0.0000
	           take 0.0000
	              - 0.0000
	          found 0.0000
	            the 0.0000
	              . 0.0000
	          tamer 0.0000
	           </S> 0.0000
	          major 0.0000
	           used 0.0000
	              , 0.0000
	        reached 0.0000
	          tamed 0.0000
	           tame 0.0000
	      available 0.0000
	           time 0.0000
	          James 0.0000
	           able 0.0000
	          there 0.0000

      perfectly   485454   1 (23)
	      perfectly 0.3000
	            are 0.0369
	    perfectedly 0.0369
	              - 0.0369
	         people 0.0369
	      prefectly 0.0369
	          major 0.0369
	              e 0.0369
	              I 0.0369
	         really 0.0369
	    imperfectly 0.0369
	    Imperfectly 0.0369
	              a 0.0059
	             an 0.0000
	           </S> 0.0000
	            the 0.0000
	      available 0.0000
	      perfected 0.0000
	              , 0.0000
	        perfect 0.0000
	           more 0.0000
	           part 0.0000
	              . 0.0000

           tame   485464  22 (32)
	           take 0.2000
	           them 0.1000
	         leader 0.0369
	            tam 0.0369
	           lava 0.0369
	           sala 0.0369
	           Baya 0.0369
	              a 0.0369
	           tama 0.0369
	           tami 0.0369
	             up 0.0369
	           team 0.0369
	        popular 0.0369
	          tamer 0.0369
	      justified 0.0369
	       involved 0.0369
	           name 0.0369
	       arranged 0.0369
	             of 0.0369
	          tamme 0.0369
	              . 0.0059
	           tame 0.0000
	           </S> 0.0000
	          tamed 0.0000
	           with 0.0000
	           free 0.0000
	              - 0.0000
	       situated 0.0000
	              , 0.0000
	        located 0.0000
	           time 0.0000
	           well 0.0000

       Appendix   485574   6 (21)
	              - 1.0000
	              , 0.8000
	            And 0.5750
	              A 0.5000
	              I 0.2000
	          nests 0.0369
	           prey 0.0369
	        Apendix 0.0369
	       appendix 0.0369
	         Append 0.0369
	            and 0.0369
	     Appendixia 0.0369
	       Appendix 0.0369
	              a 0.0369
	           </S> 0.0059
	              / 0.0000
	            All 0.0000
	              " 0.0000
	              . 0.0000
	              ) 0.0000
	              ] 0.0000

              .   485582   6 (18)
	             J. 0.1000
	             .. 0.0369
	          .libs 0.0369
	             us 0.0369
	              A 0.0059
	              . 0.0000
	              B 0.0000
	           </S> 0.0000
	              ) 0.0000
	          <UNK> 0.0000
	             A. 0.0000
	            the 0.0000
	              C 0.0000
	              - 0.0000
	              H 0.0000
	             of 0.0000
	            and 0.0000
	              , 0.0000

           WHEN   485585   4 (24)
	             We 0.3532
	           What 0.0807
	              I 0.0418
	           WHEY 0.0369
	            WHE 0.0369
	           WHNE 0.0369
	            WEN 0.0369
	           WHEN 0.0369
	           WEHN 0.0369
	            HEN 0.0369
	              a 0.0369
	           WHEW 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	            The 0.0131
	           </S> 0.0059
	              / 0.0000
	              , 0.0000
	            Web 0.0000
	              . 0.0000
	          <UNK> 0.0000
	              ] 0.0000
	              ) 0.0000

             It   485854   3 (19)
	             In 0.5538
	            Its 0.3584
	             It 0.0900
	             If 0.0570
	              I 0.0418
	             us 0.0369
	            Ito 0.0369
	              a 0.0369
	            cia 0.0369
	             iu 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              . 0.0000
	              ] 0.0000
	              ) 0.0000
	              , 0.0000
	          <UNK> 0.0000

           need   485857   9 (20)
	           near 0.6000
	        follows 0.3000
	          needs 0.2000
	          needy 0.0369
	           nede 0.0369
	           neem 0.0369
	            ned 0.0369
	             is 0.0059
	            new 0.0000
	            net 0.0000
	              - 0.0000
	            was 0.0000
	           </S> 0.0000
	           does 0.0000
	           need 0.0000
	             's 0.0000
	              . 0.0000
	              , 0.0000
	           nees 0.0000
	           next 0.0000

    particulars   485967  13 (23)
	    particulari 0.0369
	         people 0.0369
	       possible 0.0369
	      particula 0.0369
	              w 0.0369
	       pictures 0.0369
	    particulare 0.0369
	   particularis 0.0369
	     particulas 0.0369
	        reviews 0.0369
	   particulares 0.0369
	             of 0.0059
	              . 0.0000
	              , 0.0000
	              a 0.0000
	              - 0.0000
	    particulars 0.0000
	           </S> 0.0000
	     particular 0.0000
	              I 0.0000
	            and 0.0000
	            the 0.0000
	           more 0.0000

     respecting   485979  19 (27)
	            for 0.3000
	            the 0.2989
	         Search 0.1000
	            and 0.0667
	           site 0.0369
	    prospecting 0.0369
	         people 0.0369
	   unrespecting 0.0369
	              a 0.0369
	      respectin 0.0369
	             us 0.0369
	   reinspecting 0.0369
	      respectus 0.0369
	     respeccing 0.0369
	      resecting 0.0369
	     Respecting 0.0369
	     respection 0.0369
	             of 0.0059
	              - 0.0000
	          about 0.0000
	              , 0.0000
	             it 0.0000
	              I 0.0000
	          being 0.0000
	              . 0.0000
	           </S> 0.0000
	     respecting 0.0000

        alreadj   486147  16 (23)
	          aread 0.0369
	              n 0.0369
	           year 0.0369
	       alreadie 0.0369
	              x 0.0369
	       students 0.0369
	        arejada 0.0369
	        alejada 0.0369
	         Alread 0.0369
	        alreeds 0.0369
	              I 0.0369
	            red 0.0369
	          alead 0.0369
	         alejad 0.0369
	             to 0.0059
	              - 0.0000
	            are 0.0000
	           </S> 0.0000
	              . 0.0000
	            and 0.0000
	              , 0.0000
	              ] 0.0000
	        already 0.0000

              '   486154 inf (12)
	            and 0.0369
	            the 0.0369
	            our 0.0369
	             us 0.0369
	              . 0.0369
	           this 0.0369
	             of 0.0369
	              , 0.0369
	           </S> 0.0369
	              - 0.0369
	            cia 0.0369
	             iu 0.0369

            Had   486188   2 (27)
	           Find 0.2000
	            Had 0.1000
	             on 0.0660
	             in 0.0634
	              I 0.0418
	             Ha 0.0369
	           Haad 0.0369
	            cia 0.0369
	            arz 0.0369
	            Hat 0.0369
	            was 0.0369
	           Hadd 0.0369
	            had 0.0369
	              a 0.0369
	             us 0.0369
	           Hadi 0.0369
	           Hada 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ) 0.0000
	            Has 0.0000
	            and 0.0000
	              ] 0.0000
	              . 0.0000
	              , 0.0000

       articles   486206  20 (27)
	        attempt 0.9000
	             of 0.7000
	              a 0.2000
	       articled 0.0369
	      airticles 0.0369
	      artilects 0.0369
	            set 0.0369
	       anticlea 0.0369
	           used 0.0369
	      particles 0.0369
	         prices 0.0369
	    masterpiece 0.0369
	           area 0.0369
	      articules 0.0369
	              I 0.0369
	           done 0.0369
	        process 0.0369
	      Particles 0.0369
	              , 0.0059
	       articles 0.0000
	              - 0.0000
	        article 0.0000
	            job 0.0000
	      restraint 0.0000
	         effort 0.0000
	              . 0.0000
	           </S> 0.0000

        Messrs.   486251   1 (24)
	         Messrs 0.4000
	         messrs 0.1000
	           </S> 0.1000
	              I 0.0369
	           Best 0.0369
	             by 0.0369
	              ] 0.0369
	         Wright 0.0369
	        William 0.0369
	             us 0.0369
	           were 0.0369
	            the 0.0059
	           John 0.0000
	              a 0.0000
	         Robert 0.0000
	          Messr 0.0000
	              e 0.0000
	         Messer 0.0000
	              - 0.0000
	              : 0.0000
	              , 0.0000
	        Messers 0.0000
	        Message 0.0000
	              . 0.0000

       Witherby   486265   3 (23)
	          White 0.7000
	         Either 0.5000
	        thereby 0.0369
	       Wetherby 0.0369
	      Witherley 0.0369
	             M. 0.0369
	              M 0.0369
	         either 0.0369
	       Witherby 0.0369
	      Whetherby 0.0369
	         Wither 0.0369
	      Bancilhon 0.0369
	             J. 0.0369
	              , 0.0059
	        Withers 0.0000
	             C. 0.0000
	           </S> 0.0000
	          <UNK> 0.0000
	              A 0.0000
	         Thomas 0.0000
	        Kennedy 0.0000
	              . 0.0000
	              - 0.0000

             F.   486281 inf (25)
	             FM 0.7000
	             FF 0.2000
	         nobody 0.0369
	       Spyratos 0.0369
	             iu 0.0369
	         Sloane 0.0369
	       Sadooghi 0.0369
	              I 0.0369
	            cia 0.0369
	              a 0.0369
	             us 0.0369
	             Fi 0.0369
	              , 0.0059
	            and 0.0000
	             FL 0.0000
	            the 0.0000
	          <UNK> 0.0000
	           </S> 0.0000
	             .. 0.0000
	              - 0.0000
	              A 0.0000
	            For 0.0000
	             of 0.0000
	             to 0.0000
	              . 0.0000

      Ticehurst   486284   1 (17)
	      Pinehurst 0.0369
	    Micklehurst 0.0369
	       Akehurst 0.0369
	      Tilehurst 0.0369
	       sicherst 0.0369
	      Ticehurst 0.0369
	      Eichhorst 0.0369
	           have 0.0369
	            has 0.0369
	       Tolhurst 0.0369
	              , 0.0059
	        Kennedy 0.0000
	              . 0.0000
	             C. 0.0000
	              A 0.0000
	           </S> 0.0000
	              - 0.0000

           been   486294   2 (22)
	           </S> 0.3750
	              M 0.0369
	          beene 0.0369
	          beent 0.0369
	            ben 0.0369
	             J. 0.0369
	            bee 0.0369
	             be 0.0369
	           beef 0.0369
	           bene 0.0369
	          Aedon 0.0369
	           been 0.0369
	              a 0.0369
	           best 0.0369
	           beer 0.0369
	             A. 0.0369
	              F 0.0369
	              , 0.0059
	            and 0.0000
	              - 0.0000
	              . 0.0000
	          House 0.0000

       inclttde   486357  16 (30)
	        incited 0.2000
	        inclita 0.0369
	       includet 0.0369
	       inclitus 0.0369
	        incotte 0.0369
	       inclitae 0.0369
	             in 0.0369
	           </S> 0.0369
	           just 0.0369
	        inclite 0.0369
	              , 0.0369
	         inclut 0.0369
	          incle 0.0369
	              . 0.0369
	            the 0.0059
	             do 0.0000
	           view 0.0000
	            get 0.0000
	           have 0.0000
	       included 0.0000
	           take 0.0000
	             be 0.0000
	        include 0.0000
	       includes 0.0000
	            see 0.0000
	         inclue 0.0000
	              a 0.0000
	             us 0.0000
	            use 0.0000
	            its 0.0000

            all   486366   1 (21)
	           sala 0.0369
	              - 0.0369
	            ala 0.0369
	            and 0.0369
	            alt 0.0369
	              , 0.0369
	           alba 0.0369
	            als 0.0369
	            arz 0.0369
	           </S> 0.0369
	              . 0.0369
	              a 0.0369
	              I 0.0369
	            are 0.0369
	             al 0.0369
	             of 0.0369
	            the 0.0369
	           ally 0.0369
	           alle 0.0369
	            all 0.0369
	             it 0.0369

       vagrants   486376  15 (26)
	       Vagrants 0.0369
	             of 0.0369
	            the 0.0369
	    vagrantness 0.0369
	     vagrantism 0.0369
	              - 0.0369
	              I 0.0369
	             us 0.0369
	       comments 0.0369
	        vagante 0.0369
	        reviews 0.0369
	           jobs 0.0369
	              a 0.0369
	            are 0.0059
	       vagrants 0.0000
	           </S> 0.0000
	       variants 0.0000
	          years 0.0000
	       students 0.0000
	        vagrant 0.0000
	              . 0.0000
	              , 0.0000
	          great 0.0000
	         people 0.0000
	         things 0.0000
	        changes 0.0000

      gentlemen   486665  14 (27)
	       problems 0.7000
	         period 0.0369
	      Gentlemen 0.0369
	       Internet 0.0369
	    impairments 0.0369
	        Menemen 0.0369
	         online 0.0369
	     gentlemens 0.0369
	             us 0.0369
	       entities 0.0369
	         people 0.0369
	       websites 0.0369
	             in 0.0059
	      gentleman 0.0000
	              - 0.0000
	        earlier 0.0000
	      gentlemen 0.0000
	              ) 0.0000
	          above 0.0000
	              . 0.0000
	              a 0.0000
	              I 0.0000
	              , 0.0000
	           </S> 0.0000
	           here 0.0000
	          areas 0.0000
	          <UNK> 0.0000

             As   486677   2 (23)
	             At 0.3536
	             As 0.2611
	            All 0.1921
	              I 0.0418
	            Ass 0.0369
	             AM 0.0369
	             us 0.0369
	             sA 0.0369
	             iu 0.0369
	            cia 0.0369
	            AAs 0.0369
	              a 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              . 0.0000
	              ] 0.0000
	             is 0.0000
	              , 0.0000
	              ) 0.0000
	             as 0.0000
	            Ask 0.0000

     considered   486712   1 (21)
	     considered 0.1000
	        contact 0.0369
	   reconsidered 0.0369
	     consideren 0.0369
	     consideres 0.0369
	          order 0.0369
	   consideredly 0.0369
	              a 0.0369
	      considere 0.0369
	     considerer 0.0369
	             of 0.0059
	              , 0.0000
	           </S> 0.0000
	             to 0.0000
	              V 0.0000
	              : 0.0000
	              I 0.0000
	        control 0.0000
	              - 0.0000
	             in 0.0000
	              . 0.0000

       visitors   486773  18 (27)
	           </S> 0.3833
	       business 0.0369
	      visitours 0.0369
	     viscivorus 0.0369
	       visitour 0.0369
	           very 0.0369
	          comes 0.0369
	           most 0.0369
	     visitators 0.0369
	           site 0.0369
	          major 0.0369
	       visiters 0.0369
	       visitobs 0.0369
	     revisitors 0.0369
	       Visitors 0.0369
	             to 0.0059
	              . 0.0045
	        visitor 0.0000
	       visitors 0.0000
	              a 0.0000
	              - 0.0000
	           came 0.0000
	            and 0.0000
	              , 0.0000
	             of 0.0000
	              A 0.0000
	              I 0.0000

         remedv   486843  12 (29)
	         recent 0.6000
	             my 0.3683
	           emed 0.0369
	        vermede 0.0369
	           ered 0.0369
	           </S> 0.0369
	         remede 0.0369
	         review 0.0369
	      remediava 0.0369
	         remeda 0.0369
	            the 0.0059
	             do 0.0000
	       increase 0.0000
	           read 0.0000
	            add 0.0000
	         reduce 0.0000
	          reads 0.0000
	         refers 0.0000
	            use 0.0000
	            see 0.0000
	             be 0.0000
	        removed 0.0000
	           find 0.0000
	         remedy 0.0000
	           take 0.0000
	              a 0.0000
	            eme 0.0000
	             us 0.0000
	            get 0.0000

    deficienc}'   486854  11 (26)
	           work 0.2950
	           text 0.0369
	          night 0.0369
	        details 0.0369
	         review 0.0369
	    deficientis 0.0369
	      deficiens 0.0369
	        service 0.0369
	    deficiencia 0.0369
	           </S> 0.0059
	          <UNK> 0.0000
	           same 0.0000
	              - 0.0000
	         people 0.0000
	     deficience 0.0000
	     deficiency 0.0000
	              " 0.0000
	    deficiences 0.0000
	          world 0.0000
	        problem 0.0000
	    information 0.0000
	            way 0.0000
	      following 0.0000
	              ' 0.0000
	      deficient 0.0000
	          first 0.0000

           here   486866   1 (22)
	           herb 0.0369
	           were 0.0369
	           here 0.0369
	           such 0.0369
	            her 0.0369
	        hererer 0.0369
	           herr 0.0369
	              - 0.0369
	             of 0.0369
	            arz 0.0369
	          heren 0.0369
	            and 0.0369
	           heer 0.0369
	         herere 0.0369
	           </S> 0.0369
	          heres 0.0369
	              I 0.0369
	              , 0.0369
	              . 0.0369
	              ( 0.0369
	           hero 0.0369
	              a 0.0369

      published   486948  14 (22)
	              . 0.2892
	    Unpublished 0.0369
	         number 0.0369
	              I 0.0369
	      publisher 0.0369
	    depublishes 0.0369
	    depublished 0.0369
	              a 0.0369
	         people 0.0369
	    unpublished 0.0369
	             of 0.0369
	       business 0.0369
	       changing 0.0059
	              , 0.0000
	           </S> 0.0000
	            and 0.0000
	      publishes 0.0000
	              - 0.0000
	             in 0.0000
	     increasing 0.0000
	      published 0.0000
	       evolving 0.0000

         Family   486983   1 (22)
	         Family 0.9834
	              I 0.0418
	       Familypc 0.0369
	       FamilyPC 0.0369
	         family 0.0369
	              s 0.0369
	           mail 0.0369
	         Famila 0.0369
	         Famill 0.0369
	        Faimily 0.0369
	              a 0.0369
	        Familly 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ) 0.0000
	              , 0.0000
	              / 0.0000
	              . 0.0000
	              ] 0.0000
	             '' 0.0000

        TURDID^   486991 inf (30)
	         TARDIS 0.7000
	              a 0.5167
	            Dec 0.1000
	     crests.com 0.0369
	           side 0.0369
	           Prom 0.0369
	       Friendly 0.0369
	              , 0.0369
	           TURI 0.0369
	       friendly 0.0369
	              s 0.0369
	              p 0.0369
	          TDIDF 0.0369
	            rev 0.0369
	          GUDID 0.0369
	         TURYID 0.0369
	          TRIDA 0.0369
	            Vol 0.0369
	           </S> 0.0059
	          <UNK> 0.0000
	             to 0.0000
	             up 0.0000
	            The 0.0000
	              - 0.0000
	              I 0.0000
	            the 0.0000
	              A 0.0000
	           time 0.0000
	              . 0.0000
	             In 0.0000

              .   486998   1 (12)
	              , 0.0369
	              . 0.0369
	           </S> 0.0369
	             of 0.0369
	            and 0.0369
	              ( 0.0369
	            ... 0.0369
	              - 0.0369
	            the 0.0369
	             us 0.0369
	            cia 0.0369
	             iu 0.0369

      Subfamih-   487001   1 (16)
	         Sufami 0.0369
	      Sulfamide 0.0369
	      Sulfamine 0.0369
	      subfamily 0.0369
	      Subfamily 0.0369
	           </S> 0.0059
	              . 0.0000
	              I 0.0000
	              , 0.0000
	              / 0.0000
	              A 0.0000
	              ] 0.0000
	              " 0.0000
	             So 0.0000
	              - 0.0000
	              ) 0.0000

       TURDINyF   487011 inf (20)
	              g 0.0369
	         README 0.0369
	     regress.sh 0.0369
	              a 0.0369
	       THANKYOU 0.0369
	              ) 0.0369
	           BUGS 0.0369
	        COPYING 0.0369
	              . 0.0369
	    MAINTAINERS 0.0369
	           </S> 0.0369
	          <UNK> 0.0369
	      ChangeLog 0.0369
	           TODO 0.0369
	              , 0.0369
	              n 0.0369
	        INSTALL 0.0369
	         THANKS 0.0369
	              - 0.0369
	        AUTHORS 0.0369

              .   487019 inf (8)
	             of 0.0369
	             to 0.0369
	             us 0.0369
	            and 0.0369
	             in 0.0369
	            the 0.0369
	            cia 0.0369
	             iu 0.0369

          Dusky   487026 inf (26)
	           Dusk 0.6000
	       Darkling 0.0369
	     Associated 0.0369
	         Dyosku 0.0369
	              ) 0.0369
	          Dusko 0.0369
	          Duska 0.0369
	            KDE 0.0369
	              / 0.0369
	        Dusniky 0.0369
	         Duisky 0.0369
	           </S> 0.0059
	             us 0.0000
	              ( 0.0000
	           Duke 0.0000
	           Disc 0.0000
	          World 0.0000
	          Music 0.0000
	          first 0.0000
	          <UNK> 0.0000
	              - 0.0000
	          Dusty 0.0000
	           just 0.0000
	          Dutch 0.0000
	           must 0.0000
	      following 0.0000

        Turdiis   487041   4 (33)
	             In 0.5538
	            For 0.2625
	              I 0.0418
	           diis 0.0369
	          Turis 0.0369
	        Kurdish 0.0369
	           Turd 0.0369
	       Taridius 0.0369
	              a 0.0369
	        Taurids 0.0369
	        Turkish 0.0369
	       Turdidae 0.0369
	       Turgidus 0.0369
	         Turdus 0.0369
	        sardiis 0.0369
	          Turds 0.0369
	           urdi 0.0369
	         Burdis 0.0369
	         murdis 0.0369
	        Turdoid 0.0369
	          urdis 0.0369
	        Turning 0.0369
	         Turdas 0.0369
	        Turdiev 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ] 0.0000
	              / 0.0000
	              . 0.0000
	              ) 0.0000
	              , 0.0000

        dubiiis   487049   1 (24)
	              - 0.0369
	           </S> 0.0369
	         dubius 0.0369
	          <UNK> 0.0369
	        dubitis 0.0369
	        dubigis 0.0369
	         duties 0.0369
	              . 0.0369
	              a 0.0369
	              ) 0.0369
	        dubniis 0.0369
	         dubiis 0.0369
	              , 0.0369
	        nubicus 0.0369
	           dubi 0.0369
	         debris 0.0369
	        submits 0.0369
	          dubii 0.0369
	          dubis 0.0369
	vareSelskap.cgi 0.0369
	              n 0.0369
	         rubiis 0.0369
	              I 0.0369
	      configure 0.0369

              ,   487056 inf (8)
	             of 0.0369
	             to 0.0369
	             us 0.0369
	            and 0.0369
	             in 0.0369
	            the 0.0369
	            cia 0.0369
	             iu 0.0369

         BechsT   487058 inf (26)
	             pp 0.1857
	              { 0.0369
	              x 0.0369
	          Beche 0.0369
	         Becher 0.0369
	          Besch 0.0369
	        Bechers 0.0369
	           Bech 0.0369
	        Beeches 0.0369
	   respectively 0.0369
	         Bechet 0.0369
	          BTech 0.0369
	           Becs 0.0369
	          Becho 0.0369
	         Buechs 0.0369
	           this 0.0186
	            the 0.0059
	          which 0.0012
	             or 0.0000
	             of 0.0000
	          these 0.0000
	             to 0.0000
	              e 0.0000
	           each 0.0000
	            too 0.0000
	              i 0.0000

              .   487064   1 (11)
	             iu 0.0369
	             of 0.0369
	           </S> 0.0369
	            ... 0.0369
	              , 0.0369
	            and 0.0369
	            cia 0.0369
	             us 0.0369
	              . 0.0369
	              - 0.0369
	            the 0.0369

             NE   487067 inf (25)
	           This 0.3358
	             No 0.1700
	             NY 0.1327
	            Now 0.0765
	              I 0.0418
	             EN 0.0369
	             NE 0.0369
	             iu 0.0369
	            cia 0.0369
	             us 0.0369
	            NEE 0.0369
	            NNE 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ] 0.0000
	            New 0.0000
	              . 0.0000
	          <UNK> 0.0000
	            NEW 0.0000
	            NET 0.0000
	              ) 0.0000
	              / 0.0000
	              , 0.0000

       specimen   487070   2 (20)
	              - 0.1000
	      configure 0.0369
	              a 0.0369
	        species 0.0369
	      specimens 0.0369
	      specimeno 0.0369
	      specimine 0.0369
	       specimen 0.0369
	           This 0.0369
	       specific 0.0369
	        special 0.0369
	           that 0.0369
	          round 0.0369
	           </S> 0.0059
	              E 0.0000
	              . 0.0000
	          <UNK> 0.0000
	              , 0.0000
	              N 0.0000
	              ) 0.0000

      Gunthorpe   487110   3 (23)
	             by 0.5000
	              - 0.2333
	      Ganthorpe 0.0369
	      Nunthorpe 0.0369
	      Dunthorpe 0.0369
	      Gunthorpe 0.0369
	        another 0.0369
	    Greenthorpe 0.0369
	        Gunthor 0.0369
	          other 0.0369
	        Gunther 0.0369
	            the 0.0059
	         future 0.0000
	              . 0.0000
	           </S> 0.0000
	              a 0.0000
	          there 0.0000
	           term 0.0000
	             us 0.0000
	              I 0.0000
	            you 0.0000
	             it 0.0000
	              , 0.0000

          Notts   487121   3 (22)
	            Not 0.4831
	              I 0.0418
	          Noots 0.0369
	           Nott 0.0369
	          Notts 0.0369
	          Sitta 0.0369
	          Notte 0.0369
	          Nottm 0.0369
	          Notos 0.0369
	          North 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              , 0.0000
	           Note 0.0000
	              / 0.0000
	          <UNK> 0.0000
	              ] 0.0000
	              ) 0.0000
	              . 0.0000
	              \ 0.0000

              .   487126  10 (18)
	          <UNK> 1.0000
	            ... 0.1000
	vareSelskap.cgi 0.0369
	            cia 0.0369
	             us 0.0369
	             of 0.0369
	      configure 0.0369
	             .. 0.0369
	         County 0.0059
	              ) 0.0000
	             Co 0.0000
	           </S> 0.0000
	            the 0.0000
	              . 0.0000
	             C. 0.0000
	              , 0.0000
	              - 0.0000
	            and 0.0000

           1905   487146 inf (24)
	              I 0.0369
	           1990 0.0369
	   respectively 0.0369
	           2004 0.0369
	              " 0.0369
	          <UNK> 0.0369
	           1985 0.0369
	           2005 0.0369
	           1950 0.0369
	           </S> 0.0369
	              a 0.0369
	            and 0.0369
	           1995 0.0369
	           2003 0.0369
	           1975 0.0369
	           1919 0.0369
	           1999 0.0369
	            the 0.0059
	             or 0.0000
	            too 0.0000
	          which 0.0000
	             pp 0.0000
	              i 0.0000
	             of 0.0000

     Stornowa}-   487198   3 (27)
	             to 0.2000
	       Saturday 0.1000
	          beach 0.0369
	       Broadway 0.0369
	             us 0.0369
	        Science 0.0369
	            now 0.0369
	      Stornaway 0.0369
	      Stornoway 0.0369
	     technology 0.0369
	         terror 0.0369
	            the 0.0059
	         Sunday 0.0000
	              , 0.0000
	           them 0.0000
	        Windows 0.0000
	         Friday 0.0000
	              a 0.0000
	        another 0.0000
	        Tuesday 0.0000
	              - 0.0000
	             me 0.0000
	           this 0.0000
	         Monday 0.0000
	              . 0.0000
	        average 0.0000
	           </S> 0.0000

          Outer   487210   1 (27)
	            Our 0.0369
	        Outerra 0.0369
	              " 0.0369
	          Outre 0.0369
	          Outer 0.0369
	         Outler 0.0369
	           </S> 0.0369
	       Outernet 0.0369
	          Outen 0.0369
	          Outed 0.0369
	         Ouster 0.0369
	              a 0.0369
	            and 0.0369
	        January 0.0369
	          <UNK> 0.0369
	          Other 0.0369
	              I 0.0369
	          Oture 0.0369
	          after 0.0369
	            the 0.0059
	          which 0.0012
	           uter 0.0000
	            who 0.0000
	        without 0.0000
	             or 0.0000
	              i 0.0000
	            you 0.0000

          White   487284   2 (21)
	           What 0.4000
	              a 0.0369
	          White 0.0369
	         Withee 0.0369
	          Whitt 0.0369
	          Whity 0.0369
	           Whit 0.0369
	          Withe 0.0369
	         Whites 0.0369
	         Whitey 0.0369
	           </S> 0.0059
	              " 0.0000
	              I 0.0000
	              A 0.0000
	           When 0.0000
	              . 0.0000
	              ] 0.0000
	           With 0.0000
	              - 0.0000
	              , 0.0000
	              ) 0.0000

             's   487289   6 (17)
	             us 0.1000
	             iu 0.0369
	            cia 0.0369
	             '' 0.0369
	           </S> 0.0059
	          Pages 0.0000
	          House 0.0000
	             's 0.0000
	         Papers 0.0000
	              , 0.0000
	             is 0.0000
	             so 0.0000
	              - 0.0000
	              ' 0.0000
	              T 0.0000
	              . 0.0000
	             as 0.0000

           i8th   487352  11 (27)
	              . 0.6000
	             iu 0.0369
	              I 0.0369
	           ioth 0.0369
	          Sitta 0.0369
	              a 0.0369
	            ith 0.0369
	           iath 0.0369
	            iht 0.0369
	           2005 0.0059
	           2004 0.0000
	             31 0.0000
	           into 0.0000
	            its 0.0000
	             15 0.0000
	           </S> 0.0000
	           18th 0.0000
	              2 0.0000
	              - 0.0000
	            the 0.0000
	           with 0.0000
	            and 0.0000
	            8th 0.0000
	              , 0.0000
	              8 0.0000
	           28th 0.0000
	              1 0.0000

           1902   487358 inf (24)
	           1990 0.0369
	              " 0.0369
	           2005 0.0369
	              I 0.0369
	   respectively 0.0369
	           1992 0.0369
	          <UNK> 0.0369
	           2004 0.0369
	           1999 0.0369
	              a 0.0369
	              ( 0.0369
	           1982 0.0369
	           1903 0.0369
	           2001 0.0369
	           </S> 0.0369
	           2003 0.0369
	            and 0.0369
	            the 0.0059
	             or 0.0000
	              i 0.0000
	          which 0.0000
	             pp 0.0000
	            too 0.0000
	             of 0.0000

            now   487379   1 (27)
	            now 0.3000
	              ( 0.1000
	             us 0.0369
	            non 0.0369
	           nowe 0.0369
	              I 0.0369
	            cia 0.0369
	          minor 0.0369
	        species 0.0369
	            own 0.0369
	             DT 0.0369
	           nowt 0.0369
	           nowo 0.0369
	             no 0.0369
	            not 0.0369
	            dog 0.0369
	           </S> 0.0059
	      Blackbird 0.0000
	            new 0.0000
	             of 0.0000
	              . 0.0000
	              - 0.0000
	              , 0.0000
	         Papers 0.0000
	             is 0.0000
	             at 0.0000
	          Sings 0.0000

          Ouzel   487432   1 (32)
	          Ouzel 0.8000
	           Ozel 0.1067
	          Orzel 0.1000
	          Ouzes 0.0369
	          Ouzle 0.0369
	           this 0.0369
	              s 0.0369
	       wrapping 0.0369
	           uzel 0.0369
	             he 0.0369
	           that 0.0369
	        Ouazele 0.0369
	       Extended 0.0369
	Gotterdammerung 0.0369
	          which 0.0369
	              - 0.0079
	           </S> 0.0059
	             up 0.0000
	              A 0.0000
	            One 0.0000
	            Our 0.0000
	              a 0.0000
	            The 0.0000
	           mail 0.0000
	          <UNK> 0.0000
	            the 0.0000
	             to 0.0000
	              I 0.0000
	          Other 0.0000
	             it 0.0000
	              . 0.0000
	              ) 0.0000

         Family   487500   1 (20)
	         Family 0.9834
	              I 0.0418
	        Faimily 0.0369
	         family 0.0369
	         Famila 0.0369
	         Famill 0.0369
	       Familypc 0.0369
	              a 0.0369
	        Familly 0.0369
	       FamilyPC 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              . 0.0000
	              / 0.0000
	              ) 0.0000
	              , 0.0000
	           File 0.0000
	              ] 0.0000

             Ti   487508 inf (29)
	             Ti 0.4083
	             is 0.2318
	            Tii 0.2000
	       Friendly 0.0369
	              v 0.0369
	              i 0.0369
	              , 0.0369
	       friendly 0.0369
	           ungz 0.0369
	         lovers 0.0369
	              s 0.0369
	  Accommodation 0.0369
	              - 0.0079
	           </S> 0.0059
	             to 0.0000
	            Tim 0.0000
	            Tip 0.0000
	              A 0.0000
	             To 0.0000
	             iu 0.0000
	              . 0.0000
	             in 0.0000
	             up 0.0000
	             on 0.0000
	              a 0.0000
	              I 0.0000
	             us 0.0000
	          <UNK> 0.0000
	            the 0.0000

              '   487511   6 (14)
	            're 0.0369
	             iu 0.0369
	            cia 0.0369
	             us 0.0369
	              - 0.0059
	              , 0.0000
	             of 0.0000
	            the 0.0000
	             's 0.0000
	              . 0.0000
	              ' 0.0000
	              : 0.0000
	            and 0.0000
	           </S> 0.0000

           RDID   487512 inf (26)
	           RAID 0.4000
	            RID 0.3000
	           Real 0.1000
	            IDI 0.1000
	           love 0.0369
	           DRIR 0.0369
	         option 0.0369
	           RDIS 0.0369
	           </S> 0.0059
	          <UNK> 0.0000
	              , 0.0000
	              - 0.0000
	         button 0.0000
	             em 0.0000
	              . 0.0000
	              s 0.0000
	            RDI 0.0000
	             Re 0.0000
	              A 0.0000
	              ) 0.0000
	           RFID 0.0000
	              a 0.0000
	              I 0.0000
	           Read 0.0000
	            DID 0.0000
	            RDD 0.0000

              .   487516   3 (15)
	              , 0.6000
	           </S> 0.1000
	              ' 0.0369
	            the 0.0369
	             of 0.0369
	              s 0.0369
	            ... 0.0369
	            cia 0.0369
	            and 0.0369
	              . 0.0369
	             us 0.0369
	              - 0.0369
	              | 0.0059
	              ) 0.0000
	           .... 0.0000

             E.   487518 inf (20)
	             in 0.0634
	              I 0.0418
	            EEE 0.0369
	             iu 0.0369
	            cia 0.0369
	             us 0.0369
	             EU 0.0369
	             EE 0.0369
	              A 0.0328
	             to 0.0265
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	             Ed 0.0000
	              ] 0.0000
	             El 0.0000
	              , 0.0000
	              . 0.0000
	             of 0.0000
	              ) 0.0000

    Subfaniily-   487522   2 (18)
	              ' 0.3000
	        Stanley 0.0369
	         Sanger 0.0369
	           Brog 0.0369
	      Subfamily 0.0369
	              , 0.0059
	              - 0.0000
	          <UNK> 0.0000
	              ) 0.0000
	            and 0.0000
	              A 0.0000
	              . 0.0000
	            Van 0.0000
	           coli 0.0000
	          Smith 0.0000
	          State 0.0000
	    Publication 0.0000
	           </S> 0.0000

             TL   487534 inf (22)
	           </S> 0.0369
	            Top 0.0369
	              . 0.0369
	             LT 0.0369
	              a 0.0369
	             TV 0.0369
	             us 0.0369
	              M 0.0369
	            Bud 0.0369
	            TLL 0.0369
	             A. 0.0369
	            TTL 0.0369
	            TLS 0.0369
	              D 0.0369
	              - 0.0369
	             TL 0.0369
	             To 0.0369
	            The 0.0369
	             J. 0.0369
	          Chuck 0.0369
	              , 0.0369
	            TLC 0.0369

              '   487537   4 (14)
	             J. 0.0369
	            cia 0.0369
	              , 0.0059
	              . 0.0000
	              - 0.0000
	           </S> 0.0000
	              ' 0.0000
	            and 0.0000
	             's 0.0000
	             et 0.0000
	              ( 0.0000
	             of 0.0000
	             us 0.0000
	            the 0.0000

           RUIN   487538 inf (30)
	            RUI 0.2000
	            UIN 0.1667
	           Real 0.1000
	           UNIR 0.0369
	             al 0.0369
	           RLIN 0.0369
	             E. 0.0369
	           RUIM 0.0369
	           IRUN 0.0369
	          FURIN 0.0369
	          Maint 0.0369
	           </S> 0.0059
	              . 0.0000
	              s 0.0000
	              a 0.0000
	              - 0.0000
	         button 0.0000
	              ) 0.0000
	            the 0.0000
	              A 0.0000
	              , 0.0000
	            RIN 0.0000
	             em 0.0000
	              I 0.0000
	            RUN 0.0000
	          <UNK> 0.0000
	           Read 0.0000
	           RAIN 0.0000
	             it 0.0000
	             Re 0.0000

              .   487542   7 (16)
	             of 0.0467
	            cia 0.0369
	          other 0.0369
	              s 0.0369
	             us 0.0369
	           </S> 0.0059
	              ( 0.0000
	              . 0.0000
	            the 0.0000
	           THIS 0.0000
	            ... 0.0000
	              ' 0.0000
	              - 0.0000
	              , 0.0000
	            THE 0.0000
	            and 0.0000

              E   487544 inf (26)
	             RE 0.0369
	             ME 0.0369
	             DE 0.0369
	             EU 0.0369
	             EE 0.0369
	            cia 0.0369
	             iu 0.0369
	       PETITION 0.0369
	            EEE 0.0369
	       FORMULAS 0.0369
	             us 0.0369
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	             of 0.0000
	              ) 0.0000
	             Ed 0.0000
	             El 0.0000
	              ] 0.0000
	          <UNK> 0.0000
	              \ 0.0000
	            the 0.0000
	            and 0.0000
	              , 0.0000
	              . 0.0000
	              / 0.0000

       Saxicola   487575   1 (23)
	       Sanicula 0.0369
	        Sarcoma 0.0369
	         Savola 0.0369
	        Sixaola 0.0369
	    Saxicolella 0.0369
	       saxicola 0.0369
	       Saxicola 0.0369
	      Sannicola 0.0369
	    Saxicolinae 0.0369
	       rubicola 0.0369
	      saxicolam 0.0369
	           </S> 0.0059
	              , 0.0000
	              ] 0.0000
	            For 0.0000
	              I 0.0000
	              / 0.0000
	              A 0.0000
	              . 0.0000
	              - 0.0000
	             In 0.0000
	              " 0.0000
	              ) 0.0000

      shipazina   487584 inf (30)
	          <UNK> 0.2000
	       shipling 0.0369
	              . 0.0369
	              n 0.0369
	              a 0.0369
	      configure 0.0369
	       shipping 0.0369
	         spaina 0.0369
	        spazino 0.0369
	         spazia 0.0369
	       shikazan 0.0369
	              ) 0.0369
	         hazina 0.0369
	          share 0.0369
	              - 0.0369
	      quipazine 0.0369
	      Quipazine 0.0369
	       simazina 0.0369
	      hidrazina 0.0369
	        million 0.0369
	vareSelskap.cgi 0.0369
	              I 0.0369
	       torquata 0.0059
	       Saxicola 0.0000
	       rubicola 0.0000
	        rubetra 0.0000
	          maura 0.0000
	              , 0.0000
	        caprata 0.0000
	           </S> 0.0000

              ,   487593   1 (12)
	             us 0.0369
	              . 0.0369
	          genus 0.0369
	            and 0.0369
	              - 0.0369
	              ) 0.0369
	            the 0.0369
	              , 0.0369
	           </S> 0.0369
	            cia 0.0369
	             iu 0.0369
	             of 0.0369

           LiNN   487595 inf (25)
	             pp 0.1857
	              { 0.0369
	   respectively 0.0369
	           LiON 0.0369
	            NiL 0.0369
	            cia 0.0369
	           Pica 0.0369
	          Links 0.0369
	            LNN 0.0369
	           List 0.0369
	              x 0.0369
	          LLiNK 0.0369
	             Li 0.0369
	           LiNK 0.0369
	           LiNa 0.0369
	           with 0.0062
	            the 0.0059
	          which 0.0012
	              i 0.0000
	              e 0.0000
	            too 0.0000
	             or 0.0000
	             iu 0.0000
	             to 0.0000
	             of 0.0000

              .   487599   1 (11)
	             iu 0.0369
	             of 0.0369
	           </S> 0.0369
	            ... 0.0369
	              , 0.0369
	            and 0.0369
	            cia 0.0369
	             us 0.0369
	              . 0.0369
	              - 0.0369
	            the 0.0369

              A   487602  11 (22)
	           This 0.3358
	             As 0.2611
	            cia 0.0369
	             iu 0.0369
	             PA 0.0369
	             CA 0.0369
	             AA 0.0369
	             us 0.0369
	             AM 0.0369
	            AAA 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              , 0.0000
	              ) 0.0000
	             of 0.0000
	            the 0.0000
	              ] 0.0000
	              . 0.0000
	              / 0.0000
	            and 0.0000

           1902   487654 inf (25)
	              " 0.0369
	              a 0.0369
	           </S> 0.0369
	           1982 0.0369
	           2004 0.0369
	          <UNK> 0.0369
	           2006 0.0369
	           1992 0.0369
	              I 0.0369
	           1972 0.0369
	             02 0.0369
	           2005 0.0369
	           2003 0.0369
	            and 0.0369
	           1990 0.0369
	           1920 0.0369
	           1999 0.0369
	      therefore 0.0369
	            the 0.0059
	         though 0.0000
	             or 0.0000
	            too 0.0000
	              i 0.0000
	             of 0.0000
	          which 0.0000

           1905   487676 inf (20)
	           2002 0.8000
	           2003 0.1000
	            the 0.1000
	             19 0.0369
	             th 0.0369
	              a 0.0369
	           1995 0.0369
	              I 0.0369
	           1945 0.0369
	           1990 0.0369
	             05 0.0369
	              , 0.0059
	        January 0.0000
	           2004 0.0000
	             of 0.0000
	           </S> 0.0000
	              . 0.0000
	           2005 0.0000
	              - 0.0000
	            and 0.0000

        another   487682   1 (29)
	       anothers 0.0369
	              " 0.0369
	          Other 0.0369
	           2005 0.0369
	           </S> 0.0369
	     oneanother 0.0369
	              , 0.0369
	              ( 0.0369
	         anther 0.0369
	              s 0.0369
	             d. 0.0369
	              I 0.0369
	        anither 0.0369
	           2006 0.0369
	        another 0.0369
	            and 0.0369
	          <UNK> 0.0369
	          after 0.0369
	            the 0.0059
	          which 0.0012
	      oenothera 0.0000
	            who 0.0000
	         nother 0.0000
	          other 0.0000
	             it 0.0000
	             or 0.0000
	              i 0.0000
	          there 0.0000
	             he 0.0000

            Hoo   487704   9 (27)
	          death 0.1000
	            Hot 0.1000
	     Chichester 0.0369
	            cia 0.0369
	             iu 0.0369
	          times 0.0369
	         killed 0.0369
	            the 0.0059
	           </S> 0.0000
	           Hood 0.0000
	            you 0.0000
	            for 0.0000
	              - 0.0000
	              I 0.0000
	            Hoo 0.0000
	             us 0.0000
	            not 0.0000
	           Home 0.0000
	            his 0.0000
	              , 0.0000
	             Ho 0.0000
	           Hook 0.0000
	              a 0.0000
	           term 0.0000
	              . 0.0000
	            How 0.0000
	         future 0.0000

         Sussex   487709   1 (27)
	              s 0.0369
	         Passer 0.0369
	            and 0.0369
	         Sxusem 0.0369
	         Sussex 0.0369
	              a 0.0369
	              I 0.0369
	              } 0.0369
	              " 0.0369
	            but 0.0369
	      Sussexite 0.0369
	   respectively 0.0369
	         Sussen 0.0369
	         Sussey 0.0369
	            yes 0.0369
	           </S> 0.0369
	           with 0.0062
	            the 0.0059
	          which 0.0012
	             or 0.0000
	             of 0.0000
	              i 0.0000
	           just 0.0000
	            who 0.0000
	           used 0.0000
	         sussex 0.0000
	            use 0.0000

             on   487717   1 (23)
	              . 0.0369
	            and 0.0369
	            ons 0.0369
	              a 0.0369
	            one 0.0369
	             iu 0.0369
	            cia 0.0369
	            onn 0.0369
	             us 0.0369
	              A 0.0369
	             or 0.0369
	            oon 0.0369
	             of 0.0369
	              , 0.0369
	              - 0.0369
	             in 0.0369
	             on 0.0369
	             no 0.0369
	            ono 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000
	              " 0.0000

          3'ear   487750  10 (22)
	           near 0.1000
	        century 0.0369
	             of 0.0369
	     Foundation 0.0369
	          arear 0.0369
	              I 0.0369
	         States 0.0369
	              a 0.0369
	           time 0.0059
	          great 0.0000
	           rear 0.0000
	           read 0.0000
	           year 0.0000
	           Year 0.0000
	           </S> 0.0000
	              , 0.0000
	           type 0.0000
	              . 0.0000
	             as 0.0000
	              - 0.0000
	           name 0.0000
	            ear 0.0000

              a   487757   1 (23)
	          whose 0.0369
	             as 0.0369
	            but 0.0369
	             La 0.0369
	              " 0.0369
	            and 0.0369
	             at 0.0369
	              a 0.0369
	            cia 0.0369
	             aa 0.0369
	           </S> 0.0369
	          <UNK> 0.0369
	              I 0.0369
	            aaa 0.0369
	            the 0.0059
	          which 0.0012
	            one 0.0000
	             of 0.0000
	             la 0.0000
	             or 0.0000
	           lava 0.0000
	             to 0.0000
	             us 0.0000

           Pett   487779   4 (27)
	           Page 0.7000
	          death 0.1000
	            Pet 0.1000
	          Petts 0.0369
	           Pets 0.0369
	     Chichester 0.0369
	           Pett 0.0369
	           Pica 0.0369
	            Pyi 0.0369
	          Sitta 0.0369
	          times 0.0369
	         killed 0.0369
	            the 0.0059
	          Petty 0.0000
	           </S> 0.0000
	             PM 0.0000
	           Post 0.0000
	              , 0.0000
	              - 0.0000
	              a 0.0000
	            you 0.0000
	              . 0.0000
	              I 0.0000
	           Pete 0.0000
	           term 0.0000
	            his 0.0000
	         future 0.0000

              a   487794   1 (20)
	              - 0.0369
	             aa 0.0369
	             to 0.0369
	            the 0.0369
	             as 0.0369
	             us 0.0369
	           lava 0.0369
	            cia 0.0369
	             of 0.0369
	             at 0.0369
	              . 0.0369
	             la 0.0369
	             La 0.0369
	              , 0.0369
	              a 0.0369
	            aaa 0.0369
	           </S> 0.0059
	              " 0.0000
	              } 0.0000
	              ) 0.0000

     Winchelsea   487813   2 (26)
	          where 0.2000
	       December 0.0369
	     Winchelsea 0.0369
	            the 0.0369
	       Winchell 0.0369
	             by 0.0369
	              , 0.0369
	      Wichelsee 0.0369
	     Winchilsea 0.0369
	              . 0.0369
	          these 0.0369
	         killed 0.0369
	          death 0.0369
	           </S> 0.0369
	              - 0.0369
	          least 0.0369
	              a 0.0369
	              i 0.0369
	        Winches 0.0369
	      Winchells 0.0369
	       tinchels 0.0369
	           your 0.0059
	             us 0.0000
	              x 0.0000
	          which 0.0000
	           work 0.0000

           1907   487836 inf (23)
	           1990 0.0369
	          <UNK> 0.0369
	           2004 0.0369
	              I 0.0369
	            and 0.0369
	           2005 0.0369
	           1970 0.0369
	              ) 0.0369
	           1900 0.0369
	           </S> 0.0369
	           2003 0.0369
	              a 0.0369
	           1901 0.0369
	   respectively 0.0369
	              " 0.0369
	           1997 0.0369
	            the 0.0059
	             of 0.0000
	             pp 0.0000
	              i 0.0000
	            too 0.0000
	          which 0.0000
	             or 0.0000

      stapazina   487851 inf (33)
	         change 0.1000
	        tazzina 0.0369
	        spazino 0.0369
	        Atazina 0.0369
	       stanzina 0.0369
	       staziona 0.0369
	           said 0.0369
	       returned 0.0369
	     Mabinogion 0.0369
	              i 0.0369
	        stapati 0.0369
	      staplarna 0.0369
	       sampaina 0.0369
	      stanarina 0.0369
	       stanzini 0.0369
	       stapling 0.0369
	        stamina 0.0369
	       Capazine 0.0369
	        stappin 0.0369
	        service 0.0369
	             of 0.0059
	           that 0.0000
	              , 0.0000
	           </S> 0.0000
	              : 0.0000
	              . 0.0000
	              a 0.0000
	              I 0.0000
	            and 0.0000
	             is 0.0000
	          <UNK> 0.0000
	         search 0.0000
	              - 0.0000

             by   487881   2 (25)
	           when 0.0559
	              I 0.0369
	              ( 0.0369
	            and 0.0369
	              y 0.0369
	             by 0.0369
	              " 0.0369
	              a 0.0369
	            bye 0.0369
	            but 0.0369
	             J. 0.0369
	            byd 0.0369
	           </S> 0.0369
	           byby 0.0369
	          <UNK> 0.0369
	             be 0.0369
	            the 0.0059
	          which 0.0012
	             yb 0.0000
	             us 0.0000
	           that 0.0000
	         please 0.0000
	             iu 0.0000
	           said 0.0000
	             or 0.0000

        species   487927   4 (28)
	       Accentor 1.0000
	              ) 0.1000
	          Munia 0.1000
	              - 0.0369
	        speciei 0.0369
	              I 0.0369
	       speciesm 0.0369
	       speciest 0.0369
	       specific 0.0369
	        suecica 0.0369
	         specie 0.0369
	        especie 0.0369
	             is 0.0369
	        species 0.0369
	        sources 0.0369
	        Special 0.0369
	        speciem 0.0369
	       especies 0.0369
	              a 0.0369
	        special 0.0369
	     statements 0.0369
	        Sparrow 0.0059
	           Blue 0.0000
	           </S> 0.0000
	              . 0.0000
	              , 0.0000
	    Hummingbird 0.0000
	          Green 0.0000

       Saxicola   487962   1 (27)
	       rubicola 0.0369
	       Sanicula 0.0369
	    Saxicolella 0.0369
	    Saxicolinae 0.0369
	       Saxicola 0.0369
	      saxicolam 0.0369
	      Sannicola 0.0369
	        Sixaola 0.0369
	          major 0.0369
	       saxicola 0.0369
	        special 0.0369
	              . 0.0369
	              a 0.0059
	              I 0.0000
	        follows 0.0000
	            you 0.0000
	           well 0.0000
	              - 0.0000
	         little 0.0000
	           your 0.0000
	         having 0.0000
	            one 0.0000
	           </S> 0.0000
	              i 0.0000
	              , 0.0000
	             an 0.0000
	            the 0.0000

   occidoitalis   487971   1 (30)
	   occidentalis 0.0369
	          whole 0.0369
	            can 0.0369
	           only 0.0369
	              . 0.0369
	           shop 0.0369
	   occidentales 0.0369
	            are 0.0369
	              I 0.0369
	             is 0.0369
	      candidate 0.0369
	      occiditis 0.0369
	              a 0.0369
	  occidentalise 0.0369
	     occipitali 0.0369
	             as 0.0369
	    occipitalis 0.0369
	    information 0.0369
	     individual 0.0369
	   occidentalia 0.0369
	              - 0.0369
	    Occipitalis 0.0369
	       torquata 0.0059
	       rubicola 0.0000
	        rubetra 0.0000
	       Saxicola 0.0000
	              , 0.0000
	        caprata 0.0000
	           </S> 0.0000
	      torquatus 0.0000

              .   487983   1 (12)
	             us 0.0369
	          genus 0.0369
	            and 0.0369
	              , 0.0369
	              . 0.0369
	              - 0.0369
	              ) 0.0369
	            the 0.0369
	           </S> 0.0369
	            cia 0.0369
	             iu 0.0369
	             of 0.0369

       Saxicola   488016   2 (24)
	             -- 0.7000
	        Special 0.0369
	        Springs 0.0369
	       Sanicula 0.0369
	         Second 0.0369
	      Sannicola 0.0369
	    Saxicolinae 0.0369
	       rubicola 0.0369
	       Saxicola 0.0369
	      saxicolam 0.0369
	        Sixaola 0.0369
	              a 0.0369
	           Star 0.0369
	         Health 0.0369
	       saxicola 0.0369
	           Vera 0.0369
	    Saxicolella 0.0369
	              A 0.0369
	           </S> 0.0059
	              , 0.0000
	       Oenanthe 0.0000
	              . 0.0000
	              - 0.0000
	              ( 0.0000

         daerti   488025   1 (30)
	         dzerti 0.0369
	              . 0.0369
	        daterei 0.0369
	          death 0.0369
	         desert 0.0369
	           erti 0.0369
	              w 0.0369
	         derati 0.0369
	              a 0.0369
	          dirty 0.0369
	           daer 0.0369
	         daerah 0.0369
	         daryti 0.0369
	        raderti 0.0369
	       Baertius 0.0369
	         Haerti 0.0369
	              - 0.0369
	        deserti 0.0369
	          darti 0.0369
	              L 0.0369
	       Laertius 0.0369
	       Oenanthe 0.0369
	       torquata 0.0059
	       Saxicola 0.0000
	        caprata 0.0000
	        rubetra 0.0000
	        leucura 0.0000
	           </S> 0.0000
	              , 0.0000
	          maura 0.0000

            was   488032   1 (21)
	           wash 0.0369
	           wasp 0.0369
	           wasa 0.0369
	            has 0.0369
	              . 0.0369
	             wa 0.0369
	            may 0.0369
	              , 0.0369
	            way 0.0369
	            war 0.0369
	              ) 0.0369
	           waas 0.0369
	           </S> 0.0369
	            cia 0.0369
	            arz 0.0369
	             as 0.0369
	             us 0.0369
	          genus 0.0369
	            was 0.0369
	             we 0.0369
	              - 0.0369

       Pentland   488064  12 (29)
	       Kentland 0.6000
	            and 0.6000
	      Pentlands 0.0369
	         Little 0.0369
	            Now 0.0369
	             2K 0.0369
	              . 0.0369
	     Pentlandia 0.0369
	        section 0.0369
	        Section 0.0369
	          <UNK> 0.0059
	              I 0.0000
	              a 0.0000
	              2 0.0000
	       Pentland 0.0000
	              s 0.0000
	             in 0.0000
	        Penland 0.0000
	           </S> 0.0000
	             or 0.0000
	              - 0.0000
	        Petland 0.0000
	              A 0.0000
	            see 0.0000
	       Puntland 0.0000
	       Peatland 0.0000
	              ) 0.0000
	              b 0.0000
	              1 0.0000

       Skerries   488073   1 (24)
	       Skerries 0.1000
	         Series 0.0369
	         series 0.0369
	       Services 0.0369
	            Red 0.0369
	         kerrie 0.0369
	              I 0.0369
	      Filtering 0.0369
	              a 0.0369
	         Serkis 0.0369
	       Sherries 0.0369
	        Serries 0.0369
	         Skeris 0.0369
	       skerries 0.0369
	              , 0.0059
	             A. 0.0000
	              . 0.0000
	              - 0.0000
	          House 0.0000
	           </S> 0.0000
	              A 0.0000
	              ) 0.0000
	          <UNK> 0.0000
	          Hills 0.0000

           1906   488097 inf (23)
	           1990 0.0369
	           2003 0.0369
	           2004 0.0369
	           1901 0.0369
	           </S> 0.0369
	          <UNK> 0.0369
	   respectively 0.0369
	           2005 0.0369
	              ) 0.0369
	           1960 0.0369
	              I 0.0369
	           1996 0.0369
	              a 0.0369
	           1900 0.0369
	            and 0.0369
	              " 0.0369
	            the 0.0059
	             or 0.0000
	              i 0.0000
	             pp 0.0000
	             of 0.0000
	            too 0.0000
	          which 0.0000

         Family   488104   1 (20)
	         Family 0.9834
	              I 0.0418
	        Faimily 0.0369
	         family 0.0369
	         Famila 0.0369
	         Famill 0.0369
	       Familypc 0.0369
	              a 0.0369
	        Familly 0.0369
	       FamilyPC 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              . 0.0000
	              ] 0.0000
	              , 0.0000
	           File 0.0000
	              / 0.0000
	              ) 0.0000

           TURD   488112 inf (31)
	            TUR 0.4000
	           TURP 0.2000
	           TURI 0.1000
	              s 0.0369
	       friendly 0.0369
	       Centered 0.0369
	       resource 0.0369
	           TRDR 0.0369
	              , 0.0369
	       Friendly 0.0369
	              - 0.0079
	           </S> 0.0059
	           year 0.0000
	            The 0.0000
	             To 0.0000
	            TRD 0.0000
	            the 0.0000
	             to 0.0000
	              a 0.0000
	              A 0.0000
	              I 0.0000
	             up 0.0000
	          DUART 0.0000
	            TUD 0.0000
	           This 0.0000
	            URD 0.0000
	              > 0.0000
	           mail 0.0000
	           TURN 0.0000
	              . 0.0000
	          <UNK> 0.0000

             ID   488117   1 (25)
	             DI 0.0369
	         period 0.0369
	          Sites 0.0369
	             iu 0.0369
	             us 0.0369
	            IDG 0.0369
	              I 0.0369
	            cia 0.0369
	            IID 0.0369
	            IDE 0.0369
	             In 0.0369
	        Company 0.0369
	            IDD 0.0369
	             It 0.0369
	              a 0.0369
	             ID 0.0369
	             If 0.0369
	           Care 0.0369
	           </S> 0.0059
	              . 0.0000
	              - 0.0000
	          <UNK> 0.0000
	              ! 0.0000
	              , 0.0000
	              ) 0.0000

              .   488119   1 (16)
	              . 1.0000
	              # 0.0540
	            cia 0.0369
	             iu 0.0369
	             .. 0.0369
	              : 0.0059
	            ... 0.0000
	             IL 0.0000
	           </S> 0.0000
	          <UNK> 0.0000
	            the 0.0000
	            and 0.0000
	              - 0.0000
	             of 0.0000
	             us 0.0000
	              , 0.0000

             E.   488121 inf (21)
	             in 0.0634
	              I 0.0418
	             EU 0.0369
	             EE 0.0369
	            EEE 0.0369
	             iu 0.0369
	             us 0.0369
	              s 0.0369
	              a 0.0369
	              A 0.0328
	             to 0.0265
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              . 0.0000
	             of 0.0000
	             Ed 0.0000
	          <UNK> 0.0000
	              , 0.0000
	              ) 0.0000
	             El 0.0000

     Subfamily-   488125   1 (18)
	    Subfamilies 0.0369
	     Sulfamidyl 0.0369
	    Subfamiliae 0.0369
	             et 0.0369
	      subfamily 0.0369
	             J. 0.0369
	      Subfamily 0.0369
	         Valley 0.0369
	              , 0.0059
	          State 0.0000
	           </S> 0.0000
	              . 0.0000
	           coli 0.0000
	              - 0.0000
	          Smith 0.0000
	              A 0.0000
	              ) 0.0000
	          <UNK> 0.0000

       TURDIN.E   488136 inf (25)
	            Ave 0.0369
	    PROTECTIONE 0.0369
	             J. 0.0369
	          Terms 0.0369
	              D 0.0369
	             N. 0.0369
	              . 0.0369
	           </S> 0.0369
	             DR 0.0369
	              M 0.0369
	             RD 0.0369
	              - 0.0369
	             R. 0.0369
	            Dr. 0.0369
	           Blvd 0.0369
	           O.E. 0.0369
	              a 0.0369
	              , 0.0369
	          Types 0.0369
	            The 0.0369
	             Rd 0.0369
	             E. 0.0369
	          <UNK> 0.0369
	      INTERSECT 0.0369
	             A. 0.0369

              .   488144 inf (8)
	             of 0.0369
	             to 0.0369
	             us 0.0369
	            and 0.0369
	             in 0.0369
	            the 0.0369
	            cia 0.0369
	             iu 0.0369

              .   488169   9 (16)
	           Club 0.0369
	            cia 0.0369
	             iu 0.0369
	             us 0.0369
	            the 0.0369
	             of 0.0369
	            ... 0.0369
	           </S> 0.0059
	             S. 0.0000
	       Saxicola 0.0000
	              - 0.0000
	              , 0.0000
	            and 0.0000
	             is 0.0000
	              ( 0.0000
	              . 0.0000

     Pratincola   488172   1 (19)
	     Pratincole 0.0369
	    Pratincoles 0.0369
	       Saxicola 0.0369
	     Pratincola 0.0369
	     pratincola 0.0369
	    Portiuncola 0.0369
	          maura 0.0369
	           </S> 0.0059
	            For 0.0000
	              . 0.0000
	              - 0.0000
	              ] 0.0000
	              A 0.0000
	              / 0.0000
	              I 0.0000
	             In 0.0000
	              , 0.0000
	              ) 0.0000
	              " 0.0000

          maura   488183   1 (22)
	          <UNK> 0.0369
	              a 0.0369
	vareSelskap.cgi 0.0369
	              I 0.0369
	           </S> 0.0369
	          maura 0.0369
	          parva 0.0369
	         mauram 0.0369
	         maurai 0.0369
	          major 0.0369
	         mature 0.0369
	           more 0.0369
	              ) 0.0369
	              - 0.0369
	          mauru 0.0369
	              n 0.0369
	              . 0.0369
	          mauro 0.0369
	          mauri 0.0369
	      configure 0.0369
	           maur 0.0369
	              , 0.0059

           Paix   488190 inf (31)
	             pp 0.1857
	           Pica 0.0369
	   respectively 0.0369
	              x 0.0369
	          Panix 0.0369
	   philadelphia 0.0369
	           Paix 0.0369
	            Pyi 0.0369
	          Parus 0.0369
	        kingdom 0.0369
	            aix 0.0369
	            Pix 0.0369
	              ) 0.0369
	          <UNK> 0.0369
	        Paixhan 0.0369
	         Paixao 0.0369
	           Page 0.0369
	           Pixa 0.0369
	            Pai 0.0369
	           Paxi 0.0369
	             PM 0.0369
	           Paid 0.0369
	           Pain 0.0369
	            the 0.0059
	          which 0.0012
	              e 0.0000
	             or 0.0000
	           said 0.0000
	             of 0.0000
	            too 0.0000
	              i 0.0000

              .   488194   6 (14)
	            cia 0.0369
	             iu 0.0369
	           will 0.0369
	             us 0.0369
	              , 0.0059
	            the 0.0000
	            and 0.0000
	              . 0.0000
	              - 0.0000
	              ( 0.0000
	             's 0.0000
	           </S> 0.0000
	            ... 0.0000
	             of 0.0000

           male   488197  20 (28)
	           This 0.3358
	             It 0.0900
	              I 0.0418
	           mael 0.0369
	           mall 0.0369
	           malt 0.0369
	             AU 0.0369
	          malle 0.0369
	           made 0.0369
	           male 0.0369
	           sala 0.0369
	          major 0.0369
	          maura 0.0369
	          males 0.0369
	          maler 0.0369
	           mail 0.0369
	            mal 0.0369
	            may 0.0369
	          malee 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	           make 0.0000
	              ) 0.0000
	              , 0.0000
	              ] 0.0000
	              . 0.0000

           Cley   488216  14 (32)
	           alba 0.1000
	           Clem 0.0369
	            ley 0.0369
	           Cely 0.0369
	          Pales 0.0369
	         Cleyde 0.0369
	          Siena 0.0369
	        Cleyera 0.0369
	          Clery 0.0369
	        Norwich 0.0369
	          Coley 0.0369
	          Clecy 0.0369
	            the 0.0059
	              . 0.0000
	           City 0.0000
	           </S> 0.0000
	          Click 0.0000
	            his 0.0000
	              a 0.0000
	            you 0.0000
	              , 0.0000
	           Cley 0.0000
	             us 0.0000
	           term 0.0000
	         future 0.0000
	     Washington 0.0000
	           they 0.0000
	              - 0.0000
	           Cleo 0.0000
	            Cle 0.0000
	         Disney 0.0000
	              I 0.0000

           1904   488249 inf (24)
	           2005 0.0369
	           1900 0.0369
	           1990 0.0369
	           1901 0.0369
	              ) 0.0369
	           2001 0.0369
	              I 0.0369
	            and 0.0369
	              ( 0.0369
	           1994 0.0369
	           1940 0.0369
	           </S> 0.0369
	          <UNK> 0.0369
	           2004 0.0369
	           2003 0.0369
	              a 0.0369
	   respectively 0.0369
	            the 0.0059
	             of 0.0000
	            too 0.0000
	          which 0.0000
	              i 0.0000
	             pp 0.0000
	             or 0.0000

              A   488255  10 (21)
	             As 0.2611
	             CA 0.0369
	            cia 0.0369
	             iu 0.0369
	             us 0.0369
	             PA 0.0369
	             AM 0.0369
	             AA 0.0369
	            AAA 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ] 0.0000
	              ) 0.0000
	            and 0.0000
	             of 0.0000
	            the 0.0000
	              / 0.0000
	              , 0.0000
	              . 0.0000

      Redstarts   488265 inf (26)
	       Redstart 0.6500
	           star 0.0369
	           late 0.0369
	              F 0.0369
	          jeans 0.0369
	       kayakers 0.0369
	           free 0.0369
	          shoes 0.0369
	       research 0.0369
	          years 0.0369
	       Reatards 0.0369
	          state 0.0369
	          black 0.0369
	            the 0.0059
	              : 0.0000
	          their 0.0000
	             us 0.0000
	           this 0.0000
	              a 0.0000
	              , 0.0000
	       Redstate 0.0000
	           </S> 0.0000
	          <UNK> 0.0000
	      redstarts 0.0000
	        Redstar 0.0000
	              - 0.0000

          built   488275   2 (20)
	              - 0.3000
	           buil 0.0369
	         ybuilt 0.0369
	          butil 0.0369
	            buy 0.0369
	          buill 0.0369
	              a 0.0369
	          build 0.0369
	            but 0.0369
	            bus 0.0369
	           buit 0.0369
	          bulit 0.0369
	          being 0.0369
	        rebuilt 0.0369
	              I 0.0369
	          built 0.0369
	              , 0.0059
	            and 0.0000
	           </S> 0.0000
	              . 0.0000

        Spiggie   488284 inf (32)
	         Biggie 0.0369
	        Spigiel 0.0369
	              a 0.0369
	         Spigit 0.0369
	        piggier 0.0369
	           time 0.0369
	              : 0.0369
	          least 0.0369
	        piggies 0.0369
	              , 0.0369
	              - 0.0369
	        Spiegel 0.0369
	          <UNK> 0.0369
	           </S> 0.0369
	           high 0.0369
	          night 0.0369
	          Siggi 0.0369
	            all 0.0369
	              . 0.0369
	         Spigel 0.0369
	           NCBI 0.0369
	      Spriggite 0.0369
	           CERN 0.0369
	         piggie 0.0369
	javax.servlet.http.HttpServlet.service 0.0369
	            the 0.0369
	           your 0.0059
	             us 0.0000
	           work 0.0000
	              x 0.0000
	              y 0.0000
	          which 0.0000

     vShetlands   488293  10 (24)
	              ) 0.3000
	    Shetlanders 0.0369
	       Compiled 0.0369
	      shetlands 0.0369
	    Shetlandish 0.0369
	           last 0.0369
	           view 0.0369
	        Unknown 0.0369
	          <UNK> 0.0059
	       Shetland 0.0000
	              I 0.0000
	      Shetlands 0.0000
	            the 0.0000
	              a 0.0000
	              A 0.0000
	              1 0.0000
	       wetlands 0.0000
	            and 0.0000
	              2 0.0000
	              b 0.0000
	              ( 0.0000
	           </S> 0.0000
	              s 0.0000
	              - 0.0000

              )   488303   1 (14)
	              : 0.0369
	             of 0.0369
	              , 0.0369
	            the 0.0369
	            and 0.0369
	             iu 0.0369
	              - 0.0369
	             is 0.0369
	           </S> 0.0369
	          <UNK> 0.0369
	            cia 0.0369
	        example 0.0369
	              ) 0.0369
	             us 0.0369

            Maj   488309   1 (29)
	            May 1.0000
	            arz 0.0369
	              I 0.0369
	       Scotland 0.0369
	       students 0.0369
	            Mja 0.0369
	              S 0.0369
	              { 0.0369
	              ) 0.0369
	          house 0.0369
	            the 0.0059
	              , 0.0000
	             Ma 0.0000
	           </S> 0.0000
	            cia 0.0000
	             My 0.0000
	              - 0.0000
	            can 0.0000
	              a 0.0000
	             us 0.0000
	            was 0.0000
	              . 0.0000
	            Map 0.0000
	           Maja 0.0000
	           Majo 0.0000
	            Maj 0.0000
	           this 0.0000
	          stock 0.0000
	            and 0.0000

              '   488312   9 (19)
	             of 0.7000
	             M. 0.2000
	             J. 0.2000
	          world 0.0369
	          cases 0.0369
	           case 0.0369
	             us 0.0369
	              - 0.0059
	           </S> 0.0000
	              ' 0.0000
	             's 0.0000
	              . 0.0000
	            the 0.0000
	            Gen 0.0000
	          <UNK> 0.0000
	            '06 0.0000
	              M 0.0000
	            and 0.0000
	              , 0.0000

           1901   488315 inf (27)
	              - 0.0369
	              1 0.0369
	             US 0.0369
	              0 0.0369
	              . 0.0369
	           1964 0.0369
	    Transcripts 0.0369
	              a 0.0369
	              , 0.0369
	             A. 0.0369
	              I 0.0369
	            100 0.0369
	              A 0.0369
	         100.01 0.0369
	             M. 0.0369
	              ' 0.0369
	          <UNK> 0.0369
	              s 0.0369
	           </S> 0.0369
	            and 0.0369
	              ) 0.0369
	             10 0.0369
	           USAF 0.0369
	            the 0.0059
	             of 0.0000
	             or 0.0000
	          which 0.0000

            two   488322   1 (26)
	           they 0.0369
	            the 0.0369
	             tw 0.0369
	             to 0.0369
	            and 0.0369
	          there 0.0369
	            cia 0.0369
	             iu 0.0369
	              a 0.0369
	           twos 0.0369
	           twon 0.0369
	              , 0.0369
	              - 0.0369
	            top 0.0369
	             us 0.0369
	              . 0.0369
	            twp 0.0369
	            twa 0.0369
	            two 0.0369
	            wot 0.0369
	              A 0.0369
	            tow 0.0369
	           </S> 0.0059
	              ) 0.0000
	              " 0.0000
	              } 0.0000

         Skerry   488393   3 (28)
	         Sherry 0.7000
	          kerry 0.5000
	         Skerry 0.4000
	           year 0.1318
	        Skerray 0.1000
	        Stadium 0.0369
	          Speed 0.0369
	              . 0.0369
	          Serry 0.0369
	            age 0.0369
	           home 0.0369
	              , 0.0369
	           </S> 0.0059
	           same 0.0037
	      following 0.0000
	          first 0.0000
	          Syker 0.0000
	         skerry 0.0000
	          Kerry 0.0000
	         Sperry 0.0000
	           very 0.0000
	            end 0.0000
	           time 0.0000
	              - 0.0000
	          every 0.0000
	       National 0.0000
	         Sierra 0.0000
	          Jerry 0.0000

           Vore   488400   4 (25)
	              . 1.0000
	              A 0.5000
	             of 0.2000
	           Vero 0.0369
	    Synchrotron 0.0369
	           Vore 0.0369
	          corax 0.0369
	            arz 0.0369
	          torax 0.0369
	           more 0.0369
	           More 0.0369
	            Vor 0.0369
	           Vora 0.0369
	           Vort 0.0369
	           Voer 0.0369
	              a 0.0369
	              I 0.0369
	          Vores 0.0369
	          Vorel 0.0369
	           View 0.0369
	              , 0.0059
	              - 0.0000
	          Chris 0.0000
	              & 0.0000
	           </S> 0.0000

          Light   488405   1 (21)
	              A 0.0369
	          Peter 0.0369
	          right 0.0369
	          Ligha 0.0369
	          Johns 0.0369
	             P. 0.0369
	         Lighty 0.0369
	          might 0.0369
	          Stack 0.0369
	          Light 0.0369
	          Close 0.0369
	         Lights 0.0369
	        Lighght 0.0369
	              a 0.0369
	           </S> 0.0059
	              M 0.0000
	    definitions 0.0000
	              . 0.0000
	              - 0.0000
	              , 0.0000
	             M. 0.0000

        Messrs.   488436   1 (22)
	        Messers 0.0369
	         Messer 0.0369
	           City 0.0369
	        Message 0.0369
	         messrs 0.0369
	         return 0.0369
	              a 0.0369
	          Messr 0.0369
	         Messrs 0.0369
	    Topological 0.0369
	           </S> 0.0059
	              ] 0.0000
	              / 0.0000
	              ( 0.0000
	              I 0.0000
	           More 0.0000
	              - 0.0000
	              A 0.0000
	              ) 0.0000
	              . 0.0000
	              , 0.0000
	              " 0.0000

       Witherby   488444   2 (25)
	          White 0.2000
	       Wetherby 0.0369
	              a 0.0369
	              - 0.0369
	       Witherby 0.0369
	              B 0.0369
	        Withers 0.0369
	              ) 0.0369
	      Whetherby 0.0369
	              n 0.0369
	         Wither 0.0369
	         either 0.0369
	      configure 0.0369
	      Witherley 0.0369
	              . 0.0369
	           </S> 0.0059
	          Smith 0.0000
	           John 0.0000
	             M. 0.0000
	              , 0.0000
	           Bush 0.0000
	             J. 0.0000
	        Richard 0.0000
	             A. 0.0000
	          <UNK> 0.0000

      Ticehurst   488457   1 (27)
	      Ticehurst 0.1000
	          shall 0.0369
	       sicherst 0.0369
	          these 0.0369
	    Micklehurst 0.0369
	          major 0.0369
	              i 0.0369
	     superseded 0.0369
	          track 0.0369
	            the 0.0059
	      Pinehurst 0.0000
	              a 0.0000
	      Tilehurst 0.0000
	          there 0.0000
	          <UNK> 0.0000
	           </S> 0.0000
	          other 0.0000
	              I 0.0000
	            The 0.0000
	            one 0.0000
	             to 0.0000
	              - 0.0000
	           more 0.0000
	              , 0.0000
	       Akehurst 0.0000
	           then 0.0000
	              ( 0.0000

         record   488467   4 (25)
	             in 0.6000
	           </S> 0.3750
	             to 0.2000
	        recordi 0.0369
	            the 0.0369
	         recode 0.0369
	             us 0.0369
	         record 0.0369
	         before 0.0369
	        include 0.0369
	             by 0.0369
	           more 0.0369
	        recorde 0.0369
	             of 0.0369
	           work 0.0369
	              I 0.0369
	         recors 0.0369
	         recork 0.0369
	              a 0.0369
	              , 0.0059
	          House 0.0000
	        records 0.0000
	              . 0.0000
	              J 0.0000
	              - 0.0000

         Solway   488537   4 (31)
	        Poolway 0.7000
	          alway 0.6000
	         Holway 0.3000
	         Solway 0.1000
	             us 0.0369
	        Sowlany 0.0369
	          state 0.0369
	          party 0.0369
	        kitchen 0.0369
	           that 0.0369
	              , 0.0369
	            one 0.0369
	      sectional 0.0369
	              : 0.0369
	        smoking 0.0369
	              - 0.0079
	           </S> 0.0059
	          <UNK> 0.0000
	          today 0.0000
	         Solvay 0.0000
	         Policy 0.0000
	           mail 0.0000
	              a 0.0000
	         Selway 0.0000
	        Soloway 0.0000
	           Sola 0.0000
	              I 0.0000
	              A 0.0000
	            way 0.0000
	             up 0.0000
	              . 0.0000

       Aberdeen   488575   1 (20)
	              . 0.0369
	              B 0.0369
	              I 0.0369
	      Aberdeens 0.0369
	              a 0.0369
	         London 0.0369
	       Aberdein 0.0369
	        Bedford 0.0369
	       Aberdeen 0.0369
	        Abreden 0.0369
	       Aberdare 0.0369
	        Abedeen 0.0369
	           1900 0.0369
	       aberdeen 0.0369
	              , 0.0369
	              - 0.0369
	           </S> 0.0059
	              ) 0.0000
	              " 0.0000
	              } 0.0000

        ]\Iarch   488589   7 (18)
	         search 0.6000
	        Isearch 0.0369
	          harch 0.0369
	          major 0.0369
	          years 0.0369
	             of 0.0059
	              I 0.0000
	            the 0.0000
	            can 0.0000
	           </S> 0.0000
	          march 0.0000
	          March 0.0000
	         Search 0.0000
	              , 0.0000
	              a 0.0000
	              - 0.0000
	              . 0.0000
	           arch 0.0000

           20th   488597 inf (20)
	           With 0.0369
	              . 0.0369
	             th 0.0369
	           both 0.0369
	              a 0.0369
	           with 0.0369
	             us 0.0369
	              , 0.0369
	            two 0.0369
	            one 0.0369
	           hath 0.0369
	           them 0.0369
	           </S> 0.0369
	            the 0.0369
	              I 0.0369
	             ht 0.0369
	            sth 0.0369
	            oth 0.0369
	              - 0.0369
	            ith 0.0369

           1900   488603 inf (21)
	          <UNK> 0.0369
	           1990 0.0369
	              I 0.0369
	              a 0.0369
	            and 0.0369
	           2003 0.0369
	           2005 0.0369
	           1980 0.0369
	           2006 0.0369
	              " 0.0369
	              s 0.0369
	              ) 0.0369
	           2004 0.0369
	           2000 0.0369
	           1:00 0.0369
	           1999 0.0369
	            the 0.0059
	          which 0.0000
	             or 0.0000
	              i 0.0000
	             of 0.0000

          Moray   488609   1 (28)
	             ie 0.0369
	          Morya 0.0369
	              - 0.0369
	         Mornay 0.0369
	              a 0.0369
	          Moray 0.0369
	        Maroroy 0.0369
	          corax 0.0369
	          torax 0.0369
	           More 0.0369
	         Street 0.0369
	              . 0.0369
	           1910 0.0369
	         Morany 0.0369
	         Morawy 0.0369
	              , 0.0369
	          Money 0.0369
	           Mora 0.0369
	          Moral 0.0369
	          Moran 0.0369
	        Morayma 0.0369
	        Morayur 0.0369
	              A 0.0369
	         Monday 0.0369
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	              } 0.0000

        Flannan   488640   1 (20)
	              , 0.0369
	              - 0.0369
	        Flannel 0.0369
	         Fianna 0.0369
	              A 0.0369
	      Flannagan 0.0369
	       Flannans 0.0369
	              a 0.0369
	        Flannan 0.0369
	         lannan 0.0369
	         Falana 0.0369
	       Flanagan 0.0369
	        Flannae 0.0369
	          Flann 0.0369
	              S 0.0369
	              . 0.0369
	           </S> 0.0059
	              } 0.0000
	              " 0.0000
	              ) 0.0000

           June   488665  12 (24)
	           Junk 0.0369
	          Junee 0.0369
	             iu 0.0369
	              I 0.0369
	              a 0.0369
	           Jung 0.0369
	          Munia 0.0369
	          Junne 0.0369
	              D 0.0369
	          Junes 0.0369
	              , 0.0059
	            one 0.0000
	           foot 0.0000
	             us 0.0000
	           </S> 0.0000
	            and 0.0000
	    householder 0.0000
	           June 0.0000
	    ejaculation 0.0000
	            Jun 0.0000
	            Jan 0.0000
	              - 0.0000
	              . 0.0000
	             of 0.0000

         Orkney   488724   1 (22)
	              . 0.0369
	              I 0.0369
	       Orkneyan 0.0369
	           2005 0.0369
	              a 0.0369
	          Order 0.0369
	         Orkeny 0.0369
	       Regiment 0.0369
	         Orkney 0.0369
	          Owner 0.0369
	        latinas 0.0369
	           2004 0.0369
	              S 0.0369
	        Orkenye 0.0369
	              , 0.0369
	        Orkneys 0.0369
	              - 0.0369
	         Orange 0.0369
	           </S> 0.0059
	              " 0.0000
	              } 0.0000
	              ) 0.0000

           male   488734  16 (35)
	           make 0.7000
	          maler 0.5000
	              . 0.0369
	              I 0.0369
	         Mother 0.0369
	          maura 0.0369
	             So 0.0369
	           jury 0.0369
	              , 0.0369
	            Bug 0.0369
	              E 0.0369
	              a 0.0369
	              : 0.0369
	            few 0.0097
	           </S> 0.0059
	          males 0.0000
	            and 0.0000
	            the 0.0000
	           malt 0.0000
	          group 0.0000
	           made 0.0000
	              - 0.0000
	           sala 0.0000
	          woman 0.0000
	            mal 0.0000
	          malee 0.0000
	          major 0.0000
	            may 0.0000
	          malle 0.0000
	            man 0.0000
	           mall 0.0000
	            new 0.0000
	           mael 0.0000
	            was 0.0000
	           male 0.0000

       November   488751   1 (23)
	       November 0.0369
	              " 0.0369
	       Nobember 0.0369
	            but 0.0369
	              , 0.0369
	           </S> 0.0369
	          <UNK> 0.0369
	       Novembre 0.0369
	            and 0.0369
	           over 0.0369
	              I 0.0369
	       Novembro 0.0369
	              a 0.0369
	      Novembers 0.0369
	      Novembery 0.0369
	            the 0.0059
	          other 0.0000
	              i 0.0000
	           more 0.0000
	            his 0.0000
	      including 0.0000
	          which 0.0000
	             or 0.0000

           1905   488766 inf (26)
	           1990 0.0369
	           1955 0.0369
	             05 0.0369
	           2003 0.0369
	           1985 0.0369
	           </S> 0.0369
	           2006 0.0369
	              I 0.0369
	           1995 0.0369
	              " 0.0369
	           2005 0.0369
	          <UNK> 0.0369
	      therefore 0.0369
	             19 0.0369
	           1975 0.0369
	         yearly 0.0369
	           2004 0.0369
	              a 0.0369
	            and 0.0369
	            the 0.0059
	             or 0.0000
	            too 0.0000
	         though 0.0000
	             of 0.0000
	          which 0.0000
	              i 0.0000

         Family   488800   1 (20)
	         Family 0.9834
	              I 0.0418
	       FamilyPC 0.0369
	       Familypc 0.0369
	        Faimily 0.0369
	         Famila 0.0369
	         Famill 0.0369
	         family 0.0369
	              a 0.0369
	        Familly 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ] 0.0000
	              , 0.0000
	           File 0.0000
	              ) 0.0000
	              . 0.0000
	              / 0.0000

       TURDID.^   488808 inf (28)
	              , 0.0369
	     crests.com 0.0369
	              s 0.0369
	           side 0.0369
	           Prom 0.0369
	       Friendly 0.0369
	         TURYID 0.0369
	       friendly 0.0369
	              p 0.0369
	            rev 0.0369
	      Travel.ca 0.0369
	            Vol 0.0369
	           </S> 0.0059
	              R 0.0000
	           time 0.0000
	              a 0.0000
	              A 0.0000
	             In 0.0000
	             to 0.0000
	              I 0.0000
	              D 0.0000
	              - 0.0000
	             up 0.0000
	          <UNK> 0.0000
	            Dec 0.0000
	            the 0.0000
	              . 0.0000
	            The 0.0000

              .   488816   1 (12)
	              , 0.0369
	              . 0.0369
	           </S> 0.0369
	             of 0.0369
	            and 0.0369
	              ( 0.0369
	            ... 0.0369
	              - 0.0369
	            the 0.0369
	             us 0.0369
	            cia 0.0369
	             iu 0.0369

     Subfamily-   488819   1 (16)
	     Sulfamidyl 0.0369
	    Subfamilies 0.0369
	    Subfamiliae 0.0369
	      subfamily 0.0369
	      Subfamily 0.0369
	           </S> 0.0059
	              A 0.0000
	              / 0.0000
	              " 0.0000
	              - 0.0000
	              I 0.0000
	              . 0.0000
	              ] 0.0000
	              , 0.0000
	              ) 0.0000
	             So 0.0000

       TURDIN/E   488830 inf (20)
	           BUGS 0.0369
	              ) 0.0369
	          <UNK> 0.0369
	           </S> 0.0369
	     regress.sh 0.0369
	              / 0.0369
	              . 0.0369
	              n 0.0369
	      ChangeLog 0.0369
	              a 0.0369
	              - 0.0369
	        COPYING 0.0369
	           TODO 0.0369
	              g 0.0369
	              , 0.0369
	         THANKS 0.0369
	       ANNOUNCE 0.0369
	        INSTALL 0.0369
	         README 0.0369
	    MAINTAINERS 0.0369

              .   488838 inf (8)
	             of 0.0369
	             to 0.0369
	             us 0.0369
	            and 0.0369
	             in 0.0369
	            the 0.0369
	            cia 0.0369
	             iu 0.0369

       Spottf:d   488851 inf (28)
	       Spotting 0.1000
	          Spott 0.1000
	        Spoofed 0.1000
	              , 0.0369
	         tailed 0.0369
	       Spottify 0.0369
	          point 0.0369
	          world 0.0369
	        crowned 0.0369
	       throated 0.0369
	          state 0.0369
	         Haired 0.0369
	         Tailed 0.0369
	              s 0.0369
	           </S> 0.0059
	             to 0.0000
	              - 0.0000
	        Spotter 0.0000
	              . 0.0000
	           mail 0.0000
	            the 0.0000
	          <UNK> 0.0000
	              A 0.0000
	           year 0.0000
	         Spotty 0.0000
	              I 0.0000
	              a 0.0000
	             up 0.0000

     Bluethroat   488860   1 (21)
	           that 0.0369
	              ) 0.0369
	           Deer 0.0369
	         period 0.0369
	              a 0.0369
	     Bluethroat 0.0369
	        Sparrow 0.0369
	             us 0.0369
	              - 0.0369
	        support 0.0369
	      Cutthroat 0.0369
	     bluethroat 0.0369
	          <UNK> 0.0369
	           </S> 0.0369
	              . 0.0369
	       Internet 0.0369
	       Sparrows 0.0369
	    bluethroats 0.0369
	       Bluecoat 0.0369
	              I 0.0369
	              , 0.0369

              .   488870   7 (13)
	             us 0.0369
	             of 0.0369
	            the 0.0369
	            cia 0.0369
	             iu 0.0369
	           </S> 0.0059
	              . 0.0000
	              - 0.0000
	           Boat 0.0000
	              ( 0.0000
	       Luscinia 0.0000
	            and 0.0000
	              , 0.0000

    Cxa)icciila   488873 inf (19)
	       Reginald 0.0369
	         Kamala 0.0369
	        Comella 0.0369
	           </S> 0.0059
	              - 0.0000
	              ) 0.0000
	      Searching 0.0000
	             In 0.0000
	          Click 0.0000
	              I 0.0000
	           Each 0.0000
	              , 0.0000
	            For 0.0000
	              . 0.0000
	              / 0.0000
	              " 0.0000
	              ] 0.0000
	          While 0.0000
	              A 0.0000

        u'i>l/l   488885 inf (18)
	      configure 0.0369
	              a 0.0369
	            usr 0.0369
	              - 0.0369
	              ' 0.0369
	          Mills 0.0369
	              I 0.0369
	              n 0.0369
	           uill 0.0369
	              , 0.0369
	              ) 0.0369
	          <UNK> 0.0369
	vareSelskap.cgi 0.0369
	          uaill 0.0369
	              . 0.0369
	           Gill 0.0369
	           </S> 0.0369
	          build 0.0369

              ,   488892 inf (8)
	             of 0.0369
	             to 0.0369
	             us 0.0369
	            and 0.0369
	             in 0.0369
	            the 0.0369
	            cia 0.0369
	             iu 0.0369

          BrEHM   488894 inf (25)
	            BHE 0.0369
	   respectively 0.0369
	            EHM 0.0369
	            BHM 0.0369
	              { 0.0369
	             Br 0.0369
	           FEHM 0.0369
	          BrAAM 0.0369
	           BEHS 0.0369
	           BEHL 0.0369
	              x 0.0369
	            BrE 0.0369
	            BEH 0.0369
	            the 0.0059
	             or 0.0000
	           free 0.0000
	             pp 0.0000
	              i 0.0000
	          which 0.0000
	            too 0.0000
	              e 0.0000
	             of 0.0000
	           from 0.0000
	             to 0.0000
	            for 0.0000

              .   488899   1 (11)
	             iu 0.0369
	             of 0.0369
	           </S> 0.0369
	            ... 0.0369
	              , 0.0369
	            and 0.0369
	            cia 0.0369
	             us 0.0369
	              . 0.0369
	              - 0.0369
	            the 0.0369

              A   488902  11 (22)
	           This 0.3358
	             As 0.2611
	            cia 0.0369
	             iu 0.0369
	             PA 0.0369
	             CA 0.0369
	             AA 0.0369
	             us 0.0369
	             AM 0.0369
	            AAA 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              , 0.0000
	              ) 0.0000
	             of 0.0000
	            the 0.0000
	              ] 0.0000
	              . 0.0000
	              / 0.0000
	            and 0.0000

      Dungeness   488932   1 (27)
	         Dunges 0.0369
	       Diogenes 0.0369
	       Dungeons 0.0369
	          major 0.0369
	              . 0.0369
	      Dungeness 0.0369
	           each 0.0369
	              : 0.0369
	         Dungen 0.0369
	         online 0.0369
	           </S> 0.0369
	      Langeness 0.0369
	              , 0.0369
	       Tungenes 0.0369
	    Dungeonesse 0.0369
	      Dunganese 0.0369
	       business 0.0369
	     Drunkeness 0.0369
	            the 0.0059
	             my 0.0000
	             be 0.0000
	           this 0.0000
	          these 0.0000
	              a 0.0000
	            get 0.0000
	            you 0.0000
	             us 0.0000

              a   488976   1 (20)
	             us 0.0369
	             at 0.0369
	              , 0.0369
	             La 0.0369
	           lava 0.0369
	             to 0.0369
	             of 0.0369
	             la 0.0369
	              s 0.0369
	             as 0.0369
	            the 0.0369
	              . 0.0369
	              - 0.0369
	             aa 0.0369
	              a 0.0369
	            aaa 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	              " 0.0000

            ist   489026 inf (25)
	             in 0.7000
	            ist 0.3000
	            iso 0.0369
	             iu 0.0369
	           isto 0.0369
	           isti 0.0369
	           iste 0.0369
	            isp 0.0369
	              a 0.0369
	            cia 0.0369
	           2005 0.0059
	              1 0.0000
	            its 0.0000
	             us 0.0000
	             is 0.0000
	             11 0.0000
	           </S> 0.0000
	             it 0.0000
	           2004 0.0000
	              5 0.0000
	              - 0.0000
	              , 0.0000
	              . 0.0000
	             18 0.0000
	             30 0.0000

           1905   489031 inf (27)
	           1985 0.0369
	            and 0.0369
	              ( 0.0369
	           1999 0.0369
	           2005 0.0369
	            bzw 0.0369
	           2001 0.0369
	           2004 0.0369
	           1950 0.0369
	              a 0.0369
	              " 0.0369
	           1995 0.0369
	              I 0.0369
	           2003 0.0369
	   respectively 0.0369
	          19105 0.0369
	           </S> 0.0369
	          <UNK> 0.0369
	           1975 0.0369
	           1990 0.0369
	            the 0.0059
	             of 0.0000
	             or 0.0000
	            too 0.0000
	          which 0.0000
	              i 0.0000
	             pp 0.0000

             it   489129   1 (22)
	            its 0.0369
	             ti 0.0369
	             iu 0.0369
	       Virginia 0.0369
	             in 0.0369
	            cia 0.0369
	             us 0.0369
	            itt 0.0369
	            iti 0.0369
	             is 0.0369
	              . 0.0369
	              - 0.0369
	        England 0.0369
	            ith 0.0369
	              , 0.0369
	            iit 0.0369
	             it 0.0369
	              a 0.0369
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	              } 0.0000

        visited   489132  10 (21)
	         United 0.3000
	        visites 0.0369
	        visiter 0.0369
	        divites 0.0369
	      Revisited 0.0369
	          visio 0.0369
	         vidste 0.0369
	         visite 0.0369
	             is 0.0059
	          sites 0.0000
	            was 0.0000
	              . 0.0000
	              , 0.0000
	             to 0.0000
	              a 0.0000
	          visit 0.0000
	             's 0.0000
	           will 0.0000
	           </S> 0.0000
	        visited 0.0000
	              - 0.0000

   Lincolnshire   489140   6 (24)
	           this 0.8000
	             me 0.6000
	              a 0.5000
	              - 0.2422
	          there 0.1000
	            not 0.0369
	   lincolnshire 0.0369
	       Cornwall 0.0369
	              I 0.0369
	    Linconshire 0.0369
	      Indonesia 0.0369
	   Lincolnshire 0.0369
	             be 0.0369
	            the 0.0059
	              . 0.0000
	          China 0.0000
	              , 0.0000
	             us 0.0000
	             by 0.0000
	          other 0.0000
	            you 0.0000
	          sites 0.0000
	           </S> 0.0000
	            him 0.0000

         Sussex   489180   1 (24)
	              O 0.0369
	            and 0.0369
	      Sussexite 0.0369
	              , 0.0369
	          based 0.0369
	              . 0.0369
	         Sunset 0.0369
	         Sussex 0.0369
	         sussex 0.0369
	         Passer 0.0369
	           1906 0.0369
	         System 0.0369
	         Sussen 0.0369
	         Sussey 0.0369
	         Sxusem 0.0369
	           1905 0.0369
	              - 0.0369
	           died 0.0369
	              a 0.0369
	              A 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000
	              " 0.0000

           1903   489190 inf (21)
	           them 0.0369
	             us 0.0369
	           1603 0.0369
	              x 0.0369
	           vain 0.0369
	            the 0.0059
	        writing 0.0000
	           your 0.0000
	           2001 0.0000
	              . 0.0000
	              1 0.0000
	          place 0.0000
	           this 0.0000
	           2003 0.0000
	             to 0.0000
	            and 0.0000
	              , 0.0000
	             it 0.0000
	              a 0.0000
	              - 0.0000
	           </S> 0.0000

         Surrey   489196   1 (19)
	         Survey 0.0369
	              , 0.0369
	         Surrex 0.0369
	         Surrel 0.0369
	          Surre 0.0369
	              A 0.0369
	        Surgery 0.0369
	         Surrey 0.0369
	              . 0.0369
	         Surely 0.0369
	         Street 0.0369
	              - 0.0369
	              a 0.0369
	          Surry 0.0369
	              m 0.0369
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	              } 0.0000

           1904   489203 inf (18)
	             BC 0.8000
	            TW9 0.5000
	            GU9 0.3000
	             in 0.2000
	            CR0 0.1000
	              - 0.1000
	              A 0.1000
	           GU21 0.0571
	              } 0.0369
	              S 0.0369
	              , 0.0059
	            and 0.0000
	           GU15 0.0000
	             to 0.0000
	            Now 0.0000
	              ) 0.0000
	              . 0.0000
	           </S> 0.0000

      Yorkshire   489209   1 (16)
	              . 0.0369
	              - 0.0369
	      yorkshire 0.0369
	   Yorkshiremen 0.0369
	              , 0.0369
	              A 0.0369
	              a 0.0369
	              O 0.0369
	      Yorkshire 0.0369
	   Yorkshireman 0.0369
	           1903 0.0369
	     Yorkshires 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000
	              " 0.0000

           1903   489219 inf (14)
	           BD20 0.1000
	        Couples 0.0369
	              } 0.0369
	        Singles 0.0369
	           </S> 0.0059
	           YO17 0.0000
	              | 0.0000
	              . 0.0000
	              ) 0.0000
	             to 0.0000
	             in 0.0000
	              , 0.0000
	              - 0.0000
	            and 0.0000

      Shetlands   489225   1 (18)
	      Scotlands 0.0369
	              - 0.0369
	    Shetlandish 0.0369
	    Shetlanders 0.0369
	      shetlands 0.0369
	              , 0.0369
	      Shetlands 0.0369
	              . 0.0369
	            and 0.0369
	              A 0.0369
	              m 0.0369
	           1904 0.0369
	              a 0.0369
	       Shetland 0.0369
	           </S> 0.0059
	              ) 0.0000
	              " 0.0000
	              } 0.0000

           1905   489235 inf (15)
	            the 0.2000
	              } 0.0369
	              , 0.0059
	              | 0.0000
	              ) 0.0000
	             95 0.0000
	             01 0.0000
	             of 0.0000
	              - 0.0000
	           </S> 0.0000
	              . 0.0000
	        Islands 0.0000
	            and 0.0000
	              & 0.0000
	             96 0.0000

         Family   489248   1 (22)
	         Family 0.9834
	              I 0.0418
	           1907 0.0369
	        Faimily 0.0369
	         family 0.0369
	         Famila 0.0369
	         Famill 0.0369
	       Familypc 0.0369
	              a 0.0369
	           1908 0.0369
	        Familly 0.0369
	       FamilyPC 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              . 0.0000
	              ] 0.0000
	              , 0.0000
	           File 0.0000
	              / 0.0000
	              ) 0.0000

        TURDID^   489256 inf (30)
	         TARDIS 0.7000
	              a 0.5167
	            Dec 0.1000
	     crests.com 0.0369
	           side 0.0369
	           Prom 0.0369
	       Friendly 0.0369
	              , 0.0369
	           TURI 0.0369
	       friendly 0.0369
	              s 0.0369
	              p 0.0369
	          TDIDF 0.0369
	            rev 0.0369
	          GUDID 0.0369
	         TURYID 0.0369
	          TRIDA 0.0369
	            Vol 0.0369
	           </S> 0.0059
	          <UNK> 0.0000
	             to 0.0000
	             up 0.0000
	            The 0.0000
	              - 0.0000
	              I 0.0000
	            the 0.0000
	              A 0.0000
	           time 0.0000
	              . 0.0000
	             In 0.0000

              .   489263   1 (12)
	              , 0.0369
	              . 0.0369
	           </S> 0.0369
	             of 0.0369
	            and 0.0369
	              ( 0.0369
	            ... 0.0369
	              - 0.0369
	            the 0.0369
	             us 0.0369
	            cia 0.0369
	             iu 0.0369

     Subfamily-   489266   1 (16)
	     Sulfamidyl 0.0369
	    Subfamilies 0.0369
	    Subfamiliae 0.0369
	      subfamily 0.0369
	      Subfamily 0.0369
	           </S> 0.0059
	              A 0.0000
	              / 0.0000
	              " 0.0000
	              - 0.0000
	              I 0.0000
	              . 0.0000
	              ] 0.0000
	              , 0.0000
	              ) 0.0000
	             So 0.0000

        TURDIN^   489277 inf (18)
	              . 0.0369
	      ChangeLog 0.0369
	              a 0.0369
	              - 0.0369
	              ) 0.0369
	     regress.sh 0.0369
	           TURN 0.0369
	          <UNK> 0.0369
	           TURI 0.0369
	         TURYID 0.0369
	              , 0.0369
	         TARDIS 0.0369
	           TRDN 0.0369
	           </S> 0.0369
	        BURKINA 0.0369
	          FURIN 0.0369
	              n 0.0369
	              g 0.0369

              .   489284 inf (8)
	             of 0.0369
	             to 0.0369
	             us 0.0369
	            and 0.0369
	             in 0.0369
	            the 0.0369
	            cia 0.0369
	             iu 0.0369

    Nightingale   489299   4 (26)
	           Good 0.7000
	     Washington 0.7000
	              - 0.1500
	    Nightengale 0.0369
	          shall 0.0369
	              . 0.0369
	              , 0.0369
	             of 0.0369
	              " 0.0369
	             is 0.0369
	             Ft 0.0369
	          Press 0.0369
	          North 0.0369
	              I 0.0369
	    Nightingale 0.0369
	   Nightingales 0.0369
	          Times 0.0369
	             P. 0.0369
	             Mt 0.0369
	    nightingale 0.0369
	       Virginia 0.0369
	         London 0.0059
	           Area 0.0000
	     Manchester 0.0000
	           </S> 0.0000
	     Cincinnati 0.0000

        Daulias   489313 inf (23)
	         Dualis 0.0369
	        daulias 0.0369
	         Daulis 0.0369
	              a 0.0369
	        Daulian 0.0369
	         Daulia 0.0369
	        Douglas 0.0369
	         Julian 0.0369
	         Daluis 0.0369
	         Dalias 0.0369
	         Dallas 0.0369
	        Dahlias 0.0369
	           </S> 0.0059
	              / 0.0000
	              , 0.0000
	              ] 0.0000
	              I 0.0000
	              A 0.0000
	              - 0.0000
	              " 0.0000
	              . 0.0000
	              ) 0.0000
	             In 0.0000

     fliilomcla   489321 inf (22)
	              n 0.0369
	              - 0.0369
	           fact 0.0369
	       makefile 0.0369
	              I 0.0369
	vareSelskap.cgi 0.0369
	        million 0.0369
	          Mills 0.0369
	        compile 0.0369
	            foo 0.0369
	        libtool 0.0369
	          <UNK> 0.0369
	           </S> 0.0369
	           Gill 0.0369
	              l 0.0369
	              a 0.0369
	              . 0.0369
	      configure 0.0369
	              , 0.0369
	      client.pl 0.0369
	              ) 0.0369
	           film 0.0369

              ,   489331 inf (8)
	             of 0.0369
	             to 0.0369
	             us 0.0369
	            and 0.0369
	             in 0.0369
	            the 0.0369
	            cia 0.0369
	             iu 0.0369

         Bechst   489333 inf (24)
	             pp 0.1857
	         Behest 0.0369
	        Bechets 0.0369
	      Bechstedt 0.0369
	   respectively 0.0369
	         sechst 0.0369
	           West 0.0369
	              { 0.0369
	      Bechstein 0.0369
	              x 0.0369
	        Baschet 0.0369
	         Bechet 0.0369
	         zechst 0.0369
	           best 0.0369
	           Bech 0.0369
	            the 0.0059
	          which 0.0012
	             or 0.0000
	            too 0.0000
	             of 0.0000
	             to 0.0000
	              i 0.0000
	           each 0.0000
	              e 0.0000

              A   489342  11 (22)
	           This 0.3358
	             As 0.2611
	            cia 0.0369
	             iu 0.0369
	             PA 0.0369
	             CA 0.0369
	             AA 0.0369
	             us 0.0369
	             AM 0.0369
	            AAA 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              , 0.0000
	              ) 0.0000
	             of 0.0000
	            the 0.0000
	              ] 0.0000
	              . 0.0000
	              / 0.0000
	            and 0.0000

         Smeeth   489365   1 (25)
	          Smeet 0.0369
	          Seeth 0.0369
	         Sameth 0.0369
	              . 0.0369
	         Street 0.0369
	          South 0.0369
	          least 0.0369
	         Smeeth 0.0369
	         Smythe 0.0369
	           home 0.0369
	            the 0.0369
	              a 0.0369
	              , 0.0369
	          <UNK> 0.0369
	         Smeets 0.0369
	              - 0.0369
	            See 0.0369
	            all 0.0369
	           </S> 0.0369
	           your 0.0059
	           work 0.0000
	              x 0.0000
	              y 0.0000
	             us 0.0000
	          which 0.0000

       believed   489406   1 (21)
	              a 0.0369
	              , 0.0369
	              A 0.0369
	              . 0.0369
	       beleived 0.0369
	           came 0.0369
	     unbelieved 0.0369
	       believed 0.0369
	        believe 0.0369
	          moved 0.0369
	          close 0.0369
	       believes 0.0369
	       believer 0.0369
	      believend 0.0369
	              O 0.0369
	              - 0.0369
	       bevilled 0.0369
	           </S> 0.0059
	              " 0.0000
	              } 0.0000
	              ) 0.0000

    Nightingale   489442   2 (24)
	              . 0.8000
	    Nightengale 0.0369
	    nightingale 0.0369
	          thing 0.0369
	    Nightingale 0.0369
	   Nightingales 0.0369
	          shall 0.0369
	        Network 0.0369
	   organisation 0.0369
	      Institute 0.0369
	              I 0.0369
	       basename 0.0059
	              - 0.0000
	            law 0.0000
	      questions 0.0000
	             is 0.0000
	           </S> 0.0000
	            use 0.0000
	          sense 0.0000
	       keywords 0.0000
	             of 0.0000
	    denominator 0.0000
	         thread 0.0000
	              , 0.0000

         nested   489454   1 (27)
	           rule 0.0369
	    established 0.0369
	        nestled 0.0369
	       unnested 0.0369
	         nested 0.0369
	         tensed 0.0369
	          neste 0.0369
	         nester 0.0369
	         nesten 0.0369
	              a 0.0369
	          needs 0.0369
	          today 0.0369
	           need 0.0369
	        snetted 0.0369
	              I 0.0369
	           sang 0.0369
	         nestes 0.0369
	           </S> 0.0059
	              . 0.0000
	           Sang 0.0000
	              - 0.0000
	              , 0.0000
	             is 0.0000
	           used 0.0000
	          never 0.0000
	             of 0.0000
	              ) 0.0000

              A   489492  10 (20)
	             As 0.2611
	             CA 0.0369
	            cia 0.0369
	             iu 0.0369
	             us 0.0369
	             PA 0.0369
	             AM 0.0369
	             AA 0.0369
	            AAA 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	            and 0.0000
	             of 0.0000
	              ) 0.0000
	            the 0.0000
	              ] 0.0000
	              , 0.0000
	              . 0.0000

        Orphean   489501   1 (24)
	       Orphaned 0.0369
	       Orphanet 0.0369
	              a 0.0369
	           when 0.0369
	         Orphan 0.0369
	           Open 0.0369
	       computer 0.0369
	        Orphean 0.0369
	        orphean 0.0369
	              I 0.0369
	        Orpheal 0.0369
	              A 0.0369
	         reader 0.0369
	         Orphen 0.0369
	         police 0.0369
	              , 0.0059
	              . 0.0000
	          voice 0.0000
	    ejaculation 0.0000
	             of 0.0000
	           </S> 0.0000
	        student 0.0000
	         friend 0.0000
	              - 0.0000

           1903   489570 inf (27)
	           2005 0.0369
	              " 0.0369
	             03 0.0369
	          <UNK> 0.0369
	      therefore 0.0369
	           1999 0.0369
	              a 0.0369
	           1983 0.0369
	           2006 0.0369
	           1993 0.0369
	           2003 0.0369
	           1990 0.0369
	           1980 0.0369
	           1931 0.0369
	            8th 0.0369
	              I 0.0369
	           2004 0.0369
	           1973 0.0369
	           </S> 0.0369
	            and 0.0369
	            the 0.0059
	            too 0.0000
	         though 0.0000
	             of 0.0000
	          which 0.0000
	             or 0.0000
	              i 0.0000

            6th   489646 inf (27)
	            oth 0.4000
	             us 0.3000
	            ith 0.2000
	            sth 0.1000
	              a 0.0369
	   Introduction 0.0369
	              h 0.0369
	              I 0.0369
	           1939 0.0369
	     conditions 0.0369
	           </S> 0.0059
	              6 0.0000
	              " 0.0000
	             iu 0.0000
	             to 0.0000
	             ht 0.0000
	              - 0.0000
	              ] 0.0000
	            the 0.0000
	            its 0.0000
	              , 0.0000
	             th 0.0000
	              x 0.0000
	            cia 0.0000
	              ) 0.0000
	              . 0.0000
	             st 0.0000

           1905   489651 inf (27)
	           1985 0.0369
	            and 0.0369
	              ) 0.0369
	           </S> 0.0369
	              a 0.0369
	           2005 0.0369
	              I 0.0369
	              0 0.0369
	           1995 0.0369
	   respectively 0.0369
	              " 0.0369
	           2006 0.0369
	              1 0.0369
	              - 0.0369
	              , 0.0369
	          <UNK> 0.0369
	           1990 0.0369
	           2004 0.0369
	             19 0.0369
	           1900 0.0369
	            the 0.0059
	             or 0.0000
	          which 0.0000
	             pp 0.0000
	            too 0.0000
	              i 0.0000
	             of 0.0000

     vSeptember   489712  14 (25)
	      Spetember 0.6000
	              a 0.5900
	     Septembery 0.0369
	            May 0.0369
	              I 0.0369
	        October 0.0369
	           very 0.0369
	     szeptember 0.0369
	          March 0.0369
	          there 0.0369
	             us 0.0369
	    NoSeptember 0.0369
	            the 0.0059
	              . 0.0000
	              , 0.0000
	      september 0.0000
	      Septembre 0.0000
	            and 0.0000
	           </S> 0.0000
	           this 0.0000
	          their 0.0000
	     Septembers 0.0000
	              - 0.0000
	          other 0.0000
	      September 0.0000

           1904   489723 inf (16)
	              a 0.0369
	            and 0.0369
	              . 0.0369
	          world 0.0369
	              1 0.0369
	          cases 0.0369
	           </S> 0.0369
	              , 0.0369
	              - 0.0369
	           case 0.0369
	           2003 0.0369
	         region 0.0369
	            the 0.0369
	           area 0.0369
	           2004 0.0369
	             of 0.0369

        secured   489856   1 (24)
	        recused 0.0369
	         posing 0.0369
	        secured 0.0369
	       recursed 0.0369
	           sure 0.0369
	             us 0.0369
	            old 0.0369
	         secure 0.0369
	        scurred 0.0369
	        secures 0.0369
	        securer 0.0369
	              I 0.0369
	      resecured 0.0369
	         secura 0.0369
	      unsecured 0.0369
	            and 0.0059
	             of 0.0000
	              , 0.0000
	              - 0.0000
	         should 0.0000
	              a 0.0000
	         second 0.0000
	              . 0.0000
	           </S> 0.0000

     Woodchurch   489867   1 (27)
	          March 0.0369
	              2 0.0369
	     Canterbury 0.0369
	     Woodchurch 0.0369
	              , 0.0369
	          <UNK> 0.0369
	              0 0.0369
	              . 0.0369
	     Whitchurch 0.0369
	            the 0.0369
	      Ludchurch 0.0369
	            all 0.0369
	              - 0.0369
	              1 0.0369
	          least 0.0369
	      Tenterden 0.0369
	           home 0.0369
	              a 0.0369
	      Woodchuck 0.0369
	      Woodhurst 0.0369
	        Ashford 0.0369
	           your 0.0059
	          which 0.0000
	              y 0.0000
	              x 0.0000
	           work 0.0000
	             us 0.0000

          24t]i   489894   3 (25)
	            4th 0.7000
	              2 0.5500
	           24th 0.0369
	          Tutti 0.0369
	          24-25 0.0369
	              a 0.0369
	          Patti 0.0369
	           site 0.0369
	          Petri 0.0369
	           titi 0.0369
	             ti 0.0369
	           2005 0.0059
	             15 0.0000
	              4 0.0000
	              3 0.0000
	              . 0.0000
	              - 0.0000
	              , 0.0000
	             30 0.0000
	           </S> 0.0000
	              1 0.0000
	           2004 0.0000
	             24 0.0000
	           25th 0.0000
	           20th 0.0000

           1907   489901 inf (24)
	           2003 0.0369
	            yes 0.0369
	           2004 0.0369
	            and 0.0369
	              } 0.0369
	           1970 0.0369
	              s 0.0369
	              I 0.0369
	          <UNK> 0.0369
	              a 0.0369
	           1987 0.0369
	   respectively 0.0369
	           1990 0.0369
	              " 0.0369
	           1997 0.0369
	           </S> 0.0369
	           2005 0.0369
	           1906 0.0369
	           1999 0.0369
	            the 0.0059
	          which 0.0000
	             of 0.0000
	             or 0.0000
	              i 0.0000

            one   489908   1 (25)
	             on 0.0369
	            one 0.0369
	            oen 0.0369
	     specialize 0.0369
	            cia 0.0369
	             iu 0.0369
	             us 0.0369
	              - 0.0369
	           ones 0.0369
	           oner 0.0369
	           onen 0.0369
	            and 0.0369
	            ons 0.0369
	            ont 0.0369
	              , 0.0369
	              a 0.0369
	              A 0.0369
	           onee 0.0369
	             of 0.0369
	           died 0.0369
	              . 0.0369
	           </S> 0.0059
	              ) 0.0000
	              " 0.0000
	              } 0.0000

      September   489924   1 (25)
	            Va. 0.0369
	       Virginia 0.0369
	             VA 0.0369
	          after 0.0369
	           </S> 0.0369
	            but 0.0369
	      September 0.0369
	        England 0.0369
	          North 0.0369
	              I 0.0369
	              " 0.0369
	      Spetember 0.0369
	      Septembre 0.0369
	     Septembers 0.0369
	     Septembery 0.0369
	          <UNK> 0.0369
	              , 0.0369
	              a 0.0369
	            and 0.0369
	            the 0.0059
	          which 0.0000
	              i 0.0000
	          there 0.0000
	             or 0.0000
	          other 0.0000

           1902   489940 inf (23)
	           2005 0.0369
	           2001 0.0369
	           1904 0.0369
	           1990 0.0369
	            and 0.0369
	           2006 0.0369
	           </S> 0.0369
	           2003 0.0369
	           1982 0.0369
	              " 0.0369
	           2004 0.0369
	           1992 0.0369
	              I 0.0369
	              ( 0.0369
	             19 0.0369
	              s 0.0369
	              a 0.0369
	          <UNK> 0.0369
	            the 0.0059
	             or 0.0000
	             of 0.0000
	          which 0.0000
	              i 0.0000

            one   489946   1 (22)
	             of 0.0369
	           ones 0.0369
	           oner 0.0369
	           onen 0.0369
	              a 0.0369
	            one 0.0369
	            ons 0.0369
	            ont 0.0369
	             on 0.0369
	            oen 0.0369
	              , 0.0369
	              A 0.0369
	              s 0.0369
	            cia 0.0369
	             us 0.0369
	              - 0.0369
	              . 0.0369
	           onee 0.0369
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	              } 0.0000

              a   490000   1 (20)
	              . 0.0369
	              a 0.0369
	            the 0.0369
	              , 0.0369
	             La 0.0369
	             to 0.0369
	             at 0.0369
	           lava 0.0369
	            cia 0.0369
	             la 0.0369
	              - 0.0369
	             aa 0.0369
	             of 0.0369
	             us 0.0369
	             as 0.0369
	            aaa 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	              " 0.0000

         3'oung   490002   1 (29)
	          young 0.8000
	          goung 0.0369
	         amoung 0.0369
	          white 0.0369
	              ( 0.0369
	          Loung 0.0369
	         senior 0.0369
	          light 0.0369
	          minor 0.0369
	       visiting 0.0369
	            few 0.0097
	           </S> 0.0059
	          Sound 0.0000
	         single 0.0000
	         second 0.0000
	          Young 0.0000
	          <UNK> 0.0000
	              - 0.0000
	              ) 0.0000
	        similar 0.0000
	          small 0.0000
	          found 0.0000
	            new 0.0000
	          major 0.0000
	            lot 0.0000
	            oun 0.0000
	         around 0.0000
	         ground 0.0000
	           goun 0.0000

         female   490009   1 (21)
	              , 0.0369
	            job 0.0369
	         breeze 0.0369
	           look 0.0369
	          famle 0.0369
	              . 0.0369
	         female 0.0369
	         famlee 0.0369
	             of 0.0369
	              I 0.0369
	              - 0.0369
	         family 0.0369
	           file 0.0369
	      professor 0.0369
	        fermale 0.0369
	              a 0.0369
	         femalo 0.0369
	        females 0.0369
	           </S> 0.0369
	          email 0.0369
	       femalely 0.0369

          North   490019   1 (27)
	            the 0.0369
	          Norte 0.0369
	              , 0.0369
	            RAF 0.0369
	          North 0.0369
	           Long 0.0369
	          corax 0.0369
	          torax 0.0369
	           </S> 0.0369
	              . 0.0369
	    Tattershall 0.0369
	           Nort 0.0369
	              - 0.0369
	         Norths 0.0369
	            Now 0.0369
	          Nortt 0.0369
	          least 0.0369
	        January 0.0369
	         Northd 0.0369
	          South 0.0369
	          birth 0.0369
	              a 0.0369
	           your 0.0059
	          which 0.0000
	             us 0.0000
	           work 0.0000
	              x 0.0000

   Lincolnshire   490032   1 (26)
	              a 0.0369
	        Cristal 0.0369
	              I 0.0369
	           </S> 0.0369
	        Everard 0.0369
	    Linconshire 0.0369
	   Lincolnshire 0.0369
	          South 0.0369
	            and 0.0369
	   lincolnshire 0.0369
	         Europe 0.0369
	              " 0.0369
	          North 0.0369
	           Ohio 0.0369
	          <UNK> 0.0369
	         online 0.0369
	      therefore 0.0369
	            the 0.0059
	          which 0.0000
	            who 0.0000
	             or 0.0000
	          other 0.0000
	          there 0.0000
	            too 0.0000
	              i 0.0000
	         though 0.0000

           1899   490063 inf (23)
	           1890 0.0369
	           2003 0.0369
	          <UNK> 0.0369
	              " 0.0369
	            and 0.0369
	              I 0.0369
	           1999 0.0369
	           1989 0.0369
	           </S> 0.0369
	      therefore 0.0369
	           2006 0.0369
	           2004 0.0369
	              a 0.0369
	           2005 0.0369
	           1998 0.0369
	           1988 0.0369
	            the 0.0059
	             or 0.0000
	          which 0.0000
	         though 0.0000
	              i 0.0000
	             of 0.0000
	            too 0.0000

              a   490140   1 (20)
	              a 0.0369
	             us 0.0369
	              - 0.0369
	             La 0.0369
	           lava 0.0369
	            cia 0.0369
	             la 0.0369
	             aa 0.0369
	            the 0.0369
	             of 0.0369
	              , 0.0369
	              . 0.0369
	             as 0.0369
	             at 0.0369
	             to 0.0369
	            aaa 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	              " 0.0000

        October   490179   1 (25)
	            and 0.0369
	              - 0.0369
	       Shetland 0.0369
	              I 0.0369
	       Scotland 0.0369
	        located 0.0369
	              a 0.0369
	              , 0.0369
	        October 0.0369
	              . 0.0369
	        Oktober 0.0369
	        Ocotber 0.0369
	           </S> 0.0369
	         Orkney 0.0369
	             NC 0.0369
	        Octobre 0.0369
	       Octobers 0.0369
	       Octobery 0.0369
	          Other 0.0369
	            the 0.0059
	          which 0.0012
	           more 0.0000
	          other 0.0000
	             or 0.0000
	              i 0.0000

           1900   490193 inf (23)
	           1999 0.0369
	              a 0.0369
	           1970 0.0369
	           2005 0.0369
	           2003 0.0369
	           2004 0.0369
	           </S> 0.0369
	            and 0.0369
	              I 0.0369
	           1980 0.0369
	           2000 0.0369
	           1990 0.0369
	   respectively 0.0369
	              " 0.0369
	          <UNK> 0.0369
	           1910 0.0369
	            the 0.0059
	             or 0.0000
	             pp 0.0000
	            too 0.0000
	          which 0.0000
	             of 0.0000
	              i 0.0000

           1905   490274 inf (28)
	              1 0.0369
	              } 0.0369
	              " 0.0369
	           2006 0.0369
	           1898 0.0369
	             19 0.0369
	           2004 0.0369
	           1999 0.0369
	            and 0.0369
	              - 0.0369
	              0 0.0369
	           1975 0.0369
	              ) 0.0369
	              , 0.0369
	          <UNK> 0.0369
	           1995 0.0369
	           2005 0.0369
	              s 0.0369
	           2400 0.0369
	             E. 0.0369
	              I 0.0369
	           </S> 0.0369
	              a 0.0369
	            the 0.0059
	             or 0.0000
	              i 0.0000
	          which 0.0000
	             of 0.0000

            two   490281   1 (23)
	              , 0.0369
	            two 0.0369
	              d 0.0369
	             us 0.0369
	              a 0.0369
	              - 0.0369
	            the 0.0369
	            cia 0.0369
	             iu 0.0369
	           twos 0.0369
	           twon 0.0369
	            twp 0.0369
	            twa 0.0369
	             tw 0.0369
	            wot 0.0369
	              . 0.0369
	            tow 0.0369
	              A 0.0369
	             to 0.0369
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	              } 0.0000

        Li^dlow   490303  16 (31)
	         window 0.5000
	           Lido 0.1000
	      Ellesmere 0.0369
	           Lilo 0.0369
	          Siena 0.0369
	     Shrewsbury 0.0369
	     Bridgnorth 0.0369
	          Lidol 0.0369
	         Kudlow 0.0369
	        Siedlow 0.0369
	         Sidlow 0.0369
	         Lindow 0.0369
	        Laidlaw 0.0369
	        windows 0.0369
	            the 0.0059
	         Ludlow 0.0000
	              , 0.0000
	     Washington 0.0000
	            you 0.0000
	         London 0.0000
	              I 0.0000
	           </S> 0.0000
	         Willow 0.0000
	           Lidl 0.0000
	              a 0.0000
	              - 0.0000
	           term 0.0000
	         Disney 0.0000
	              . 0.0000
	         future 0.0000
	             us 0.0000

     Shropshire   490312   1 (23)
	              " 0.0369
	            and 0.0369
	            but 0.0369
	           </S> 0.0369
	     shropshire 0.0369
	    Sshropshire 0.0369
	              a 0.0369
	     Shropshire 0.0369
	            yes 0.0369
	              I 0.0369
	      therefore 0.0369
	          <UNK> 0.0369
	            the 0.0059
	          which 0.0000
	            too 0.0000
	          their 0.0000
	            who 0.0000
	             or 0.0000
	              i 0.0000
	          other 0.0000
	          while 0.0000
	         though 0.0000
	        through 0.0000

           1903   490327 inf (21)
	           both 0.2649
	           1880 0.0369
	             us 0.0369
	              x 0.0369
	              I 0.0369
	           vain 0.0369
	           them 0.0369
	             of 0.0369
	            the 0.0059
	              a 0.0000
	              . 0.0000
	           2003 0.0000
	              , 0.0000
	           this 0.0000
	           2001 0.0000
	              - 0.0000
	        writing 0.0000
	              1 0.0000
	            and 0.0000
	           your 0.0000
	           </S> 0.0000

            and   490334   1 (19)
	           aand 0.0369
	              - 0.0369
	              S 0.0369
	            any 0.0369
	             an 0.0369
	             us 0.0369
	            ant 0.0369
	            arz 0.0369
	           alba 0.0369
	              A 0.0369
	            and 0.0369
	           andy 0.0369
	           anda 0.0369
	              , 0.0369
	              . 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	              " 0.0000

        Fawilx-   490416   1 (24)
	        Familia 0.0369
	           Fwix 0.0369
	         Fawlty 0.0369
	         Fawley 0.0369
	              a 0.0369
	           Fail 0.0369
	           Falx 0.0369
	        Familie 0.0369
	          wawil 0.0369
	        Fawsley 0.0369
	         Flawil 0.0369
	          Rawil 0.0369
	          Tawil 0.0369
	         Family 0.0369
	         Failli 0.0369
	           </S> 0.0059
	              I 0.0000
	              A 0.0000
	              , 0.0000
	              - 0.0000
	              " 0.0000
	              ] 0.0000
	              . 0.0000
	              ) 0.0000

           TURD   490424 inf (21)
	          <UNK> 0.0369
	              n 0.0369
	           This 0.0369
	              . 0.0369
	              - 0.0369
	              ) 0.0369
	            TRD 0.0369
	             To 0.0369
	              , 0.0369
	            TUD 0.0369
	           </S> 0.0369
	          DUART 0.0369
	            URD 0.0369
	           TURN 0.0369
	           TURP 0.0369
	           TURI 0.0369
	            The 0.0369
	            TUR 0.0369
	           TRDR 0.0369
	              a 0.0369
	              g 0.0369

             ID   490429   1 (19)
	            IID 0.0369
	            IDE 0.0369
	            IDG 0.0369
	            IDD 0.0369
	             In 0.0369
	             ID 0.0369
	             DI 0.0369
	             iu 0.0369
	            cia 0.0369
	             us 0.0369
	             If 0.0369
	             It 0.0369
	           </S> 0.0059
	              , 0.0000
	             IN 0.0000
	              - 0.0000
	              ! 0.0000
	              . 0.0000
	        BURGLAR 0.0000

              .   490431   1 (16)
	              . 1.0000
	              # 0.0540
	            cia 0.0369
	             iu 0.0369
	              : 0.0059
	              , 0.0000
	            the 0.0000
	             IL 0.0000
	            No. 0.0000
	            ... 0.0000
	            and 0.0000
	             us 0.0000
	              - 0.0000
	             of 0.0000
	             is 0.0000
	           </S> 0.0000

             -E   490433 inf (22)
	             in 0.0634
	              I 0.0418
	              s 0.0369
	              a 0.0369
	             RE 0.0369
	             EE 0.0369
	             iu 0.0369
	             us 0.0369
	       password 0.0369
	              A 0.0328
	             to 0.0265
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	             -- 0.0000
	              / 0.0000
	              ) 0.0000
	             of 0.0000
	              : 0.0000
	              . 0.0000
	              , 0.0000
	          <UNK> 0.0000

              .   490435   1 (15)
	            and 0.0369
	          <UNK> 0.0369
	              - 0.0369
	              , 0.0369
	          .deps 0.0369
	             iu 0.0369
	           </S> 0.0369
	            cia 0.0369
	             of 0.0369
	              ) 0.0369
	          a.out 0.0369
	             us 0.0369
	             .. 0.0369
	              . 0.0369
	            the 0.0369

    5«//rtw//r-   490438 inf (22)
	          After 0.2000
	              [ 0.1000
	             to 0.0369
	      Therefore 0.0369
	          First 0.0369
	              O 0.0369
	           </S> 0.0059
	             At 0.0000
	             It 0.0000
	              A 0.0000
	            The 0.0000
	              , 0.0000
	              . 0.0000
	              I 0.0000
	              / 0.0000
	              ] 0.0000
	          <UNK> 0.0000
	              ) 0.0000
	              " 0.0000
	          Write 0.0000
	              - 0.0000
	        However 0.0000

              5   490450 inf (12)
	            and 0.0369
	          <UNK> 0.0369
	             of 0.0369
	              , 0.0369
	             us 0.0369
	              ) 0.0369
	             iu 0.0369
	              . 0.0369
	              - 0.0369
	            the 0.0369
	           </S> 0.0369
	            cia 0.0369

           ILY^   490458   1 (24)
	              K 0.0369
	            LIY 0.0369
	            IYL 0.0369
	            ILY 0.0369
	         School 0.0369
	           ILYA 0.0369
	           ILYM 0.0369
	             'm 0.0059
	           know 0.0000
	             am 0.0000
	              - 0.0000
	             In 0.0000
	             It 0.0000
	              ) 0.0000
	           said 0.0000
	              . 0.0000
	              J 0.0000
	          think 0.0000
	             If 0.0000
	              , 0.0000
	             IL 0.0000
	           have 0.0000
	             do 0.0000
	           </S> 0.0000

              .   490462   1 (18)
	              , 0.0369
	            not 0.0369
	            the 0.0369
	              : 0.0369
	             to 0.0369
	              L 0.0369
	              " 0.0369
	             .. 0.0369
	             O. 0.0369
	           </S> 0.0369
	              - 0.0369
	            cia 0.0369
	             iu 0.0369
	            and 0.0369
	              . 0.0369
	             of 0.0369
	            ... 0.0369
	             us 0.0369

      Sardinian   490469  13 (22)
	       sardinia 0.4000
	       Sardinia 0.1000
	              / 0.0369
	      Sardiniae 0.0369
	      Sardiniam 0.0369
	      Passerine 0.0369
	     Associated 0.0369
	         Garden 0.0369
	        Sardina 0.0369
	              ) 0.0369
	            KDE 0.0369
	           </S> 0.0059
	      following 0.0000
	          <UNK> 0.0000
	       American 0.0000
	          first 0.0000
	              - 0.0000
	     Sardinians 0.0000
	       National 0.0000
	              ( 0.0000
	          World 0.0000
	      Sardinian 0.0000

        Svlviii   490489   1 (30)
	         Siiiii 0.0369
	   Phylloscopus 0.0369
	          Elvii 0.0369
	              a 0.0369
	        Svelvik 0.0369
	         Elviin 0.0369
	        Solving 0.0369
	         Silvia 0.0369
	         Salvia 0.0369
	   Acrocephalus 0.0369
	           Siii 0.0369
	          Silvi 0.0369
	        avvilii 0.0369
	         Sylvia 0.0369
	         milvii 0.0369
	          xviii 0.0369
	        Svilici 0.0369
	           viii 0.0369
	           </S> 0.0059
	            For 0.0000
	             In 0.0000
	              I 0.0000
	              A 0.0000
	              ] 0.0000
	              ) 0.0000
	              , 0.0000
	              - 0.0000
	              / 0.0000
	              . 0.0000
	              " 0.0000

viclanoccpliaUx   490497 inf (24)
	          <UNK> 0.0369
	vareSelskap.cgi 0.0369
	        compile 0.0369
	        example 0.0369
	           Gill 0.0369
	         Llopis 0.0369
	     particular 0.0369
	        Atlanta 0.0369
	   Applications 0.0369
	              a 0.0369
	              n 0.0369
	      client.pl 0.0369
	              I 0.0369
	              - 0.0369
	      changelog 0.0369
	              . 0.0369
	         debian 0.0369
	              ) 0.0369
	              , 0.0369
	      configure 0.0369
	             ap 0.0369
	           </S> 0.0369
	     comparison 0.0369
	              l 0.0369

              ,   490512 inf (8)
	             of 0.0369
	             to 0.0369
	             us 0.0369
	            and 0.0369
	             in 0.0369
	            the 0.0369
	            cia 0.0369
	             iu 0.0369

           GmEL   490514 inf (24)
	            GEL 0.0369
	          BimEL 0.0369
	             EL 0.0369
	            Get 0.0369
	           GTEL 0.0369
	              x 0.0369
	             Gm 0.0369
	           GLEE 0.0369
	          Games 0.0369
	   respectively 0.0369
	            GLE 0.0369
	           GmbH 0.0369
	              { 0.0369
	           GEGL 0.0369
	             Go 0.0369
	            the 0.0059
	              i 0.0000
	             of 0.0000
	             pp 0.0000
	             or 0.0000
	              e 0.0000
	            too 0.0000
	          which 0.0000
	             to 0.0000

              .   490518   1 (11)
	             iu 0.0369
	             of 0.0369
	           </S> 0.0369
	            ... 0.0369
	              , 0.0369
	            and 0.0369
	            cia 0.0369
	             us 0.0369
	              . 0.0369
	              - 0.0369
	            the 0.0369

              A   490521  11 (22)
	           This 0.3358
	             As 0.2611
	            cia 0.0369
	             iu 0.0369
	             PA 0.0369
	             CA 0.0369
	             AA 0.0369
	             us 0.0369
	             AM 0.0369
	            AAA 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              , 0.0000
	              ) 0.0000
	             of 0.0000
	            the 0.0000
	              ] 0.0000
	              . 0.0000
	              / 0.0000
	            and 0.0000

           1907   490565 inf (26)
	           2004 0.0369
	           1997 0.0369
	      therefore 0.0369
	           1999 0.0369
	           2006 0.0369
	              I 0.0369
	           2005 0.0369
	            and 0.0369
	          <UNK> 0.0369
	           1970 0.0369
	            4th 0.0369
	           1987 0.0369
	           </S> 0.0369
	              ) 0.0369
	           1990 0.0369
	              " 0.0369
	           2003 0.0369
	              a 0.0369
	           1900 0.0369
	            the 0.0059
	             or 0.0000
	              i 0.0000
	             of 0.0000
	            too 0.0000
	          which 0.0000
	         though 0.0000

         Parkin   490600  14 (29)
	           name 0.0369
	         market 0.0369
	        Parnika 0.0369
	    Kirkpatrick 0.0369
	         unique 0.0369
	         Pirkan 0.0369
	          Parus 0.0369
	        carrier 0.0369
	              a 0.0369
	            way 0.0369
	           Ebel 0.0369
	         Parkia 0.0369
	              , 0.0059
	      Jefferson 0.0000
	              A 0.0000
	             A. 0.0000
	              F 0.0000
	              E 0.0000
	           Park 0.0000
	             P. 0.0000
	         Nelson 0.0000
	              . 0.0000
	          Print 0.0000
	           </S> 0.0000
	          <UNK> 0.0000
	              - 0.0000
	        Parking 0.0000
	         Parkin 0.0000
	        Parkins 0.0000

            Esq   490608   2 (36)
	             pp 0.1857
	        Michael 0.0369
	              " 0.0369
	           Phys 0.0369
	           Appl 0.0369
	          Eqqus 0.0369
	             L. 0.0369
	          <UNK> 0.0369
	              ( 0.0369
	            Esq 0.0369
	           </S> 0.0369
	   respectively 0.0369
	              a 0.0369
	            Vol 0.0369
	             Es 0.0369
	         Esquel 0.0369
	             E. 0.0369
	              x 0.0369
	            Est 0.0369
	            Esp 0.0369
	             Eq 0.0369
	          Esqul 0.0369
	              , 0.0369
	             as 0.0369
	            and 0.0369
	          Esoqq 0.0369
	            the 0.0059
	          which 0.0012
	             sq 0.0000
	             is 0.0000
	             or 0.0000
	             us 0.0000
	             ed 0.0000
	              i 0.0000
	            too 0.0000
	            use 0.0000

          F.Z.S   490614 inf (25)
	              t 0.0369
	           FZNS 0.0369
	           FZSB 0.0369
	          <UNK> 0.0369
	              ) 0.0369
	          FOCUS 0.0369
	           UFZS 0.0369
	           </S> 0.0369
	            ZFS 0.0369
	              / 0.0369
	            FSZ 0.0369
	            FZS 0.0369
	      ChangeLog 0.0369
	             FZ 0.0369
	   respectively 0.0369
	              . 0.0369
	            the 0.0059
	             pp 0.0000
	             of 0.0000
	          which 0.0000
	             to 0.0000
	              e 0.0000
	            too 0.0000
	             or 0.0000
	              i 0.0000

              .   490619   1 (14)
	             iu 0.0369
	         psybnc 0.0369
	           </S> 0.0369
	            and 0.0369
	              / 0.0369
	              . 0.0369
	             us 0.0369
	              , 0.0369
	            the 0.0369
	             of 0.0369
	            ... 0.0369
	            cia 0.0369
	          <UNK> 0.0369
	              - 0.0369

           Wren   490639  18 (27)
	           free 0.4000
	              ) 0.1000
	          <UNK> 0.1000
	            Web 0.0369
	           Wrex 0.0369
	        Burgers 0.0369
	            arz 0.0369
	            mp3 0.0369
	          Wrenn 0.0369
	       activity 0.0369
	           When 0.0369
	           Free 0.0369
	          Wrens 0.0369
	              I 0.0369
	           Wern 0.0369
	        friends 0.0369
	      Cormorant 0.0059
	     wheatgrass 0.0000
	            the 0.0000
	              - 0.0000
	              a 0.0000
	             at 0.0000
	           Wren 0.0000
	              . 0.0000
	           </S> 0.0000
	       Cockatoo 0.0000
	              , 0.0000

    Breconshire   490675  11 (29)
	    Linconshire 0.1000
	      Ironshire 0.0369
	    preconspire 0.0369
	           1981 0.0369
	        Arizona 0.0369
	         Dallas 0.0369
	              x 0.0369
	             us 0.0369
	       December 0.0369
	            the 0.0059
	           this 0.0000
	     particular 0.0000
	              , 0.0000
	        writing 0.0000
	           time 0.0000
	           fact 0.0000
	              - 0.0000
	              a 0.0000
	        another 0.0000
	           turn 0.0000
	              . 0.0000
	           </S> 0.0000
	          other 0.0000
	           your 0.0000
	         Canada 0.0000
	    Breconshire 0.0000
	          place 0.0000
	           part 0.0000
	     Brookshire 0.0000

           1899   490706 inf (24)
	              " 0.0369
	           1898 0.0369
	           2004 0.0369
	           1999 0.0369
	           2006 0.0369
	           1809 0.0369
	           2005 0.0369
	           2003 0.0369
	              a 0.0369
	   respectively 0.0369
	           </S> 0.0369
	            and 0.0369
	           1998 0.0369
	           1839 0.0369
	              I 0.0369
	          <UNK> 0.0369
	           1989 0.0369
	            the 0.0059
	          which 0.0000
	            too 0.0000
	             or 0.0000
	             pp 0.0000
	              i 0.0000
	             of 0.0000

              A   490713  10 (20)
	             As 0.2611
	             us 0.0369
	            cia 0.0369
	             iu 0.0369
	             AM 0.0369
	             PA 0.0369
	             CA 0.0369
	             AA 0.0369
	            AAA 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ) 0.0000
	            the 0.0000
	              ] 0.0000
	            and 0.0000
	             of 0.0000
	              . 0.0000
	              , 0.0000

           1905   490784 inf (26)
	           2003 0.0369
	            and 0.0369
	           1903 0.0369
	           75th 0.0369
	          <UNK> 0.0369
	           1950 0.0369
	              ( 0.0369
	              I 0.0369
	           </S> 0.0369
	              a 0.0369
	           1909 0.0369
	           2001 0.0369
	      therefore 0.0369
	           1990 0.0369
	           2004 0.0369
	              " 0.0369
	           2006 0.0369
	           2005 0.0369
	           1995 0.0369
	            the 0.0059
	            too 0.0000
	          which 0.0000
	              i 0.0000
	             of 0.0000
	             or 0.0000
	         though 0.0000

            one   490844   1 (26)
	           onee 0.0369
	       calendar 0.0369
	             on 0.0369
	            cia 0.0369
	             iu 0.0369
	           year 0.0369
	              : 0.0369
	            oen 0.0369
	             of 0.0369
	             us 0.0369
	              , 0.0369
	            ons 0.0369
	            ont 0.0369
	              a 0.0369
	           ones 0.0369
	              I 0.0369
	            one 0.0369
	              . 0.0369
	           oner 0.0369
	           onen 0.0369
	        podcast 0.0369
	              - 0.0369
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	              } 0.0000

           1906   490903 inf (27)
	              a 0.0369
	           1999 0.0369
	              ( 0.0369
	           2006 0.0369
	      therefore 0.0369
	           2003 0.0369
	              I 0.0369
	          <UNK> 0.0369
	           1986 0.0369
	           1990 0.0369
	           2004 0.0369
	           1960 0.0369
	           </S> 0.0369
	           1976 0.0369
	           1919 0.0369
	           2001 0.0369
	           1996 0.0369
	            and 0.0369
	              " 0.0369
	           2005 0.0369
	            the 0.0059
	             or 0.0000
	              i 0.0000
	          which 0.0000
	             of 0.0000
	         though 0.0000
	            too 0.0000

         Tresco   490953   1 (31)
	         Tresco 0.0369
	            The 0.0369
	            the 0.0369
	         Trosec 0.0369
	          least 0.0369
	           NCBI 0.0369
	           </S> 0.0369
	              ! 0.0369
	         Trelco 0.0369
	              a 0.0369
	         Tresca 0.0369
	          These 0.0369
	          Tesco 0.0369
	       Trescowe 0.0369
	       Trescope 0.0369
	              . 0.0369
	              , 0.0369
	          Treco 0.0369
	         Fresco 0.0369
	          <UNK> 0.0369
	              : 0.0369
	          Press 0.0369
	              - 0.0369
	            all 0.0369
	javax.servlet.http.HttpServlet.service 0.0369
	           your 0.0059
	             us 0.0000
	          which 0.0000
	              y 0.0000
	              x 0.0000
	           work 0.0000

         Scilly   490961  12 (29)
	         Social 0.5000
	       Compiled 0.0369
	          cilly 0.0369
	            SUP 0.0369
	           REAR 0.0369
	        Unknown 0.0369
	        Sicilly 0.0369
	         Scille 0.0369
	           PRES 0.0369
	            TSO 0.0369
	          <UNK> 0.0059
	              A 0.0000
	              ) 0.0000
	           Sell 0.0000
	              ( 0.0000
	         Scilly 0.0000
	           </S> 0.0000
	            the 0.0000
	              s 0.0000
	              1 0.0000
	              a 0.0000
	         Scilla 0.0000
	              b 0.0000
	              - 0.0000
	              2 0.0000
	          Silly 0.0000
	          Small 0.0000
	         Sicily 0.0000
	              I 0.0000

            ist   490981 inf (29)
	           site 0.9000
	              . 0.4000
	            ist 0.0369
	           iste 0.0369
	              a 0.0369
	           isto 0.0369
	           isti 0.0369
	             iu 0.0369
	            cia 0.0369
	            isp 0.0369
	            iso 0.0369
	             us 0.0369
	           2005 0.0059
	              5 0.0000
	             31 0.0000
	             is 0.0000
	              , 0.0000
	           2004 0.0000
	              - 0.0000
	              1 0.0000
	           </S> 0.0000
	            its 0.0000
	             28 0.0000
	             21 0.0000
	             it 0.0000
	              4 0.0000
	             19 0.0000
	             25 0.0000
	             in 0.0000

           1905   490986 inf (24)
	              a 0.0369
	           1995 0.0369
	           2005 0.0369
	           1999 0.0369
	              I 0.0369
	              " 0.0369
	          <UNK> 0.0369
	           1985 0.0369
	           2004 0.0369
	           1975 0.0369
	   respectively 0.0369
	            bzw 0.0369
	           2003 0.0369
	           1950 0.0369
	           1990 0.0369
	            and 0.0369
	           </S> 0.0369
	            the 0.0059
	             or 0.0000
	          which 0.0000
	              i 0.0000
	             pp 0.0000
	             of 0.0000
	            too 0.0000

        Family^   490992   2 (19)
	       Families 0.4462
	        Familly 0.0369
	       FamilyPC 0.0369
	       Familypc 0.0369
	        Familia 0.0369
	              a 0.0369
	        Faimily 0.0369
	         Famila 0.0369
	         Family 0.0369
	         family 0.0369
	           </S> 0.0059
	              - 0.0000
	              ] 0.0000
	              . 0.0000
	              , 0.0000
	              " 0.0000
	              ) 0.0000
	              A 0.0000
	              I 0.0000

             Ti   491000 inf (19)
	          <UNK> 0.0369
	            Tii 0.0369
	              n 0.0369
	              , 0.0369
	             is 0.0369
	              - 0.0369
	             us 0.0369
	             iu 0.0369
	              . 0.0369
	           </S> 0.0369
	              ) 0.0369
	             Ti 0.0369
	            cia 0.0369
	             TV 0.0369
	             To 0.0369
	             in 0.0369
	              a 0.0369
	            Tim 0.0369
	            Tip 0.0369

             7^   491003 inf (11)
	             in 0.1000
	             us 0.0369
	             iu 0.0369
	            cia 0.0369
	              - 0.0059
	           </S> 0.0000
	              ] 0.0000
	             to 0.0000
	              , 0.0000
	             of 0.0000
	              . 0.0000

           DILL   491006 inf (19)
	            DSL 0.0369
	           DELL 0.0369
	         DILLIC 0.0369
	            DLI 0.0369
	              A 0.0369
	            ILL 0.0369
	           </S> 0.0369
	              a 0.0369
	            DIL 0.0369
	              , 0.0369
	              - 0.0369
	           DILG 0.0369
	           DILF 0.0369
	            DLL 0.0369
	            DVD 0.0369
	              . 0.0369
	           DLLI 0.0369
	              C 0.0369
	           Date 0.0369

             -E   491011 inf (18)
	             of 1.0000
	             in 1.0000
	              W 0.1000
	              - 0.1000
	             us 0.0369
	             to 0.0369
	             iu 0.0369
	            cia 0.0369
	             EE 0.0369
	             RE 0.0369
	              , 0.0059
	              : 0.0000
	           </S> 0.0000
	          SAUCE 0.0000
	        PICKLES 0.0000
	             -- 0.0000
	              . 0.0000
	              M 0.0000

              .   491013 inf (14)
	              , 0.0369
	              : 0.0369
	            the 0.0369
	             b. 0.0369
	             B. 0.0369
	             of 0.0369
	           </S> 0.0369
	              - 0.0369
	            cia 0.0369
	             J. 0.0369
	         Alisha 0.0369
	             us 0.0369
	            and 0.0369
	          <UNK> 0.0369

 SuhJaniiiy-SYL   491016 inf (17)
	           What 0.5000
	   Additionally 0.0369
	           </S> 0.0059
	      Searching 0.0000
	              " 0.0000
	              ) 0.0000
	           This 0.0000
	              ] 0.0000
	              / 0.0000
	              . 0.0000
	          Thank 0.0000
	              I 0.0000
	              , 0.0000
	          Since 0.0000
	              A 0.0000
	              - 0.0000
	      ChangeLog 0.0000

              J   491031 inf (20)
	          <UNK> 0.0369
	             iu 0.0369
	           </S> 0.0369
	             NJ 0.0369
	             DJ 0.0369
	             AJ 0.0369
	             JR 0.0369
	             JP 0.0369
	             JJ 0.0369
	            cia 0.0369
	              - 0.0369
	              ) 0.0369
	            JJJ 0.0369
	            and 0.0369
	             us 0.0369
	             JD 0.0369
	             of 0.0369
	              . 0.0369
	            the 0.0369
	              , 0.0369

           7IA\   491033 inf (22)
	           WITH 0.9000
	            FAQ 0.4000
	             IA 0.4000
	           RIAA 0.0369
	          Gallo 0.0369
	           DIAL 0.0369
	            CIA 0.0369
	           AIAI 0.0369
	           AIAA 0.0369
	              K 0.0059
	            and 0.0000
	              A 0.0000
	              . 0.0000
	              L 0.0000
	           SIAM 0.0000
	              - 0.0000
	           </S> 0.0000
	              \ 0.0000
	              , 0.0000
	            VIA 0.0000
	            AIA 0.0000
	            III 0.0000

             E.   491038   1 (19)
	             of 0.0369
	             us 0.0369
	             El 0.0369
	              a 0.0369
	           </S> 0.0369
	             EE 0.0369
	              A 0.0369
	              - 0.0369
	              L 0.0369
	             iu 0.0369
	            cia 0.0369
	              I 0.0369
	             in 0.0369
	              K 0.0369
	             EU 0.0369
	              . 0.0369
	              , 0.0369
	             to 0.0369
	              E 0.0369

        PallAvS   491042 inf (21)
	          Palle 0.1000
	          Miers 0.0369
	           Pall 0.0369
	        Pallava 0.0369
	          Palva 0.0369
	        Pallavi 0.0369
	          Pally 0.0369
	              I 0.0369
	         Pallav 0.0369
	              D 0.0369
	              , 0.0059
	              . 0.0000
	           coli 0.0000
	              A 0.0000
	           </S> 0.0000
	        Pacific 0.0000
	              ( 0.0000
	           Hall 0.0000
	              - 0.0000
	              : 0.0000
	       Phillips 0.0000

              '   491049 inf (11)
	           </S> 0.0369
	              . 0.0369
	             's 0.0369
	             of 0.0369
	              - 0.0369
	            the 0.0369
	             A. 0.0369
	             us 0.0369
	             J. 0.0369
	              , 0.0369
	            and 0.0369

              .   491066   9 (14)
	            the 0.3000
	            and 0.1000
	              > 0.0369
	             M. 0.0369
	             L. 0.0369
	             S. 0.0369
	             us 0.0369
	           </S> 0.0059
	             of 0.0000
	              . 0.0000
	              ( 0.0000
	              - 0.0000
	              , 0.0000
	            ... 0.0000

   Phy/Iosiopus   491069   1 (18)
	              a 0.0369
	    Phyprosopus 0.0369
	       Chestnut 0.0369
	   Acrocephalus 0.0369
	   Phylloscopus 0.0369
	         Sylvia 0.0369
	          Props 0.0369
	           </S> 0.0059
	              ] 0.0000
	              " 0.0000
	              / 0.0000
	           Thus 0.0000
	              , 0.0000
	              . 0.0000
	              A 0.0000
	              - 0.0000
	              I 0.0000
	              ) 0.0000

  f^ivrcgit/iis   491082 inf (23)
	        scripts 0.0369
	      ChangeLog 0.0369
	              / 0.0369
	  config.status 0.0369
	              ) 0.0369
	           </S> 0.0369
	            var 0.0369
	              g 0.0369
	       millions 0.0369
	            src 0.0369
	        drivers 0.0369
	  genscripts.sh 0.0369
	              - 0.0369
	            org 0.0369
	     .cvsignore 0.0369
	     regress.sh 0.0369
	              n 0.0369
	              , 0.0369
	              a 0.0369
	          <UNK> 0.0369
	             is 0.0369
	              . 0.0369
	vareSelskap.cgi 0.0369

              .   491095 inf (8)
	             of 0.0369
	             to 0.0369
	             us 0.0369
	            and 0.0369
	             in 0.0369
	            the 0.0369
	            cia 0.0369
	             iu 0.0369

         single   491098   9 (20)
	         singly 0.0369
	         singla 0.0369
	        singles 0.0369
	        singled 0.0369
	          since 0.0369
	         single 0.0369
	         singel 0.0369
	           </S> 0.0059
	            For 0.0000
	         Single 0.0000
	            The 0.0000
	              / 0.0000
	              I 0.0000
	              . 0.0000
	              - 0.0000
	              ) 0.0000
	              " 0.0000
	              ] 0.0000
	              , 0.0000
	              A 0.0000

    Chiffchaffs   491185   3 (18)
	           that 0.2000
	              , 0.1000
	     Chiffchaff 0.0369
	    chiffchaffs 0.0369
	    Chiffchaffs 0.0369
	              I 0.0369
	             of 0.0059
	          years 0.0000
	           </S> 0.0000
	             to 0.0000
	           with 0.0000
	              - 0.0000
	         people 0.0000
	         things 0.0000
	          other 0.0000
	              . 0.0000
	      different 0.0000
	              a 0.0000

        visited   491197   2 (23)
	   Phylloscopus 0.3000
	        visites 0.0369
	            the 0.0369
	           site 0.0369
	              a 0.0369
	         visite 0.0369
	             of 0.0369
	        divites 0.0369
	        visiter 0.0369
	           them 0.0369
	      Revisited 0.0369
	              - 0.0369
	         United 0.0369
	         vidste 0.0369
	              I 0.0369
	           with 0.0369
	        visited 0.0369
	             us 0.0369
	              , 0.0059
	              . 0.0000
	           </S> 0.0000
	            and 0.0000
	             in 0.0000

        between   491219   1 (17)
	         bergen 0.0369
	           been 0.0369
	        between 0.0369
	       betweene 0.0369
	         better 0.0369
	       betweens 0.0369
	              a 0.0369
	              I 0.0369
	        betwene 0.0369
	              , 0.0059
	              - 0.0000
	           </S> 0.0000
	             in 0.0000
	              & 0.0000
	              | 0.0000
	              . 0.0000
	             of 0.0000

          i5tli   491233 inf (29)
	          Title 0.3000
	          Titli 0.0369
	              a 0.0369
	          ititl 0.0369
	           otli 0.0369
	              % 0.0369
	          istle 0.0369
	             li 0.0369
	          itali 0.0369
	          ixtli 0.0369
	              A 0.0369
	          iltti 0.0369
	         italia 0.0369
	          intil 0.0369
	           itil 0.0369
	             am 0.0369
	           Atli 0.0369
	           2005 0.0059
	          title 0.0000
	              , 0.0000
	              . 0.0000
	           </S> 0.0000
	           2004 0.0000
	              1 0.0000
	           2001 0.0000
	              - 0.0000
	           into 0.0000
	             15 0.0000
	            and 0.0000

           1904   491249 inf (22)
	              I 0.0369
	            and 0.0369
	           2003 0.0369
	           1999 0.0369
	           2005 0.0369
	           2006 0.0369
	           </S> 0.0369
	              a 0.0369
	       prophets 0.0369
	              ( 0.0369
	             r1 0.0369
	              s 0.0369
	           2004 0.0369
	              " 0.0369
	           2001 0.0369
	          <UNK> 0.0369
	            the 0.0059
	              i 0.0000
	            who 0.0000
	          which 0.0000
	             or 0.0000
	             of 0.0000

             in   491255   1 (23)
	             is 0.0369
	             iu 0.0369
	             ni 0.0369
	              A 0.0369
	             d. 0.0369
	            cia 0.0369
	              : 0.0369
	             in 0.0369
	              a 0.0369
	             it 0.0369
	            iin 0.0369
	              - 0.0369
	             us 0.0369
	            int 0.0369
	            inc 0.0369
	              . 0.0369
	              , 0.0369
	           died 0.0369
	            inn 0.0369
	           </S> 0.0059
	              ) 0.0000
	              " 0.0000
	              } 0.0000

          3'ear   491274   9 (21)
	           near 0.1000
	           mind 0.0369
	          arear 0.0369
	           lump 0.0369
	              I 0.0369
	              a 0.0369
	             of 0.0369
	           time 0.0059
	           </S> 0.0000
	            ear 0.0000
	             as 0.0000
	           Year 0.0000
	          great 0.0000
	           name 0.0000
	              - 0.0000
	           year 0.0000
	              , 0.0000
	           rear 0.0000
	              . 0.0000
	           type 0.0000
	           read 0.0000

            one   491280   1 (22)
	           that 0.0369
	             us 0.0369
	             it 0.0369
	             of 0.0369
	             as 0.0369
	              I 0.0369
	            ons 0.0369
	            ont 0.0369
	           oner 0.0369
	           onen 0.0369
	           </S> 0.0369
	              - 0.0369
	            oen 0.0369
	            cia 0.0369
	             iu 0.0369
	              . 0.0369
	              , 0.0369
	              a 0.0369
	             on 0.0369
	           ones 0.0369
	           onee 0.0369
	            one 0.0369

        Tnlloch   491308  13 (26)
	         enlloc 0.0369
	           loch 0.0369
	       Trilloch 0.0369
	       Tolloche 0.0369
	           Toll 0.0369
	              I 0.0369
	              a 0.0369
	        Tillich 0.0369
	         Tenoch 0.0369
	        Tullich 0.0369
	       Kavulich 0.0369
	              , 0.0059
	            and 0.0000
	              . 0.0000
	        Tulloch 0.0000
	         Taylor 0.0000
	             C. 0.0000
	              A 0.0000
	           </S> 0.0000
	              ( 0.0000
	       Benlloch 0.0000
	              - 0.0000
	              ) 0.0000
	            The 0.0000
	          <UNK> 0.0000
	          Grant 0.0000

             at   491316   1 (19)
	             at 0.0369
	            aat 0.0369
	              A 0.0369
	           </S> 0.0369
	              M 0.0369
	              . 0.0369
	             II 0.0369
	            att 0.0369
	              , 0.0369
	            ate 0.0369
	            arz 0.0369
	             an 0.0369
	             as 0.0369
	              - 0.0369
	             us 0.0369
	             A. 0.0369
	             ta 0.0369
	          James 0.0369
	              D 0.0369

           Ma}^   491335   1 (21)
	            May 0.8000
	            Maa 0.4000
	           Baya 0.1000
	              I 0.0369
	            MMa 0.0369
	            the 0.0059
	              . 0.0000
	           More 0.0000
	             My 0.0000
	              a 0.0000
	        October 0.0000
	             Ma 0.0000
	           lava 0.0000
	              - 0.0000
	           this 0.0000
	        January 0.0000
	            Map 0.0000
	           sala 0.0000
	           </S> 0.0000
	              , 0.0000
	            Mar 0.0000

           27th   491340 inf (21)
	              1 0.0369
	           </S> 0.0369
	              2 0.0369
	            sth 0.0369
	              - 0.0369
	             27 0.0369
	              a 0.0369
	        subject 0.0369
	           With 0.0369
	             22 0.0369
	             th 0.0369
	           site 0.0369
	             ht 0.0369
	          piece 0.0369
	           both 0.0369
	           with 0.0369
	              I 0.0369
	              . 0.0369
	              7 0.0369
	              , 0.0369
	           side 0.0369

         Family   491378   1 (22)
	         Family 0.9834
	              I 0.0418
	            and 0.0369
	           mail 0.0369
	        Faimily 0.0369
	         family 0.0369
	              a 0.0369
	         Famila 0.0369
	         Famill 0.0369
	       Familypc 0.0369
	              s 0.0369
	        Familly 0.0369
	       FamilyPC 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ) 0.0000
	              / 0.0000
	              ] 0.0000
	              . 0.0000
	              , 0.0000

       TURDID.F   491386 inf (28)
	      Travel.ca 0.0369
	              s 0.0369
	         TURYID 0.0369
	              p 0.0369
	           side 0.0369
	       Friendly 0.0369
	           Prom 0.0369
	              , 0.0369
	       friendly 0.0369
	     crests.com 0.0369
	            rev 0.0369
	          TDIDF 0.0369
	            Vol 0.0369
	           </S> 0.0059
	             In 0.0000
	              - 0.0000
	              I 0.0000
	             to 0.0000
	              . 0.0000
	            the 0.0000
	           time 0.0000
	            Dec 0.0000
	             up 0.0000
	            The 0.0000
	              D 0.0000
	              A 0.0000
	          <UNK> 0.0000
	              a 0.0000

              .   491394   1 (12)
	              , 0.0369
	              . 0.0369
	           </S> 0.0369
	             of 0.0369
	            and 0.0369
	              ( 0.0369
	            ... 0.0369
	              - 0.0369
	            the 0.0369
	             us 0.0369
	            cia 0.0369
	             iu 0.0369

      Subjaimly   491397   1 (16)
	      Subfamily 0.0369
	   Additionally 0.0369
	           </S> 0.0059
	      Searching 0.0000
	           Some 0.0000
	           Only 0.0000
	              , 0.0000
	              . 0.0000
	              A 0.0000
	              - 0.0000
	          Since 0.0000
	              I 0.0000
	             So 0.0000
	              " 0.0000
	              ] 0.0000
	              ) 0.0000

           -SYL   491407 inf (18)
	           ISBN 0.0369
	              , 0.0369
	              n 0.0369
	            LSY 0.0369
	              : 0.0369
	              ) 0.0369
	           </S> 0.0369
	           WSYL 0.0369
	           KSYL 0.0369
	            YSL 0.0369
	            USA 0.0369
	            SYL 0.0369
	              . 0.0369
	          <UNK> 0.0369
	            RSS 0.0369
	      configure 0.0369
	              a 0.0369
	              g 0.0369

              I   491412 inf (17)
	             In 0.0369
	             It 0.0369
	             us 0.0369
	             If 0.0369
	            the 0.0369
	             MI 0.0369
	             WI 0.0369
	             HI 0.0369
	             II 0.0369
	           IIII 0.0369
	            cia 0.0369
	             iu 0.0369
	             of 0.0369
	             to 0.0369
	            III 0.0369
	            and 0.0369
	             in 0.0369

          IIN.E   491414   4 (22)
	             II 0.7000
	            III 0.5000
	            IIE 0.2000
	           INEE 0.0369
	            INE 0.0369
	           INEI 0.0369
	           IINS 0.0369
	           IINM 0.0369
	            IIN 0.0369
	             'm 0.0059
	             am 0.0000
	           have 0.0000
	          think 0.0000
	           </S> 0.0000
	            INT 0.0000
	           said 0.0000
	             do 0.0000
	              - 0.0000
	              J 0.0000
	              , 0.0000
	             IN 0.0000
	              . 0.0000

              .   491419   1 (18)
	           </S> 0.0369
	              - 0.0369
	            and 0.0369
	             In 0.0369
	              , 0.0369
	             to 0.0369
	            cia 0.0369
	             iu 0.0369
	             of 0.0369
	             .. 0.0369
	              . 0.0369
	            the 0.0369
	            not 0.0369
	              : 0.0369
	             O. 0.0369
	             us 0.0369
	              " 0.0369
	            ... 0.0369

  Phy//oscop!is   491448   2 (20)
	         Please 0.2000
	      collybita 0.0369
	       Keywords 0.0369
	         Médico 0.0369
	   Phylloscopus 0.0369
	           </S> 0.0059
	              ) 0.0000
	              A 0.0000
	           This 0.0000
	              - 0.0000
	              " 0.0000
	            For 0.0000
	              . 0.0000
	             cp 0.0000
	              I 0.0000
	              ] 0.0000
	              , 0.0000
	              / 0.0000
	             In 0.0000
	      Copyright 0.0000

        tristis   491462   1 (20)
	        trusted 0.0369
	       tristius 0.0369
	      configure 0.0369
	              a 0.0369
	        tristia 0.0369
	        tristis 0.0369
	         trists 0.0369
	              , 0.0369
	        tristes 0.0369
	         crisis 0.0369
	          <UNK> 0.0369
	              n 0.0369
	          trust 0.0369
	              ) 0.0369
	              - 0.0369
	vareSelskap.cgi 0.0369
	         tristi 0.0369
	              . 0.0369
	           </S> 0.0369
	              I 0.0369

          BlyTH   491471 inf (24)
	             pp 0.1857
	           only 0.0692
	            BTH 0.0369
	        PolyTHF 0.0369
	   respectively 0.0369
	            BHT 0.0369
	           Baya 0.0369
	              x 0.0369
	          Blyth 0.0369
	            Buy 0.0369
	           Blye 0.0369
	           Blyn 0.0369
	              { 0.0369
	          Blyss 0.0369
	            Bly 0.0369
	             By 0.0369
	            the 0.0059
	          which 0.0012
	             or 0.0000
	             to 0.0000
	              e 0.0000
	            too 0.0000
	              i 0.0000
	             of 0.0000

              .   491476   1 (11)
	             iu 0.0369
	             of 0.0369
	           </S> 0.0369
	            ... 0.0369
	              , 0.0369
	            and 0.0369
	            cia 0.0369
	             us 0.0369
	              . 0.0369
	              - 0.0369
	            the 0.0369

              N   491479 inf (24)
	           This 0.3358
	            For 0.2625
	             IN 0.2559
	             ON 0.2400
	             No 0.1700
	             NY 0.1327
	             TN 0.0369
	             NN 0.0369
	            cia 0.0369
	             iu 0.0369
	             us 0.0369
	            NNN 0.0369
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              / 0.0000
	              , 0.0000
	             of 0.0000
	              . 0.0000
	              ] 0.0000
	            the 0.0000
	            and 0.0000
	             NO 0.0000
	              ) 0.0000

        example   491481  10 (19)
	              ( 0.5633
	        Example 0.1000
	        exempla 0.0369
	              I 0.0369
	       exampled 0.0369
	          ratio 0.0369
	       document 0.0369
	        exemple 0.0369
	              / 0.0059
	              E 0.0000
	              A 0.0000
	              . 0.0000
	        example 0.0000
	           </S> 0.0000
	       examples 0.0000
	              - 0.0000
	              O 0.0000
	              ) 0.0000
	              , 0.0000

     lighthonse   491507  18 (29)
	         result 0.2276
	       lightens 0.0369
	       discount 0.0369
	          right 0.0369
	         Glance 0.0369
	          later 0.0369
	              , 0.0369
	        meeting 0.0369
	              % 0.0369
	       location 0.0369
	    lighthouses 0.0369
	     lightcones 0.0369
	       fraction 0.0369
	              . 0.0369
	           shot 0.0369
	      sighthole 0.0369
	           </S> 0.0059
	           time 0.0000
	              - 0.0000
	         second 0.0000
	          major 0.0000
	     Lighthouse 0.0000
	         little 0.0000
	            few 0.0000
	           long 0.0000
	            new 0.0000
	     lighthouse 0.0000
	      lightcone 0.0000
	           list 0.0000

            off   491518   1 (22)
	              - 0.0369
	            oft 0.0369
	             us 0.0369
	           when 0.0369
	             on 0.0369
	            ofa 0.0369
	           offa 0.0369
	            off 0.0369
	              a 0.0369
	             or 0.0369
	           offs 0.0369
	              , 0.0369
	            ofo 0.0369
	             to 0.0369
	           ooff 0.0369
	             in 0.0369
	           </S> 0.0369
	             of 0.0369
	             iu 0.0369
	              I 0.0369
	              . 0.0369
	            cia 0.0369

         Family   491544   1 (20)
	         Family 0.9834
	              I 0.0418
	         easily 0.0369
	              a 0.0369
	        Faimily 0.0369
	         family 0.0369
	         Famila 0.0369
	         Famill 0.0369
	       Familypc 0.0369
	        Familly 0.0369
	       FamilyPC 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ) 0.0000
	              . 0.0000
	              / 0.0000
	              ] 0.0000
	              , 0.0000

       TURDIL)^   491552 inf (30)
	     crests.com 0.0369
	              , 0.0369
	             Up 0.0369
	              s 0.0369
	           side 0.0369
	           Prom 0.0369
	       Friendly 0.0369
	           Ties 0.0369
	       friendly 0.0369
	            rev 0.0369
	      Travel.ca 0.0369
	              p 0.0369
	            Vol 0.0369
	           </S> 0.0059
	          <UNK> 0.0000
	              A 0.0000
	              I 0.0000
	              ) 0.0000
	             to 0.0000
	              . 0.0000
	              D 0.0000
	              - 0.0000
	              R 0.0000
	            the 0.0000
	             up 0.0000
	             In 0.0000
	           time 0.0000
	              a 0.0000
	            Dec 0.0000
	            The 0.0000

              .   491560   1 (12)
	              , 0.0369
	              . 0.0369
	           </S> 0.0369
	             of 0.0369
	            and 0.0369
	              ( 0.0369
	            ... 0.0369
	              - 0.0369
	            the 0.0369
	             us 0.0369
	            cia 0.0369
	             iu 0.0369

     Subfamily-   491563   1 (15)
	      subfamily 0.0369
	     Sulfamidyl 0.0369
	    Subfamilies 0.0369
	    Subfamiliae 0.0369
	      Subfamily 0.0369
	           </S> 0.0059
	              - 0.0000
	              A 0.0000
	              " 0.0000
	              I 0.0000
	              , 0.0000
	              . 0.0000
	              ) 0.0000
	              ] 0.0000
	             So 0.0000

            SYL   491574 inf (24)
	              , 0.0369
	              n 0.0369
	            You 0.0369
	            See 0.0369
	             US 0.0369
	              - 0.0369
	            SYS 0.0369
	              ) 0.0369
	           SYLK 0.0369
	            San 0.0369
	             iu 0.0369
	           </S> 0.0369
	            SYL 0.0369
	            LYS 0.0369
	            cia 0.0369
	             SY 0.0369
	           SYLT 0.0369
	              . 0.0369
	          <UNK> 0.0369
	            SYN 0.0369
	      configure 0.0369
	             us 0.0369
	              a 0.0369
	            YSL 0.0369

              I   491578  14 (19)
	          canal 0.2000
	             In 0.0369
	            the 0.0369
	             MI 0.0369
	             WI 0.0369
	            cia 0.0369
	             iu 0.0369
	             It 0.0369
	             us 0.0369
	             of 0.0369
	             II 0.0369
	            III 0.0369
	              - 0.0059
	           </S> 0.0000
	              . 0.0000
	              I 0.0000
	              , 0.0000
	            and 0.0000
	          <UNK> 0.0000

         'IIN.E   491580 inf (24)
	            INE 0.0369
	           INEE 0.0369
	         FRINGE 0.0369
	          IIIEE 0.0369
	            IIN 0.0369
	            The 0.0369
	           EINE 0.0369
	            IIE 0.0369
	           IINS 0.0369
	           NIIN 0.0369
	             'm 0.0059
	           have 0.0000
	            've 0.0000
	            and 0.0000
	              , 0.0000
	              - 0.0000
	         PRINCE 0.0000
	             am 0.0000
	              J 0.0000
	           said 0.0000
	              . 0.0000
	           </S> 0.0000
	             do 0.0000
	          think 0.0000

              .   491586   1 (18)
	           </S> 0.0369
	              - 0.0369
	            and 0.0369
	             In 0.0369
	              , 0.0369
	             to 0.0369
	            cia 0.0369
	             iu 0.0369
	             of 0.0369
	             .. 0.0369
	              . 0.0369
	            the 0.0369
	            not 0.0369
	              : 0.0369
	             O. 0.0369
	             us 0.0369
	              " 0.0369
	            ... 0.0369

       Greenish   491593  18 (26)
	              X 0.0369
	              ) 0.0369
	     Greenishly 0.0369
	      Territory 0.0369
	       Greenism 0.0369
	       Greenist 0.0369
	       Whomping 0.0369
	           Blue 0.0369
	              / 0.0369
	           Free 0.0369
	        English 0.0369
	         Hushed 0.0369
	      Greenfish 0.0369
	        Weeping 0.0369
	       Greenops 0.0369
	     Gressenich 0.0369
	           </S> 0.0059
	      following 0.0000
	              ( 0.0000
	       Greenish 0.0000
	       Greening 0.0000
	              " 0.0000
	          Great 0.0000
	          first 0.0000
	              - 0.0000
	          <UNK> 0.0000

         Willow   491602   2 (25)
	          Black 0.7000
	           will 0.0369
	              A 0.0369
	         Willox 0.0369
	             of 0.0369
	          Ahead 0.0369
	         Willow 0.0369
	       Archives 0.0369
	        Willowz 0.0369
	        Willows 0.0369
	              I 0.0369
	        Journal 0.0369
	          Willo 0.0369
	          World 0.0369
	              E 0.0369
	        Windows 0.0369
	             is 0.0369
	            Rec 0.0059
	        Warbler 0.0000
	              . 0.0000
	              , 0.0000
	         Yellow 0.0000
	              - 0.0000
	           </S> 0.0000
	           ---- 0.0000

              .   491617   9 (14)
	            the 0.3000
	            and 0.1000
	              > 0.0369
	             M. 0.0369
	             L. 0.0369
	             S. 0.0369
	             us 0.0369
	           </S> 0.0059
	             of 0.0000
	              . 0.0000
	              ( 0.0000
	              - 0.0000
	              , 0.0000
	            ... 0.0000

  Phylloscopiis   491620   2 (20)
	         Please 0.2000
	   Phylloscopus 0.0369
	         Sylvia 0.0369
	   Prothonotary 0.0369
	   Phyllotopsis 0.0369
	   phylloscopid 0.0369
	  phylloscopids 0.0369
	 Phylloscopidae 0.0369
	              a 0.0369
	   Acrocephalus 0.0369
	           </S> 0.0059
	              , 0.0000
	              A 0.0000
	              I 0.0000
	              . 0.0000
	              ) 0.0000
	              - 0.0000
	              / 0.0000
	              ] 0.0000
	              " 0.0000

     viridaiius   491634 inf (25)
	     viridariis 0.0369
	              n 0.0369
	     viridarium 0.0369
	       viridari 0.0369
	          Virus 0.0369
	      configure 0.0369
	              , 0.0369
	              a 0.0369
	              . 0.0369
	        viridas 0.0369
	         Friday 0.0369
	           </S> 0.0369
	      viridibus 0.0369
	              I 0.0369
	              ) 0.0369
	vareSelskap.cgi 0.0369
	       addition 0.0369
	          <UNK> 0.0369
	     viridantis 0.0369
	     veredarius 0.0369
	      viridamus 0.0369
	      viridarii 0.0369
	       viridans 0.0369
	    viridavimus 0.0369
	              - 0.0369

              ,   491644 inf (8)
	             of 0.0369
	             to 0.0369
	             us 0.0369
	            and 0.0369
	             in 0.0369
	            the 0.0369
	            cia 0.0369
	             iu 0.0369

          Blvth   491646 inf (22)
	             pp 0.1857
	            But 0.0369
	          Blyth 0.0369
	              { 0.0369
	           both 0.0369
	          Bluth 0.0369
	          Blath 0.0369
	           Blvd 0.0369
	          elvte 0.0369
	            Blv 0.0369
	   respectively 0.0369
	              x 0.0369
	             Bl 0.0369
	           with 0.0062
	            the 0.0059
	          which 0.0012
	             or 0.0000
	             to 0.0000
	            too 0.0000
	              e 0.0000
	             of 0.0000
	              i 0.0000

              .   491651   1 (11)
	             iu 0.0369
	             of 0.0369
	           </S> 0.0369
	            ... 0.0369
	              , 0.0369
	            and 0.0369
	            cia 0.0369
	             us 0.0369
	              . 0.0369
	              - 0.0369
	            the 0.0369

              a   491718   1 (20)
	             to 0.0369
	             la 0.0369
	              - 0.0369
	             aa 0.0369
	             La 0.0369
	              , 0.0369
	           lava 0.0369
	            cia 0.0369
	             as 0.0369
	              . 0.0369
	             at 0.0369
	             of 0.0369
	              a 0.0369
	            the 0.0369
	            aaa 0.0369
	             us 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000
	              " 0.0000

           Sule   491734   2 (26)
	              - 0.6000
	              s 0.0369
	            Sul 0.0369
	           Sule 0.0369
	           sala 0.0369
	             of 0.0369
	          Suler 0.0369
	          Sulev 0.0369
	              I 0.0369
	            See 0.0369
	           Site 0.0369
	           Suel 0.0369
	           Sula 0.0369
	           Sulu 0.0369
	           Seul 0.0369
	            out 0.0059
	            him 0.0000
	             me 0.0000
	             us 0.0000
	             by 0.0000
	            the 0.0000
	           will 0.0000
	           </S> 0.0000
	              . 0.0000
	              a 0.0000
	              , 0.0000

     Lighthouse   491746  13 (17)
	              . 1.0000
	              A 0.5000
	        Ringing 0.3000
	       Sumburgh 0.1000
	              a 0.0369
	              I 0.0369
	    Lightsource 0.0369
	             C. 0.0369
	    Lighthouses 0.0369
	     Lighthorse 0.0369
	     lighthouse 0.0369
	              , 0.0059
	              - 0.0000
	           </S> 0.0000
	          Chris 0.0000
	           Todd 0.0000
	     Lighthouse 0.0000

Siitherlandshire   491758   1 (27)
	       Scotland 0.0369
	     prerelease 0.0369
	           PRES 0.0369
	    Switzerland 0.0369
	           here 0.0369
	      Australia 0.0369
	           REAR 0.0369
	     industries 0.0369
	           1927 0.0369
	        England 0.0369
	            SUP 0.0369
	Sutherlandshire 0.0369
	          <UNK> 0.0059
	              I 0.0000
	              A 0.0000
	            and 0.0000
	              - 0.0000
	            The 0.0000
	              ( 0.0000
	              a 0.0000
	              2 0.0000
	           </S> 0.0000
	              b 0.0000
	              ) 0.0000
	            the 0.0000
	              s 0.0000
	              1 0.0000

           1902   491795 inf (24)
	           1982 0.0369
	              a 0.0369
	           1992 0.0369
	           2001 0.0369
	           1999 0.0369
	              I 0.0369
	           1901 0.0369
	           2005 0.0369
	           2003 0.0369
	          <UNK> 0.0369
	              ( 0.0369
	           1990 0.0369
	            and 0.0369
	   respectively 0.0369
	              ) 0.0369
	           </S> 0.0369
	           2004 0.0369
	            the 0.0059
	             pp 0.0000
	             of 0.0000
	          which 0.0000
	             or 0.0000
	              i 0.0000
	            too 0.0000

            Two   491801   1 (25)
	            Two 1.0000
	             To 0.3518
	              I 0.0418
	              a 0.0369
	             Tw 0.0369
	            cia 0.0369
	             iu 0.0369
	           Twot 0.0369
	           Twoc 0.0369
	            Tow 0.0369
	             us 0.0369
	            Twp 0.0369
	            Twi 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	            The 0.0131
	           </S> 0.0059
	              / 0.0000
	              ) 0.0000
	              , 0.0000
	              ] 0.0000
	           Each 0.0000
	            Top 0.0000
	              . 0.0000

       couiinou   491818 inf (34)
	        coquino 0.0369
	         urinou 0.0369
	      community 0.0369
	              . 0.0369
	         couina 0.0369
	         couine 0.0369
	        couillu 0.0369
	            and 0.0369
	        cominou 0.0369
	            Red 0.0369
	       couinons 0.0369
	       business 0.0369
	   Southwestern 0.0369
	              a 0.0369
	          cuino 0.0369
	       coutiaou 0.0369
	       combinou 0.0369
	       Whomping 0.0369
	              , 0.0369
	        counion 0.0369
	         cucino 0.0369
	          major 0.0369
	           </S> 0.0059
	           most 0.0000
	          world 0.0000
	      following 0.0000
	           same 0.0000
	              " 0.0000
	          first 0.0000
	       Boudinot 0.0000
	              - 0.0000
	         course 0.0000
	        company 0.0000
	           eBay 0.0000

         Willow   491827   1 (19)
	              a 0.0369
	              , 0.0369
	              A 0.0369
	              - 0.0369
	           </S> 0.0369
	        Windows 0.0369
	           will 0.0369
	          World 0.0369
	         Willow 0.0369
	         Willox 0.0369
	             of 0.0369
	              I 0.0369
	        Willowz 0.0369
	              . 0.0369
	            non 0.0369
	              e 0.0369
	          Willo 0.0369
	        Willows 0.0369
	              " 0.0369

          fouud   491847   3 (25)
	          focus 0.6000
	              . 0.4867
	          found 0.4000
	          forum 0.2000
	              - 0.0369
	          doufu 0.0369
	        correct 0.0369
	          foutu 0.0369
	          fouds 0.0369
	          foude 0.0369
	            not 0.0059
	           made 0.0000
	            the 0.0000
	          added 0.0000
	           four 0.0000
	              a 0.0000
	           </S> 0.0000
	           good 0.0000
	             in 0.0000
	         killed 0.0000
	            fou 0.0000
	           foud 0.0000
	              , 0.0000
	            for 0.0000
	          there 0.0000

      Shetlauds   491890   1 (26)
	      Shetlands 1.0000
	       Shetland 0.4000
	    Shetlanders 0.2000
	            war 0.0369
	    Netherlands 0.0369
	         Shelus 0.0369
	      Shetlanti 0.0369
	              . 0.0369
	          order 0.0369
	          South 0.0369
	          years 0.0369
	              , 0.0369
	    Shetlandish 0.0369
	         studio 0.0369
	           </S> 0.0059
	             US 0.0000
	          state 0.0000
	      following 0.0000
	          first 0.0000
	         United 0.0000
	      shetlands 0.0000
	            way 0.0000
	          State 0.0000
	           same 0.0000
	              - 0.0000
	          world 0.0000

             in   491900   1 (18)
	             iu 0.0369
	              , 0.0369
	             in 0.0369
	              - 0.0369
	             ni 0.0369
	            inc 0.0369
	              . 0.0369
	             of 0.0369
	             is 0.0369
	            cia 0.0369
	              I 0.0369
	            inn 0.0369
	             it 0.0369
	              a 0.0369
	            iin 0.0369
	            int 0.0369
	           </S> 0.0369
	             us 0.0369

              -   491923   6 (13)
	            cia 0.0369
	             DT 0.0369
	        Between 0.0369
	             us 0.0369
	           </S> 0.0059
	              . 0.0000
	              , 0.0000
	             of 0.0000
	            and 0.0000
	             is 0.0000
	             P. 0.0000
	            the 0.0000
	              - 0.0000

         Fnmtlx   491986   1 (24)
	         Family 0.0369
	         Fumble 0.0369
	            Fmt 0.0369
	          Fnbox 0.0369
	         Female 0.0369
	         Fantax 0.0369
	         Feltex 0.0369
	            mlx 0.0369
	         Ccnmtl 0.0369
	         Fontex 0.0369
	              a 0.0369
	          Enmtp 0.0369
	            Fnm 0.0369
	          Falls 0.0369
	           </S> 0.0059
	              " 0.0000
	              / 0.0000
	              . 0.0000
	              ] 0.0000
	              I 0.0000
	              , 0.0000
	              ) 0.0000
	              A 0.0000
	              - 0.0000

              -   491993   1 (12)
	              ) 0.0369
	             of 0.0369
	            and 0.0369
	              . 0.0369
	          <UNK> 0.0369
	              , 0.0369
	             iu 0.0369
	              - 0.0369
	            the 0.0369
	             us 0.0369
	           </S> 0.0369
	            cia 0.0369

             TL   491995 inf (26)
	             TL 0.1000
	            TLL 0.1000
	              s 0.0369
	              - 0.0079
	           </S> 0.0059
	            TLS 0.0000
	             us 0.0000
	              a 0.0000
	            TLC 0.0000
	            the 0.0000
	             LT 0.0000
	             To 0.0000
	             to 0.0000
	             up 0.0000
	             iu 0.0000
	            TTL 0.0000
	          <UNK> 0.0000
	              A 0.0000
	              . 0.0000
	              L 0.0000
	              ) 0.0000
	           mail 0.0000
	              I 0.0000
	             of 0.0000
	           year 0.0000
	            The 0.0000

          ^RDID   491998 inf (27)
	            DVD 0.1000
	        CORDAID 0.0369
	            DIR 0.0369
	           ADID 0.0369
	           DRIR 0.0369
	           EDID 0.0369
	         period 0.0369
	            the 0.0369
	              I 0.0369
	             us 0.0369
	              a 0.0369
	          ARDIS 0.0369
	           CRDI 0.0369
	            DID 0.0369
	            IDI 0.0369
	            RDI 0.0369
	            RID 0.0369
	              , 0.0059
	              - 0.0000
	          <UNK> 0.0000
	              . 0.0000
	              A 0.0000
	             RD 0.0000
	           9000 0.0000
	              ) 0.0000
	             of 0.0000
	           </S> 0.0000

              .   492003   1 (11)
	              , 0.0369
	            the 0.0369
	              . 0.0369
	              - 0.0369
	             us 0.0369
	             of 0.0369
	          <UNK> 0.0369
	            and 0.0369
	           </S> 0.0369
	            cia 0.0369
	             iu 0.0369

             E.   492005 inf (20)
	             in 0.0634
	              I 0.0418
	            EEE 0.0369
	             iu 0.0369
	            cia 0.0369
	             us 0.0369
	             EU 0.0369
	             EE 0.0369
	              A 0.0328
	             to 0.0265
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	             Ed 0.0000
	              ] 0.0000
	             El 0.0000
	              , 0.0000
	              . 0.0000
	             of 0.0000
	              ) 0.0000

 Sii/^/,u>n/\-S   492009 inf (19)
	           Side 0.5000
	          Öhman 0.0369
	      configure 0.0369
	        include 0.0369
	            Int 0.0369
	             Am 0.0369
	              , 0.0059
	              . 0.0000
	         Second 0.0000
	       Stiglitz 0.0000
	              - 0.0000
	              ) 0.0000
	         Siegel 0.0000
	          Smith 0.0000
	              / 0.0000
	              A 0.0000
	          <UNK> 0.0000
	           coli 0.0000
	           </S> 0.0000

              J   492024   1 (18)
	           </S> 0.0369
	              . 0.0369
	             NJ 0.0369
	              - 0.0369
	             A. 0.0369
	             J. 0.0369
	             JJ 0.0369
	             JP 0.0369
	              , 0.0369
	            and 0.0369
	             AJ 0.0369
	            the 0.0369
	             us 0.0369
	             M. 0.0369
	             DJ 0.0369
	             of 0.0369
	             JR 0.0369
	            JJJ 0.0369

              Z   492026 inf (22)
	            the 0.2000
	            ZZZ 0.0369
	             A. 0.0369
	             ZA 0.0369
	             Zn 0.0369
	           ZZZZ 0.0369
	             M. 0.0369
	              K 0.0059
	          <UNK> 0.0000
	             of 0.0000
	             AZ 0.0000
	              . 0.0000
	              & 0.0000
	           </S> 0.0000
	             ZZ 0.0000
	             NZ 0.0000
	             us 0.0000
	              - 0.0000
	              : 0.0000
	            and 0.0000
	              , 0.0000
	             EZ 0.0000

            VLV   492030   3 (29)
	             VL 0.2000
	            the 0.2000
	            LVL 0.0369
	              a 0.0369
	      Financial 0.0369
	            VVL 0.0369
	            VLC 0.0369
	            VLA 0.0369
	            VLV 0.0369
	            cia 0.0369
	             iu 0.0369
	          Group 0.0369
	           VLVT 0.0369
	           VLVC 0.0369
	            VLL 0.0369
	              I 0.0369
	              K 0.0059
	           </S> 0.0000
	             us 0.0000
	          Virol 0.0000
	              - 0.0000
	           View 0.0000
	      Bacteriol 0.0000
	              A 0.0000
	            DVD 0.0000
	              , 0.0000
	              ) 0.0000
	              . 0.0000
	            Med 0.0000

              E   492035 inf (24)
	             us 0.0369
	             RE 0.0369
	             ME 0.0369
	             DE 0.0369
	             EU 0.0369
	             EE 0.0369
	            cia 0.0369
	             iu 0.0369
	            EEE 0.0369
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              . 0.0000
	            and 0.0000
	          <UNK> 0.0000
	             of 0.0000
	              \ 0.0000
	              / 0.0000
	             Ed 0.0000
	              ) 0.0000
	             El 0.0000
	            the 0.0000
	              ] 0.0000
	              , 0.0000

         Rufous   492043  14 (29)
	         Rudolf 0.5000
	              / 0.0369
	              ) 0.0369
	        Aoufous 0.0369
	     Associated 0.0369
	         Turdus 0.0369
	         dubius 0.0369
	            KDE 0.0369
	          Rufos 0.0369
	         Roofus 0.0369
	        foufous 0.0369
	         Ruffus 0.0369
	           </S> 0.0059
	              ( 0.0000
	      following 0.0000
	          <UNK> 0.0000
	         rufous 0.0000
	          rufus 0.0000
	           most 0.0000
	           Russ 0.0000
	              - 0.0000
	         Rufous 0.0000
	          Rufus 0.0000
	          first 0.0000
	          World 0.0000
	          Roots 0.0000
	           four 0.0000
	          group 0.0000
	           Rufo 0.0000

              .   492057   7 (14)
	            the 0.3000
	         Sylvia 0.1000
	            and 0.1000
	            cia 0.0369
	             us 0.0369
	           </S> 0.0059
	          Black 0.0000
	             is 0.0000
	             of 0.0000
	              . 0.0000
	              , 0.0000
	            ... 0.0000
	              ( 0.0000
	              - 0.0000

          Aidon   492060   1 (31)
	       Aidoneus 0.0369
	          Video 0.0369
	           Aido 0.0369
	          Adoni 0.0369
	         Andoni 0.0369
	          minor 0.0369
	          Audio 0.0369
	          Aedon 0.0369
	           Adon 0.0369
	          Aidoo 0.0369
	          Aidan 0.0369
	           idon 0.0369
	         Aidone 0.0369
	          Adino 0.0369
	        Aidonia 0.0369
	              a 0.0369
	         Sylvia 0.0369
	          video 0.0369
	          Aidos 0.0369
	           </S> 0.0059
	              - 0.0000
	              ] 0.0000
	              A 0.0000
	              / 0.0000
	             In 0.0000
	              " 0.0000
	              ) 0.0000
	              . 0.0000
	            For 0.0000
	              I 0.0000
	              , 0.0000

     (^alcnimAs   492066 inf (27)
	          Licks 0.4000
	              - 0.2000
	      configure 0.0369
	vareSelskap.cgi 0.0369
	          <UNK> 0.0369
	             is 0.0369
	             nm 0.0369
	              n 0.0369
	        general 0.0369
	              l 0.0369
	  mkinstalldirs 0.0369
	              a 0.0369
	     install.sh 0.0369
	              ) 0.0369
	   Applications 0.0369
	       Packages 0.0369
	     comparison 0.0369
	        million 0.0369
	        install 0.0369
	              I 0.0369
	              ( 0.0369
	           libs 0.0369
	        scripts 0.0369
	        patches 0.0369
	           </S> 0.0059
	              , 0.0000
	              . 0.0000

              ,   492076 inf (11)
	             us 0.0369
	          fired 0.0369
	             to 0.0369
	            and 0.0369
	             of 0.0369
	             in 0.0369
	            the 0.0369
	           </S> 0.0369
	            Big 0.0369
	            cia 0.0369
	             iu 0.0369

           Temm   492078 inf (24)
	             pp 0.1857
	   respectively 0.0369
	          Temmu 0.0369
	           Temp 0.0369
	           Tema 0.0369
	           Teme 0.0369
	           Teem 0.0369
	         Temmes 0.0369
	         Temmon 0.0369
	             To 0.0369
	            The 0.0369
	              x 0.0369
	           This 0.0369
	              { 0.0369
	            Tem 0.0369
	            the 0.0059
	          which 0.0012
	             of 0.0000
	              e 0.0000
	             or 0.0000
	            too 0.0000
	            emm 0.0000
	             to 0.0000
	              i 0.0000

           THIS   492085   1 (21)
	           THIS 1.0000
	            THE 0.6388
	              I 0.0418
	            THI 0.0369
	        THISDAY 0.0369
	            TIS 0.0369
	           TISH 0.0369
	           SHIT 0.0369
	            HIS 0.0369
	           THIC 0.0369
	           THIQ 0.0369
	            THS 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	            The 0.0131
	           </S> 0.0059
	              ) 0.0000
	              , 0.0000
	              . 0.0000
	              ] 0.0000

           rare   492090  17 (29)
	           part 0.2000
	         rarare 0.0369
	            arz 0.0369
	           lava 0.0369
	           sala 0.0369
	          rarer 0.0369
	          rares 0.0369
	            rar 0.0369
	           GOOD 0.0369
	          raree 0.0369
	          arare 0.0369
	           raer 0.0369
	           rara 0.0369
	           raro 0.0369
	              ) 0.0369
	             IS 0.0059
	           </S> 0.0000
	            are 0.0000
	              A 0.0000
	              , 0.0000
	           rare 0.0000
	              : 0.0000
	           PAGE 0.0000
	           SITE 0.0000
	           real 0.0000
	           area 0.0000
	             is 0.0000
	              . 0.0000
	          <UNK> 0.0000

         Family   492152   1 (21)
	         Family 0.9834
	              I 0.0418
	        Faimily 0.0369
	       Familypc 0.0369
	              a 0.0369
	         Famila 0.0369
	         Famill 0.0369
	         family 0.0369
	        Familly 0.0369
	       FamilyPC 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	           File 0.0000
	              / 0.0000
	             '' 0.0000
	              ) 0.0000
	              , 0.0000
	              ] 0.0000
	              . 0.0000

       TURDID.E   492160 inf (28)
	              , 0.0369
	     crests.com 0.0369
	              s 0.0369
	           side 0.0369
	           Prom 0.0369
	       Friendly 0.0369
	         TURYID 0.0369
	       friendly 0.0369
	              p 0.0369
	            rev 0.0369
	      Travel.ca 0.0369
	            Vol 0.0369
	           </S> 0.0059
	              R 0.0000
	           time 0.0000
	              a 0.0000
	              A 0.0000
	             In 0.0000
	             to 0.0000
	              I 0.0000
	              D 0.0000
	              - 0.0000
	             up 0.0000
	          <UNK> 0.0000
	            Dec 0.0000
	            the 0.0000
	              . 0.0000
	            The 0.0000

              .   492168   1 (12)
	              , 0.0369
	              . 0.0369
	           </S> 0.0369
	             of 0.0369
	            and 0.0369
	              ( 0.0369
	            ... 0.0369
	              - 0.0369
	            the 0.0369
	             us 0.0369
	            cia 0.0369
	             iu 0.0369

 Siih/auiilySYL   492171 inf (19)
	           What 0.5000
	   Additionally 0.0369
	           </S> 0.0059
	              ) 0.0000
	              I 0.0000
	              - 0.0000
	              . 0.0000
	              " 0.0000
	              , 0.0000
	          While 0.0000
	          Since 0.0000
	              ] 0.0000
	              / 0.0000
	              A 0.0000
	          <UNK> 0.0000
	         Select 0.0000
	           Only 0.0000
	      Searching 0.0000
	           This 0.0000

              I   492186 inf (21)
	            and 0.0369
	             It 0.0369
	            III 0.0369
	          <UNK> 0.0369
	             us 0.0369
	             iu 0.0369
	           </S> 0.0369
	             MI 0.0369
	             WI 0.0369
	             HI 0.0369
	             In 0.0369
	           IIII 0.0369
	            cia 0.0369
	             of 0.0369
	              . 0.0369
	              - 0.0369
	              ) 0.0369
	             If 0.0369
	             II 0.0369
	            the 0.0369
	              , 0.0369

          IIN^E   492188   4 (22)
	             II 0.7000
	            III 0.5000
	            IIE 0.2000
	           INEE 0.0369
	            INE 0.0369
	           INEI 0.0369
	           IINS 0.0369
	           IINM 0.0369
	            IIN 0.0369
	             'm 0.0059
	             am 0.0000
	          think 0.0000
	            INT 0.0000
	           said 0.0000
	             do 0.0000
	              - 0.0000
	              , 0.0000
	              J 0.0000
	              . 0.0000
	           </S> 0.0000
	             IN 0.0000
	           have 0.0000

              .   492193   1 (18)
	           </S> 0.0369
	              - 0.0369
	            and 0.0369
	             In 0.0369
	              , 0.0369
	             to 0.0369
	            cia 0.0369
	             iu 0.0369
	             of 0.0369
	             .. 0.0369
	              . 0.0369
	            the 0.0369
	            not 0.0369
	              : 0.0369
	             O. 0.0369
	             us 0.0369
	              " 0.0369
	            ... 0.0369

        Warbler   492212   1 (26)
	          Vinyl 0.8000
	        Warbler 0.8000
	         Shrike 0.5000
	           able 0.0369
	         Warble 0.0369
	         period 0.0369
	          Sound 0.0369
	              a 0.0369
	         Warner 0.0369
	         Warbel 0.0369
	          Links 0.0369
	       Warblers 0.0369
	        problem 0.0369
	        Warbles 0.0369
	           care 0.0369
	             us 0.0369
	              I 0.0369
	             by 0.0059
	             up 0.0000
	     Securities 0.0000
	              - 0.0000
	              . 0.0000
	           </S> 0.0000
	              , 0.0000
	              ) 0.0000
	          <UNK> 0.0000

              .   492219  10 (15)
	            the 0.3000
	            and 0.1000
	         Sylvia 0.1000
	            cia 0.0369
	      Seicercus 0.0369
	             D. 0.0369
	              a 0.0369
	             us 0.0369
	           </S> 0.0059
	              ( 0.0000
	              - 0.0000
	            ... 0.0000
	              , 0.0000
	              . 0.0000
	             of 0.0000

         Acdoii   492222   2 (33)
	              * 0.3000
	            doi 0.0369
	           coii 0.0369
	         Acilii 0.0369
	            Acd 0.0369
	          Ascii 0.0369
	          Audio 0.0369
	          Aedon 0.0369
	           Acii 0.0369
	          Avoid 0.0369
	          Actor 0.0369
	            oii 0.0369
	         Acholi 0.0369
	         Sylvia 0.0369
	         Ardoix 0.0369
	         Ardoin 0.0369
	         Adonic 0.0369
	       Acidosis 0.0369
	   Acrocephalus 0.0369
	              a 0.0369
	         Acodia 0.0369
	         Audoin 0.0369
	         Acidon 0.0369
	           </S> 0.0059
	              I 0.0000
	              ] 0.0000
	              ) 0.0000
	              - 0.0000
	              " 0.0000
	              / 0.0000
	              A 0.0000
	              , 0.0000
	              . 0.0000

     fnmiliaris   492229   1 (22)
	              . 0.0369
	      ChangeLog 0.0369
	     Familiaris 0.0369
	     humiliaris 0.0369
	          <UNK> 0.0369
	              a 0.0369
	     regress.sh 0.0369
	    familiarism 0.0369
	    familiarisa 0.0369
	              , 0.0369
	     familiaria 0.0369
	       miliaria 0.0369
	      familiari 0.0369
	              g 0.0369
	              - 0.0369
	        miliari 0.0369
	    familiarise 0.0369
	              n 0.0369
	     familiares 0.0369
	     familiaris 0.0369
	           </S> 0.0369
	              ) 0.0369

              .   492239 inf (8)
	             of 0.0369
	             to 0.0369
	             us 0.0369
	            and 0.0369
	             in 0.0369
	            the 0.0369
	            cia 0.0369
	             iu 0.0369

              A   492242  11 (22)
	           This 0.3358
	             As 0.2611
	            cia 0.0369
	             iu 0.0369
	             PA 0.0369
	             CA 0.0369
	             AA 0.0369
	             us 0.0369
	             AM 0.0369
	            AAA 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              , 0.0000
	              ) 0.0000
	             of 0.0000
	            the 0.0000
	              ] 0.0000
	              . 0.0000
	              / 0.0000
	            and 0.0000

           1907   492288 inf (24)
	           2006 0.0369
	              I 0.0369
	   respectively 0.0369
	           1977 0.0369
	            and 0.0369
	          <UNK> 0.0369
	           1990 0.0369
	           2005 0.0369
	           2003 0.0369
	           1997 0.0369
	           1970 0.0369
	              a 0.0369
	              " 0.0369
	           1999 0.0369
	           </S> 0.0369
	           2004 0.0369
	           1987 0.0369
	            the 0.0059
	             pp 0.0000
	            too 0.0000
	          which 0.0000
	             or 0.0000
	             of 0.0000
	              i 0.0000

         Family   492295   1 (20)
	         Family 0.9834
	              I 0.0418
	         easily 0.0369
	       FamilyPC 0.0369
	       Familypc 0.0369
	         Famila 0.0369
	         Famill 0.0369
	        Faimily 0.0369
	        Familly 0.0369
	              a 0.0369
	         family 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              / 0.0000
	              ] 0.0000
	              , 0.0000
	              . 0.0000
	              ) 0.0000

           TURD   492304 inf (31)
	            TUR 0.4000
	           TURP 0.2000
	           TURI 0.1000
	       friendly 0.0369
	              v 0.0369
	       terminal 0.0369
	       Friendly 0.0369
	              s 0.0369
	           TRDR 0.0369
	              , 0.0369
	         issued 0.0369
	       Centered 0.0369
	              - 0.0079
	           </S> 0.0059
	             up 0.0000
	              I 0.0000
	            The 0.0000
	              > 0.0000
	              a 0.0000
	            TRD 0.0000
	          DUART 0.0000
	           This 0.0000
	          <UNK> 0.0000
	            TUD 0.0000
	            the 0.0000
	             to 0.0000
	            URD 0.0000
	              A 0.0000
	             To 0.0000
	           TURN 0.0000
	              . 0.0000

             ID   492309   1 (23)
	            IDG 0.0369
	             If 0.0369
	             us 0.0369
	              a 0.0369
	         domain 0.0369
	             iu 0.0369
	              ' 0.0369
	      greencats 0.0369
	             ID 0.0369
	            IDD 0.0369
	            IID 0.0369
	             DI 0.0369
	           0reo 0.0369
	             It 0.0369
	             In 0.0369
	            cia 0.0369
	              I 0.0369
	            IDE 0.0369
	           </S> 0.0059
	              ! 0.0000
	              , 0.0000
	              - 0.0000
	              . 0.0000

              ^   492312 inf (18)
	              . 1.0000
	              # 0.0540
	            cia 0.0369
	             iu 0.0369
	              : 0.0059
	             of 0.0000
	              - 0.0000
	             us 0.0000
	              , 0.0000
	             by 0.0000
	           card 0.0000
	          83701 0.0000
	           </S> 0.0000
	             IL 0.0000
	            the 0.0000
	         number 0.0000
	          cards 0.0000
	            and 0.0000

              .   492313   3 (14)
	           7ego 0.0369
	          <UNK> 0.0059
	           </S> 0.0000
	             of 0.0000
	            cia 0.0000
	              , 0.0000
	              ^ 0.0000
	            and 0.0000
	              s 0.0000
	              - 0.0000
	             us 0.0000
	            the 0.0000
	          0.000 0.0000
	              . 0.0000

     Subfamily-   492316   1 (17)
	     Sulfamidyl 0.0369
	      subfamily 0.0369
	      Subfamily 0.0369
	              ^ 0.0369
	    Subfamilies 0.0369
	    Subfamiliae 0.0369
	              a 0.0369
	              s 0.0369
	           </S> 0.0059
	              . 0.0000
	              , 0.0000
	              A 0.0000
	              / 0.0000
	              I 0.0000
	              " 0.0000
	              - 0.0000
	              ) 0.0000

            SYL   492327 inf (25)
	              n 0.0369
	           </S> 0.0369
	            You 0.0369
	            SYS 0.0369
	              ) 0.0369
	             iu 0.0369
	          webkb 0.0369
	            SYL 0.0369
	            LYS 0.0369
	            cia 0.0369
	              . 0.0369
	            SYN 0.0369
	          <UNK> 0.0369
	            YSL 0.0369
	            See 0.0369
	             US 0.0369
	           SYLK 0.0369
	            San 0.0369
	             SY 0.0369
	           SYLT 0.0369
	              , 0.0369
	              - 0.0369
	             us 0.0369
	              a 0.0369
	            org 0.0369

              I   492331  14 (19)
	          canal 0.2000
	             In 0.0369
	            the 0.0369
	             MI 0.0369
	             WI 0.0369
	            cia 0.0369
	             iu 0.0369
	             It 0.0369
	             us 0.0369
	             of 0.0369
	             II 0.0369
	            III 0.0369
	              - 0.0059
	           </S> 0.0000
	              . 0.0000
	              I 0.0000
	              , 0.0000
	            and 0.0000
	          <UNK> 0.0000

           IIN^   492333   3 (21)
	             II 0.7000
	            III 0.5000
	           IINS 0.0369
	           IINM 0.0369
	            IIN 0.0369
	             'm 0.0059
	             do 0.0000
	           said 0.0000
	              , 0.0000
	            INI 0.0000
	           </S> 0.0000
	          think 0.0000
	             IN 0.0000
	            INN 0.0000
	           have 0.0000
	              . 0.0000
	             In 0.0000
	             am 0.0000
	              J 0.0000
	          asked 0.0000
	              - 0.0000

              .   492337   1 (13)
	           </S> 0.0369
	             us 0.0369
	            and 0.0369
	            not 0.0369
	             of 0.0369
	            ... 0.0369
	            cia 0.0369
	             iu 0.0369
	            the 0.0369
	              - 0.0369
	             to 0.0369
	              . 0.0369
	              , 0.0369

          Radde   492340   3 (24)
	           Read 0.5000
	          There 0.4000
	          Range 0.0369
	          Raded 0.0369
	           made 0.0369
	         Radder 0.0369
	          Radda 0.0369
	          Raddi 0.0369
	           Rate 0.0369
	          Radde 0.0369
	         Raddea 0.0369
	           Rade 0.0369
	           </S> 0.0059
	             '' 0.0000
	           That 0.0000
	              , 0.0000
	              " 0.0000
	              - 0.0000
	              ) 0.0000
	             It 0.0000
	              ] 0.0000
	              I 0.0000
	              . 0.0000
	              A 0.0000

             's   492345  12 (17)
	              ) 0.1000
	             is 0.0369
	             ss 0.0369
	              n 0.0369
	             as 0.0369
	             '' 0.0369
	             iu 0.0369
	             so 0.0369
	            cia 0.0369
	             us 0.0369
	              a 0.0369
	             's 0.0059
	              . 0.0000
	              , 0.0000
	           </S> 0.0000
	              - 0.0000
	          <UNK> 0.0000

     Lusciniola   492363 inf (23)
	      laciniola 0.0369
	         Sylvia 0.0369
	       Rusciola 0.0369
	       luscinia 0.0369
	       Lucciola 0.0369
	       Luscinia 0.0369
	         Cettia 0.0369
	              a 0.0369
	        Luciola 0.0369
	       Reginald 0.0369
	     vacciniola 0.0369
	         Oriole 0.0369
	           </S> 0.0059
	         Listen 0.0000
	              . 0.0000
	              , 0.0000
	              " 0.0000
	              - 0.0000
	              ] 0.0000
	              / 0.0000
	              ) 0.0000
	              I 0.0000
	              A 0.0000

       sckwarzi   492374   1 (26)
	         scorzi 0.0369
	              . 0.0369
	     schwarzian 0.0369
	        scherzi 0.0369
	        schwarz 0.0369
	          <UNK> 0.0369
	vareSelskap.cgi 0.0369
	          scari 0.0369
	              a 0.0369
	      Schwarzie 0.0369
	          share 0.0369
	              I 0.0369
	       schwarzi 0.0369
	              ) 0.0369
	              n 0.0369
	       schwarze 0.0369
	      configure 0.0369
	              , 0.0369
	           </S> 0.0369
	              - 0.0369
	          swarz 0.0369
	     schwarziti 0.0369
	        Schwarz 0.0369
	         source 0.0369
	     schwarzite 0.0369
	      slackware 0.0369

              ,   492382 inf (8)
	             of 0.0369
	             to 0.0369
	             us 0.0369
	            and 0.0369
	             in 0.0369
	            the 0.0369
	            cia 0.0369
	             iu 0.0369

          Radde   492384   2 (22)
	             pp 0.1857
	           Rade 0.0369
	   respectively 0.0369
	           Page 0.0369
	         Raddea 0.0369
	            and 0.0369
	          Raded 0.0369
	         Radder 0.0369
	          Radde 0.0369
	          Radda 0.0369
	          Raddi 0.0369
	              { 0.0369
	              x 0.0369
	            the 0.0059
	          which 0.0012
	             of 0.0000
	           made 0.0000
	            too 0.0000
	              e 0.0000
	           have 0.0000
	             or 0.0000
	              i 0.0000

              A   492392  11 (22)
	           This 0.3358
	             As 0.2611
	            cia 0.0369
	             iu 0.0369
	             PA 0.0369
	             CA 0.0369
	             AA 0.0369
	             us 0.0369
	             AM 0.0369
	            AAA 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	             of 0.0000
	              , 0.0000
	              ) 0.0000
	            the 0.0000
	              ] 0.0000
	            and 0.0000
	              . 0.0000
	              / 0.0000

            Mr.   492477   6 (23)
	            Mrs 0.3000
	              . 0.0472
	            Mrz 0.0369
	              I 0.0369
	            the 0.0059
	             us 0.0000
	              - 0.0000
	            cia 0.0000
	           your 0.0000
	            Mr. 0.0000
	             Mr 0.0000
	            arz 0.0000
	              , 0.0000
	            and 0.0000
	           this 0.0000
	              e 0.0000
	              a 0.0000
	             My 0.0000
	           </S> 0.0000
	           More 0.0000
	          which 0.0000
	            are 0.0000
	              : 0.0000

         Haigli   492481  20 (31)
	           REID 0.1000
	          Haili 0.0369
	       taigling 0.0369
	         poster 0.0369
	              - 0.0369
	      merchants 0.0369
	     Bertenshaw 0.0369
	         Hallig 0.0369
	         Haigia 0.0369
	          hotel 0.0369
	         Hailag 0.0369
	              . 0.0369
	         family 0.0369
	              a 0.0369
	           mail 0.0369
	         Hagali 0.0369
	         Haigui 0.0369
	         Haugli 0.0369
	       Chairman 0.0059
	        Speaker 0.0000
	           High 0.0000
	              B 0.0000
	             M. 0.0000
	           </S> 0.0000
	              , 0.0000
	        Haigler 0.0000
	             J. 0.0000
	              T 0.0000
	      President 0.0000
	          Haigh 0.0000
	           Haig 0.0000

              .   492487   1 (14)
	             us 0.0369
	              . 0.0369
	           </S> 0.0369
	             A. 0.0369
	             J. 0.0369
	          Happy 0.0369
	        Gifford 0.0369
	             of 0.0369
	            and 0.0369
	              - 0.0369
	            ... 0.0369
	            the 0.0369
	              , 0.0369
	             's 0.0369

         Family   492489   1 (21)
	         Family 0.9834
	              > 0.3000
	              I 0.0418
	         easily 0.0369
	         family 0.0369
	       FamilyPC 0.0369
	         Famila 0.0369
	         Famill 0.0369
	        Faimily 0.0369
	       Familypc 0.0369
	        Familly 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ] 0.0000
	              ) 0.0000
	              / 0.0000
	              . 0.0000
	              * 0.0000
	              , 0.0000

             --   492496   7 (17)
	              ' 0.0369
	       Magazine 0.0369
	             iu 0.0369
	            cia 0.0369
	             us 0.0369
	           </S> 0.0059
	              . 0.0000
	              & 0.0000
	          <UNK> 0.0000
	             of 0.0000
	              - 0.0000
	             in 0.0000
	        Mapping 0.0000
	            Guy 0.0000
	             to 0.0000
	              : 0.0000
	              , 0.0000

             Tl   492499 inf (25)
	            cia 0.4000
	          World 0.0369
	              . 0.0369
	       Amateurs 0.0369
	            Tlc 0.0369
	            Tlx 0.0369
	              L 0.0369
	           </S> 0.0059
	              I 0.0000
	             iu 0.0000
	             To 0.0000
	              , 0.0000
	           help 0.0000
	             Tl 0.0000
	              > 0.0000
	              - 0.0000
	             us 0.0000
	              a 0.0000
	             TV 0.0000
	          <UNK> 0.0000
	            The 0.0000
	              A 0.0000
	              $ 0.0000
	             of 0.0000
	            TAN 0.0000

              '   492502   2 (15)
	             's 0.4000
	              ' 0.3000
	             of 0.1000
	     Highlights 0.0369
	             us 0.0369
	            cia 0.0369
	             iu 0.0369
	           </S> 0.0059
	              - 0.0000
	              ) 0.0000
	             -- 0.0000
	            the 0.0000
	              , 0.0000
	            and 0.0000
	              . 0.0000

           KDID   492503 inf (30)
	            KDD 0.4000
	            IDI 0.1000
	         option 0.0369
	       Estrange 0.0369
	           KDIC 0.0369
	           KDIS 0.0369
	           KDIA 0.0369
	           KDIK 0.0369
	           KIDI 0.0369
	           </S> 0.0059
	              - 0.0000
	              / 0.0000
	              t 0.0000
	              a 0.0000
	            KID 0.0000
	              s 0.0000
	            DID 0.0000
	            KDI 0.0000
	              ) 0.0000
	         button 0.0000
	             It 0.0000
	          <UNK> 0.0000
	            DVD 0.0000
	              , 0.0000
	             In 0.0000
	              I 0.0000
	              . 0.0000
	             em 0.0000
	           KDDI 0.0000
	              A 0.0000

              .   492507   1 (14)
	           </S> 0.0369
	            the 0.0369
	            ... 0.0369
	            cia 0.0369
	            and 0.0369
	              . 0.0369
	             of 0.0369
	              ' 0.0369
	              , 0.0369
	             us 0.0369
	              s 0.0369
	           2004 0.0059
	              - 0.0000
	           2005 0.0000

             E.   492509 inf (23)
	              > 0.3000
	             in 0.0634
	              I 0.0418
	            EEE 0.0369
	             iu 0.0369
	            cia 0.0369
	             us 0.0369
	             EU 0.0369
	             EE 0.0369
	              A 0.0328
	             to 0.0265
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	             Ed 0.0000
	              ] 0.0000
	            How 0.0000
	             El 0.0000
	              . 0.0000
	              , 0.0000
	             of 0.0000
	              ) 0.0000
	              / 0.0000

 Su/ifaniuy-SVL   492513 inf (23)
	              ' 0.3000
	            can 0.0369
	            Can 0.0369
	      configure 0.0369
	  config.status 0.0369
	        Stanley 0.0369
	          Since 0.0369
	              , 0.0059
	          State 0.0000
	              A 0.0000
	          <UNK> 0.0000
	              " 0.0000
	              ) 0.0000
	            and 0.0000
	              . 0.0000
	              - 0.0000
	            Van 0.0000
	           </S> 0.0000
	           coli 0.0000
	    Publication 0.0000
	          Smith 0.0000
	       Stiglitz 0.0000
	              / 0.0000

              I   492528 inf (21)
	           </S> 0.0369
	             WI 0.0369
	             If 0.0369
	            III 0.0369
	            Bud 0.0369
	              , 0.0369
	              . 0.0369
	             us 0.0369
	             It 0.0369
	             II 0.0369
	             HI 0.0369
	           IIII 0.0369
	            and 0.0369
	             MI 0.0369
	             J. 0.0369
	          Chuck 0.0369
	            the 0.0369
	             of 0.0369
	              - 0.0369
	             A. 0.0369
	             In 0.0369

              '   492530 inf (17)
	            cia 0.0369
	             'm 0.0059
	           </S> 0.0000
	            'll 0.0000
	             'd 0.0000
	             of 0.0000
	              - 0.0000
	            've 0.0000
	             am 0.0000
	             us 0.0000
	           have 0.0000
	            was 0.0000
	            and 0.0000
	              . 0.0000
	            the 0.0000
	             iu 0.0000
	              , 0.0000

           ILWF   492531 inf (30)
	           WILF 0.2000
	        gerufen 0.0369
	           WLFI 0.0369
	           ILRF 0.0369
	          spose 0.0369
	            LWF 0.0369
	           IWFL 0.0369
	           ILWU 0.0369
	           </S> 0.0059
	              ) 0.0000
	              , 0.0000
	          <UNK> 0.0000
	             In 0.0000
	             If 0.0000
	            ILW 0.0000
	             to 0.0000
	            IWF 0.0000
	              s 0.0000
	              C 0.0000
	             It 0.0000
	              a 0.0000
	              A 0.0000
	              . 0.0000
	            not 0.0000
	            you 0.0000
	              - 0.0000
	             it 0.0000
	            ILF 0.0000
	             em 0.0000
	         button 0.0000

              .   492535   1 (14)
	           </S> 0.0369
	              . 0.0369
	              - 0.0369
	              ' 0.0369
	            and 0.0369
	              s 0.0369
	            cia 0.0369
	             us 0.0369
	     JOB.ORIGIN 0.0369
	             of 0.0369
	            ... 0.0369
	            the 0.0369
	              , 0.0369
	      vBulletin 0.0369

       Cetti'vS   492538 inf (16)
	        Cattiva 0.0369
	          Cetti 0.0369
	        Settiva 0.0369
	         Cettia 0.0369
	       Cettigne 0.0369
	           </S> 0.0059
	              / 0.0000
	              I 0.0000
	              * 0.0000
	              ) 0.0000
	              A 0.0000
	              , 0.0000
	              . 0.0000
	              - 0.0000
	              ] 0.0000
	              " 0.0000

        Warrlkr   492547 inf (23)
	      ChangeLog 0.0369
	              . 0.0369
	           Warr 0.0369
	          Warri 0.0369
	          Warre 0.0369
	     regress.sh 0.0369
	         Warrer 0.0369
	              ) 0.0369
	              g 0.0369
	         Warral 0.0369
	         Walker 0.0369
	              a 0.0369
	        Warrier 0.0369
	           </S> 0.0369
	              n 0.0369
	        Warrior 0.0369
	              , 0.0369
	              - 0.0369
	         Walkyr 0.0369
	          <UNK> 0.0369
	        Warbler 0.0369
	        Warrick 0.0369
	       Warkalki 0.0369

              .   492554 inf (8)
	             of 0.0369
	             to 0.0369
	             us 0.0369
	            and 0.0369
	             in 0.0369
	            the 0.0369
	            cia 0.0369
	             iu 0.0369

         Cetfin   492557   2 (29)
	             In 0.2000
	            fin 0.0369
	         retain 0.0369
	         Cettia 0.0369
	        Certhia 0.0369
	         Retail 0.0369
	         hetfic 0.0369
	         Cetlin 0.0369
	         Wetfie 0.0369
	           Ceti 0.0369
	         Celtic 0.0369
	         Coffin 0.0369
	        Jetfins 0.0369
	         Ceftin 0.0369
	            Cet 0.0369
	        Citofen 0.0369
	          Cetin 0.0369
	        Cetirin 0.0369
	           </S> 0.0059
	              ] 0.0000
	              / 0.0000
	              , 0.0000
	              . 0.0000
	            For 0.0000
	              " 0.0000
	              I 0.0000
	              A 0.0000
	              - 0.0000
	              ) 0.0000

         ccttii   492564 inf (31)
	          citii 0.0369
	vareSelskap.cgi 0.0369
	         cyttid 0.0369
	          citti 0.0369
	         cattle 0.0369
	         Cettia 0.0369
	        Bruttii 0.0369
	         cuttie 0.0369
	         cottid 0.0369
	          <UNK> 0.0369
	          citit 0.0369
	         Cactii 0.0369
	      configure 0.0369
	         Vettii 0.0369
	         cotton 0.0369
	           </S> 0.0369
	            cti 0.0369
	              - 0.0369
	              , 0.0369
	      accattivi 0.0369
	              . 0.0369
	              ) 0.0369
	              n 0.0369
	        cattivi 0.0369
	              a 0.0369
	          cotti 0.0369
	         zittii 0.0369
	            tii 0.0369
	        cottimi 0.0369
	              I 0.0369
	        cutting 0.0369

              ,   492570 inf (8)
	             of 0.0369
	             to 0.0369
	             us 0.0369
	            and 0.0369
	             in 0.0369
	            the 0.0369
	            cia 0.0369
	             iu 0.0369

           Marm   492572   2 (25)
	             pp 0.1857
	            are 0.0369
	   respectively 0.0369
	           Marm 0.0369
	            arz 0.0369
	            and 0.0369
	          Marmo 0.0369
	             My 0.0369
	              { 0.0369
	           Mark 0.0369
	           Mary 0.0369
	              x 0.0369
	            Mar 0.0369
	           Mram 0.0369
	           More 0.0369
	          Marma 0.0369
	            the 0.0059
	          which 0.0012
	              e 0.0000
	            too 0.0000
	              i 0.0000
	             or 0.0000
	             of 0.0000
	           sala 0.0000
	           lava 0.0000

              .   492576   8 (12)
	            and 0.7000
	             us 0.0369
	             iu 0.0369
	             of 0.0369
	            cia 0.0369
	            the 0.0369
	             .. 0.0059
	           </S> 0.0000
	              . 0.0000
	            ... 0.0000
	              - 0.0000
	              , 0.0000

              A   492579  11 (22)
	           This 0.3358
	             As 0.2611
	            cia 0.0369
	             iu 0.0369
	             PA 0.0369
	             CA 0.0369
	             AA 0.0369
	             us 0.0369
	             AM 0.0369
	            AAA 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ) 0.0000
	             of 0.0000
	            the 0.0000
	              ] 0.0000
	              . 0.0000
	              / 0.0000
	            and 0.0000
	              , 0.0000

           Ma}'   492617   1 (23)
	            May 0.8000
	            Maa 0.4000
	           Baya 0.1000
	              I 0.0369
	            MMa 0.0369
	            the 0.0059
	              a 0.0000
	             Ma 0.0000
	            Mar 0.0000
	           lava 0.0000
	              . 0.0000
	           sala 0.0000
	            Map 0.0000
	       November 0.0000
	           </S> 0.0000
	         bufing 0.0000
	           this 0.0000
	             My 0.0000
	              , 0.0000
	              - 0.0000
	           More 0.0000
	        January 0.0000
	              ' 0.0000

           12th   492622 inf (19)
	           16th 0.0369
	              , 0.0369
	              . 0.0369
	              1 0.0369
	             22 0.0369
	           20th 0.0369
	           both 0.0369
	              - 0.0369
	           </S> 0.0369
	             th 0.0369
	           with 0.0369
	              2 0.0369
	            9th 0.0369
	              a 0.0369
	           site 0.0369
	           With 0.0369
	             12 0.0369
	             15 0.0369
	              I 0.0369

           1904   492628 inf (22)
	           2005 0.0369
	           </S> 0.0369
	              ) 0.0369
	              I 0.0369
	          <UNK> 0.0369
	           1900 0.0369
	           1994 0.0369
	           1901 0.0369
	           1906 0.0369
	              " 0.0369
	           2004 0.0369
	   respectively 0.0369
	              a 0.0369
	            and 0.0369
	           2006 0.0369
	            the 0.0059
	             of 0.0000
	             or 0.0000
	          which 0.0000
	            too 0.0000
	              i 0.0000
	             pp 0.0000

            One   492635   1 (26)
	            One 0.4236
	             On 0.3477
	              I 0.0418
	              a 0.0369
	            Ono 0.0369
	            cia 0.0369
	             iu 0.0369
	           Ones 0.0369
	           Onex 0.0369
	           Onen 0.0369
	            new 0.0369
	            one 0.0369
	           Onne 0.0369
	            Ont 0.0369
	             us 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              . 0.0000
	              / 0.0000
	              , 0.0000
	           Each 0.0000
	              ) 0.0000
	              ] 0.0000
	            and 0.0000

       Icterine   492654   1 (28)
	       Icterine 0.6000
	              , 0.0369
	     Intercrine 0.0369
	              a 0.0369
	              . 0.0369
	          water 0.0369
	           kind 0.0369
	            and 0.0369
	       Icterica 0.0369
	        Icteria 0.0369
	        present 0.0369
	          major 0.0369
	         latter 0.0369
	       Icterina 0.0369
	       icterine 0.0369
	           </S> 0.0059
	           same 0.0037
	           eBay 0.0000
	          world 0.0000
	              - 0.0000
	       Internet 0.0000
	           most 0.0000
	          first 0.0000
	            use 0.0000
	           time 0.0000
	      Icteridae 0.0000
	       American 0.0000
	         United 0.0000

         Cromer   492683   1 (30)
	              , 0.0369
	            all 0.0369
	              a 0.0369
	         Coomer 0.0369
	          romer 0.0369
	          Crome 0.0369
	           home 0.0369
	          night 0.0369
	       Montreal 0.0369
	              . 0.0369
	         Cromer 0.0369
	          first 0.0369
	          least 0.0369
	              - 0.0369
	       Customer 0.0369
	            the 0.0369
	         Center 0.0369
	         Cramer 0.0369
	         Cromek 0.0369
	          <UNK> 0.0369
	          Comer 0.0369
	       Cromeria 0.0369
	           </S> 0.0369
	           your 0.0059
	          which 0.0000
	              y 0.0000
	              x 0.0000
	           work 0.0000
	             us 0.0000
	          women 0.0000

            one   492715   1 (23)
	              - 0.0369
	            ons 0.0369
	            ont 0.0369
	           ones 0.0369
	           oner 0.0369
	           onen 0.0369
	              , 0.0369
	              a 0.0369
	             us 0.0369
	            cia 0.0369
	             iu 0.0369
	              . 0.0369
	            one 0.0369
	           onee 0.0369
	             of 0.0369
	            and 0.0369
	             on 0.0369
	              A 0.0369
	            oen 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	              " 0.0000

            one   492752   1 (22)
	            ons 0.0369
	            ont 0.0369
	              - 0.0369
	             on 0.0369
	              , 0.0369
	             us 0.0369
	           ones 0.0369
	           oner 0.0369
	           onen 0.0369
	            cia 0.0369
	             iu 0.0369
	             of 0.0369
	            one 0.0369
	              a 0.0369
	              A 0.0369
	            oen 0.0369
	              . 0.0369
	           onee 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	              " 0.0000

      September   492783  14 (27)
	       December 0.8000
	          dimly 0.0369
	          major 0.0369
	            out 0.0369
	         number 0.0369
	     Septembers 0.0369
	     Septembery 0.0369
	              I 0.0369
	      Septembre 0.0369
	             us 0.0369
	      Spetember 0.0369
	        Sperber 0.0369
	             in 0.0059
	              . 0.0000
	             to 0.0000
	             as 0.0000
	           </S> 0.0000
	              - 0.0000
	             by 0.0000
	           here 0.0000
	              , 0.0000
	            the 0.0000
	         before 0.0000
	        between 0.0000
	      September 0.0000
	             it 0.0000
	              a 0.0000

            one   492801   1 (22)
	             on 0.0369
	              . 0.0369
	             of 0.0369
	            ons 0.0369
	            ont 0.0369
	            cia 0.0369
	             iu 0.0369
	              A 0.0369
	              , 0.0369
	             us 0.0369
	           ones 0.0369
	           oner 0.0369
	           onen 0.0369
	              - 0.0369
	           onee 0.0369
	              a 0.0369
	            oen 0.0369
	            one 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000
	              " 0.0000

           Cley   492813   1 (35)
	         Cleyde 0.0369
	           alba 0.0369
	           home 0.0369
	          Coley 0.0369
	           Cley 0.0369
	            all 0.0369
	          Pales 0.0369
	            the 0.0369
	            ley 0.0369
	           Cleo 0.0369
	          Click 0.0369
	           Cely 0.0369
	          least 0.0369
	          Clery 0.0369
	           </S> 0.0369
	           this 0.0369
	              , 0.0369
	           Clem 0.0369
	          Clecy 0.0369
	              a 0.0369
	           City 0.0369
	        Cleyera 0.0369
	           they 0.0369
	              . 0.0369
	          <UNK> 0.0369
	            Cle 0.0369
	           love 0.0369
	             it 0.0369
	              - 0.0369
	           your 0.0059
	              x 0.0000
	           work 0.0000
	             us 0.0000
	          which 0.0000
	              y 0.0000

        Holkham   492855   1 (28)
	        Hockham 0.0369
	           </S> 0.0369
	          Holam 0.0369
	              . 0.0369
	          <UNK> 0.0369
	              a 0.0369
	        Hokhmah 0.0369
	           home 0.0369
	            the 0.0369
	        Holkham 0.0369
	          least 0.0369
	         Alkham 0.0369
	         Kolkha 0.0369
	            all 0.0369
	           that 0.0369
	              , 0.0369
	              - 0.0369
	           Home 0.0369
	      Annapolis 0.0369
	        Holzhau 0.0369
	        Hohokam 0.0369
	           your 0.0059
	              x 0.0000
	             us 0.0000
	           work 0.0000
	              y 0.0000
	           what 0.0000
	          which 0.0000

            one   492884   1 (22)
	            oen 0.0369
	           ones 0.0369
	           oner 0.0369
	           onen 0.0369
	              A 0.0369
	              . 0.0369
	             on 0.0369
	            cia 0.0369
	             iu 0.0369
	            one 0.0369
	              , 0.0369
	            ons 0.0369
	            ont 0.0369
	           onee 0.0369
	              a 0.0369
	             us 0.0369
	             of 0.0369
	              - 0.0369
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	              } 0.0000

          Knock   492905  13 (17)
	           </S> 0.1080
	            not 0.0369
	              I 0.0369
	           into 0.0369
	           know 0.0369
	          Knoch 0.0369
	          Stock 0.0369
	         Knocke 0.0369
	         Knocks 0.0369
	             of 0.0369
	              a 0.0369
	           Town 0.0059
	              . 0.0000
	         Plover 0.0000
	              , 0.0000
	              - 0.0000
	          Knock 0.0000

      Lightship   492911   5 (18)
	           Road 0.9000
	              U 0.8000
	          Light 0.6000
	         Lights 0.5000
	      LightShip 0.0369
	      Lightship 0.0369
	     Lightships 0.0369
	      lightship 0.0369
	      Lightstep 0.0369
	              - 0.0059
	          knock 0.0000
	          Knock 0.0000
	              . 0.0000
	              a 0.0000
	            Out 0.0000
	           </S> 0.0000
	           Life 0.0000
	              , 0.0000

      September   492922   1 (20)
	              I 0.0369
	        Belfast 0.0369
	              " 0.0369
	              a 0.0369
	      September 0.0369
	       December 0.0369
	     Septembers 0.0369
	     Septembery 0.0369
	      Spetember 0.0369
	            The 0.0369
	              , 0.0369
	      Septembre 0.0369
	            the 0.0059
	             it 0.0000
	          other 0.0000
	          which 0.0000
	             of 0.0000
	          since 0.0000
	             or 0.0000
	              i 0.0000

            one   492939   1 (22)
	            ons 0.0369
	            ont 0.0369
	              - 0.0369
	             on 0.0369
	              , 0.0369
	             us 0.0369
	           ones 0.0369
	           oner 0.0369
	           onen 0.0369
	            cia 0.0369
	             iu 0.0369
	             of 0.0369
	            one 0.0369
	              a 0.0369
	              A 0.0369
	            oen 0.0369
	              . 0.0369
	           onee 0.0369
	           </S> 0.0059
	              } 0.0000
	              " 0.0000
	              ) 0.0000

           June   492961   7 (23)
	           Jung 0.8000
	              § 0.0369
	              I 0.0369
	          Munia 0.0369
	          Junne 0.0369
	            the 0.0059
	            Jan 0.0000
	              , 0.0000
	           June 0.0000
	            Jun 0.0000
	              - 0.0000
	              a 0.0000
	          Junes 0.0000
	              . 0.0000
	             us 0.0000
	            and 0.0000
	       addition 0.0000
	           </S> 0.0000
	             iu 0.0000
	           Junk 0.0000
	          Junee 0.0000
	            one 0.0000
	           this 0.0000

            one   492973   1 (22)
	              a 0.0369
	              - 0.0369
	             on 0.0369
	             of 0.0369
	            ons 0.0369
	            ont 0.0369
	            cia 0.0369
	             iu 0.0369
	              , 0.0369
	              A 0.0369
	             us 0.0369
	           ones 0.0369
	           oner 0.0369
	           onen 0.0369
	           onee 0.0369
	            oen 0.0369
	              . 0.0369
	            one 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	              " 0.0000

         Family   493049   1 (20)
	         Family 0.9834
	              I 0.0418
	         easily 0.0369
	         family 0.0369
	        Faimily 0.0369
	         Famila 0.0369
	         Famill 0.0369
	       Familypc 0.0369
	              a 0.0369
	        Familly 0.0369
	       FamilyPC 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              / 0.0000
	              , 0.0000
	              ) 0.0000
	              ] 0.0000
	              . 0.0000

        TURDID^   493057 inf (30)
	         TARDIS 0.7000
	              a 0.5167
	            Dec 0.1000
	     crests.com 0.0369
	           side 0.0369
	           Prom 0.0369
	       Friendly 0.0369
	              , 0.0369
	           TURI 0.0369
	       friendly 0.0369
	              s 0.0369
	              p 0.0369
	          TDIDF 0.0369
	            rev 0.0369
	          GUDID 0.0369
	         TURYID 0.0369
	          TRIDA 0.0369
	            Vol 0.0369
	           </S> 0.0059
	          <UNK> 0.0000
	             to 0.0000
	             up 0.0000
	            The 0.0000
	              - 0.0000
	              I 0.0000
	            the 0.0000
	              A 0.0000
	           time 0.0000
	              . 0.0000
	             In 0.0000

              .   493064   1 (12)
	              , 0.0369
	              . 0.0369
	           </S> 0.0369
	             of 0.0369
	            and 0.0369
	              ( 0.0369
	            ... 0.0369
	              - 0.0369
	            the 0.0369
	             us 0.0369
	            cia 0.0369
	             iu 0.0369

     Subfamily-   493067   1 (15)
	      subfamily 0.0369
	     Sulfamidyl 0.0369
	    Subfamilies 0.0369
	    Subfamiliae 0.0369
	      Subfamily 0.0369
	           </S> 0.0059
	              - 0.0000
	              A 0.0000
	              " 0.0000
	              ) 0.0000
	              I 0.0000
	              ] 0.0000
	              , 0.0000
	              . 0.0000
	             So 0.0000

            SYL   493078 inf (23)
	          <UNK> 0.0369
	              n 0.0369
	            You 0.0369
	            See 0.0369
	             US 0.0369
	              . 0.0369
	              - 0.0369
	            SYS 0.0369
	              ) 0.0369
	           SYLK 0.0369
	            San 0.0369
	             iu 0.0369
	              , 0.0369
	           </S> 0.0369
	            SYL 0.0369
	            LYS 0.0369
	            cia 0.0369
	             SY 0.0369
	           SYLT 0.0369
	            SYN 0.0369
	             us 0.0369
	              a 0.0369
	            YSL 0.0369

          VIIN^   493082 inf (20)
	          canal 0.2000
	            IIN 0.0369
	           VIIV 0.0369
	            VII 0.0369
	           VIII 0.0369
	            VNI 0.0369
	            INV 0.0369
	           VIEW 0.0369
	           VINS 0.0369
	          VIIRS 0.0369
	            VIN 0.0369
	              - 0.0059
	              , 0.0000
	              ) 0.0000
	           </S> 0.0000
	          issue 0.0000
	              E 0.0000
	              . 0.0000
	          <UNK> 0.0000
	              I 0.0000

              .   493087   1 (13)
	              . 0.0369
	            and 0.0369
	           Inc. 0.0369
	          <UNK> 0.0369
	           </S> 0.0369
	            cia 0.0369
	             iu 0.0369
	              - 0.0369
	             us 0.0369
	             of 0.0369
	            the 0.0369
	              , 0.0369
	           VIEW 0.0369

      Melodious   493094 inf (24)
	       Melodies 0.2000
	         second 0.1000
	              ) 0.0369
	      Melodorum 0.0369
	          Music 0.0369
	       Melophus 0.0369
	            KDE 0.0369
	      Passerine 0.0369
	     Associated 0.0369
	       Melodion 0.0369
	       Modiolus 0.0369
	    melodiously 0.0369
	              / 0.0369
	      Melodinus 0.0369
	           </S> 0.0059
	          first 0.0000
	      melodious 0.0000
	       question 0.0000
	          <UNK> 0.0000
	      following 0.0000
	              - 0.0000
	         Melodi 0.0000
	          World 0.0000
	              ( 0.0000

       Hypolais   493114   1 (25)
	      Hypolagus 0.0369
	   Phylloscopus 0.0369
	        Hypoxia 0.0369
	       Hypolais 0.0369
	     Hypoplasia 0.0369
	         Sylvia 0.0369
	         eolais 0.0369
	              a 0.0369
	        Hypolag 0.0369
	      Hypocrisy 0.0369
	       Hypnosis 0.0369
	      Hippolais 0.0369
	      Hypolysia 0.0369
	           </S> 0.0059
	              " 0.0000
	              / 0.0000
	              - 0.0000
	              ] 0.0000
	              ) 0.0000
	              A 0.0000
	              . 0.0000
	              I 0.0000
	            For 0.0000
	              , 0.0000
	             In 0.0000

     polyglolla   493123 inf (23)
	              n 0.0369
	    polygonella 0.0369
	       polygona 0.0369
	           </S> 0.0369
	              I 0.0369
	      polyglott 0.0369
	              ) 0.0369
	      polyglots 0.0369
	     particular 0.0369
	vareSelskap.cgi 0.0369
	        million 0.0369
	     polyglotte 0.0369
	              - 0.0369
	              a 0.0369
	    polyglottal 0.0369
	   polyglobulia 0.0369
	              . 0.0369
	              , 0.0369
	          <UNK> 0.0369
	      configure 0.0369
	       polyglot 0.0369
	           pool 0.0369
	       polygala 0.0369

              ,   493133 inf (8)
	             of 0.0369
	             to 0.0369
	             us 0.0369
	            and 0.0369
	             in 0.0369
	            the 0.0369
	            cia 0.0369
	             iu 0.0369

         ViEILL   493135 inf (23)
	            his 0.2000
	              x 0.0369
	           VILE 0.0369
	   respectively 0.0369
	            VEI 0.0369
	              { 0.0369
	            EIL 0.0369
	           VEIL 0.0369
	          VisIt 0.0369
	            VIL 0.0369
	            ILL 0.0369
	         ViEWER 0.0369
	            the 0.0059
	             of 0.0000
	              e 0.0000
	              i 0.0000
	          which 0.0000
	           will 0.0000
	             to 0.0000
	             pp 0.0000
	           with 0.0000
	             or 0.0000
	            too 0.0000

              .   493141   1 (11)
	             iu 0.0369
	             of 0.0369
	           </S> 0.0369
	            ... 0.0369
	              , 0.0369
	            and 0.0369
	            cia 0.0369
	             us 0.0369
	              . 0.0369
	              - 0.0369
	            the 0.0369

             AN   493144   7 (25)
	           This 0.3358
	            For 0.2625
	             As 0.2611
	            All 0.1921
	             No 0.1700
	              I 0.0418
	             AN 0.0369
	             iu 0.0369
	            cia 0.0369
	             us 0.0369
	            ANN 0.0369
	            AND 0.0369
	            ANY 0.0369
	             NA 0.0369
	             AM 0.0369
	            AAN 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ] 0.0000
	              . 0.0000
	              / 0.0000
	              ) 0.0000
	              , 0.0000

        example   493147   1 (21)
	        example 0.9000
	      configure 0.0369
	        exemple 0.0369
	       document 0.0369
	       examples 0.0369
	       exampled 0.0369
	        exempla 0.0369
	  investigation 0.0369
	           link 0.0369
	            ACT 0.0059
	           </S> 0.0000
	      EMERGENCY 0.0000
	              S 0.0000
	              - 0.0000
	              D 0.0000
	              . 0.0000
	              E 0.0000
	              ) 0.0000
	          <UNK> 0.0000
	        Example 0.0000
	              , 0.0000

        Burwash   493171   2 (32)
	              y 0.3000
	              , 0.0369
	        Buriash 0.0369
	        Burbash 0.0369
	          Lewes 0.0369
	         Burway 0.0369
	              0 0.0369
	          <UNK> 0.0369
	          great 0.0369
	            all 0.0369
	        Burwash 0.0369
	              - 0.0369
	              2 0.0369
	        Buraswa 0.0369
	         Bosham 0.0369
	              a 0.0369
	              . 0.0369
	         Burwan 0.0369
	           </S> 0.0369
	              1 0.0369
	            the 0.0369
	         Barush 0.0369
	           home 0.0369
	           last 0.0369
	          least 0.0369
	     Chichester 0.0369
	           your 0.0059
	             us 0.0000
	            was 0.0000
	           work 0.0000
	              x 0.0000
	          which 0.0000

              a   493198   1 (20)
	             as 0.0369
	              . 0.0369
	              , 0.0369
	              a 0.0369
	              - 0.0369
	             aa 0.0369
	             la 0.0369
	             La 0.0369
	           lava 0.0369
	            cia 0.0369
	             us 0.0369
	             at 0.0369
	             of 0.0369
	             to 0.0369
	            the 0.0369
	            aaa 0.0369
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	              } 0.0000

       Ninfield   493219   1 (25)
	         Niniel 0.0369
	       Ninefold 0.0369
	       Ninfield 0.0369
	          <UNK> 0.0369
	           </S> 0.0369
	            the 0.0369
	        infield 0.0369
	              . 0.0369
	              , 0.0369
	              a 0.0369
	       Winfield 0.0369
	          least 0.0369
	       Linfield 0.0369
	           line 0.0369
	            all 0.0369
	           home 0.0369
	              - 0.0369
	           your 0.0059
	              x 0.0000
	          which 0.0000
	           work 0.0000
	             us 0.0000
	           well 0.0000
	              y 0.0000
	          under 0.0000

            May   493241   3 (26)
	              a 0.8000
	              I 0.5000
	            may 0.0369
	            May 0.0369
	            Map 0.0369
	            Mya 0.0369
	           Baya 0.0369
	            arz 0.0369
	           hand 0.0369
	          floor 0.0369
	           Maya 0.0369
	           side 0.0369
	            Mar 0.0369
	           Mayo 0.0369
	             Ma 0.0369
	            cia 0.0369
	             My 0.0369
	             to 0.0059
	           </S> 0.0000
	              - 0.0000
	        century 0.0000
	             of 0.0000
	              x 0.0000
	              , 0.0000
	              . 0.0000
	            was 0.0000

            one   493252   1 (26)
	              A 0.0369
	           onee 0.0369
	            cia 0.0369
	             iu 0.0369
	            ons 0.0369
	            ont 0.0369
	             us 0.0369
	              , 0.0369
	             of 0.0369
	            one 0.0369
	            and 0.0369
	             on 0.0369
	              a 0.0369
	              . 0.0369
	            oen 0.0369
	              - 0.0369
	           ones 0.0369
	           oner 0.0369
	           onen 0.0369
	             it 0.0369
	             he 0.0369
	              I 0.0369
	           </S> 0.0059
	              " 0.0000
	              } 0.0000
	              ) 0.0000

    Lighthoi:se   493281 inf (19)
	     Lighthorse 0.0369
	    Lighthouses 0.0369
	     Lighthorne 0.0369
	           Road 0.0369
	           List 0.0369
	             of 0.0059
	             in 0.0000
	          Start 0.0000
	          Light 0.0000
	              , 0.0000
	           </S> 0.0000
	         Island 0.0000
	          light 0.0000
	         Office 0.0000
	              - 0.0000
	              W 0.0000
	              M 0.0000
	     Lighthouse 0.0000
	              . 0.0000

              ,   493294   1 (13)
	              . 0.0369
	           </S> 0.0369
	            the 0.0369
	              - 0.0369
	             us 0.0369
	        Kinsale 0.0369
	            cia 0.0369
	             iu 0.0369
	              , 0.0369
	             is 0.0369
	            and 0.0369
	          Links 0.0369
	             of 0.0369

            co.   493296   1 (27)
	              a 0.0369
	          <UNK> 0.0369
	             SC 0.0369
	            cia 0.0369
	          comix 0.0369
	          corax 0.0369
	              " 0.0369
	             co 0.0369
	              I 0.0369
	          South 0.0369
	              ( 0.0369
	            and 0.0369
	           </S> 0.0369
	            com 0.0369
	            con 0.0369
	            cod 0.0369
	            coo 0.0369
	            coc 0.0369
	            can 0.0369
	           with 0.0062
	            the 0.0059
	          which 0.0012
	             of 0.0000
	             or 0.0000
	            for 0.0000
	              i 0.0000
	            not 0.0000

           Cork   493300   2 (25)
	              . 0.2000
	          Corky 0.0369
	          Corks 0.0369
	          Cokro 0.0369
	           work 0.0369
	          corax 0.0369
	            arz 0.0369
	            Cor 0.0369
	           More 0.0369
	              I 0.0369
	           more 0.0369
	          Crook 0.0369
	           Corp 0.0369
	           York 0.0369
	           Cork 0.0369
	           Core 0.0369
	            the 0.0369
	            and 0.0369
	              a 0.0369
	         Corvus 0.0369
	            mar 0.0059
	           </S> 0.0000
	              - 0.0000
	              , 0.0000
	        Wicklow 0.0000

            the   493335   1 (18)
	              , 0.0369
	            the 0.0369
	              a 0.0369
	           them 0.0369
	            thy 0.0369
	            tho 0.0369
	            cia 0.0369
	             iu 0.0369
	           they 0.0369
	            teh 0.0369
	             us 0.0369
	           thee 0.0369
	              . 0.0369
	              A 0.0369
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	              } 0.0000

           Rev.   493339   1 (25)
	            Rev 0.3000
	         iTunes 0.0369
	           late 0.0369
	         letter 0.0369
	         Soviet 0.0369
	           </S> 0.0059
	           same 0.0037
	            Red 0.0000
	             Re 0.0000
	           Revo 0.0000
	           even 0.0000
	           work 0.0000
	           Reve 0.0000
	           Revd 0.0000
	           Real 0.0000
	           lava 0.0000
	      following 0.0000
	              ' 0.0000
	           Read 0.0000
	              - 0.0000
	              " 0.0000
	           Revs 0.0000
	          <UNK> 0.0000
	          first 0.0000
	          Reeve 0.0000

         Mathew   493350   7 (21)
	          Mathe 0.2000
	             A. 0.0369
	             M. 0.0369
	              M 0.0369
	             J. 0.0369
	           </S> 0.0059
	              ( 0.0000
	              . 0.0000
	              A 0.0000
	              , 0.0000
	        Mathews 0.0000
	         rather 0.0000
	          There 0.0000
	              - 0.0000
	              I 0.0000
	        Matthew 0.0000
	         Master 0.0000
	         father 0.0000
	         Mathes 0.0000
	         Mather 0.0000
	         Mathew 0.0000

          heard   493357   2 (23)
	            are 0.3000
	          hedra 0.0369
	          heard 0.0369
	           here 0.0369
	          years 0.0369
	           hard 0.0369
	            arz 0.0369
	         heared 0.0369
	           hear 0.0369
	          heart 0.0369
	         Sheard 0.0369
	         Theard 0.0369
	              I 0.0369
	              a 0.0369
	          hears 0.0369
	           </S> 0.0059
	             J. 0.0000
	              - 0.0000
	             A. 0.0000
	          Gross 0.0000
	              . 0.0000
	              A 0.0000
	              , 0.0000

       Warblers   493367   4 (21)
	       warblers 0.7000
	       Partners 0.7000
	        Careers 0.0714
	        Warbler 0.0369
	        Warbles 0.0369
	        Warburg 0.0369
	       Warblers 0.0369
	        cablets 0.0369
	          shots 0.0369
	              a 0.0369
	              - 0.0059
	          years 0.0000
	       Wireless 0.0000
	             or 0.0000
	              , 0.0000
	            men 0.0000
	           </S> 0.0000
	          major 0.0000
	        Walters 0.0000
	              . 0.0000
	             of 0.0000

           near   493376   1 (22)
	           near 0.6000
	             us 0.0369
	          neare 0.0369
	              a 0.0369
	           year 0.0369
	           need 0.0369
	           nera 0.0369
	          nears 0.0369
	            nea 0.0369
	            arz 0.0369
	            cia 0.0369
	            new 0.0369
	          three 0.0369
	           neat 0.0369
	           neal 0.0369
	              , 0.0059
	              I 0.0000
	             of 0.0000
	            and 0.0000
	              . 0.0000
	              - 0.0000
	           </S> 0.0000

             he   493444   1 (26)
	              - 0.0369
	              , 0.0369
	              . 0.0369
	       calendar 0.0369
	             us 0.0369
	            hey 0.0369
	            The 0.0369
	            her 0.0369
	             iu 0.0369
	            cia 0.0369
	             hr 0.0369
	           year 0.0369
	           date 0.0369
	             hi 0.0369
	            the 0.0369
	              I 0.0369
	              : 0.0369
	            hee 0.0369
	            heh 0.0369
	             he 0.0369
	             eh 0.0369
	              a 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	              " 0.0000

      Melodious   493467 inf (21)
	    melodiously 0.0369
	           true 0.0369
	      Melodinus 0.0369
	       Melodion 0.0369
	      Melodorum 0.0369
	          about 0.0369
	       Modiolus 0.0369
	         Melodi 0.0369
	       Melodies 0.0369
	       products 0.0369
	             us 0.0369
	              a 0.0059
	            the 0.0000
	           able 0.0000
	           your 0.0000
	      melodious 0.0000
	              , 0.0000
	              - 0.0000
	           </S> 0.0000
	              . 0.0000
	           used 0.0000

       Warblers   493477  17 (21)
	              . 0.3000
	              - 0.2000
	             up 0.0369
	        problem 0.0369
	              I 0.0369
	        Walters 0.0369
	             in 0.0369
	        cablets 0.0369
	              a 0.0369
	             by 0.0369
	       warblers 0.0369
	          large 0.0369
	        Warbles 0.0369
	             to 0.0369
	          there 0.0369
	        Warbler 0.0059
	           </S> 0.0000
	         Etudes 0.0000
	       Warblers 0.0000
	              , 0.0000
	            and 0.0000

         nested   493500  14 (23)
	        nestled 0.9000
	         United 0.1000
	         nester 0.0369
	         nesten 0.0369
	              . 0.0369
	              - 0.0369
	          neste 0.0369
	              a 0.0369
	         nestes 0.0369
	       unnested 0.0369
	        snetted 0.0369
	              I 0.0369
	            are 0.0059
	           were 0.0000
	           need 0.0000
	              , 0.0000
	         tensed 0.0000
	            can 0.0000
	            're 0.0000
	           have 0.0000
	           </S> 0.0000
	         system 0.0000
	         nested 0.0000

      Shetlands   493556   1 (30)
	          Wight 0.0369
	      therefore 0.0369
	          Maine 0.0369
	      Shetlands 0.0369
	       Shetland 0.0369
	             ME 0.0369
	              I 0.0369
	              a 0.0369
	            Man 0.0369
	          <UNK> 0.0369
	       Scotland 0.0369
	        Fairfax 0.0369
	              " 0.0369
	    Shetlandish 0.0369
	             SC 0.0369
	           </S> 0.0369
	              E 0.0369
	            and 0.0369
	       Belleair 0.0369
	    Shetlanders 0.0369
	            the 0.0059
	          while 0.0000
	      shetlands 0.0000
	          these 0.0000
	         though 0.0000
	          which 0.0000
	            too 0.0000
	            who 0.0000
	             or 0.0000
	          their 0.0000

           1906   493586 inf (26)
	              " 0.0369
	      therefore 0.0369
	              ( 0.0369
	          <UNK> 0.0369
	           2001 0.0369
	           1960 0.0369
	              I 0.0369
	             06 0.0369
	           2006 0.0369
	           2005 0.0369
	              a 0.0369
	           1990 0.0369
	           2003 0.0369
	           </S> 0.0369
	           1996 0.0369
	            and 0.0369
	           1909 0.0369
	           2004 0.0369
	           1986 0.0369
	            the 0.0059
	          which 0.0000
	             or 0.0000
	              i 0.0000
	         though 0.0000
	            too 0.0000
	             of 0.0000

        Warbler   493657  14 (27)
	        Warbles 0.0369
	       wrapping 0.0369
	           that 0.0369
	              s 0.0369
	         Warbel 0.0369
	       Billings 0.0369
	            off 0.0369
	           this 0.0369
	          video 0.0369
	           What 0.0369
	          water 0.0369
	              - 0.0079
	           </S> 0.0059
	              A 0.0000
	              a 0.0000
	          <UNK> 0.0000
	             up 0.0000
	             in 0.0000
	              . 0.0000
	             to 0.0000
	        Warbler 0.0000
	            the 0.0000
	         Warble 0.0000
	          based 0.0000
	              I 0.0000
	       Warblers 0.0000
	              ) 0.0000

             Au   493737 inf (24)
	            For 0.2625
	             As 0.2611
	            All 0.1921
	              I 0.0418
	            Aug 0.0369
	            Aus 0.0369
	              a 0.0369
	             us 0.0369
	             iu 0.0369
	            cia 0.0369
	             up 0.0369
	             AM 0.0369
	             Au 0.0369
	             uA 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              , 0.0000
	           Each 0.0000
	              ] 0.0000
	              ) 0.0000
	              . 0.0000
	              / 0.0000

        example   493740   4 (23)
	              g 0.7000
	              . 0.2000
	     collisions 0.1000
	       deposits 0.0369
	        Example 0.0369
	       examples 0.0369
	        exemple 0.0369
	       Deposits 0.0369
	        exempla 0.0369
	              a 0.0369
	        example 0.0369
	        version 0.0369
	        content 0.0369
	        History 0.0369
	              n 0.0369
	       exampled 0.0369
	             EC 0.0369
	           Pair 0.0059
	          <UNK> 0.0000
	              ) 0.0000
	           </S> 0.0000
	              , 0.0000
	              - 0.0000

              a   493823   1 (20)
	              . 0.0369
	              a 0.0369
	              - 0.0369
	             as 0.0369
	             la 0.0369
	             aa 0.0369
	            the 0.0369
	             of 0.0369
	           lava 0.0369
	            cia 0.0369
	             to 0.0369
	             La 0.0369
	              , 0.0369
	             at 0.0369
	            aaa 0.0369
	             us 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	              " 0.0000

        Bexhill   493833   2 (26)
	              y 0.1000
	         Oxhill 0.0369
	        Boxhill 0.0369
	            all 0.0369
	     Bexleyhill 0.0369
	           home 0.0369
	        Benhill 0.0369
	        Berhill 0.0369
	          least 0.0369
	              . 0.0369
	        Bexhill 0.0369
	           </S> 0.0369
	          Belhi 0.0369
	           hill 0.0369
	              a 0.0369
	           this 0.0369
	            the 0.0369
	          <UNK> 0.0369
	              - 0.0369
	              , 0.0369
	           your 0.0059
	           will 0.0000
	           work 0.0000
	          which 0.0000
	             us 0.0000
	              x 0.0000

            one   493856   1 (24)
	            and 0.0369
	             on 0.0369
	              . 0.0369
	            the 0.0369
	             of 0.0369
	            ons 0.0369
	            ont 0.0369
	            cia 0.0369
	             iu 0.0369
	              A 0.0369
	              , 0.0369
	             us 0.0369
	           ones 0.0369
	           oner 0.0369
	           onen 0.0369
	              - 0.0369
	           onee 0.0369
	              a 0.0369
	            oen 0.0369
	            one 0.0369
	           </S> 0.0059
	              ) 0.0000
	              " 0.0000
	              } 0.0000

  Christclinrch   493863   2 (28)
	        writing 0.5000
	           home 0.0369
	          first 0.0369
	              2 0.0369
	              a 0.0369
	           line 0.0369
	           </S> 0.0369
	              - 0.0369
	              0 0.0369
	          <UNK> 0.0369
	              A 0.0369
	            his 0.0369
	           that 0.0369
	            all 0.0369
	            the 0.0369
	        Caltech 0.0369
	      Christmas 0.0369
	          least 0.0369
	              I 0.0369
	              , 0.0369
	              . 0.0369
	   Christchurch 0.0369
	           your 0.0059
	        version 0.0000
	          which 0.0000
	 watcher.nic.se 0.0000
	           work 0.0000
	             us 0.0000

          Hants   493878   1 (32)
	          Hanta 0.0369
	          <UNK> 0.0369
	            and 0.0369
	         Health 0.0369
	          Parus 0.0369
	         Lanius 0.0369
	          Pales 0.0369
	          Hants 0.0369
	              2 0.0369
	            but 0.0369
	         Hantos 0.0369
	              0 0.0369
	           Hats 0.0369
	           </S> 0.0369
	      therefore 0.0369
	              I 0.0369
	          Hantu 0.0369
	           ants 0.0369
	       Hantsuki 0.0369
	              " 0.0369
	           Hans 0.0369
	              a 0.0369
	         Haunts 0.0369
	            the 0.0059
	          which 0.0012
	            who 0.0000
	              i 0.0000
	            too 0.0000
	             or 0.0000
	         though 0.0000
	           many 0.0000
	           into 0.0000

            one   493899   1 (23)
	              . 0.0369
	              - 0.0369
	              A 0.0369
	             of 0.0369
	           ones 0.0369
	           oner 0.0369
	           onen 0.0369
	            ons 0.0369
	            ont 0.0369
	            cia 0.0369
	             iu 0.0369
	            oen 0.0369
	           onee 0.0369
	              , 0.0369
	             us 0.0369
	            and 0.0369
	            one 0.0369
	             on 0.0369
	              a 0.0369
	           </S> 0.0059
	              ) 0.0000
	              " 0.0000
	              } 0.0000

        Horning   493911   1 (36)
	              , 0.0369
	        looking 0.0369
	          <UNK> 0.0369
	        morning 0.0369
	          least 0.0369
	            all 0.0369
	           home 0.0369
	        Horning 0.0369
	         orning 0.0369
	            the 0.0369
	         Hornig 0.0369
	              - 0.0369
	       Swaffham 0.0369
	              a 0.0369
	              0 0.0369
	         Honing 0.0369
	        Hornung 0.0369
	        Herning 0.0369
	    Bressingham 0.0369
	         during 0.0369
	              . 0.0369
	              2 0.0369
	      Braintree 0.0369
	           </S> 0.0369
	        Hornigi 0.0369
	              1 0.0369
	          night 0.0369
	       Hornaing 0.0369
	        Horring 0.0369
	           your 0.0059
	           work 0.0000
	             us 0.0000
	          which 0.0000
	              x 0.0000
	              y 0.0000
	        working 0.0000

          there   493943   1 (24)
	              - 0.0369
	         Ethere 0.0369
	          their 0.0369
	          theer 0.0369
	              b 0.0369
	              , 0.0369
	          three 0.0369
	              A 0.0369
	         theres 0.0369
	          there 0.0369
	             it 0.0369
	            and 0.0369
	         Member 0.0369
	              . 0.0369
	         therme 0.0369
	              a 0.0369
	          therm 0.0369
	          thera 0.0369
	           ther 0.0369
	          these 0.0369
	           </S> 0.0059
	              } 0.0000
	              " 0.0000
	              ) 0.0000

   Charterhonse   493975  12 (27)
	    Carterphone 0.6000
	   charterhouse 0.3000
	   Chapterhouse 0.2000
	        various 0.0369
	  charterhouses 0.0369
	      permanent 0.0369
	    Netherlands 0.0369
	   Charleyhorse 0.0369
	              . 0.0369
	              , 0.0369
	           </S> 0.0059
	         United 0.0000
	           book 0.0000
	           next 0.0000
	      following 0.0000
	       Internet 0.0000
	          first 0.0000
	           data 0.0000
	     Department 0.0000
	          world 0.0000
	              - 0.0000
	         number 0.0000
	          field 0.0000
	           case 0.0000
	   Charterhouse 0.0000
	       National 0.0000
	           same 0.0000

     collection   493988   1 (15)
	     collection 0.0369
	        version 0.0369
	      community 0.0369
	              , 0.0369
	              a 0.0369
	        section 0.0369
	              . 0.0369
	              - 0.0369
	      collectio 0.0369
	           </S> 0.0369
	    collections 0.0369
	    collectione 0.0369
	    collectioni 0.0369
	             of 0.0369
	              I 0.0369

           shot   493999  10 (20)
	              - 0.7000
	          shots 0.2000
	              I 0.1000
	            she 0.0386
	          shoot 0.0369
	           sala 0.0369
	            sho 0.0369
	          shott 0.0369
	             of 0.0059
	          short 0.0000
	              a 0.0000
	              . 0.0000
	           shot 0.0000
	           site 0.0000
	           some 0.0000
	           show 0.0000
	           shop 0.0000
	              , 0.0000
	           </S> 0.0000
	             is 0.0000

      Godalming   494007   1 (33)
	          <UNK> 0.0369
	      Godalming 0.0369
	              . 0.0369
	         making 0.0369
	        calming 0.0369
	        daycare 0.0369
	              : 0.0369
	           </S> 0.0369
	     Goomalling 0.0369
	        palming 0.0369
	              a 0.0369
	              , 0.0369
	       Gloaming 0.0369
	           NCBI 0.0369
	             me 0.0369
	javax.servlet.http.HttpServlet.service 0.0369
	              - 0.0369
	       dwalming 0.0369
	            all 0.0369
	       Gohaling 0.0369
	             it 0.0369
	            the 0.0369
	         Godamn 0.0369
	          least 0.0369
	        Godling 0.0369
	           your 0.0059
	          which 0.0000
	              y 0.0000
	       training 0.0000
	             us 0.0000
	           work 0.0000
	              x 0.0000
	        working 0.0000

 Ornithologists   494065   2 (24)
	 ornithologists 0.0745
	          trade 0.0369
	     profession 0.0369
	   Ornithologie 0.0369
	         market 0.0369
	 Ornithologists 0.0369
	             us 0.0369
	         others 0.0369
	  Ornithologist 0.0369
	         little 0.0369
	            the 0.0059
	              . 0.0000
	              a 0.0000
	          those 0.0000
	          third 0.0000
	            law 0.0000
	              e 0.0000
	              - 0.0000
	          phone 0.0000
	           </S> 0.0000
	              , 0.0000
	        another 0.0000
	              : 0.0000
	          <UNK> 0.0000

       believed   494096   2 (26)
	         before 0.2000
	       believer 0.0369
	       bevilled 0.0369
	        between 0.0369
	       believes 0.0369
	     unbelieved 0.0369
	            way 0.0369
	       approach 0.0369
	       beleived 0.0369
	          level 0.0369
	        bellied 0.0369
	        appears 0.0369
	          needs 0.0369
	      believend 0.0369
	              a 0.0369
	       believed 0.0369
	        believe 0.0369
	    opportunity 0.0369
	              . 0.0059
	             of 0.0000
	             is 0.0000
	              - 0.0000
	           from 0.0000
	              I 0.0000
	              , 0.0000
	           </S> 0.0000

         Tresco   494136   1 (30)
	              , 0.0369
	         Tresco 0.0369
	         Fresco 0.0369
	              : 0.0369
	              a 0.0369
	            The 0.0369
	       Trescowe 0.0369
	         Trosec 0.0369
	              - 0.0369
	            the 0.0369
	         Trelco 0.0369
	         Tresca 0.0369
	           NCBI 0.0369
	          <UNK> 0.0369
	             by 0.0369
	       Trescope 0.0369
	javax.servlet.http.HttpServlet.service 0.0369
	          These 0.0369
	              . 0.0369
	          least 0.0369
	          Tesco 0.0369
	          Treco 0.0369
	          Press 0.0369
	           </S> 0.0369
	           your 0.0059
	             us 0.0000
	              y 0.0000
	           work 0.0000
	          which 0.0000
	              x 0.0000

         Scilly   494144  10 (27)
	         Social 0.5000
	            yet 0.0369
	       Compiled 0.0369
	          cilly 0.0369
	            TSO 0.0369
	        Sicilly 0.0369
	         Scille 0.0369
	        Unknown 0.0369
	          <UNK> 0.0059
	              2 0.0000
	         Sicily 0.0000
	              A 0.0000
	          Small 0.0000
	              1 0.0000
	              a 0.0000
	              ) 0.0000
	              ( 0.0000
	           Sell 0.0000
	         Scilly 0.0000
	           </S> 0.0000
	              b 0.0000
	              I 0.0000
	              s 0.0000
	            the 0.0000
	              - 0.0000
	          Silly 0.0000
	         Scilla 0.0000

      Specimens   494167   1 (21)
	      specimens 0.0369
	              a 0.0369
	      Specimens 0.0369
	       Specimen 0.0369
	        Species 0.0369
	          minor 0.0369
	         second 0.0369
	           </S> 0.0059
	              " 0.0000
	              ] 0.0000
	      Copyright 0.0000
	          <UNK> 0.0000
	              I 0.0000
	              . 0.0000
	              $ 0.0000
	              - 0.0000
	              ) 0.0000
	           Some 0.0000
	              A 0.0000
	         Select 0.0000
	              , 0.0000

        Ireland   494260  17 (29)
	       children 0.0369
	           well 0.0369
	          shall 0.0369
	      Irelander 0.0369
	    destination 0.0369
	            and 0.0369
	              . 0.0369
	          which 0.0369
	           said 0.0369
	     Irelanders 0.0369
	           free 0.0369
	       holidays 0.0369
	        Iveland 0.0369
	              z 0.0369
	        Ierland 0.0369
	            the 0.0059
	              - 0.0000
	        ireland 0.0000
	        Iceland 0.0000
	           that 0.0000
	              , 0.0000
	          other 0.0000
	              a 0.0000
	       services 0.0000
	        Ireland 0.0000
	         Irland 0.0000
	           then 0.0000
	           </S> 0.0000
	         reland 0.0000

     Additional   494298   1 (20)
	              a 0.0369
	   Admonitional 0.0369
	       Addition 0.0369
	     Additionen 0.0369
	           with 0.0369
	     Additional 0.0369
	  Additionality 0.0369
	     additional 0.0369
	           </S> 0.0059
	              ] 0.0000
	              I 0.0000
	              ) 0.0000
	              - 0.0000
	             '' 0.0000
	            All 0.0000
	              " 0.0000
	              A 0.0000
	              . 0.0000
	            And 0.0000
	              , 0.0000

       Accentor   494367  20 (28)
	      Accenture 0.0369
	       Acceptor 0.0369
	           into 0.0369
	     Convention 0.0369
	      contained 0.0369
	         Accent 0.0369
	       accentor 0.0369
	             of 0.0369
	       Ancestor 0.0369
	              I 0.0369
	              a 0.0369
	          Homes 0.0369
	       Wellness 0.0369
	       Ascentor 0.0369
	          Hotel 0.0369
	       involved 0.0369
	          Aerie 0.0369
	         before 0.0369
	         Skiing 0.0059
	            CDA 0.0000
	              - 0.0000
	              M 0.0000
	           </S> 0.0000
	              , 0.0000
	              . 0.0000
	       Accentor 0.0000
	           Club 0.0000
	       American 0.0000

            has   494443   3 (24)
	              . 0.3000
	              ( 0.1000
	              T 0.0369
	            had 0.0369
	            has 0.0369
	             ha 0.0369
	             us 0.0369
	            hat 0.0369
	              X 0.0369
	            his 0.0369
	              ' 0.0369
	             as 0.0369
	           haas 0.0369
	              - 0.0369
	            cia 0.0369
	            arz 0.0369
	           hash 0.0369
	           hast 0.0369
	             D' 0.0369
	             of 0.0369
	     Bedlington 0.0369
	           </S> 0.0059
	              , 0.0000
	        Panurus 0.0000

       Januar}'   494473   1 (29)
	        writing 0.0369
	        Sadorus 0.0369
	             VT 0.0369
	      therefore 0.0369
	        Januari 0.0369
	        Januaro 0.0369
	              a 0.0369
	          <UNK> 0.0369
	            but 0.0369
	             P. 0.0369
	        January 0.0369
	           </S> 0.0369
	              I 0.0369
	            and 0.0369
	             A. 0.0369
	              x 0.0369
	        Vermont 0.0369
	              " 0.0369
	         search 0.0369
	              , 0.0369
	         Januar 0.0369
	              y 0.0369
	            the 0.0059
	          which 0.0000
	              i 0.0000
	            too 0.0000
	             or 0.0000
	         though 0.0000
	           many 0.0000

           1905   494483 inf (16)
	              y 0.0369
	          <UNK> 0.0369
	             y1 0.0369
	              , 0.0369
	      therefore 0.0369
	              x 0.0369
	          women 0.0369
	            the 0.0059
	             or 0.0000
	            too 0.0000
	             of 0.0000
	         though 0.0000
	              i 0.0000
	          which 0.0000
	              e 0.0000
	             to 0.0000

      Godalming   494513   1 (28)
	      Godalming 0.6000
	       Gloaming 0.0369
	        Godling 0.0369
	         source 0.0369
	       Gohaling 0.0369
	     Goomalling 0.0369
	             be 0.0369
	        calming 0.0369
	        palming 0.0369
	       dwalming 0.0369
	         Godamn 0.0369
	       Goulding 0.0369
	          being 0.0369
	         having 0.0369
	      Prestatyn 0.0369
	            the 0.0059
	              , 0.0000
	              - 0.0000
	          <UNK> 0.0000
	              I 0.0000
	         future 0.0000
	             us 0.0000
	           </S> 0.0000
	       infrared 0.0000
	              a 0.0000
	           line 0.0000
	              . 0.0000
	            you 0.0000

            one   494543   1 (22)
	            oen 0.0369
	              , 0.0369
	            one 0.0369
	              A 0.0369
	           ones 0.0369
	           oner 0.0369
	           onen 0.0369
	              s 0.0369
	            cia 0.0369
	           onee 0.0369
	            ons 0.0369
	            ont 0.0369
	             of 0.0369
	             us 0.0369
	              - 0.0369
	              a 0.0369
	              . 0.0369
	             on 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	              " 0.0000

        January   494568   1 (30)
	        January 0.9000
	           many 0.2295
	              x 0.0369
	              I 0.0369
	          years 0.0369
	        October 0.0369
	       Januarye 0.0369
	      September 0.0369
	             us 0.0369
	        Januaro 0.0369
	            May 0.0369
	            the 0.0059
	              - 0.0000
	           time 0.0000
	              , 0.0000
	       Janruary 0.0000
	           this 0.0000
	           turn 0.0000
	     particular 0.0000
	     Washington 0.0000
	           </S> 0.0000
	       Januarys 0.0000
	            and 0.0000
	           fact 0.0000
	        Januari 0.0000
	              a 0.0000
	              . 0.0000
	        writing 0.0000
	         Januar 0.0000
	        Januray 0.0000

             it   494641   1 (22)
	              I 0.0369
	             is 0.0369
	             ti 0.0369
	             iu 0.0369
	             it 0.0369
	              . 0.0369
	            its 0.0369
	            cia 0.0369
	             us 0.0369
	             in 0.0369
	       Virginia 0.0369
	            itt 0.0369
	            iti 0.0369
	              a 0.0369
	              - 0.0369
	              , 0.0369
	            ith 0.0369
	            iit 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	              " 0.0000

        Scill}'   494665   1 (25)
	         Scilly 1.0000
	          South 0.5000
	        Scillus 0.1000
	              N 0.0369
	         Scille 0.0369
	             us 0.0369
	           edit 0.0369
	              x 0.0369
	            the 0.0059
	           2002 0.0000
	           full 0.0000
	              a 0.0000
	              . 0.0000
	           2003 0.0000
	         Scilla 0.0000
	           this 0.0000
	           time 0.0000
	           </S> 0.0000
	           your 0.0000
	          stock 0.0000
	              - 0.0000
	              , 0.0000
	           2004 0.0000
	         Scicli 0.0000
	            all 0.0000

              .   494672   1 (13)
	              . 0.0369
	            ... 0.0369
	            cia 0.0369
	             of 0.0369
	           </S> 0.0369
	            and 0.0369
	              , 0.0369
	              : 0.0369
	             us 0.0369
	             iu 0.0369
	            the 0.0369
	              - 0.0369
	              ( 0.0369

              A   494675  10 (20)
	             As 0.2611
	            cia 0.0369
	             iu 0.0369
	             PA 0.0369
	             CA 0.0369
	             AA 0.0369
	             us 0.0369
	             AM 0.0369
	            AAA 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              , 0.0000
	              ] 0.0000
	             of 0.0000
	            the 0.0000
	              . 0.0000
	            and 0.0000
	              ) 0.0000

        Crested   494858  13 (27)
	        Crestet 0.0369
	        Crester 0.0369
	              ) 0.0369
	      Crestmead 0.0369
	        largest 0.0369
	       greatest 0.0369
	              / 0.0369
	          major 0.0369
	          error 0.0369
	        Custerd 0.0369
	         Creste 0.0369
	           </S> 0.0059
	          <UNK> 0.0000
	        Crested 0.0000
	            Big 0.0000
	              ( 0.0000
	         rested 0.0000
	           same 0.0000
	        related 0.0000
	              - 0.0000
	         Center 0.0000
	         system 0.0000
	        crested 0.0000
	          first 0.0000
	        Chester 0.0000
	      following 0.0000
	          Crest 0.0000

            Tit   494866  21 (32)
	            Tim 0.0369
	       returned 0.0369
	            cia 0.0369
	             iu 0.0369
	            Pyi 0.0369
	       increase 0.0369
	             it 0.0369
	           Titt 0.0369
	         effect 0.0369
	           Tito 0.0369
	            Tip 0.0369
	          thing 0.0369
	             To 0.0369
	           Titi 0.0369
	             Ti 0.0369
	              I 0.0369
	           Tiit 0.0369
	        pattern 0.0369
	             of 0.0369
	          Butte 0.0059
	        Chinese 0.0000
	              - 0.0000
	          Gecko 0.0000
	           that 0.0000
	              . 0.0000
	            Tit 0.0000
	           </S> 0.0000
	              , 0.0000
	             is 0.0000
	       Caracara 0.0000
	            The 0.0000
	           Tits 0.0000

       Yarmouth   494884  10 (23)
	        Yarmouk 0.0369
	         growth 0.0369
	         around 0.0369
	       increase 0.0369
	       Warmouth 0.0369
	              F 0.0369
	        Yarmuth 0.0369
	        changes 0.0369
	            the 0.0059
	              . 0.0000
	       Barmouth 0.0000
	             or 0.0000
	            you 0.0000
	          South 0.0000
	            You 0.0000
	           </S> 0.0000
	              a 0.0000
	              I 0.0000
	         future 0.0000
	       Yarmouth 0.0000
	             us 0.0000
	              , 0.0000
	              - 0.0000

              a   494975   1 (21)
	            and 0.0369
	              . 0.0369
	             as 0.0369
	              a 0.0369
	             aa 0.0369
	             la 0.0369
	            the 0.0369
	           lava 0.0369
	            cia 0.0369
	             us 0.0369
	             of 0.0369
	             La 0.0369
	             to 0.0369
	              , 0.0369
	             at 0.0369
	              - 0.0369
	            aaa 0.0369
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	              } 0.0000

        Creeper   494982  11 (30)
	          Creep 0.7000
	         Wundef 0.0369
	        Wstrict 0.0369
	              s 0.0369
	         grader 0.0369
	          which 0.0369
	            who 0.0369
	         reeper 0.0369
	              - 0.0079
	           </S> 0.0059
	            the 0.0000
	        Creeper 0.0000
	          based 0.0000
	             it 0.0000
	         Center 0.0000
	              I 0.0000
	              a 0.0000
	           free 0.0000
	              ) 0.0000
	             up 0.0000
	       Creepers 0.0000
	             to 0.0000
	          <UNK> 0.0000
	          Crepe 0.0000
	        creeper 0.0000
	           Free 0.0000
	           year 0.0000
	              A 0.0000
	              . 0.0000
	            old 0.0000

       Alderney   495044   1 (25)
	       Alderney 0.3000
	           four 0.0369
	              I 0.0369
	            ten 0.0369
	     subsection 0.0369
	           five 0.0369
	              x 0.0369
	          there 0.0369
	           very 0.0369
	             us 0.0369
	            the 0.0059
	           your 0.0000
	       Adderley 0.0000
	          which 0.0000
	              . 0.0000
	           </S> 0.0000
	       alderney 0.0000
	          order 0.0000
	              - 0.0000
	       Aldersey 0.0000
	        Ederney 0.0000
	           this 0.0000
	              a 0.0000
	              , 0.0000
	       Alderley 0.0000

         Family   495092   1 (23)
	         Family 0.9834
	              I 0.0418
	        Familly 0.0369
	         Prices 0.0369
	        1901.gg 0.0369
	           1900 0.0369
	        Faimily 0.0369
	              a 0.0369
	       Familypc 0.0369
	         family 0.0369
	       FamilyPC 0.0369
	         Famila 0.0369
	         Famill 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ) 0.0000
	           File 0.0000
	              ] 0.0000
	              . 0.0000
	              , 0.0000
	              / 0.0000

             TA   495103  14 (21)
	             AT 0.6000
	             TV 0.5000
	            TAT 0.0369
	              a 0.0369
	            TAA 0.0369
	            TAS 0.0369
	             iu 0.0369
	             us 0.0369
	            cia 0.0369
	            TTA 0.0369
	            TAG 0.0369
	              I 0.0369
	           </S> 0.0059
	            The 0.0000
	             TA 0.0000
	             To 0.0000
	             AM 0.0000
	              , 0.0000
	              . 0.0000
	              - 0.0000
	             MT 0.0000

         CILLID   495106 inf (31)
	          CILIP 0.0369
	            USA 0.0369
	           CDLI 0.0369
	         CILIPS 0.0369
	         OCILLA 0.0369
	           CLLI 0.0369
	            Inf 0.0369
	             NE 0.0369
	           CILL 0.0369
	           CIID 0.0369
	         CIALIS 0.0369
	           ILCD 0.0369
	             St 0.0369
	         County 0.0369
	            CIL 0.0369
	            ILL 0.0369
	         DILLIC 0.0369
	            CID 0.0369
	         Canada 0.0369
	         CILCIA 0.0369
	           City 0.0369
	              - 0.0059
	              . 0.0000
	              A 0.0000
	              E 0.0000
	          Dewey 0.0000
	              , 0.0000
	           </S> 0.0000
	              L 0.0000
	              ) 0.0000
	             's 0.0000

              .   495112   1 (11)
	            the 0.0369
	          <UNK> 0.0369
	              - 0.0369
	              . 0.0369
	              , 0.0369
	             us 0.0369
	            and 0.0369
	           </S> 0.0369
	            cia 0.0369
	             iu 0.0369
	             of 0.0369

             -E   495114 inf (22)
	             in 0.0634
	              I 0.0418
	             RE 0.0369
	             iu 0.0369
	            cia 0.0369
	             EE 0.0369
	             us 0.0369
	              A 0.0328
	             to 0.0265
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              : 0.0000
	              ] 0.0000
	          <UNK> 0.0000
	             of 0.0000
	              / 0.0000
	              \ 0.0000
	              , 0.0000
	              ) 0.0000
	             -- 0.0000
	              . 0.0000

              .   495116   1 (16)
	            and 0.0369
	              ) 0.0369
	              - 0.0369
	              , 0.0369
	          .deps 0.0369
	             iu 0.0369
	           </S> 0.0369
	            cia 0.0369
	          <UNK> 0.0369
	          a.out 0.0369
	             of 0.0369
	             us 0.0369
	             .. 0.0369
	      configure 0.0369
	              . 0.0369
	            the 0.0369

        Wagtail   495135   2 (30)
	              . 0.2000
	           page 0.0369
	      Albatross 0.0369
	          again 0.0369
	        Wagtail 0.0369
	       Wagtails 0.0369
	     Coneflower 0.0369
	        Waitara 0.0369
	             us 0.0369
	        tagtail 0.0369
	         Flying 0.0369
	         period 0.0369
	          Wagai 0.0369
	              I 0.0369
	           data 0.0369
	        wagtail 0.0369
	              a 0.0369
	             by 0.0059
	              - 0.0000
	           </S> 0.0000
	       Stranger 0.0000
	              ) 0.0000
	        Monster 0.0000
	         League 0.0000
	          <UNK> 0.0000
	             to 0.0000
	          Woman 0.0000
	      Stepchild 0.0000
	              , 0.0000
	            for 0.0000

              .   495142   8 (14)
	             M. 0.4000
	            Fox 0.0369
	            the 0.0369
	         ATOMKI 0.0369
	            cia 0.0369
	             us 0.0369
	           </S> 0.0059
	             of 0.0000
	            ... 0.0000
	              ( 0.0000
	              - 0.0000
	            and 0.0000
	              . 0.0000
	              , 0.0000

             j]   495145 inf (18)
	             in 0.0634
	              I 0.0418
	             iu 0.0369
	            cia 0.0369
	             us 0.0369
	             ja 0.0369
	             je 0.0369
	              A 0.0328
	             to 0.0265
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              . 0.0000
	             jp 0.0000
	              ] 0.0000
	             of 0.0000
	              ) 0.0000
	              , 0.0000

            lot   495148   1 (24)
	             lo 0.0369
	          <UNK> 0.0369
	              n 0.0369
	            not 0.0369
	              . 0.0369
	              - 0.0369
	            log 0.0369
	              ) 0.0369
	           lots 0.0369
	           lotr 0.0369
	           loto 0.0369
	              , 0.0369
	           </S> 0.0369
	            low 0.0369
	           lava 0.0369
	           alba 0.0369
	           llot 0.0369
	            for 0.0369
	            lot 0.0369
	             to 0.0369
	             us 0.0369
	              a 0.0369
	           lott 0.0369
	           loot 0.0369

             ac   495152  10 (20)
	             an 0.7000
	            act 0.6000
	              I 0.6000
	            aca 0.0369
	            arz 0.0369
	             iu 0.0369
	            ace 0.0369
	            aac 0.0369
	             of 0.0059
	             ca 0.0000
	           more 0.0000
	              . 0.0000
	             us 0.0000
	             at 0.0000
	           </S> 0.0000
	             ac 0.0000
	              , 0.0000
	              a 0.0000
	             as 0.0000
	              - 0.0000

           ilia   495155   2 (25)
	            ili 0.4000
	           ilin 0.0369
	           ilia 0.0369
	           alba 0.0369
	            cia 0.0369
	             iu 0.0369
	          iliac 0.0369
	          iliad 0.0369
	          ilial 0.0369
	          lilia 0.0369
	           ilio 0.0369
	              I 0.0369
	           illa 0.0369
	            the 0.0369
	         people 0.0369
	              - 0.0059
	              e 0.0000
	             is 0.0000
	             it 0.0000
	              , 0.0000
	              a 0.0000
	             in 0.0000
	              . 0.0000
	           </S> 0.0000
	             dc 0.0000

       60/ra/is   495160 inf (21)
	             is 0.1000
	              0 0.0369
	         cruise 0.0369
	          parts 0.0369
	          oasis 0.0369
	         eraill 0.0369
	            tnt 0.0369
	         travis 0.0369
	  thunderstruck 0.0369
	             dc 0.0369
	              a 0.0369
	              i 0.0369
	      rammstein 0.0369
	           </S> 0.0059
	              / 0.0000
	              . 0.0000
	              n 0.0000
	              , 0.0000
	          <UNK> 0.0000
	          kulik 0.0000
	              - 0.0000

              ,   495168   1 (11)
	            and 0.0369
	             of 0.0369
	          <UNK> 0.0369
	             us 0.0369
	              : 0.0369
	              . 0.0369
	            the 0.0369
	           </S> 0.0369
	              , 0.0369
	            cia 0.0369
	             iu 0.0369

           SuND   495170 inf (27)
	             pp 0.1857
	             uN 0.1000
	           SEND 0.0369
	   respectively 0.0369
	      ekaterina 0.0369
	          <UNK> 0.0369
	            but 0.0369
	            SND 0.0369
	              { 0.0369
	             Su 0.0369
	           SSND 0.0369
	           SAND 0.0369
	         SuNava 0.0369
	            See 0.0369
	            SDN 0.0369
	              x 0.0369
	           Site 0.0369
	             ND 0.0369
	            the 0.0059
	          which 0.0012
	             or 0.0000
	              e 0.0000
	             of 0.0000
	            too 0.0000
	              i 0.0000
	             iu 0.0000
	             us 0.0000

              .   495174   1 (11)
	             iu 0.0369
	             of 0.0369
	           </S> 0.0369
	            ... 0.0369
	              , 0.0369
	            and 0.0369
	            cia 0.0369
	             us 0.0369
	              . 0.0369
	              - 0.0369
	            the 0.0369

           THIS   495177   1 (24)
	           THIS 1.0000
	            THE 0.6388
	           This 0.3358
	              I 0.0418
	            THI 0.0369
	        THISDAY 0.0369
	            TIS 0.0369
	           TISH 0.0369
	           SHIT 0.0369
	            HIS 0.0369
	           THIC 0.0369
	           THIQ 0.0369
	            THS 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	            The 0.0131
	           </S> 0.0059
	           Each 0.0000
	              / 0.0000
	              ) 0.0000
	              , 0.0000
	              . 0.0000
	              ] 0.0000

           race   495182   3 (31)
	           side 0.8000
	           back 0.7000
	           race 0.3000
	           part 0.2000
	           kind 0.0369
	           rack 0.0369
	           lava 0.0369
	           sala 0.0369
	           Pica 0.0369
	           Back 0.0369
	           each 0.0369
	           reac 0.0369
	           racy 0.0369
	          racer 0.0369
	             EC 0.0369
	         copies 0.0369
	        version 0.0369
	             AD 0.0369
	              ) 0.0369
	          races 0.0369
	             IS 0.0059
	           </S> 0.0000
	              A 0.0000
	              : 0.0000
	              , 0.0000
	           PAGE 0.0000
	           BOOK 0.0000
	           SITE 0.0000
	             is 0.0000
	              . 0.0000
	          <UNK> 0.0000

           near   495238  15 (24)
	           neat 0.0369
	           neal 0.0369
	              - 0.0369
	           nera 0.0369
	          neare 0.0369
	            arz 0.0369
	            cia 0.0369
	          nears 0.0369
	            nea 0.0369
	          third 0.0369
	              ( 0.0369
	           year 0.0369
	            new 0.0211
	      published 0.0059
	              . 0.0000
	              , 0.0000
	       designed 0.0000
	           near 0.0000
	           from 0.0000
	            the 0.0000
	              a 0.0000
	           </S> 0.0000
	             by 0.0000
	           need 0.0000

             In   495253   1 (18)
	             In 0.5538
	             It 0.0900
	             If 0.0570
	              I 0.0418
	             us 0.0369
	             iu 0.0369
	            cia 0.0369
	            Inn 0.0369
	            Inc 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              . 0.0000
	          <UNK> 0.0000
	              ) 0.0000
	              , 0.0000
	              ] 0.0000

            two   495304  15 (25)
	              I 0.3000
	            the 0.1000
	          there 0.0369
	            twa 0.0369
	           twon 0.0369
	             iu 0.0369
	            wot 0.0369
	             us 0.0369
	            twp 0.0369
	            tow 0.0369
	             tw 0.0369
	            cia 0.0369
	           twos 0.0369
	           </S> 0.0059
	           they 0.0000
	            two 0.0000
	              - 0.0000
	              , 0.0000
	           that 0.0000
	              ) 0.0000
	              a 0.0000
	             of 0.0000
	              S 0.0000
	              . 0.0000
	             to 0.0000

          .shot   495313  12 (25)
	              . 0.4867
	          found 0.4000
	          Ashok 0.2000
	         upshot 0.0369
	              I 0.0369
	              - 0.0369
	          Ashot 0.0369
	       standing 0.0369
	          until 0.0369
	          schot 0.0369
	            not 0.0059
	              : 0.0000
	              , 0.0000
	          shoot 0.0000
	           </S> 0.0000
	         killed 0.0000
	          shots 0.0000
	           show 0.0000
	            the 0.0000
	           shot 0.0000
	           Shop 0.0000
	          Yahoo 0.0000
	             in 0.0000
	              a 0.0000
	            hot 0.0000

           near   495319   1 (20)
	            new 0.0369
	           near 0.0369
	          neare 0.0369
	              a 0.0369
	              , 0.0369
	             in 0.0369
	              I 0.0369
	              . 0.0369
	            arz 0.0369
	            cia 0.0369
	              - 0.0369
	           neat 0.0369
	           nera 0.0369
	           year 0.0369
	           need 0.0369
	           neal 0.0369
	          nears 0.0369
	            nea 0.0369
	             to 0.0369
	           </S> 0.0369

     Willingdon   495324  13 (26)
	     Hillingdon 0.7000
	              I 0.5000
	       Brighton 0.0369
	        Phoenix 0.0369
	        Willing 0.0369
	        Atlanta 0.0369
	          Lewes 0.0369
	        Orlando 0.0369
	     Bullingdon 0.0369
	   Peterborough 0.0369
	     Chichester 0.0369
	            the 0.0059
	     Willingdon 0.0000
	              . 0.0000
	            you 0.0000
	              a 0.0000
	              - 0.0000
	     Willington 0.0000
	           </S> 0.0000
	             us 0.0000
	         future 0.0000
	         London 0.0000
	              , 0.0000
	     Wellington 0.0000
	           term 0.0000
	     Washington 0.0000

              A   495344  10 (21)
	             As 0.2611
	             PA 0.0369
	             AA 0.0369
	             us 0.0369
	            cia 0.0369
	             iu 0.0369
	             CA 0.0369
	             AM 0.0369
	            AAA 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              / 0.0000
	            the 0.0000
	            and 0.0000
	              ) 0.0000
	             of 0.0000
	              ] 0.0000
	              , 0.0000
	              . 0.0000

           Lydd   495426  12 (31)
	           Lyda 0.3250
	          women 0.0369
	        Derwent 0.0369
	             us 0.0369
	           2002 0.0369
	           2001 0.0369
	              i 0.0369
	     Winchelsea 0.0369
	       Hastings 0.0369
	           2000 0.0369
	            the 0.0059
	              ( 0.0000
	            Add 0.0000
	           Lyde 0.0000
	            and 0.0000
	           </S> 0.0000
	         others 0.0000
	          Lydda 0.0000
	         Lydden 0.0000
	          <UNK> 0.0000
	              a 0.0000
	              - 0.0000
	          other 0.0000
	            Lyd 0.0000
	           made 0.0000
	              I 0.0000
	       services 0.0000
	              , 0.0000
	           Lydd 0.0000
	           more 0.0000
	            Pyi 0.0000

              A   495432  10 (20)
	             As 0.2611
	            cia 0.0369
	             iu 0.0369
	             PA 0.0369
	             CA 0.0369
	             AA 0.0369
	             us 0.0369
	             AM 0.0369
	            AAA 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              . 0.0000
	            and 0.0000
	             of 0.0000
	              , 0.0000
	            the 0.0000
	              ) 0.0000
	              ] 0.0000

     Winchelsea   495451   2 (27)
	          where 0.2000
	              . 0.0369
	              , 0.0369
	          night 0.0369
	      Wichelsee 0.0369
	       Winchell 0.0369
	          these 0.0369
	     Winchilsea 0.0369
	              - 0.0369
	          <UNK> 0.0369
	       December 0.0369
	          least 0.0369
	           home 0.0369
	            the 0.0369
	            all 0.0369
	     Winchelsea 0.0369
	              a 0.0369
	        Winches 0.0369
	           </S> 0.0369
	      Winchells 0.0369
	       tinchels 0.0369
	           your 0.0059
	           work 0.0000
	          which 0.0000
	             us 0.0000
	              x 0.0000
	              y 0.0000

         Family   495477   1 (20)
	         Family 0.9834
	              I 0.0418
	         easily 0.0369
	       FamilyPC 0.0369
	       Familypc 0.0369
	         Famila 0.0369
	         Famill 0.0369
	        Faimily 0.0369
	        Familly 0.0369
	              a 0.0369
	         family 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ) 0.0000
	              / 0.0000
	              , 0.0000
	              ] 0.0000
	              . 0.0000

             TA   495488  14 (22)
	             AT 0.6000
	             TV 0.5000
	            TAT 0.0369
	            TAA 0.0369
	            TAS 0.0369
	             iu 0.0369
	             us 0.0369
	            cia 0.0369
	            TTA 0.0369
	            TAG 0.0369
	              a 0.0369
	              I 0.0369
	           </S> 0.0059
	            The 0.0000
	              , 0.0000
	             TA 0.0000
	             AM 0.0000
	              ( 0.0000
	             To 0.0000
	              . 0.0000
	              - 0.0000
	             MT 0.0000

            CIL   495491   3 (26)
	             NE 0.4000
	             If 0.1000
	           CCIL 0.0369
	            CIL 0.0369
	            cia 0.0369
	             iu 0.0369
	              B 0.0369
	           CILT 0.0369
	           CILS 0.0369
	             us 0.0369
	           CILL 0.0369
	            CLI 0.0369
	            CIA 0.0369
	            CIO 0.0369
	              - 0.0059
	              + 0.0000
	              , 0.0000
	              / 0.0000
	             It 0.0000
	             CI 0.0000
	              . 0.0000
	              A 0.0000
	           </S> 0.0000
	              ' 0.0000
	              E 0.0000
	             In 0.0000

              L   495495 inf (22)
	            the 1.0000
	             La 0.0369
	             IL 0.0369
	             LA 0.0369
	           LLLL 0.0369
	            cia 0.0369
	             iu 0.0369
	             LL 0.0369
	             AL 0.0369
	             FL 0.0369
	             Le 0.0369
	            LLL 0.0369
	             us 0.0369
	           </S> 0.0059
	              ) 0.0000
	             of 0.0000
	          <UNK> 0.0000
	              . 0.0000
	            and 0.0000
	              , 0.0000
	              - 0.0000
	  International 0.0000

            ID^   495497   1 (27)
	             ID 1.0000
	            IDG 0.0369
	            IDC 0.0369
	            cia 0.0369
	           </S> 0.0059
	              . 0.0000
	            IDE 0.0000
	              ^ 0.0000
	              / 0.0000
	              C 0.0000
	            IDD 0.0000
	            IDI 0.0000
	           Word 0.0000
	              s 0.0000
	             If 0.0000
	              , 0.0000
	              E 0.0000
	             It 0.0000
	              D 0.0000
	             us 0.0000
	             In 0.0000
	              " 0.0000
	              - 0.0000
	          <UNK> 0.0000
	              ) 0.0000
	              M 0.0000
	              A 0.0000

              .   495500   1 (16)
	              , 0.0369
	              N 0.0369
	            the 0.0369
	              s 0.0369
	             us 0.0369
	              : 0.0369
	           </S> 0.0369
	              . 0.0369
	              M 0.0369
	              - 0.0369
	             of 0.0369
	            ... 0.0369
	             M. 0.0369
	             S. 0.0369
	             .5 0.0369
	            and 0.0369

        Wagtail   495520   2 (29)
	              . 0.2000
	          Wagai 0.0369
	              I 0.0369
	             us 0.0369
	        Foxtail 0.0369
	              a 0.0369
	        Wagtail 0.0369
	       Wagtails 0.0369
	          model 0.0369
	        tagtail 0.0369
	        Bunting 0.0369
	           data 0.0369
	           page 0.0369
	         period 0.0369
	          again 0.0369
	        wagtail 0.0369
	         Python 0.0369
	             by 0.0059
	              , 0.0000
	          <UNK> 0.0000
	           Gull 0.0000
	            for 0.0000
	           </S> 0.0000
	          Woman 0.0000
	              ) 0.0000
	              - 0.0000
	             to 0.0000
	         League 0.0000
	       Stranger 0.0000

      Motacilla   495530   1 (24)
	        cotilla 0.0369
	        vacilla 0.0369
	         Motala 0.0369
	     Mostacolli 0.0369
	        cinerea 0.0369
	       Morcilla 0.0369
	           alba 0.0369
	      motacilla 0.0369
	   Motacillidae 0.0369
	      Monacelli 0.0369
	      Motacilla 0.0369
	       Montilla 0.0369
	           </S> 0.0059
	              / 0.0000
	              I 0.0000
	             In 0.0000
	              . 0.0000
	              - 0.0000
	            For 0.0000
	              " 0.0000
	              ] 0.0000
	              A 0.0000
	              , 0.0000
	              ) 0.0000

  vulauoccphala   495540 inf (25)
	           </S> 0.7000
	              ) 0.5000
	      Motacilla 0.4000
	     particular 0.0369
	vareSelskap.cgi 0.0369
	        Atlanta 0.0369
	              I 0.0369
	              n 0.0369
	              - 0.0369
	              l 0.0369
	             ap 0.0369
	  Aulacocephala 0.0369
	        default 0.0369
	      configure 0.0369
	              a 0.0369
	        compile 0.0369
	        example 0.0369
	      slackware 0.0369
	      changelog 0.0369
	           alba 0.0059
	          <UNK> 0.0000
	              . 0.0000
	          flava 0.0000
	        cinerea 0.0000
	              , 0.0000

              ,   495553   1 (11)
	            and 0.0369
	              . 0.0369
	              - 0.0369
	           alba 0.0369
	              ) 0.0369
	             us 0.0369
	            the 0.0369
	              , 0.0369
	           </S> 0.0369
	            cia 0.0369
	             of 0.0369

          LiCHT   495555 inf (26)
	            LCH 0.0369
	           ACHT 0.0369
	           List 0.0369
	           LiCl 0.0369
	          LATCH 0.0369
	   respectively 0.0369
	            CHT 0.0369
	              { 0.0369
	          Links 0.0369
	           CHLT 0.0369
	            LHT 0.0369
	            LiH 0.0369
	           LTCH 0.0369
	              x 0.0369
	          LCCHS 0.0369
	          LICHR 0.0369
	            the 0.0059
	          which 0.0000
	             to 0.0000
	             pp 0.0000
	              i 0.0000
	             or 0.0000
	             of 0.0000
	              e 0.0000
	            too 0.0000
	           with 0.0000

              .   495560   1 (11)
	             iu 0.0369
	             of 0.0369
	           </S> 0.0369
	            ... 0.0369
	              , 0.0369
	            and 0.0369
	            cia 0.0369
	             us 0.0369
	              . 0.0369
	              - 0.0369
	            the 0.0369

              A   495563  11 (22)
	           This 0.3358
	             As 0.2611
	            cia 0.0369
	             iu 0.0369
	             PA 0.0369
	             CA 0.0369
	             AA 0.0369
	             us 0.0369
	             AM 0.0369
	            AAA 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              , 0.0000
	              ) 0.0000
	             of 0.0000
	            the 0.0000
	              ] 0.0000
	              . 0.0000
	              / 0.0000
	            and 0.0000

     Willingdon   495584   8 (24)
	     Hillingdon 0.7000
	              I 0.5000
	          times 0.0369
	         killed 0.0369
	        Willing 0.0369
	     Bullingdon 0.0369
	            the 0.0059
	              . 0.0000
	     Willington 0.0000
	     Willingdon 0.0000
	         London 0.0000
	            you 0.0000
	         future 0.0000
	           here 0.0000
	              - 0.0000
	     Washington 0.0000
	           term 0.0000
	          death 0.0000
	             us 0.0000
	           line 0.0000
	           </S> 0.0000
	              a 0.0000
	              , 0.0000
	          <UNK> 0.0000

           Ma}-   495599   1 (23)
	            May 0.8000
	            Maa 0.4000
	           Baya 0.1000
	              I 0.0369
	            MMa 0.0369
	            the 0.0059
	           </S> 0.0000
	              a 0.0000
	            Map 0.0000
	        January 0.0000
	           More 0.0000
	             My 0.0000
	           sala 0.0000
	          March 0.0000
	             Ma 0.0000
	         bufing 0.0000
	          April 0.0000
	           this 0.0000
	              , 0.0000
	           lava 0.0000
	              . 0.0000
	            Mar 0.0000
	              - 0.0000

          ijtli   495604 inf (29)
	           </S> 0.0369
	           jilt 0.0369
	        Cejtlin 0.0369
	        Cajtlin 0.0369
	        Zajtlin 0.0369
	          Title 0.0369
	           otli 0.0369
	             18 0.0369
	          Titli 0.0369
	         italia 0.0369
	              - 0.0369
	              I 0.0369
	          intil 0.0369
	           into 0.0369
	           Atli 0.0369
	              . 0.0369
	           Wjtl 0.0369
	              a 0.0369
	             22 0.0369
	         tijolo 0.0369
	              , 0.0369
	          istle 0.0369
	            ijl 0.0369
	          title 0.0369
	          ixtli 0.0369
	              1 0.0369
	           site 0.0369
	           ijlt 0.0369
	          itali 0.0369

              ,   495609 inf (8)
	             of 0.0369
	             to 0.0369
	             us 0.0369
	            and 0.0369
	             in 0.0369
	            the 0.0369
	            cia 0.0369
	             iu 0.0369

           1906   495611 inf (16)
	              s 0.0369
	            yes 0.0369
	             r1 0.0369
	          whose 0.0369
	   respectively 0.0369
	            s.1 0.0369
	              | 0.0369
	             r0 0.0369
	              x 0.0369
	              } 0.0369
	            the 0.0059
	             to 0.0000
	          which 0.0000
	             or 0.0000
	             of 0.0000
	              i 0.0000

             it   495617   1 (23)
	             iu 0.0369
	             in 0.0369
	            and 0.0369
	             us 0.0369
	            iit 0.0369
	            itt 0.0369
	              . 0.0369
	         Member 0.0369
	            cia 0.0369
	              - 0.0369
	             it 0.0369
	              A 0.0369
	              , 0.0369
	            ith 0.0369
	             ti 0.0369
	             is 0.0369
	            its 0.0369
	            iti 0.0369
	              a 0.0369
	           </S> 0.0059
	              ) 0.0000
	              " 0.0000
	              } 0.0000

         flaz'a   495641  26 (38)
	    information 0.0369
	        flamoza 0.0369
	           flat 0.0369
	          falaz 0.0369
	         flafla 0.0369
	         Alauda 0.0369
	           faza 0.0369
	         flavia 0.0369
	           year 0.0369
	         family 0.0369
	          filza 0.0369
	            Act 0.0369
	          fazla 0.0369
	           laza 0.0369
	          world 0.0369
	              I 0.0369
	           lava 0.0369
	           from 0.0369
	            for 0.0369
	     Submission 0.0369
	         flagra 0.0369
	            laz 0.0369
	              a 0.0369
	            fla 0.0369
	              , 0.0059
	             J. 0.0000
	          Nixon 0.0000
	              A 0.0000
	              - 0.0000
	            and 0.0000
	           </S> 0.0000
	   tuberculosis 0.0000
	         Parker 0.0000
	              . 0.0000
	              ( 0.0000
	          flava 0.0000
	          <UNK> 0.0000
	          Smith 0.0000

             as   495649   2 (28)
	           they 0.0755
	             as 0.0369
	             an 0.0369
	              a 0.0369
	             A. 0.0369
	            ass 0.0369
	          <UNK> 0.0369
	            arz 0.0369
	              A 0.0369
	             at 0.0369
	              " 0.0369
	            and 0.0369
	              & 0.0369
	            aas 0.0369
	            ask 0.0369
	              ( 0.0369
	             MD 0.0369
	           </S> 0.0369
	            the 0.0059
	          which 0.0012
	             or 0.0000
	              i 0.0000
	          there 0.0000
	             we 0.0000
	            who 0.0000
	             sa 0.0000
	             us 0.0000
	            you 0.0000

      followiug   495664  13 (29)
	        flowing 0.1000
	      countries 0.1000
	        popular 0.0369
	           best 0.0369
	        matches 0.0369
	              I 0.0369
	       extremes 0.0369
	         bidder 0.0369
	              a 0.0369
	      yellowing 0.0369
	    unfollowing 0.0369
	              - 0.0059
	            and 0.0000
	          sides 0.0000
	             of 0.0000
	              . 0.0000
	     followings 0.0000
	        options 0.0000
	            for 0.0000
	      following 0.0000
	          major 0.0000
	              , 0.0000
	           </S> 0.0000
	         groups 0.0000
	          years 0.0000
	       followup 0.0000
	           full 0.0000
	         follow 0.0000
	        follows 0.0000

              .   495673   1 (13)
	              , 0.0369
	            and 0.0369
	           that 0.0369
	             of 0.0369
	            the 0.0369
	      important 0.0369
	             us 0.0369
	            cia 0.0369
	             iu 0.0369
	              . 0.0369
	           </S> 0.0369
	              - 0.0369
	            ... 0.0369

             Fa   495676 inf (23)
	             an 0.3642
	              I 0.0418
	            Fax 0.0369
	            Fan 0.0369
	             aF 0.0369
	            Faa 0.0369
	             Fa 0.0369
	             us 0.0369
	             iu 0.0369
	            cia 0.0369
	             FL 0.0369
	             FM 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ] 0.0000
	              . 0.0000
	             at 0.0000
	              , 0.0000
	             as 0.0000
	              ) 0.0000
	             '' 0.0000

            ly-   495682  12 (21)
	              s 0.7000
	              - 0.4000
	              a 0.1000
	           lyly 0.0369
	             yl 0.0369
	            Pyi 0.0369
	           lava 0.0369
	            lyx 0.0369
	            lys 0.0369
	            lye 0.0369
	            Map 0.0059
	            you 0.0000
	            all 0.0000
	              . 0.0000
	              / 0.0000
	              E 0.0000
	           </S> 0.0000
	              ) 0.0000
	             ly 0.0000
	             by 0.0000
	              , 0.0000

             MO   495686 inf (25)
	              i 0.0369
	              | 0.0369
	            May 0.0369
	           </S> 0.0369
	             MO 0.0369
	             iu 0.0369
	            cia 0.0369
	              a 0.0369
	              I 0.0369
	             PM 0.0369
	            MOO 0.0369
	             My 0.0369
	            MOD 0.0369
	            MON 0.0369
	              & 0.0369
	             OM 0.0369
	              . 0.0369
	              - 0.0369
	             Me 0.0369
	              ) 0.0369
	              , 0.0369
	            MOM 0.0369
	             us 0.0369
	            and 0.0369
	            MMO 0.0369

             TA   495689  14 (23)
	             AT 0.6000
	             TV 0.5000
	             TO 0.1000
	            TTA 0.0369
	            TAT 0.0369
	            TAA 0.0369
	    Grangeville 0.0369
	             iu 0.0369
	            cia 0.0369
	             us 0.0369
	            TAG 0.0369
	            TAS 0.0369
	           </S> 0.0059
	          63141 0.0000
	             TA 0.0000
	             AM 0.0000
	              , 0.0000
	          65804 0.0000
	              - 0.0000
	            The 0.0000
	             To 0.0000
	             MT 0.0000
	              . 0.0000

           CILL   495692   2 (22)
	            Car 0.1000
	          CHILL 0.0369
	           CILT 0.0369
	           CILS 0.0369
	             NE 0.0369
	             J. 0.0369
	        Listing 0.0369
	           CLIL 0.0369
	            CIL 0.0369
	           CILL 0.0369
	            ILL 0.0369
	         CeCILL 0.0369
	         CECILL 0.0369
	           City 0.0369
	              - 0.0059
	              . 0.0000
	              A 0.0000
	              E 0.0000
	              L 0.0000
	              , 0.0000
	             CD 0.0000
	           </S> 0.0000

             ID   495697   1 (26)
	            IDE 0.0369
	             us 0.0369
	             A. 0.0369
	       software 0.0369
	             It 0.0369
	             al 0.0369
	             iu 0.0369
	             In 0.0369
	             If 0.0369
	            IDD 0.0369
	            IID 0.0369
	              a 0.0369
	            IDG 0.0369
	             DI 0.0369
	              i 0.0369
	              A 0.0369
	             ID 0.0369
	              I 0.0369
	          <UNK> 0.0059
	              ) 0.0000
	              - 0.0000
	           </S> 0.0000
	           2105 0.0000
	              , 0.0000
	           site 0.0000
	              . 0.0000

              .   495699   1 (16)
	              . 1.0000
	              # 0.0540
	            cia 0.0369
	             iu 0.0369
	           .... 0.0369
	              : 0.0059
	           </S> 0.0000
	            ... 0.0000
	             of 0.0000
	             IL 0.0000
	            the 0.0000
	            and 0.0000
	            No. 0.0000
	              - 0.0000
	             us 0.0000
	              , 0.0000

             F.   495701 inf (22)
	            For 0.2625
	              I 0.0418
	             FM 0.0369
	             FF 0.0369
	            FFF 0.0369
	             iu 0.0369
	             us 0.0369
	              s 0.0369
	              a 0.0369
	             Fi 0.0369
	             FL 0.0369
	              A 0.0328
	             to 0.0265
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	          <UNK> 0.0000
	              . 0.0000
	             of 0.0000
	              , 0.0000
	              ) 0.0000
	              / 0.0000

         SykEvS   495705 inf (23)
	             C. 0.9000
	         Sykora 0.0369
	      configure 0.0369
	          Sylva 0.0369
	            SyS 0.0369
	            Syk 0.0369
	            Syv 0.0369
	           NEWS 0.0369
	              D 0.0369
	           Syke 0.0369
	              x 0.0369
	              , 0.0059
	          Scott 0.0000
	        Kennedy 0.0000
	              . 0.0000
	              A 0.0000
	           </S> 0.0000
	              - 0.0000
	              ) 0.0000
	          Smith 0.0000
	              [ 0.0000
	          <UNK> 0.0000
	          Sykes 0.0000

              '   495711   1 (12)
	              - 0.0369
	             of 0.0369
	              ' 0.0369
	              , 0.0369
	              . 0.0369
	             us 0.0369
	            and 0.0369
	           </S> 0.0369
	             A. 0.0369
	             's 0.0369
	            the 0.0369
	             J. 0.0369

        Wagtail   495713   8 (23)
	           page 0.0369
	              e 0.0369
	        tagtail 0.0369
	          Wagai 0.0369
	            Ask 0.0369
	         Police 0.0369
	           </S> 0.0059
	              a 0.0000
	           What 0.0000
	              ) 0.0000
	        Wagtail 0.0000
	              I 0.0000
	       Wagtails 0.0000
	          again 0.0000
	              s 0.0000
	             em 0.0000
	              , 0.0000
	         button 0.0000
	              . 0.0000
	              - 0.0000
	          <UNK> 0.0000
	        wagtail 0.0000
	              A 0.0000

              .   495720   7 (13)
	             M. 0.4000
	              ' 0.1000
	            the 0.0369
	              s 0.0369
	             us 0.0369
	           </S> 0.0059
	              , 0.0000
	              . 0.0000
	            and 0.0000
	              ( 0.0000
	             of 0.0000
	              - 0.0000
	            ... 0.0000

      Motacilla   495723   1 (24)
	        cotilla 0.0369
	        vacilla 0.0369
	         Motala 0.0369
	     Mostacolli 0.0369
	        cinerea 0.0369
	       Morcilla 0.0369
	           alba 0.0369
	      motacilla 0.0369
	   Motacillidae 0.0369
	      Monacelli 0.0369
	      Motacilla 0.0369
	       Montilla 0.0369
	           </S> 0.0059
	              / 0.0000
	              I 0.0000
	             In 0.0000
	              . 0.0000
	              - 0.0000
	            For 0.0000
	              ] 0.0000
	              A 0.0000
	              " 0.0000
	              , 0.0000
	              ) 0.0000

          beema   495733 inf (25)
	           </S> 0.7000
	              ) 0.5000
	      Motacilla 0.4000
	              a 0.0369
	          beama 0.0369
	           bema 0.0369
	          break 0.0369
	           beem 0.0369
	vareSelskap.cgi 0.0369
	           been 0.0369
	         beeman 0.0369
	      configure 0.0369
	           beam 0.0369
	              I 0.0369
	          teema 0.0369
	              - 0.0369
	          seems 0.0369
	         besema 0.0369
	              n 0.0369
	           alba 0.0059
	              , 0.0000
	          <UNK> 0.0000
	              . 0.0000
	          flava 0.0000
	        cinerea 0.0000

          SykeS   495740 inf (20)
	             pp 0.1857
	            See 0.0369
	           Site 0.0369
	   respectively 0.0369
	           Skey 0.0369
	          Sykes 0.0369
	          Syker 0.0369
	           Syke 0.0369
	              { 0.0369
	              x 0.0369
	           Skye 0.0369
	            the 0.0059
	          which 0.0012
	              i 0.0000
	             or 0.0000
	              e 0.0000
	             to 0.0000
	             of 0.0000
	           like 0.0000
	            too 0.0000

              .   495745   1 (11)
	             iu 0.0369
	             of 0.0369
	           </S> 0.0369
	            ... 0.0369
	              , 0.0369
	            and 0.0369
	            cia 0.0369
	             us 0.0369
	              . 0.0369
	              - 0.0369
	            the 0.0369

              A   495748  11 (22)
	           This 0.3358
	             As 0.2611
	            cia 0.0369
	             iu 0.0369
	             PA 0.0369
	             CA 0.0369
	             AA 0.0369
	             us 0.0369
	             AM 0.0369
	            AAA 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              , 0.0000
	              ) 0.0000
	             of 0.0000
	            the 0.0000
	              ] 0.0000
	              . 0.0000
	              / 0.0000
	            and 0.0000

    Rottingdean   495771   1 (29)
	              0 0.0369
	           home 0.0369
	     Rottingham 0.0369
	              2 0.0369
	            the 0.0369
	              , 0.0369
	              a 0.0369
	              . 0.0369
	              1 0.0369
	     Roettingen 0.0369
	          Lewes 0.0369
	     Washington 0.0369
	         Bosham 0.0369
	            all 0.0369
	              - 0.0369
	           </S> 0.0369
	    Rottingdean 0.0369
	      Rottingen 0.0369
	          least 0.0369
	          <UNK> 0.0369
	     Chichester 0.0369
	           your 0.0059
	        working 0.0000
	       training 0.0000
	          which 0.0000
	              x 0.0000
	           work 0.0000
	              y 0.0000
	             us 0.0000

          2otli   495801 inf (27)
	          world 0.8000
	              9 0.1000
	          Hotel 0.1000
	          wolfi 0.0369
	          Kotli 0.0369
	          Rotli 0.0369
	          lotti 0.0369
	              a 0.0369
	          tolli 0.0369
	          aotli 0.0369
	           otli 0.0369
	           site 0.0369
	          hotel 0.0369
	           2005 0.0059
	          Total 0.0000
	              1 0.0000
	              4 0.0000
	              , 0.0000
	           2004 0.0000
	             30 0.0000
	          World 0.0000
	             21 0.0000
	             25 0.0000
	           </S> 0.0000
	              . 0.0000
	              - 0.0000
	             15 0.0000

           1898   495808 inf (22)
	           1989 0.0369
	   respectively 0.0369
	          <UNK> 0.0369
	              a 0.0369
	              " 0.0369
	           1918 0.0369
	           </S> 0.0369
	           2004 0.0369
	              I 0.0369
	           2003 0.0369
	           1988 0.0369
	           1998 0.0369
	            and 0.0369
	           1978 0.0369
	           2005 0.0369
	            the 0.0059
	              i 0.0000
	             pp 0.0000
	             of 0.0000
	          which 0.0000
	            too 0.0000
	             or 0.0000

         Family   495815   1 (20)
	         Family 0.9834
	              I 0.0418
	       FamilyPC 0.0369
	              a 0.0369
	        Familly 0.0369
	       Familypc 0.0369
	         Famila 0.0369
	         Famill 0.0369
	         family 0.0369
	        Faimily 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ) 0.0000
	              / 0.0000
	              . 0.0000
	           File 0.0000
	              , 0.0000
	              ] 0.0000

             TA   495826  14 (21)
	             AT 0.6000
	             TV 0.5000
	            TAT 0.0369
	              a 0.0369
	            TAA 0.0369
	            TAS 0.0369
	             iu 0.0369
	             us 0.0369
	            cia 0.0369
	            TTA 0.0369
	            TAG 0.0369
	              I 0.0369
	           </S> 0.0059
	            The 0.0000
	             TA 0.0000
	             To 0.0000
	             AM 0.0000
	              , 0.0000
	              . 0.0000
	              - 0.0000
	             MT 0.0000

       CILLlDzE   495829 inf (23)
	              E 0.5000
	            USA 0.0369
	        Contact 0.0369
	             St 0.0369
	            Inf 0.0369
	        Ireland 0.0369
	             IL 0.0369
	        College 0.0369
	             NE 0.0369
	           City 0.0369
	       Columbia 0.0369
	          CHECK 0.0369
	            MCI 0.0369
	              - 0.0059
	          Dewey 0.0000
	              . 0.0000
	              A 0.0000
	              , 0.0000
	              ) 0.0000
	             's 0.0000
	              L 0.0000
	           IDEX 0.0000
	           </S> 0.0000

              .   495837   1 (12)
	              - 0.0369
	            the 0.0369
	          <UNK> 0.0369
	              . 0.0369
	              " 0.0369
	              , 0.0369
	             us 0.0369
	            and 0.0369
	           </S> 0.0369
	            cia 0.0369
	             iu 0.0369
	             of 0.0369

          AvShy   495844 inf (34)
	          Avahi 0.7167
	            Avy 0.3000
	              C 0.0369
	            All 0.0369
	            Red 0.0369
	           Many 0.0369
	          Three 0.0369
	        Avakhyl 0.0369
	          Avary 0.0369
	              ) 0.0369
	        Beatles 0.0369
	              X 0.0369
	              B 0.0369
	           Shym 0.0369
	           Shyc 0.0369
	        Avrechy 0.0369
	            Two 0.0369
	              e 0.0369
	            non 0.0369
	              E 0.0369
	          Avihu 0.0369
	           </S> 0.0059
	           Avvy 0.0000
	      following 0.0000
	            Art 0.0000
	              - 0.0000
	              ( 0.0000
	             Av 0.0000
	          Avery 0.0000
	          first 0.0000
	          <UNK> 0.0000
	          every 0.0000
	            Shy 0.0000
	           Athy 0.0000

              -   495849   1 (13)
	            and 0.0369
	             is 0.0369
	            the 0.0369
	             us 0.0369
	             of 0.0369
	             DT 0.0369
	              - 0.0369
	            cia 0.0369
	             iu 0.0369
	           </S> 0.0369
	              . 0.0369
	             at 0.0369
	              , 0.0369

        Wagtail   495857   2 (27)
	              . 0.2000
	           data 0.0369
	           page 0.0369
	        Wagtail 0.0369
	       Wagtails 0.0369
	        Waitara 0.0369
	        tagtail 0.0369
	          Wagai 0.0369
	             us 0.0369
	              I 0.0369
	              a 0.0369
	         period 0.0369
	        wagtail 0.0369
	          again 0.0369
	             by 0.0059
	         League 0.0000
	              , 0.0000
	              ) 0.0000
	        Monster 0.0000
	            for 0.0000
	          <UNK> 0.0000
	       Stranger 0.0000
	             to 0.0000
	      Stepchild 0.0000
	           </S> 0.0000
	              - 0.0000
	          Woman 0.0000

              .   495864   7 (13)
	             M. 0.4000
	            the 0.0369
	         ATOMKI 0.0369
	            cia 0.0369
	             us 0.0369
	           </S> 0.0059
	             of 0.0000
	            ... 0.0000
	              ( 0.0000
	            and 0.0000
	              , 0.0000
	              . 0.0000
	              - 0.0000

      Motacilla   495867   1 (24)
	        cotilla 0.0369
	        vacilla 0.0369
	         Motala 0.0369
	     Mostacolli 0.0369
	        cinerea 0.0369
	       Morcilla 0.0369
	           alba 0.0369
	      motacilla 0.0369
	   Motacillidae 0.0369
	      Monacelli 0.0369
	      Motacilla 0.0369
	       Montilla 0.0369
	           </S> 0.0059
	              / 0.0000
	              I 0.0000
	             In 0.0000
	              . 0.0000
	              - 0.0000
	            For 0.0000
	              " 0.0000
	              ] 0.0000
	              A 0.0000
	              , 0.0000
	              ) 0.0000

 cinereocapilla   495877 inf (20)
	           </S> 0.7000
	              ) 0.5000
	      Motacilla 0.4000
	              a 0.0369
	      configure 0.0369
	        general 0.0369
	        compile 0.0369
	              - 0.0369
	              I 0.0369
	              n 0.0369
	vareSelskap.cgi 0.0369
	     comparison 0.0369
	           alba 0.0059
	              , 0.0000
	              . 0.0000
	         cinera 0.0000
	       citreola 0.0000
	        cinerea 0.0000
	          <UNK> 0.0000
	          flava 0.0000

              ,   495891   1 (11)
	            and 0.0369
	              . 0.0369
	              - 0.0369
	           alba 0.0369
	              ) 0.0369
	             us 0.0369
	            the 0.0369
	              , 0.0369
	            cia 0.0369
	             of 0.0369
	           </S> 0.0059

          Sa\'I   495893 inf (22)
	            has 0.1000
	           SaPI 0.0369
	              x 0.0369
	          RaShI 0.0369
	            San 0.0369
	            Sat 0.0369
	   respectively 0.0369
	           SmaI 0.0369
	              { 0.0369
	           Save 0.0369
	             Sa 0.0369
	            the 0.0059
	             to 0.0000
	             or 0.0000
	             pp 0.0000
	           have 0.0000
	             of 0.0000
	              e 0.0000
	              i 0.0000
	          which 0.0000
	            was 0.0000
	            too 0.0000

              .   495898   1 (11)
	             iu 0.0369
	             of 0.0369
	           </S> 0.0369
	            ... 0.0369
	              , 0.0369
	            and 0.0369
	            cia 0.0369
	             us 0.0369
	              . 0.0369
	              - 0.0369
	            the 0.0369

            THE   495901   1 (23)
	            THE 0.6388
	             To 0.3518
	              I 0.0418
	            THB 0.0369
	            THR 0.0369
	             TH 0.0369
	           THEM 0.0369
	           THEA 0.0369
	            TEH 0.0369
	            cia 0.0369
	             iu 0.0369
	            HTE 0.0369
	             us 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	            The 0.0131
	           </S> 0.0059
	              / 0.0000
	              ] 0.0000
	              , 0.0000
	              . 0.0000
	              ) 0.0000

          /lava   496106 inf (31)
	           alba 0.2000
	         Parker 0.1000
	              a 0.0369
	        sources 0.0369
	          place 0.0369
	          Clava 0.0369
	         lavava 0.0369
	          Slava 0.0369
	          Flava 0.0369
	              I 0.0369
	          alava 0.0369
	          llava 0.0369
	           lava 0.0369
	      Verhaeren 0.0369
	        parties 0.0369
	        outside 0.0369
	             to 0.0369
	          other 0.0369
	              , 0.0059
	              - 0.0000
	          Smith 0.0000
	              A 0.0000
	              1 0.0000
	          <UNK> 0.0000
	   tuberculosis 0.0000
	           have 0.0000
	          Black 0.0000
	              ( 0.0000
	           </S> 0.0000
	              . 0.0000
	          parva 0.0000

            but   496113   2 (27)
	             on 0.0541
	           butt 0.0369
	             A. 0.0369
	            buy 0.0369
	            bus 0.0369
	              A 0.0369
	              " 0.0369
	          <UNK> 0.0369
	            but 0.0369
	           buts 0.0369
	            and 0.0369
	             bu 0.0369
	              a 0.0369
	              ( 0.0369
	             by 0.0369
	             MD 0.0369
	           </S> 0.0369
	             be 0.0369
	             On 0.0369
	           with 0.0062
	            the 0.0059
	          which 0.0012
	             us 0.0000
	             iu 0.0000
	              i 0.0000
	            tub 0.0000
	             or 0.0000

 Ornithologists   496138   1 (20)
	 ornithologists 0.0369
	             to 0.0369
	  Ornithologist 0.0369
	        develop 0.0369
	 Ornithologists 0.0369
	   Ornithologie 0.0369
	            the 0.0059
	        various 0.0000
	              a 0.0000
	         others 0.0000
	           </S> 0.0000
	             us 0.0000
	           some 0.0000
	              , 0.0000
	           this 0.0000
	           many 0.0000
	          those 0.0000
	       patients 0.0000
	          other 0.0000
	              . 0.0000

      nowadaj'S   496153   1 (18)
	              a 0.0369
	          local 0.0369
	         people 0.0369
	       nomadajn 0.0369
	            new 0.0369
	        nomadaj 0.0369
	         social 0.0369
	          there 0.0369
	       nowadays 0.0369
	        nowaday 0.0369
	         number 0.0369
	         things 0.0369
	              ' 0.0059
	          Union 0.0000
	              - 0.0000
	              . 0.0000
	              , 0.0000
	           </S> 0.0000

             is   496163   1 (18)
	             it 0.0369
	            OFO 0.0369
	             in 0.0369
	             si 0.0369
	          Union 0.0369
	            cia 0.0369
	           </S> 0.0369
	            iis 0.0369
	             iu 0.0369
	              , 0.0369
	              . 0.0369
	            ist 0.0369
	            iso 0.0369
	            iss 0.0369
	             us 0.0369
	             is 0.0369
	              - 0.0369
	             as 0.0369

             if   496182   1 (21)
	              . 0.0369
	             iu 0.0369
	              a 0.0369
	             is 0.0369
	            the 0.0369
	            iff 0.0369
	             if 0.0369
	              , 0.0369
	              I 0.0369
	            cia 0.0369
	            ifs 0.0369
	             us 0.0369
	              - 0.0369
	             in 0.0369
	             it 0.0369
	            but 0.0369
	             fi 0.0369
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	              } 0.0000

         occurs   496232   2 (23)
	              u 0.1000
	              I 0.0369
	    Calibration 0.0369
	        Streets 0.0369
	          occur 0.0369
	             me 0.0369
	         occurs 0.0369
	           Part 0.0369
	          hours 0.0369
	             us 0.0369
	         others 0.0369
	        occursu 0.0369
	        occurso 0.0369
	       obscurus 0.0369
	         offers 0.0369
	        occurse 0.0369
	           </S> 0.0059
	              ( 0.0000
	              . 0.0000
	              a 0.0000
	              - 0.0000
	         Anthus 0.0000
	              , 0.0000

      Shetlands   496253   1 (30)
	            yes 0.0369
	            Man 0.0369
	      therefore 0.0369
	          <UNK> 0.0369
	      Shetlands 0.0369
	              " 0.0369
	          Wight 0.0369
	    Shetlanders 0.0369
	              a 0.0369
	              I 0.0369
	              E 0.0369
	       Belleair 0.0369
	       Shetland 0.0369
	    Shetlandish 0.0369
	           </S> 0.0369
	             ME 0.0369
	            and 0.0369
	             SC 0.0369
	          Maine 0.0369
	            the 0.0059
	      shetlands 0.0000
	            too 0.0000
	             or 0.0000
	          which 0.0000
	          these 0.0000
	            you 0.0000
	         though 0.0000
	           will 0.0000
	          their 0.0000
	            who 0.0000

             as   496264   2 (25)
	             on 0.0541
	             as 0.0369
	             31 0.0369
	            ask 0.0369
	            ass 0.0369
	           Skye 0.0369
	            arz 0.0369
	             an 0.0369
	            aas 0.0369
	             at 0.0369
	        Orkneys 0.0369
	          <UNK> 0.0369
	              x 0.0369
	         within 0.0369
	           with 0.0062
	            the 0.0059
	          which 0.0012
	             sa 0.0000
	              i 0.0000
	            was 0.0000
	             us 0.0000
	          while 0.0000
	             iu 0.0000
	             of 0.0000
	             or 0.0000

             it   496332   1 (23)
	              , 0.0369
	             A. 0.0369
	             ti 0.0369
	            itt 0.0369
	             us 0.0369
	            iit 0.0369
	            ith 0.0369
	             iu 0.0369
	              I 0.0369
	              . 0.0369
	            iti 0.0369
	              - 0.0369
	             it 0.0369
	            who 0.0369
	             in 0.0369
	             O. 0.0369
	              a 0.0369
	            its 0.0369
	             is 0.0369
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	              } 0.0000

         Scilly   496356  14 (28)
	         Scilla 0.5000
	          Silly 0.2000
	           will 0.1000
	         Travel 0.0369
	             us 0.0369
	         hotels 0.0369
	          cilly 0.0369
	           file 0.0369
	         stream 0.0369
	         Scille 0.0369
	        display 0.0369
	        Sicilly 0.0369
	            the 0.0059
	         Sicily 0.0000
	              , 0.0000
	              a 0.0000
	           this 0.0000
	           sale 0.0000
	              - 0.0000
	         really 0.0000
	         Scully 0.0000
	         Scilly 0.0000
	             it 0.0000
	            top 0.0000
	         behalf 0.0000
	              . 0.0000
	          still 0.0000
	           </S> 0.0000

              A   496379  10 (21)
	             As 0.2611
	            cia 0.0369
	             iu 0.0369
	             CA 0.0369
	             AM 0.0369
	             PA 0.0369
	             AA 0.0369
	             us 0.0369
	            AAA 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	            and 0.0000
	              ) 0.0000
	              ] 0.0000
	             '' 0.0000
	              , 0.0000
	             of 0.0000
	            the 0.0000
	              . 0.0000

         Achill   496424   1 (29)
	         Achill 0.9000
	              C 0.0369
	           1981 0.0369
	             us 0.0369
	         Achilo 0.0369
	         Dallas 0.0369
	        Achilli 0.0369
	              x 0.0369
	            the 0.0059
	           your 0.0000
	              . 0.0000
	           this 0.0000
	          while 0.0000
	          Alchi 0.0000
	           fact 0.0000
	           2002 0.0000
	           </S> 0.0000
	              a 0.0000
	           will 0.0000
	              , 0.0000
	              - 0.0000
	          place 0.0000
	        Achille 0.0000
	          April 0.0000
	        writing 0.0000
	           time 0.0000
	         Canada 0.0000
	           turn 0.0000
	            his 0.0000

            co.   496432   1 (30)
	          <UNK> 0.0369
	              " 0.0369
	            cia 0.0369
	          corax 0.0369
	            can 0.0369
	            but 0.0369
	            Co. 0.0369
	              I 0.0369
	              , 0.0369
	             co 0.0369
	            coo 0.0369
	            coc 0.0369
	            com 0.0369
	          comix 0.0369
	            and 0.0369
	            con 0.0369
	          think 0.0369
	              a 0.0369
	            cod 0.0369
	             Co 0.0369
	           </S> 0.0369
	           with 0.0062
	            the 0.0059
	          which 0.0012
	            for 0.0000
	            not 0.0000
	        without 0.0000
	             or 0.0000
	            you 0.0000
	              i 0.0000

              a   496462   1 (20)
	             of 0.0369
	             to 0.0369
	             us 0.0369
	              - 0.0369
	            the 0.0369
	              . 0.0369
	             la 0.0369
	             as 0.0369
	             aa 0.0369
	           lava 0.0369
	            cia 0.0369
	              , 0.0369
	             at 0.0369
	             La 0.0369
	              a 0.0369
	            aaa 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000
	              " 0.0000

            co.   496474   1 (24)
	             co 0.8000
	            coo 0.3000
	          corax 0.0369
	        command 0.0369
	              x 0.0369
	          which 0.0297
	            the 0.0059
	           this 0.0000
	            com 0.0000
	            cod 0.0000
	           </S> 0.0000
	              a 0.0000
	            con 0.0000
	            coc 0.0000
	            not 0.0000
	            can 0.0000
	              - 0.0000
	            New 0.0000
	            for 0.0000
	              , 0.0000
	           your 0.0000
	            cia 0.0000
	          comix 0.0000
	              . 0.0000

        Donegal   496478   2 (22)
	              . 0.2000
	         Donald 0.0369
	       Donnagel 0.0369
	        general 0.0369
	        General 0.0369
	           case 0.0369
	        Donegal 0.0369
	             of 0.0369
	        England 0.0369
	         Dongal 0.0369
	        Donegan 0.0369
	         series 0.0369
	              a 0.0369
	       Donegall 0.0369
	          world 0.0369
	          cases 0.0369
	          local 0.0369
	            mar 0.0059
	           </S> 0.0000
	              , 0.0000
	        Wicklow 0.0000
	              - 0.0000

           1898   496502 inf (24)
	           1988 0.0369
	          <UNK> 0.0369
	           </S> 0.0369
	           2005 0.0369
	           2006 0.0369
	           1882 0.0369
	            yes 0.0369
	              I 0.0369
	            and 0.0369
	           2004 0.0369
	      therefore 0.0369
	              a 0.0369
	           2003 0.0369
	           1886 0.0369
	              " 0.0369
	           1998 0.0369
	           1989 0.0369
	            the 0.0059
	              i 0.0000
	             of 0.0000
	          which 0.0000
	         though 0.0000
	            too 0.0000
	             or 0.0000

              a   496549   1 (21)
	             at 0.0369
	              a 0.0369
	             la 0.0369
	             La 0.0369
	              , 0.0369
	            the 0.0369
	             aa 0.0369
	             of 0.0369
	           lava 0.0369
	            cia 0.0369
	              - 0.0369
	             us 0.0369
	             to 0.0369
	              . 0.0369
	             as 0.0369
	       recovery 0.0369
	            aaa 0.0369
	           </S> 0.0059
	              ) 0.0000
	              " 0.0000
	              } 0.0000

       Ninfield   496580   1 (27)
	       Linfield 0.0369
	       Ninefold 0.0369
	              : 0.0369
	javax.servlet.http.HttpServlet.service 0.0369
	              E 0.0369
	       Ninfield 0.0369
	          least 0.0369
	              a 0.0369
	           NCBI 0.0369
	        infield 0.0369
	              . 0.0369
	              , 0.0369
	           </S> 0.0369
	         Niniel 0.0369
	           line 0.0369
	       Winfield 0.0369
	            the 0.0369
	          <UNK> 0.0369
	              - 0.0369
	            all 0.0369
	           your 0.0059
	          under 0.0000
	             us 0.0000
	           well 0.0000
	           work 0.0000
	              x 0.0000
	          which 0.0000

           1901   496617 inf (24)
	           2004 0.0369
	          19105 0.0369
	            and 0.0369
	           1990 0.0369
	           2005 0.0369
	              a 0.0369
	           1903 0.0369
	          19100 0.0369
	           1981 0.0369
	           2003 0.0369
	              " 0.0369
	   respectively 0.0369
	           </S> 0.0369
	              I 0.0369
	           1999 0.0369
	           1991 0.0369
	          <UNK> 0.0369
	            the 0.0059
	              i 0.0000
	          which 0.0000
	             or 0.0000
	            too 0.0000
	             pp 0.0000
	             of 0.0000

             In   496624   1 (18)
	             In 0.5538
	             It 0.0900
	             If 0.0570
	              I 0.0418
	            Inn 0.0369
	             iu 0.0369
	            cia 0.0369
	              a 0.0369
	            Inc 0.0369
	             us 0.0369
	              A 0.0328
	              " 0.0179
	              - 0.0176
	           </S> 0.0059
	              ] 0.0000
	              . 0.0000
	              ) 0.0000
	              , 0.0000

           1903   496627 inf (16)
	            for 0.3000
	              . 0.2000
	            all 0.1693
	           1991 0.0369
	           1993 0.0369
	            the 0.0059
	           </S> 0.0000
	              A 0.0000
	              - 0.0000
	           1998 0.0000
	            The 0.0000
	       addition 0.0000
	           this 0.0000
	           1999 0.0000
	              , 0.0000
	              a 0.0000

           four   496632   1 (26)
	           four 0.9000
	              I 0.3000
	            the 0.1000
	           foul 0.0369
	          fours 0.0369
	           your 0.0369
	             iu 0.0369
	          maura 0.0369
	           frou 0.0369
	            fou 0.0369
	           fout 0.0369
	           fuor 0.0369
	             us 0.0369
	             IN 0.0369
	          foure 0.0369
	           Your 0.0369
	           </S> 0.0059
	            for 0.0000
	              S 0.0000
	              , 0.0000
	              ) 0.0000
	              - 0.0000
	              a 0.0000
	             he 0.0000
	             to 0.0000
	              . 0.0000

          Tawny   496637  15 (23)
	           many 0.7000
	           want 0.6000
	           Town 0.3000
	           awny 0.0369
	          young 0.0369
	         Tawney 0.0369
	           RCMP 0.0369
	              a 0.0369
	          Tawna 0.0369
	         Twayne 0.0369
	           Tany 0.0369
	           Tawy 0.0369
	          Tanny 0.0369
	              - 0.0059
	          Tawny 0.0000
	             of 0.0000
	           Tony 0.0000
	          years 0.0000
	           </S> 0.0000
	              , 0.0000
	          Table 0.0000
	              . 0.0000
	          major 0.0000

        another   496736   1 (22)
	              . 0.0369
	              a 0.0369
	          other 0.0369
	          after 0.0369
	     oneanother 0.0369
	             he 0.0369
	              I 0.0369
	      oenothera 0.0369
	       anothers 0.0369
	        another 0.0369
	         nother 0.0369
	        podcast 0.0369
	              - 0.0369
	         anther 0.0369
	              : 0.0369
	        anither 0.0369
	              , 0.0369
	              i 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	              " 0.0000

        Bexhill   496780   2 (26)
	              y 0.1000
	        Benhill 0.0369
	          <UNK> 0.0369
	           </S> 0.0369
	          Belhi 0.0369
	     Bexleyhill 0.0369
	           this 0.0369
	        Boxhill 0.0369
	         Oxhill 0.0369
	        Berhill 0.0369
	              a 0.0369
	              , 0.0369
	              . 0.0369
	           hill 0.0369
	        Bexhill 0.0369
	            the 0.0369
	            all 0.0369
	              - 0.0369
	          least 0.0369
	            1pm 0.0369
	           your 0.0059
	          which 0.0000
	             us 0.0000
	           work 0.0000
	           will 0.0000
	              x 0.0000

              a   496790   1 (20)
	             la 0.0369
	             La 0.0369
	             to 0.0369
	              , 0.0369
	             us 0.0369
	             at 0.0369
	           lava 0.0369
	            cia 0.0369
	             of 0.0369
	             aa 0.0369
	              a 0.0369
	              . 0.0369
	             as 0.0369
	              - 0.0369
	            the 0.0369
	            aaa 0.0369
	           </S> 0.0059
	              ) 0.0000
	              " 0.0000
	              } 0.0000

         Bodmin   496854   1 (30)
	            all 0.0369
	          comix 0.0369
	          <UNK> 0.0369
	          Bodin 0.0369
	         Bodmin 0.0369
	         Modmin 0.0369
	              , 0.0369
	          least 0.0369
	              a 0.0369
	              . 0.0369
	         Bodman 0.0369
	         Bodkin 0.0369
	         common 0.0369
	          Login 0.0369
	            the 0.0369
	          Admin 0.0369
	       Bodymind 0.0369
	              - 0.0369
	              : 0.0369
	javax.servlet.http.HttpServlet.service 0.0369
	           </S> 0.0369
	           NCBI 0.0369
	        Bedomin 0.0369
	           your 0.0059
	          women 0.0000
	              y 0.0000
	          which 0.0000
	           work 0.0000
	             us 0.0000
	              x 0.0000

        Richard   496892   4 (17)
	        Michael 0.5000
	              ] 0.2000
	              - 0.1000
	        Richart 0.0369
	        Richard 0.0369
	      Richardia 0.0369
	              a 0.0369
	       Richards 0.0369
	       Richarda 0.0369
	           </S> 0.0059
	              I 0.0000
	              ) 0.0000
	             It 0.0000
	              . 0.0000
	              , 0.0000
	              " 0.0000
	              A 0.0000

         Scilly   496957   1 (33)
	          North 0.0369
	         Scilla 0.0369
	         Scille 0.0369
	             PA 0.0369
	              " 0.0369
	           </S> 0.0369
	          Silly 0.0369
	       Cheshire 0.0369
	         Scilly 0.0369
	        Chester 0.0369
	       Scotland 0.0369
	            and 0.0369
	        Sicilly 0.0369
	              a 0.0369
	         photos 0.0369
	      Snowdonia 0.0369
	              , 0.0369
	              I 0.0369
	          <UNK> 0.0369
	       services 0.0369
	         Europe 0.0369
	         prices 0.0369
	           well 0.0369
	          South 0.0369
	             UK 0.0369
	         Sicily 0.0369
	          cilly 0.0369
	            the 0.0059
	           will 0.0000
	           only 0.0000
	          which 0.0000
	              i 0.0000
	             or 0.0000

        Kentish   496968  14 (28)
	          Kenth 0.6000
	        Ireland 0.0369
	       Ketishen 0.0369
	       Kentoshi 0.0369
	        service 0.0369
	        Channel 0.0369
	       Ghentish 0.0369
	              i 0.0369
	         online 0.0369
	          entis 0.0369
	       Northern 0.0369
	       Republic 0.0369
	            the 0.0059
	              ( 0.0000
	        kentish 0.0000
	          their 0.0000
	           </S> 0.0000
	          Kenis 0.0000
	          <UNK> 0.0000
	              - 0.0000
	           more 0.0000
	              , 0.0000
	           this 0.0000
	              I 0.0000
	        Kenting 0.0000
	          other 0.0000
	              a 0.0000
	        Kentish 0.0000

          Pipit   497022  18 (35)
	         Pipits 0.8000
	           Pipi 0.3000
	           with 0.0369
	           Lily 0.0369
	           they 0.0369
	           site 0.0369
	            you 0.0369
	          would 0.0369
	              , 0.0369
	          there 0.0369
	          known 0.0369
	          Pitip 0.0369
	             we 0.0369
	         Sewage 0.0369
	              s 0.0369
	              - 0.0079
	           </S> 0.0059
	           Pica 0.0000
	             up 0.0000
	            the 0.0000
	          based 0.0000
	          <UNK> 0.0000
	        Pipitea 0.0000
	           Post 0.0000
	          Pipil 0.0000
	              I 0.0000
	            Pyi 0.0000
	              A 0.0000
	             to 0.0000
	          Pipin 0.0000
	          Pipit 0.0000
	           year 0.0000
	          Pipet 0.0000
	              a 0.0000
	              . 0.0000

            one   497108   1 (23)
	              M 0.0369
	              , 0.0369
	             of 0.0369
	            ons 0.0369
	            ont 0.0369
	             on 0.0369
	            and 0.0369
	              a 0.0369
	            oen 0.0369
	            cia 0.0369
	             iu 0.0369
	              . 0.0369
	            one 0.0369
	           onee 0.0369
	             us 0.0369
	           ones 0.0369
	           oner 0.0369
	           onen 0.0369
	              - 0.0369
	           </S> 0.0059
	              ) 0.0000
	              } 0.0000
	              " 0.0000

        Scill3%   497115   1 (22)
	         Scilly 1.0000
	          South 0.5000
	        Scillus 0.1000
	          early 0.0369
	           will 0.0369
	         Scille 0.0369
	              x 0.0369
	           late 0.0369
	             us 0.0369
	              I 0.0369
	            the 0.0059
	         Scicli 0.0000
	              a 0.0000
	           this 0.0000
	              - 0.0000
	         Scilla 0.0000
	            all 0.0000
	           your 0.0000
	           </S> 0.0000
	              , 0.0000
	              . 0.0000
	          which 0.0000

            May   497123   1 (20)
	            Mar 0.0369
	           Maya 0.0369
	           </S> 0.0369
	              , 0.0369
	            cia 0.0369
	            Map 0.0369
	              I 0.0369
	             Ma 0.0369
	              - 0.0369
	            May 0.0369
	            may 0.0369
	              a 0.0369
	             My 0.0369
	              . 0.0369
	            arz 0.0369
	            day 0.0369
	            Mya 0.0369
	             of 0.0369
	           Baya 0.0369
	           Mayo 0.0369

            one   497134   1 (23)
	            ons 0.0369
	            ont 0.0369
	              - 0.0369
	             on 0.0369
	             d. 0.0369
	             us 0.0369
	           ones 0.0369
	           oner 0.0369
	           onen 0.0369
	            cia 0.0369
	             iu 0.0369
	             of 0.0369
	            one 0.0369
	              a 0.0369
	              A 0.0369
	              , 0.0369
	            oen 0.0369
	              . 0.0369
	           onee 0.0369
	           </S> 0.0059
	              } 0.0000
	              ) 0.0000
	              " 0.0000

        Milcomb   497141 inf (28)
	              x 0.5000
	             us 0.1000
	              : 0.0369
	          <UNK> 0.0369
	           some 0.0369
	javax.servlet.http.HttpServlet.service 0.0369
	           NCBI 0.0369
	              I 0.0369
	       Millicom 0.0369
	           that 0.0369
	          least 0.0369
	              . 0.0369
	         Milcov 0.0369
	              - 0.0369
	           </S> 0.0369
	              , 0.0369
	              a 0.0369
	           Home 0.0369
	         Milcom 0.0369
	            the 0.0369
	       Milcombe 0.0369
	        Mincome 0.0369
	            all 0.0369
	       Chilcomb 0.0369
	           your 0.0059
	           work 0.0000
	          which 0.0000
	           will 0.0000

              (   497149   1 (12)
	              ( 1.0000
	              - 0.0000
	             iu 0.0000
	              . 0.0000
	              , 0.0000
	           time 0.0000
	            cia 0.0000
	           </S> 0.0000
	            and 0.0000
	            the 0.0000
	             us 0.0000
	             of 0.0000

            one   497172   1 (23)
	            oen 0.0369
	             us 0.0369
	             of 0.0369
	              , 0.0369
	              . 0.0369
	            cia 0.0369
	             iu 0.0369
	              a 0.0369
	            one 0.0369
	             on 0.0369
	              A 0.0369
	           onee 0.0369
	            and 0.0369
	            ons 0.0369
	            ont 0.0369
	           ones 0.0369
	           oner 0.0369
	           onen 0.0369
	              - 0.0369
	           </S> 0.0059
	              } 0.0000
	              " 0.0000
	              ) 0.0000

            one   497203   1 (22)
	             on 0.0369
	             of 0.0369
	            ons 0.0369
	            ont 0.0369
	            cia 0.0369
	             iu 0.0369
	              . 0.0369
	              a 0.0369
	              , 0.0369
	              A 0.0369
	             us 0.0369
	           ones 0.0369
	           oner 0.0369
	           onen 0.0369
	              - 0.0369
	           onee 0.0369
	            oen 0.0369
	            one 0.0369
	           </S> 0.0059
	              " 0.0000
	              ) 0.0000
	              } 0.0000

    Littlestone   497210   1 (27)
	       Littlest 0.0369
	    Littlestown 0.0369
	            all 0.0369
	    Littlestone 0.0369
	      different 0.0369
	           NCBI 0.0369
	    Littlestoke 0.0369
	            the 0.0369
	              I 0.0369
	javax.servlet.http.HttpServlet.service 0.0369
	          first 0.0369
	      Littleton 0.0369
	              - 0.0369
	              a 0.0369
	           that 0.0369
	              , 0.0369
	              : 0.0369
	           </S> 0.0369
	          least 0.0369
	              . 0.0369
	          <UNK> 0.0369
	           your 0.0059
	           work 0.0000
	              x 0.0000
	        version 0.0000
	             us 0.0000
	          which 0.0000

     altogether   497240  14 (27)
	      togeather 0.1000
	          start 0.0369
	        reviews 0.0369
	           take 0.0369
	              z 0.0369
	            and 0.0369
	      altogeher 0.0369
	       shoulder 0.0369
	      altometer 0.0369
	              . 0.0369
	           well 0.0369
	       children 0.0369
	            the 0.0059
	       together 0.0000
	              , 0.0000
	              a 0.0000
	          other 0.0000
	              - 0.0000
	           then 0.0000
	     Altogether 0.0000
	              I 0.0000
	           also 0.0000
	     altogether 0.0000
	            are 0.0000
	           </S> 0.0000
	             to 0.0000
	          there 0.0000

         Sussex   497267  15 (29)
	           user 0.5000
	         defeat 0.0369
	         Sxusem 0.0369
	           them 0.0369
	         Sussen 0.0369
	         Sussey 0.0369
	              x 0.0369
	             us 0.0369
	        seconds 0.0369
	         itself 0.0369
	      Sussexite 0.0369
	       progress 0.0369
	          which 0.0297
	            the 0.0059
	          stock 0.0000
	              a 0.0000
	           </S> 0.0000
	             it 0.0000
	           this 0.0000
	         sussex 0.0000
	         Sussex 0.0000
	              . 0.0000
	              - 0.0000
	            use 0.0000
	           time 0.0000
	           your 0.0000
	              , 0.0000
	         Passer 0.0000
	           used 0.0000

AdaBoost

In [127]:
import model

AB_MODELS = {
  # name:                            model,               data type, balanced, customized grid)
    'AB-top1.t10':                  (model.AdaBoostModel, 'top1',    False,    dict(n_estimators=[10])),
    'AB-top1.t10.balanced':         (model.AdaBoostModel, 'top1',    True,     dict(n_estimators=[10])),
    'AB-top1.t10.lr5E-1, balanced': (model.AdaBoostModel, 'top1',    True,     dict(n_estimators=[10], learning_rate=[0.5])),
    'AB-top1.t50':                  (model.AdaBoostModel, 'top1',    False,    dict(n_estimators=[50])),
    'AB-top1.t50.balanced':         (model.AdaBoostModel, 'top1',    True,     dict(n_estimators=[50])),
    'AB-top1.t100':                 (model.AdaBoostModel, 'top1',    False,    dict(n_estimators=[100])),
    'AB-top1.t100.balanced':        (model.AdaBoostModel, 'top1',    True,     dict(n_estimators=[100])),
    'AB-top3.t10':                  (model.AdaBoostModel, 'top3',    False,    dict(n_estimators=[10])),
    'AB-top3.t10.balanced':         (model.AdaBoostModel, 'top3',    True,     dict(n_estimators=[10])),
}
train(AB_MODELS, prefix='AB')
AB-top1.t10                        102.30 second
AB-top1.t10.balanced               115.03 second
AB-top1.t10.lr5E-1, balanced       132.81 second
AB-top1.t100                       123.47 second
AB-top1.t100.balanced              130.58 second
AB-top1.t50                        115.34 second
AB-top1.t50.balanced               130.97 second
AB-top3.t10                        181.54 second
AB-top3.t10.balanced               222.86 second
In [132]:
test(AB_MODELS)
                                           P@1      P@3      P@5     P@10      P@A
----------------------------------------------------------------------------------
All errors
----------------------------------------------------------------------------------
ED                               top1  0.82468  0.83899  0.84265  0.84365  0.84365
ED                               top3  0.83666  0.84897  0.85396  0.86194  0.86593
----------------------------------------------------------------------------------
AB-top1.t10                      top1  0.82402  0.83866  0.84198  0.84365  0.84365
AB-top1.t10.balanced             top1  0.82601  0.83965  0.84265  0.84365  0.84365
AB-top1.t10.lr5E-1, balanced     top1  0.82302  0.84065  0.84198  0.84365  0.84365
AB-top1.t50                      top1  0.82568  0.83999  0.84232  0.84365  0.84365
AB-top1.t50.balanced             top1  0.82535  0.83999  0.84265  0.84365  0.84365
AB-top1.t100                     top1  0.82834  0.83965  0.84232  0.84365  0.84365
AB-top1.t100.balanced            top1  0.81703  0.84065  0.84232  0.84365  0.84365
AB-top3.t10                      top3  0.81071  0.84265  0.85063  0.86161  0.86593
AB-top3.t10.balanced             top3  0.81836  0.85329  0.85862  0.86194  0.86593
----------------------------------------------------------------------------------
TP errors
----------------------------------------------------------------------------------
ED                               top1  0.44937  0.51741  0.53481  0.53956  0.53956
ED                               top3  0.50633  0.56487  0.58861  0.62500  0.64241
----------------------------------------------------------------------------------
AB-top1.t10                      top1  0.45886  0.51582  0.53165  0.53956  0.53956
AB-top1.t10.balanced             top1  0.46361  0.52057  0.53481  0.53956  0.53956
AB-top1.t10.lr5E-1, balanced     top1  0.44937  0.52532  0.53165  0.53956  0.53956
AB-top1.t50                      top1  0.46203  0.52215  0.53323  0.53956  0.53956
AB-top1.t50.balanced             top1  0.46677  0.52215  0.53481  0.53956  0.53956
AB-top1.t100                     top1  0.47785  0.52215  0.53323  0.53956  0.53956
AB-top1.t100.balanced            top1  0.41930  0.52532  0.53323  0.53956  0.53956
AB-top3.t10                      top3  0.38449  0.53165  0.56962  0.62184  0.64241
AB-top3.t10.balanced             top3  0.42247  0.58544  0.61076  0.62658  0.64241
----------------------------------------------------------------------------------
FP errors
----------------------------------------------------------------------------------
ED                               top1  0.92460  0.92460  0.92460  0.92460  0.92460
ED                               top3  0.92460  0.92460  0.92460  0.92502  0.92544
----------------------------------------------------------------------------------
AB-top1.t10                      top1  0.92123  0.92460  0.92460  0.92460  0.92460
AB-top1.t10.balanced             top1  0.92249  0.92460  0.92460  0.92460  0.92460
AB-top1.t10.lr5E-1, balanced     top1  0.92249  0.92460  0.92460  0.92460  0.92460
AB-top1.t50                      top1  0.92249  0.92460  0.92460  0.92460  0.92460
AB-top1.t50.balanced             top1  0.92081  0.92460  0.92460  0.92460  0.92460
AB-top1.t100                     top1  0.92165  0.92418  0.92460  0.92460  0.92460
AB-top1.t100.balanced            top1  0.92291  0.92460  0.92460  0.92460  0.92460
AB-top3.t10                      top3  0.92418  0.92544  0.92544  0.92544  0.92544
AB-top3.t10.balanced             top3  0.92376  0.92460  0.92460  0.92460  0.92544
In [166]:
report(AB_MODELS, 'AB-top1.t10.balanced')
    possibility   407374   1 (8)
	    possibility 0.7789
	         policy 0.5492
	            the 0.2236
	              a 0.2236
	              , 0.2236
	    application 0.2174
	          <UNK> 0.1372
	           </S> 0.0497

           niaj   407429 inf (9)
	          began 0.5492
	              a 0.5492
	              \ 0.5492
	           niaj 0.5492
	            cia 0.5492
	           name 0.5178
	           </S> 0.1687
	              , 0.1687
	             'm 0.0736

              '   407433 inf (7)
	           </S> 0.5492
	              a 0.5492
	            not 0.5492
	              , 0.5492
	            the 0.5492
	             us 0.5492
	              ± 0.0736

             bv   407472   3 (8)
	             bv 0.5492
	             us 0.5324
	             by 0.2388
	            the 0.1687
	              a 0.1687
	           </S> 0.1687
	              , 0.0942
	              . 0.0736

            Mr.   407475   1 (7)
	            Mr. 0.7789
	             My 0.5492
	         Andrew 0.5492
	            arz 0.5492
	              a 0.5178
	              , 0.1687
	           </S> 0.0736

       llarting   407485 inf (9)
	      latrating 0.5492
	       clarting 0.5492
	       learning 0.5492
	          llarg 0.5492
	              s 0.5492
	              : 0.2388
	              A 0.2388
	           </S> 0.0736
	              , 0.0736

            for   407494   1 (5)
	           </S> 0.5492
	            for 0.5492
	              a 0.5492
	              , 0.5492
	            arz 0.5492

         Oologj   407522   1 (11)
	        Beatles 0.5492
	         Objlog 0.5492
	     Chronology 0.5492
	         Oology 0.5492
	         Online 0.5492
	        Bankers 0.5492
	              a 0.5492
	              , 0.2388
	           </S> 0.2388
	              . 0.2388
	       Columbia 0.0736

              '   407528   1 (7)
	            the 0.5492
	              . 0.5492
	              ( 0.5492
	              ' 0.5492
	              , 0.5492
	             us 0.5492
	           </S> 0.5492

           1S64   407547   1 (10)
	             US 0.5492
	      therefore 0.5492
	              a 0.5492
	          April 0.5492
	           1864 0.5492
	              , 0.5492
	           2004 0.5492
	           </S> 0.5492
	        however 0.1687
	            the 0.0736

              a   407553   1 (7)
	              a 0.5492
	           </S> 0.5492
	            May 0.5492
	              ( 0.5492
	             us 0.5178
	             of 0.1687
	            the 0.0736

         Ravens   407568   2 (9)
	           have 0.7789
	          Pales 0.5492
	         Ravens 0.5492
	              a 0.2388
	           </S> 0.2388
	              . 0.1687
	            and 0.1687
	            the 0.0736
	              , 0.0736

          which   407575   1 (8)
	          which 0.7789
	              a 0.5492
	           Pica 0.5492
	           have 0.5178
	              ' 0.2388
	              , 0.1687
	           </S> 0.0736
	        Buffalo 0.0736

          built   407651   1 (8)
	            and 0.5492
	              a 0.5492
	              ( 0.5492
	           </S> 0.5492
	            but 0.5492
	          built 0.5492
	           with 0.1687
	            the 0.0736

           fern   407749   1 (7)
	           fern 0.7789
	              a 0.5492
	            3.2 0.5492
	            arz 0.5492
	           free 0.5178
	           </S> 0.1687
	              , 0.0736

           dead   407780   2 (7)
	            cia 0.7789
	           dead 0.5178
	              , 0.2388
	           data 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

             On   407850   1 (8)
	              , 0.7789
	             On 0.7789
	            and 0.7789
	             in 0.7789
	              a 0.5492
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

            two   407863   1 (5)
	            two 0.7789
	             us 0.7789
	              a 0.5492
	           </S> 0.1687
	              , 0.0736

           tlie   407886   9 (9)
	           alba 0.7789
	           trie 0.7789
	           tile 0.7114
	          tliet 0.5492
	              , 0.2388
	           </S> 0.1687
	           this 0.1687
	              a 0.1687
	            the 0.0736

           nest   407891   3 (9)
	              , 0.7789
	            new 0.7789
	              a 0.5492
	           nest 0.5492
	           Code 0.5492
	             us 0.5492
	          world 0.5324
	           </S> 0.1687
	          <UNK> 0.0736

           l)ut   407938 inf (10)
	           lout 0.5492
	              , 0.5492
	             ut 0.5492
	           last 0.5492
	           lutu 0.5492
	            lut 0.5492
	           lava 0.5492
	              a 0.5492
	              } 0.2236
	           </S> 0.0736

            the   407943   1 (3)
	            the 0.5492
	             us 0.5492
	           </S> 0.5492

            l)y   408009   9 (9)
	            may 0.7789
	            lay 0.7789
	           lava 0.5492
	             ly 0.5492
	              a 0.5178
	           </S> 0.2388
	              . 0.0942
	              , 0.0736
	             by 0.0497

       visitors   408013   1 (7)
	           </S> 0.5492
	       visitors 0.5492
	              , 0.5492
	              a 0.5492
	          fists 0.5492
	             it 0.5492
	     viscivorus 0.5492

       hatclied   408045   1 (14)
	        hatched 0.7789
	        latched 0.7789
	      disclosed 0.5492
	      hatchlike 0.5492
	          there 0.5492
	          clied 0.5492
	            for 0.2388
	             to 0.1687
	           have 0.1687
	           know 0.1687
	              a 0.1687
	              , 0.1687
	           </S> 0.1687
	             be 0.0736

        wliieli   408093 inf (14)
	          wlite 0.7789
	          wiele 0.7114
	           </S> 0.5492
	      therefore 0.5492
	              x 0.5492
	          lieli 0.5492
	            and 0.5492
	              a 0.5492
	           ieli 0.5492
	              ( 0.5492
	            DEF 0.5492
	         glieli 0.5492
	           will 0.2388
	            the 0.0736

       liowever   408102 inf (9)
	         liever 0.7789
	        lowlier 0.7789
	      therefore 0.5492
	          <UNK> 0.5492
	        However 0.5492
	              , 0.5492
	           like 0.2388
	              i 0.2388
	            the 0.0736

   considerable   408116   2 (9)
	        contact 0.5492
	   considerable 0.5178
	             he 0.3804
	             my 0.2388
	              , 0.2388
	           </S> 0.2388
	            the 0.1687
	           been 0.0736
	              a 0.0736

           1894   408190 inf (9)
	              , 0.7789
	          stock 0.7789
	           1984 0.5492
	           1994 0.5492
	        poverty 0.5492
	             us 0.5492
	           </S> 0.5178
	              a 0.2388
	            the 0.0736

             In   408196   1 (6)
	             In 0.7789
	              , 0.7789
	             us 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

         Ravens   408222   1 (8)
	          Pales 0.7789
	         Ravens 0.7789
	         Family 0.5492
	         Rating 0.2388
	              , 0.1687
	            Day 0.1687
	           </S> 0.0736
	              a 0.0736

        hatched   408229   2 (7)
	        Watches 0.7789
	              a 0.5492
	        hatched 0.5492
	        History 0.5492
	              , 0.1687
	        Buffalo 0.0736
	           </S> 0.0736

           five   408241   3 (8)
	           lava 0.7789
	           find 0.7789
	           five 0.5178
	             to 0.1687
	              , 0.1687
	           </S> 0.1687
	              a 0.1687
	             of 0.0736

            Mr.   408266   3 (8)
	              , 0.7789
	             My 0.7789
	            Mrs 0.5492
	              a 0.5492
	             Mr 0.5492
	            arz 0.5492
	              " 0.2388
	           </S> 0.0736

        Coniyus   408276 inf (12)
	        Congius 0.5492
	       Cydonius 0.5492
	           Coni 0.5492
	         Conics 0.5492
	         Corvus 0.5492
	             22 0.5492
	        Conifur 0.5492
	         Comics 0.5492
	              A 0.5178
	           </S> 0.1687
	          <UNK> 0.1687
	              , 0.0736

       Lyveudeu   408288 inf (13)
	           need 0.5492
	          Rhode 0.5492
	       Lieudieu 0.5492
	      precursor 0.5492
	          Lyude 0.5492
	       Lavender 0.5324
	              , 0.2388
	             us 0.2388
	         course 0.2388
	           them 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

             S.   408298 inf (9)
	           </S> 0.5492
	             US 0.5492
	            and 0.5492
	             SS 0.5492
	              ( 0.5492
	             So 0.5492
	              a 0.5492
	             us 0.5178
	            the 0.0736

        Buzzard   408354   1 (8)
	        Buzzard 0.7789
	        support 0.2388
	            was 0.2388
	            has 0.1687
	              a 0.1687
	              , 0.1687
	           </S> 0.1687
	            the 0.0736

          taken   408362   2 (9)
	      submitted 0.7789
	           take 0.5492
	          taken 0.5492
	          Pales 0.5492
	              a 0.5492
	         Father 0.5492
	              . 0.2388
	              , 0.0736
	           </S> 0.0736

   aggressively   408442   1 (9)
	   aggressively 0.7789
	             us 0.5492
	             be 0.5492
	      available 0.5492
	             so 0.2388
	           </S> 0.2388
	              I 0.1687
	           that 0.0736
	              , 0.0736

           tame   408456   4 (9)
	              a 0.5492
	            but 0.5492
	           </S> 0.5492
	           tame 0.5324
	           lava 0.5178
	           time 0.2388
	             or 0.1687
	            who 0.1687
	            the 0.0736

        Buzzard   408484   1 (10)
	        Buzzard 0.7789
	           auto 0.5492
	              , 0.5492
	           with 0.5492
	              a 0.5492
	            are 0.5492
	           most 0.1687
	           same 0.1687
	           fact 0.1687
	           </S> 0.0736

       remained   408492   2 (6)
	             of 0.7789
	       remained 0.5492
	       required 0.5492
	              a 0.5492
	              , 0.0736
	           </S> 0.0736

       obdurate   408501   1 (8)
	       obdurate 0.7789
	        operate 0.5492
	           that 0.5178
	          there 0.2388
	              , 0.2388
	           </S> 0.2388
	              a 0.1687
	             in 0.0736

         full}'   408514   3 (9)
	         credit 0.5492
	             as 0.5492
	          fully 0.5178
	           full 0.2388
	              , 0.2388
	             us 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

      instantly   408819   1 (7)
	      instantly 0.7789
	        instant 0.5178
	              N 0.2388
	              a 0.2388
	              s 0.1687
	              , 0.0736
	           </S> 0.0736

         dashed   408829   1 (9)
	         dashed 0.7789
	          based 0.7789
	              s 0.5492
	              ' 0.5492
	              a 0.5178
	         online 0.2388
	           </S> 0.2388
	              , 0.1687
	              . 0.0736

          after   408928   1 (8)
	            The 0.5492
	              I 0.5492
	          after 0.5492
	           </S> 0.5492
	              ( 0.5492
	         Passer 0.5492
	           with 0.1687
	            the 0.0736

         flying   408934   2 (8)
	           find 0.7789
	         flying 0.5178
	           only 0.5017
	           </S> 0.2388
	              , 0.2388
	              a 0.1687
	            all 0.1687
	            the 0.0736

          hotly   408978   1 (7)
	          hotly 0.7789
	            and 0.5492
	           </S> 0.5492
	              a 0.5492
	              - 0.5492
	            how 0.2388
	            the 0.0736

            b}'   408992   6 (6)
	             bb 0.5492
	             us 0.5178
	           </S> 0.2388
	              a 0.1687
	              , 0.1687
	             by 0.0736

              '   408996 inf (4)
	             us 0.5492
	              , 0.5492
	           </S> 0.5492
	            the 0.5492

              '   409003 inf (8)
	           Grin 0.5492
	           </S> 0.5492
	              ( 0.5492
	             Th 0.5492
	             us 0.5178
	             of 0.1687
	           when 0.1687
	            the 0.0736

       alighted   409014   1 (9)
	       alighted 0.7789
	              ' 0.5492
	              s 0.5492
	         dawned 0.5492
	           </S> 0.2388
	       appeared 0.2388
	          after 0.2236
	              I 0.1687
	              , 0.0736

      bristling   409074   1 (9)
	          years 0.5492
	        Listing 0.5492
	      bristling 0.5492
	              a 0.5178
	             of 0.2388
	            bed 0.1687
	           </S> 0.1687
	              . 0.1687
	              , 0.0736

           bird   409109   2 (10)
	             by 0.7789
	            cia 0.5492
	      draperies 0.5492
	           bird 0.5492
	    Association 0.5492
	             of 0.5324
	              a 0.5178
	              . 0.1687
	           </S> 0.1687
	              , 0.0736

            was   409122   4 (8)
	              a 0.5492
	             us 0.5492
	           same 0.5492
	            was 0.5017
	              . 0.1687
	             's 0.0736
	           </S> 0.0736
	              , 0.0736

       tempered   409136   1 (8)
	       tempered 0.5492
	     experience 0.5492
	        pleased 0.5178
	          there 0.5178
	             to 0.2388
	           </S> 0.2388
	              , 0.0736
	              a 0.0497

        caution   409162   1 (7)
	        caution 0.7789
	             of 0.5492
	       Location 0.5492
	              a 0.5492
	     discretion 0.5178
	           </S> 0.5178
	              , 0.0736

             he   409172   1 (6)
	             he 0.5492
	              a 0.5492
	              , 0.5492
	             us 0.5492
	              } 0.2236
	           </S> 0.0736

        Buzzard   409271   1 (10)
	        buzzard 0.7789
	        Buzzard 0.7789
	        ability 0.5492
	          Board 0.1687
	           time 0.1687
	            way 0.1687
	          right 0.1687
	              - 0.1687
	           same 0.1687
	           </S> 0.0736

  consternation   409303   1 (9)
	  consternation 0.7789
	        delight 0.5492
	            she 0.2388
	    information 0.2388
	             he 0.1687
	              a 0.1687
	           </S> 0.1687
	              , 0.1687
	            the 0.0736

         sprang   409317   2 (10)
	              a 0.7789
	         sprang 0.5492
	         looked 0.5492
	             us 0.5492
	          items 0.5492
	           </S> 0.5178
	              , 0.1687
	            and 0.1687
	              . 0.1687
	             of 0.0736

             He   409332   1 (7)
	             He 0.7789
	              , 0.7789
	             be 0.5492
	             us 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

           liis   409453 inf (12)
	            lis 0.7789
	           lava 0.7789
	          liisi 0.5492
	           liin 0.5492
	           lisi 0.5492
	            lii 0.5492
	           list 0.5178
	            its 0.2388
	              , 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

        laurels   409458   2 (8)
	              , 0.7789
	           site 0.5492
	        laurels 0.5492
	              a 0.5492
	         levels 0.5492
	        aureola 0.5492
	        seventh 0.5492
	           </S> 0.0736

          would   409640   1 (8)
	             of 0.7789
	          would 0.7789
	          wolfi 0.5492
	              I 0.5492
	             DT 0.5492
	           Song 0.5178
	           </S> 0.0736
	              , 0.0736

           beak   409695   1 (10)
	           been 0.7789
	           beak 0.7789
	              . 0.5492
	              a 0.5492
	            cia 0.5492
	           </S> 0.1687
	              , 0.1687
	      important 0.1687
	           well 0.1687
	           good 0.0736

              '   409753   1 (6)
	            the 0.7789
	              ' 0.7789
	              , 0.7789
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

      furtively   409822   1 (9)
	      furtively 0.7789
	              . 0.5492
	       Services 0.2388
	              a 0.1687
	              , 0.1687
	           then 0.1687
	             to 0.1687
	           </S> 0.1687
	            the 0.0736

       tweaking   409832   1 (10)
	          their 0.5492
	             of 0.5492
	              a 0.5492
	       tweaking 0.5492
	             us 0.5492
	           </S> 0.5324
	             to 0.3804
	              . 0.1687
	             at 0.1687
	              , 0.0736

        Buzzard   409845   1 (9)
	        buzzard 0.7789
	        Buzzard 0.7789
	        swallow 0.5492
	        student 0.5492
	          world 0.1687
	          Board 0.1687
	              - 0.1687
	           same 0.1687
	           </S> 0.0736

             's   409852   5 (7)
	             of 0.7789
	              s 0.5492
	              a 0.5492
	             is 0.5178
	             's 0.1687
	              , 0.0736
	           </S> 0.0736

        attacks   409930   3 (8)
	           </S> 0.7789
	              . 0.7789
	              I 0.5492
	        attacks 0.5492
	         States 0.5492
	             us 0.5324
	              , 0.5178
	           post 0.0736

        Buzzard   409968   1 (9)
	        buzzard 0.7789
	        Buzzard 0.7789
	           team 0.5492
	          world 0.1687
	          Board 0.1687
	           same 0.1687
	              - 0.1687
	        country 0.1687
	           </S> 0.0736

             's   409975   5 (7)
	             of 0.7789
	              a 0.5492
	             us 0.5492
	             is 0.5178
	             's 0.1687
	              , 0.0736
	           </S> 0.0736

         wretch   410108   3 (9)
	              - 0.7789
	           face 0.7789
	         wretch 0.5492
	              a 0.5492
	          which 0.5492
	        sources 0.5492
	           </S> 0.5178
	              , 0.2388
	    elsewhither 0.0736

        denuded   410116   1 (8)
	              a 0.5492
	          Grace 0.5492
	         winner 0.5492
	          under 0.5492
	        denuded 0.5492
	            one 0.1687
	           they 0.1687
	            the 0.0736

       Hitherto   410161 inf (6)
	              , 0.7789
	              a 0.5492
	        Hittero 0.5492
	       hitherto 0.5492
	              " 0.2388
	           </S> 0.0736

          might   410230   2 (8)
	             of 0.7789
	           will 0.5492
	          minor 0.5492
	              a 0.5492
	          might 0.5492
	          right 0.5492
	              , 0.0736
	           </S> 0.0736

          being   410334   1 (7)
	          being 0.7789
	             of 0.7789
	            bad 0.5492
	              a 0.5492
	              . 0.2388
	              , 0.0736
	           </S> 0.0736

         Comyns   410383   1 (10)
	         Comyns 0.7789
	        Company 0.7789
	              . 0.5492
	         Corvus 0.5492
	          paper 0.5492
	              a 0.5492
	              , 0.2388
	         Rogers 0.2388
	           </S> 0.1687
	       Chairman 0.0736

              '   410389   4 (6)
	             's 0.7789
	             us 0.5492
	            the 0.5492
	              ' 0.5324
	           </S> 0.2388
	              , 0.0736

            Mr.   410481   3 (8)
	              , 0.7789
	             My 0.7789
	            Mrs 0.5492
	              a 0.5492
	             Mr 0.5492
	            arz 0.5492
	              " 0.2388
	           </S> 0.0736

        Frohawk   410485   2 (8)
	         Mohawk 0.7789
	        Frohawk 0.5492
	              B 0.5017
	              , 0.2388
	             J. 0.2388
	          <UNK> 0.1687
	           </S> 0.1687
	       Chairman 0.0736

            saw   410493   1 (7)
	             so 0.5492
	              I 0.5492
	            saw 0.5492
	           sala 0.5492
	           </S> 0.5178
	              , 0.5017
	           1898 0.0736

           tlie   410531   2 (10)
	           trie 0.7789
	           </S> 0.5492
	              a 0.5492
	              , 0.5492
	           this 0.5492
	           tile 0.5492
	          tliet 0.5492
	            the 0.5492
	           alba 0.5492
	           your 0.0736

          mouth   410536   4 (8)
	              , 0.7789
	          South 0.7789
	            end 0.7789
	          mouth 0.5492
	              a 0.5492
	          maura 0.5492
	           </S> 0.1687
	          <UNK> 0.0736

          Devon   410558   2 (8)
	              , 0.7789
	            Dec 0.5492
	              s 0.5492
	              a 0.5492
	              T 0.5492
	          Devon 0.5492
	              " 0.2388
	           </S> 0.0736

           they   410597   1 (5)
	           they 0.5492
	              a 0.5492
	              , 0.5492
	              } 0.2236
	           </S> 0.0736

Fa>,iilv-C0RJ7D.-E   410685 inf (11)
	              , 0.7789
	             -- 0.7789
	           will 0.5492
	          alive 0.5492
	      available 0.5492
	        friends 0.5492
	              a 0.5492
	       FileName 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

              .   410703   1 (5)
	             us 0.5492
	              . 0.5492
	              , 0.5492
	            the 0.5492
	           </S> 0.5492

        Corviis   410725 inf (8)
	              , 0.7789
	         Comics 0.5492
	        Corvida 0.5492
	          Corvi 0.5492
	              a 0.5492
	        Corvids 0.5492
	              " 0.2388
	           </S> 0.0736

        iOfoiic   410733 inf (9)
	         infonc 0.5492
	           </S> 0.5492
	        infoibi 0.5492
	          folic 0.5492
	          Ofori 0.5492
	      configure 0.5492
	              a 0.5492
	         ironic 0.5492
	              , 0.5492

              ,   410740 inf (3)
	             of 0.5492
	             us 0.5492
	            the 0.5492

           Linn   410742   1 (6)
	           List 0.5492
	           Linn 0.5492
	          minor 0.5178
	              i 0.2388
	             pp 0.2388
	            the 0.0736

             IN   410749   1 (8)
	              , 0.7789
	             In 0.7789
	             IN 0.7789
	             us 0.5492
	              a 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

        Siberia   410752   1 (9)
	        Liberia 0.5492
	        service 0.5492
	        Siberia 0.5492
	        cinerea 0.5492
	              ) 0.2388
	              , 0.2388
	              A 0.1687
	           </S> 0.1687
	            THE 0.0736

        Seebohm   410774   1 (9)
	        Seebohm 0.7789
	           </S> 0.5492
	           need 0.5492
	           plan 0.5492
	           cars 0.2388
	            say 0.2388
	             us 0.2388
	              a 0.1687
	            the 0.0736

          Ijdng   410824 inf (8)
	          Index 0.7789
	          Ijdan 0.5492
	representatives 0.5492
	             Ij 0.5492
	              a 0.5178
	              , 0.1687
	           </S> 0.1687
	              . 0.0736

        between   410830   1 (5)
	              , 0.5492
	            the 0.5492
	              a 0.5492
	           </S> 0.5492
	        between 0.5492

        Yenesay   410838 inf (12)
	          Yenya 0.5492
	        Yenesis 0.5492
	         Benesa 0.5492
	         Yenets 0.5492
	           Asia 0.5492
	        General 0.5178
	              , 0.3804
	             us 0.2388
	            you 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

      Westwards   410968 inf (7)
	              , 0.7789
	              a 0.5492
	          where 0.5492
	       Westward 0.5492
	      Australia 0.5492
	              " 0.2388
	           </S> 0.0736

             he   410978   1 (5)
	             us 0.5492
	             he 0.5492
	              a 0.5492
	           </S> 0.5017
	              , 0.0736

        Caspian   411082   3 (10)
	         cassia 0.7789
	           line 0.5492
	        Caspian 0.5178
	        Capital 0.5178
	          world 0.1687
	           City 0.1687
	              - 0.1687
	           same 0.1687
	           time 0.1687
	           </S> 0.0736

         Hooded   411133   1 (8)
	         Hooded 0.7789
	            sea 0.5492
	          Hotel 0.5178
	              , 0.2388
	             us 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

         spread   411273   1 (9)
	         Flying 0.5492
	          great 0.5492
	         spread 0.5492
	         spinas 0.5492
	              a 0.5492
	             of 0.5017
	           </S> 0.0736
	              , 0.0736
	              . 0.0497

    interbreeds   411392   1 (8)
	              a 0.5492
	             us 0.5492
	    interbreeds 0.5492
	           into 0.5178
	             is 0.1687
	           </S> 0.1687
	              , 0.0942
	              . 0.0736

         Hooded   411413   1 (8)
	         Hooded 0.7789
	            Jim 0.5492
	          Hotel 0.5017
	              - 0.1687
	            top 0.1687
	          first 0.1687
	           same 0.1687
	           </S> 0.0736

        Yenesay   411456 inf (11)
	        Yenesis 0.5492
	         Yenets 0.5492
	          Yenya 0.5492
	     procedures 0.5492
	         Benesa 0.5492
	           best 0.5492
	         others 0.2388
	              a 0.1687
	           </S> 0.1687
	              , 0.1687
	            the 0.0736

              (   411464   1 (6)
	             us 0.5492
	              ( 0.5492
	           </S> 0.5492
	              . 0.5492
	              , 0.5492
	            the 0.5492

    intergrades   411514   1 (10)
	      offspring 0.5492
	   similarities 0.5492
	    differences 0.5492
	    intergrades 0.5492
	    interesting 0.5017
	              a 0.2388
	           </S> 0.1687
	         people 0.1687
	              , 0.1687
	             of 0.0736

          these   411622   1 (6)
	          these 0.5492
	            Art 0.5492
	              , 0.5492
	              a 0.5492
	              } 0.2236
	           </S> 0.0736

       Histor}'   411751   7 (9)
	             of 0.5492
	          Hotel 0.5492
	       Historis 0.5492
	              a 0.5492
	              . 0.5178
	              , 0.2388
	        History 0.1687
	           </S> 0.1687
	      Resources 0.0736

         branch   411760   1 (6)
	         branch 0.5492
	              A 0.5492
	           </S> 0.5492
	         France 0.5492
	              , 0.5492
	         Museum 0.5492

         Museum   411775   1 (7)
	          Music 0.7789
	         Museum 0.7789
	              . 0.1687
	              a 0.1687
	           </S> 0.1687
	              , 0.1687
	            the 0.0736

             In   411803   1 (7)
	              , 0.7789
	            and 0.7789
	             In 0.7789
	              a 0.5492
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

       disliked   411843   1 (8)
	       disliked 0.5492
	         online 0.5492
	          major 0.5492
	           </S> 0.5017
	              a 0.5017
	             to 0.2388
	         famous 0.1687
	              , 0.0736

           both   411868   1 (8)
	            but 0.5492
	           </S> 0.5492
	              ( 0.5492
	           both 0.5492
	              a 0.5492
	            and 0.5492
	             or 0.1687
	            the 0.0736

            yet   411905   1 (7)
	              , 0.5492
	              a 0.5492
	            you 0.5492
	            yet 0.5492
	            Pyi 0.5492
	              } 0.2236
	           </S> 0.0736

       becoming   411990   1 (10)
	       becoming 0.5492
	              a 0.5492
	    Aberystwyth 0.5492
	            and 0.5492
	              x 0.5492
	      therefore 0.5492
	           </S> 0.5492
	              , 0.5492
	        because 0.5492
	            the 0.0736

      decidedly   412009   1 (6)
	           does 0.5492
	      decidedly 0.5492
	              a 0.5492
	           </S> 0.5492
	            who 0.1687
	            the 0.0736

       commoner   412019   1 (10)
	            was 0.5492
	         corone 0.5492
	       commoner 0.5492
	        lacking 0.5178
	              a 0.2388
	           </S> 0.2388
	            the 0.2388
	              , 0.1687
	            not 0.0942
	           more 0.0736

             in   412090   1 (6)
	             in 0.5492
	              , 0.5492
	              a 0.5492
	             iu 0.5492
	              } 0.2236
	           </S> 0.0736

      Shetlands   412212   1 (8)
	      Shetlands 0.7789
	         Canada 0.5492
	            not 0.1687
	              , 0.1687
	           some 0.1687
	              a 0.0942
	           </S> 0.0736
	            the 0.0736

             In   412223   1 (6)
	             In 0.7789
	              , 0.7789
	              A 0.7789
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

        Carrion   412270   1 (10)
	      Education 0.5492
	              I 0.5492
	        Carrion 0.5492
	         secret 0.5492
	          Ahead 0.5492
	        version 0.5178
	             of 0.2388
	              , 0.1687
	           </S> 0.1687
	            and 0.0736

       purplish   412301   1 (6)
	       purplish 0.5492
	        publish 0.5492
	              , 0.5492
	              a 0.5492
	              } 0.2236
	           </S> 0.0736

          above   412310   1 (7)
	          above 0.7789
	        arborea 0.5492
	          alone 0.5492
	           </S> 0.5178
	              , 0.2388
	            red 0.1687
	              - 0.0736

            the   412361   1 (6)
	            the 0.5492
	              , 0.5492
	              . 0.5492
	             us 0.5492
	              } 0.2236
	           </S> 0.0736

      similarly   412371   1 (6)
	           site 0.5492
	      similarly 0.5492
	              a 0.5178
	             of 0.1687
	           </S> 0.1687
	              , 0.0736

         tinted   412381   1 (9)
	         tinted 0.7789
	         United 0.5492
	   grasshoppers 0.5492
	              a 0.5178
	            the 0.2388
	              , 0.1687
	       situated 0.1687
	           </S> 0.1687
	             to 0.0736

           bill   412390   1 (7)
	           will 0.5492
	              a 0.5492
	              , 0.5492
	           bill 0.5492
	            cia 0.5492
	              } 0.2236
	           </S> 0.0736

           iris   412412   1 (8)
	              a 0.5492
	           iris 0.5492
	             is 0.5492
	              , 0.5492
	           dark 0.5492
	             iu 0.5492
	              } 0.2236
	           </S> 0.0736

            her   412525   1 (6)
	              a 0.5492
	              , 0.5492
	            her 0.5492
	            arz 0.5492
	              } 0.2236
	           </S> 0.0736

       ajipears   412534   6 (11)
	             us 0.5492
	          ajars 0.5492
	         piears 0.5492
	          pears 0.5492
	          years 0.5492
	        appears 0.5178
	              I 0.5178
	           </S> 0.1687
	             is 0.1687
	              , 0.0942
	              . 0.0736

             to   412543   1 (5)
	            not 0.5492
	             to 0.5492
	              , 0.5492
	             us 0.5492
	           </S> 0.5492

          Young   412627   1 (6)
	          Young 0.7789
	           Your 0.7789
	              , 0.7789
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

          gloss   412651   1 (10)
	          gloss 0.7789
	          merit 0.5492
	             to 0.5492
	             us 0.5492
	           good 0.5178
	              , 0.2388
	           </S> 0.1687
	         notice 0.1687
	              a 0.1687
	            the 0.0736

             As   412713   1 (7)
	             As 0.7789
	              , 0.7789
	             us 0.5492
	              a 0.5492
	             AM 0.5492
	              " 0.2388
	           </S> 0.0736

     h3-bridize   412784   1 (10)
	      hybridize 0.7789
	           </S> 0.5492
	              , 0.5492
	          trade 0.5492
	      hibridize 0.5492
	             us 0.2388
	              a 0.1687
	        provide 0.1687
	             be 0.1687
	            the 0.0736

         freely   412795   1 (8)
	              , 0.5492
	            the 0.5492
	            you 0.5492
	              a 0.5492
	             us 0.5492
	           free 0.5492
	         freely 0.5492
	           </S> 0.5492

         Hooded   412811   1 (8)
	         Hooded 0.7789
	            Jim 0.5492
	         Holder 0.5178
	          Hotel 0.5017
	          first 0.1687
	              - 0.1687
	           same 0.1687
	           </S> 0.0736

           Herr   412887   1 (8)
	           </S> 0.5492
	            and 0.5492
	           Help 0.5492
	              a 0.5492
	              ( 0.5492
	           Herr 0.5492
	            arz 0.5492
	            the 0.0736

          Gatke   412892 inf (9)
	            the 0.7789
	          Gatka 0.5492
	              a 0.5492
	           take 0.5492
	        Gataket 0.5492
	           Gate 0.5492
	             M. 0.5178
	           </S> 0.1687
	              , 0.0736

       shrewdly   412898   2 (6)
	           </S> 0.7789
	             J. 0.5492
	              a 0.5492
	          Ringe 0.5492
	       shrewdly 0.5492
	              , 0.0736

        pairing   412967   1 (8)
	             us 0.5492
	          first 0.5492
	        pairing 0.5492
	              , 0.5178
	            not 0.5178
	           </S> 0.2388
	              a 0.1687
	            the 0.0736

         having   412975   1 (8)
	           have 0.7789
	         having 0.7789
	          items 0.5492
	           fact 0.5492
	              a 0.5017
	              , 0.1687
	           </S> 0.1687
	             of 0.0736

         3'ears   413019   3 (11)
	          sears 0.7789
	           ears 0.5324
	          years 0.5017
	           them 0.2388
	              , 0.2388
	             us 0.2388
	             it 0.2388
	           </S> 0.1687
	              a 0.1687
	           this 0.1687
	            the 0.0736

            for   413174   1 (6)
	              a 0.5492
	              , 0.5492
	            for 0.5492
	            arz 0.5492
	              } 0.2236
	           </S> 0.0736

          the}'   413182 inf (10)
	           thee 0.7789
	             us 0.5492
	           </S> 0.2388
	              , 0.2388
	          their 0.2388
	              I 0.1687
	             he 0.1687
	              a 0.1687
	            the 0.1687
	            you 0.0736

       reverted   413274   1 (7)
	       reserved 0.5492
	       reverted 0.5492
	              a 0.5178
	            mp3 0.5017
	           </S> 0.2388
	              , 0.1687
	              . 0.0736

    colouration   413429   1 (7)
	       colorati 0.5492
	    colouration 0.5492
	       solution 0.2388
	         enough 0.2388
	           plan 0.1687
	           </S> 0.1687
	              , 0.0736

    gradational   413478   1 (10)
	          early 0.5492
	    information 0.5492
	              a 0.5492
	             of 0.5492
	    gradational 0.5492
	           free 0.2388
	           </S> 0.1687
	              , 0.1687
	              . 0.1687
	         access 0.0736

         stages   413490   1 (10)
	          state 0.5492
	              a 0.5492
	         levels 0.5492
	             of 0.5492
	         stages 0.5492
	          Pales 0.5492
	           </S> 0.2388
	              . 0.1687
	              , 0.1687
	       contacts 0.0736

          gre}'   413512 inf (11)
	            gre 0.7789
	           greg 0.7789
	          white 0.5492
	        medical 0.5492
	          great 0.5017
	             us 0.2388
	              , 0.2388
	           time 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

            and   413518   1 (5)
	            and 0.5492
	              , 0.5492
	              . 0.5492
	           </S> 0.5492
	            arz 0.5492

      Pheasants   413618   1 (9)
	            non 0.5492
	              a 0.5492
	      Pheasants 0.5492
	          major 0.2388
	             of 0.1687
	           </S> 0.1687
	              , 0.1687
	          years 0.1687
	              - 0.0736

              -   413628   3 (8)
	            the 0.5492
	             us 0.5492
	              . 0.5178
	             of 0.5178
	              - 0.5178
	           </S> 0.1687
	              , 0.1687
	        Forever 0.0736

      cuIchicKs   413633 inf (9)
	       services 0.5492
	              a 0.5492
	       culchies 0.5492
	        sources 0.5492
	       vulgaris 0.5492
	              - 0.5324
	          <UNK> 0.2388
	           </S> 0.1687
	              , 0.0736

             P.   413644   1 (7)
	           </S> 0.5492
	             PM 0.5492
	            and 0.5492
	             P. 0.5492
	              a 0.5492
	           your 0.2388
	            the 0.0736

     /oi-qna/us   413647 inf (13)
	     aeruginosa 0.7789
	        Journal 0.7789
	             J. 0.7789
	           Moin 0.5492
	            use 0.5492
	           know 0.5492
	             in 0.5492
	       Domingos 0.5492
	        contact 0.5492
	              a 0.5492
	          <UNK> 0.2388
	           </S> 0.1687
	              , 0.0736

    vtrsicoloi-   413666   1 (11)
	     versicolor 0.5492
	             us 0.5492
	    versicolori 0.5492
	        service 0.5492
	              a 0.5492
	             on 0.5492
	              ) 0.5178
	              . 0.2388
	           </S> 0.1687
	          <UNK> 0.1687
	              , 0.0736

     interbreed   413690   1 (9)
	     interbreed 0.7789
	           into 0.5492
	             us 0.5492
	            the 0.1687
	              a 0.1687
	              , 0.1687
	           </S> 0.1687
	       includes 0.1687
	             be 0.0736

         freely   413701   6 (9)
	            the 0.7789
	              a 0.7789
	           free 0.5492
	             us 0.5492
	     abundantly 0.5492
	         freely 0.5178
	           </S> 0.5178
	              , 0.1687
	           with 0.0736

    intergrades   413728   2 (8)
	    information 0.7789
	           that 0.5492
	              a 0.5492
	    intergrades 0.5492
	            and 0.5178
	           </S> 0.5178
	              , 0.2388
	              . 0.0736

            are   413740   1 (8)
	            are 0.7789
	             of 0.7789
	            arz 0.5492
	        torture 0.5492
	              I 0.5492
	              , 0.5178
	           </S> 0.5178
	           with 0.0736

       distinct   413760   2 (9)
	         within 0.5492
	       distinct 0.5178
	            the 0.1687
	           </S> 0.1687
	              a 0.1687
	           only 0.1687
	            yet 0.1687
	              , 0.1687
	             be 0.0736

         sports   413840   1 (10)
	         review 0.5492
	         should 0.5492
	         sports 0.5492
	         spinas 0.5492
	        receipt 0.5178
	              a 0.5017
	           </S> 0.2388
	              , 0.1687
	            the 0.1687
	           that 0.0736

    intergrades   413895   1 (10)
	             us 0.5492
	         copies 0.5492
	    intergrades 0.5492
	    information 0.5178
	             it 0.3804
	             to 0.2388
	           </S> 0.2388
	            any 0.2388
	              , 0.1687
	              a 0.0736

      reproduce   413936   1 (8)
	          major 0.5492
	        product 0.5492
	      reproduce 0.5492
	           best 0.5492
	              a 0.5178
	              . 0.1687
	           </S> 0.1687
	              , 0.0736

        Barbaiy   414010 inf (10)
	      Barbarity 0.7789
	        Barbair 0.5492
	              . 0.5492
	              , 0.5492
	          major 0.5492
	              a 0.5492
	           page 0.1687
	         public 0.1687
	           most 0.1687
	           </S> 0.0736

         Turtle   414018   1 (9)
	              , 0.5492
	             of 0.5492
	            non 0.5492
	           </S> 0.5492
	              . 0.5492
	         Turdus 0.5492
	         Turtle 0.5492
	              a 0.5492
	         little 0.5492

        fertile   414068   3 (8)
	        service 0.7789
	             of 0.7789
	        fertile 0.5492
	              a 0.5324
	              " 0.5178
	           </S> 0.5178
	              , 0.5178
	             to 0.0736

       Bengalee   414096   1 (9)
	       Bengalee 0.7789
	             as 0.5492
	              , 0.5492
	         Bengal 0.5178
	          <UNK> 0.1687
	              " 0.1687
	          world 0.1687
	         people 0.1687
	           </S> 0.0736

        Carrion   414128   1 (11)
	        Carrion 0.7789
	            non 0.5492
	            the 0.5492
	          major 0.5492
	              a 0.5492
	           most 0.1687
	           City 0.1687
	           same 0.1687
	            two 0.1687
	              - 0.1687
	           </S> 0.0736

      resembles   414141   1 (9)
	             us 0.5492
	              a 0.5492
	        between 0.5492
	      resembles 0.5492
	             of 0.5178
	            and 0.2388
	              - 0.1687
	           </S> 0.0736
	              , 0.0736

     inhabiting   414162   1 (10)
	     inhabiting 0.7114
	            and 0.5492
	             J. 0.5492
	              a 0.5492
	              ( 0.5492
	           </S> 0.5492
	      including 0.1687
	             or 0.1687
	           with 0.1687
	            the 0.0736

        similar   414173   2 (7)
	           some 0.7789
	          corax 0.5492
	        similar 0.5492
	           </S> 0.5178
	              , 0.5178
	              a 0.2388
	            the 0.0736

         haunts   414181   1 (9)
	         haunts 0.7789
	         County 0.7789
	         Counts 0.5492
	       articles 0.5178
	          means 0.5178
	              , 0.2388
	        results 0.2388
	           </S> 0.1687
	             to 0.0736

             In   414252   1 (6)
	              , 0.7789
	             In 0.7789
	              a 0.5492
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

      predatory   414259   1 (7)
	      predatory 0.7789
	              , 0.5492
	       products 0.2388
	           </S> 0.1687
	          first 0.1687
	              a 0.1687
	            own 0.0736

         cpiite   414297   8 (13)
	        kopiite 0.5492
	           pite 0.5492
	           piit 0.5492
	         cepiti 0.5492
	         chiite 0.5492
	           city 0.5324
	           cite 0.5178
	          quite 0.2388
	           </S> 0.1687
	              a 0.1687
	           have 0.1687
	              , 0.1687
	             be 0.0736

           both   414321   1 (9)
	            and 0.5492
	              ( 0.5492
	           both 0.5492
	            but 0.5492
	           </S> 0.5492
	              a 0.5492
	     especially 0.2388
	             or 0.1687
	            the 0.0736

       shepherd   414329   1 (10)
	       shepherd 0.7789
	             us 0.5492
	          small 0.5492
	            day 0.5492
	        members 0.5492
	              , 0.2388
	           </S> 0.1687
	              a 0.1687
	          <UNK> 0.1687
	            the 0.0736

           Ever   414355   2 (6)
	              , 0.7789
	              a 0.5492
	           over 0.5492
	           Ever 0.5492
	              " 0.2388
	           </S> 0.0736

            b}'   414416   3 (9)
	             us 0.5178
	              ' 0.5178
	             in 0.1687
	           </S> 0.1687
	              a 0.1687
	           with 0.1687
	              , 0.1687
	             by 0.1687
	              . 0.0736

          Tliat   414480 inf (9)
	              , 0.7789
	           This 0.7789
	          Triat 0.5492
	           Tlia 0.5492
	              a 0.5492
	          Talit 0.5492
	           alba 0.5492
	              " 0.2388
	           </S> 0.0736

           this   414486   1 (5)
	              , 0.5492
	           this 0.5492
	              a 0.5492
	           </S> 0.5492
	            cia 0.5492

          seems   414513   1 (8)
	            see 0.7789
	          seems 0.7789
	             us 0.5492
	              a 0.5324
	            the 0.5178
	           </S> 0.2388
	              , 0.1687
	             to 0.0736

        dispute   414565   1 (10)
	        dispute 0.7789
	             us 0.5492
	     associated 0.5492
	           does 0.2388
	             be 0.1687
	            the 0.1687
	           </S> 0.1687
	            you 0.1687
	              a 0.1687
	              , 0.0736

           Gull   414580   1 (10)
	           sala 0.7789
	           Gull 0.7789
	              , 0.5492
	          video 0.5492
	           Full 0.5178
	         friend 0.1687
	           week 0.1687
	           full 0.1687
	            new 0.0736
	           </S> 0.0736

           Hawk   414601   1 (11)
	            How 0.7789
	           Hawk 0.7789
	           lava 0.7114
	          thing 0.5492
	           time 0.5492
	             of 0.5492
	              a 0.2236
	         number 0.1687
	           </S> 0.1687
	       business 0.0736
	              , 0.0736

       combiued   414651   6 (12)
	     uncombined 0.5492
	      terrorist 0.5492
	        cymbium 0.5492
	          heart 0.5492
	          combi 0.5324
	       combined 0.2388
	              - 0.1687
	       complete 0.1687
	          major 0.1687
	         single 0.1687
	           </S> 0.0736
	            new 0.0736

         attack   414660   1 (8)
	           back 0.5492
	         attack 0.5492
	          basis 0.5492
	              , 0.5492
	             of 0.5492
	        account 0.5492
	              I 0.5492
	           </S> 0.5492

           fare   414736   1 (8)
	           fare 0.7789
	            arz 0.5492
	           free 0.5178
	           </S> 0.2388
	             to 0.2388
	             be 0.2388
	              a 0.1687
	              , 0.0736

         badl3^   414741   3 (7)
	           back 0.5492
	         badala 0.5492
	              a 0.5178
	          badly 0.5178
	           </S> 0.1687
	              , 0.1687
	              . 0.0736

           Lord   414748   1 (6)
	              a 0.5492
	           more 0.5492
	              , 0.5492
	           </S> 0.5492
	           Lord 0.5492
	          Loxia 0.5492

        Lilford   414753 inf (8)
	        Lifford 0.7789
	        Milford 0.7789
	        Linford 0.5492
	              I 0.5017
	           </S> 0.2388
	             Of 0.1687
	              , 0.1687
	             of 0.0736

       observes   414761   2 (11)
	              - 0.7789
	             us 0.5492
	       reserved 0.5492
	            the 0.5492
	            War 0.5492
	              a 0.5492
	       observes 0.5492
	             's 0.5178
	           </S> 0.2388
	              , 0.1687
	              V 0.0736

           saj^   414798   7 (11)
	            saj 0.7789
	           sala 0.7789
	           </S> 0.5492
	              , 0.5492
	           saja 0.5492
	           said 0.5178
	            say 0.2388
	           play 0.2388
	              a 0.1687
	             be 0.1687
	            the 0.0736

             in   414803   1 (8)
	            the 0.5492
	              a 0.5492
	             in 0.5492
	              . 0.5492
	              , 0.5492
	             iu 0.5492
	           </S> 0.5492
	              : 0.5492

            His   414835   1 (7)
	            His 0.7789
	              , 0.7789
	            his 0.5492
	              a 0.5492
	            cia 0.5492
	              " 0.2388
	           </S> 0.0736

        noxious   414872   1 (11)
	      dispensed 0.5492
	        noxious 0.5492
	            not 0.5492
	        nubicus 0.5492
	              , 0.5017
	      voluntary 0.2388
	           </S> 0.1687
	   coincidental 0.1687
	             to 0.1687
	              a 0.1687
	            for 0.0736

      captivity   414939   3 (7)
	             us 0.5492
	        private 0.5492
	      captivity 0.5178
	              , 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

         offers   414949   2 (6)
	              a 0.7114
	         offers 0.5492
	          other 0.5492
	           </S> 0.2388
	              , 0.0942
	              . 0.0736

       natixral   414987 inf (14)
	        conduct 0.5492
	         natira 0.5492
	          natia 0.5492
	       naitural 0.5492
	              a 0.5492
	            and 0.5492
	       rational 0.5324
	       national 0.5178
	       National 0.5178
	              . 0.2388
	              , 0.2388
	           </S> 0.1687
	             or 0.1687
	            own 0.0736

           evil   414996   1 (7)
	              , 0.5492
	              a 0.5492
	           </S> 0.5492
	           even 0.5492
	              . 0.5492
	           evil 0.5492
	            cia 0.5492

        Carriou   415035   1 (12)
	        Carrion 0.7789
	         Carrio 0.7789
	            non 0.5492
	         Cariou 0.5492
	              , 0.5492
	              . 0.5492
	              X 0.5492
	              a 0.5492
	          major 0.5492
	           most 0.1687
	           City 0.1687
	           </S> 0.0736

              -   415042   1 (7)
	            the 0.5492
	             us 0.5492
	           </S> 0.5492
	              . 0.5492
	              - 0.5492
	             of 0.5492
	              , 0.5492

           Crow   415043   4 (9)
	       wrapping 0.5492
	              s 0.5492
	           this 0.5492
	           Crow 0.5178
	              . 0.2388
	           from 0.2388
	              a 0.1687
	             to 0.1687
	           </S> 0.0736

          wings   415102   4 (10)
	              , 0.5492
	           loan 0.5492
	        absence 0.5492
	           with 0.5178
	          minor 0.5178
	          wings 0.5178
	           next 0.2388
	              a 0.1687
	           </S> 0.1687
	            own 0.0736

      regularly   415108   1 (7)
	      regularly 0.5492
	         report 0.5492
	          banks 0.5492
	              a 0.5178
	           </S> 0.1687
	              , 0.0736
	              . 0.0736

           when   415136   1 (5)
	              , 0.5492
	           when 0.5492
	              a 0.5492
	              } 0.2236
	           </S> 0.0736

         wheels   415174   1 (9)
	             us 0.5492
	         wheels 0.5492
	          where 0.5178
	          takes 0.2388
	              , 0.2388
	              a 0.1687
	           </S> 0.1687
	             be 0.1687
	     dispatched 0.0736

          walks   415222   1 (11)
	          walks 0.7789
	         minors 0.5492
	             me 0.5492
	         broken 0.5492
	          Pales 0.5492
	            was 0.5178
	              , 0.1687
	           </S> 0.1687
	           case 0.1687
	              a 0.1687
	            the 0.0736

          leaps   415248   1 (9)
	          leaps 0.7114
	              a 0.5492
	            and 0.5492
	           </S> 0.5492
	       straight 0.5492
	           lava 0.5178
	          years 0.5178
	         please 0.1687
	            the 0.0736

          wings   415279   1 (10)
	          wings 0.7789
	           hour 0.5492
	          minor 0.5492
	          until 0.5178
	           </S> 0.2388
	             up 0.1687
	              a 0.1687
	           with 0.1687
	              , 0.1687
	            the 0.0736

   nidification   415329   1 (10)
	   nidification 0.7789
	     submission 0.5492
	           some 0.2388
	             us 0.2388
	            one 0.2388
	      Education 0.2388
	              , 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

          Iwade   415539   1 (9)
	              a 0.5492
	              , 0.5492
	           </S> 0.5492
	            the 0.5492
	             or 0.5492
	          Iwade 0.5492
	           made 0.5492
	             us 0.2388
	           your 0.0736

           near   415545   1 (8)
	           near 0.5492
	              3 0.5492
	            new 0.5492
	              a 0.5492
	            arz 0.5492
	              . 0.5324
	           </S> 0.1687
	              , 0.0736

         Sheppy   415550 inf (10)
	           Shop 0.7789
	         Cheppy 0.7789
	        Sheppey 0.5492
	         Sheepy 0.5492
	             us 0.5178
	              , 0.2388
	           </S> 0.2388
	              a 0.2388
	         future 0.1687
	            the 0.0736

      consisted   415558   1 (8)
	           </S> 0.5492
	              a 0.5492
	            and 0.5492
	          north 0.5492
	      consisted 0.5492
	         system 0.5492
	            one 0.1687
	            the 0.0736

         tliree   415571   9 (12)
	          Tiree 0.7789
	          tiler 0.7789
	           lire 0.7789
	         twires 0.5492
	       filliree 0.5492
	           tree 0.5178
	              , 0.2388
	             us 0.2388
	          three 0.2236
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

           full   415578   1 (8)
	              , 0.5492
	           sala 0.5492
	              a 0.5492
	              . 0.5492
	            non 0.5492
	           </S> 0.5492
	           full 0.5492
	         medium 0.5492

       yolkless   415608   1 (8)
	            the 0.5492
	           this 0.5492
	            you 0.5492
	             us 0.5492
	       yolkless 0.5492
	              a 0.3804
	           </S> 0.1687
	              , 0.0736

            one   415617   1 (9)
	         breeds 0.5492
	              a 0.5492
	             us 0.5492
	             of 0.5492
	           </S> 0.5492
	              , 0.5492
	            one 0.5492
	        hunting 0.5492
	           eggs 0.0736

             it   415761   1 (5)
	              a 0.5492
	              s 0.5492
	             it 0.5492
	              , 0.5492
	           </S> 0.0736

              -   415835 inf (6)
	           </S> 0.5492
	              ( 0.5492
	            and 0.5492
	             us 0.5178
	             of 0.1687
	            the 0.0736

            but   415857   1 (6)
	              , 0.5492
	              a 0.5492
	            but 0.5492
	             us 0.5492
	              } 0.2236
	           </S> 0.0736

             J.   415912 inf (8)
	            Jan 0.7789
	              . 0.7789
	              , 0.7789
	              a 0.5492
	             JR 0.5492
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

         Pilley   415918   1 (8)
	             22 0.5492
	         Pilley 0.5492
	          Pales 0.5492
	         Miller 0.5178
	              I 0.5178
	          <UNK> 0.1687
	              , 0.1687
	           </S> 0.0736

      Zoologist   415940   1 (8)
	      Zoologist 0.7789
	              s 0.5492
	          could 0.5492
	              a 0.2388
	              , 0.1687
	          <UNK> 0.1687
	              ) 0.1687
	           </S> 0.0736

              "   415950   1 (6)
	           </S> 0.5492
	              , 0.5492
	              § 0.5492
	              " 0.5492
	             us 0.5178
	            the 0.0736

        meadows   416056   1 (11)
	        meadows 0.7789
	      locations 0.5492
	              a 0.5492
	        Windows 0.5178
	          major 0.5017
	          parts 0.2388
	              , 0.2388
	          cases 0.1687
	           </S> 0.1687
	           time 0.1687
	             of 0.0736

           dead   416119   3 (8)
	            cia 0.7789
	      unsecured 0.5492
	           dead 0.5178
	           data 0.2388
	              , 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

              -   416144   3 (5)
	             us 0.7789
	            the 0.5178
	           </S> 0.1687
	              - 0.1687
	              , 0.0736

       tussocks   416145   1 (10)
	       tussocks 0.7789
	        through 0.5492
	          roots 0.5492
	              , 0.5492
	    medications 0.5492
	              s 0.5492
	              a 0.1687
	             to 0.1687
	             up 0.1687
	           </S> 0.0736

         neatly   416226   1 (7)
	         neatly 0.7789
	         really 0.7789
	              a 0.5492
	           </S> 0.1687
	           that 0.1687
	              , 0.0736
	              . 0.0736

       smoothed   416233   1 (9)
	       smoothed 0.7789
	         broken 0.5492
	          other 0.5492
	          twice 0.5492
	              a 0.5178
	           </S> 0.2388
	              , 0.1687
	            and 0.1687
	           into 0.0736

         number   416257   1 (7)
	         number 0.7789
	          price 0.5492
	              a 0.5178
	             of 0.2388
	            are 0.1687
	           </S> 0.1687
	              , 0.0736

         clutch   416304   1 (11)
	         clutch 0.7789
	             of 0.5492
	           time 0.5492
	          click 0.5492
	              a 0.5017
	         change 0.3804
	      travelers 0.2388
	           </S> 0.1687
	    contributor 0.1687
	              , 0.0942
	            and 0.0736

            the   416412   1 (5)
	              , 0.5492
	             us 0.5492
	            the 0.5492
	              } 0.2236
	           </S> 0.0736

        consist   416499   2 (10)
	        contact 0.7789
	        consist 0.5492
	           form 0.5492
	              a 0.5492
	      gradients 0.5178
	       function 0.2388
	            and 0.1687
	              , 0.1687
	           </S> 0.1687
	             of 0.0736

           some   416578   1 (6)
	              , 0.5492
	           some 0.5492
	              a 0.5492
	           sala 0.5492
	              } 0.2236
	           </S> 0.0736

           Crow   416676   1 (8)
	           Crow 0.7789
	            arz 0.5492
	              a 0.2388
	           from 0.2388
	           </S> 0.1687
	            was 0.1687
	              , 0.1687
	             is 0.0736

          pairs   416681   2 (8)
	           part 0.7789
	              a 0.5492
	          pairs 0.5492
	          parva 0.5492
	             is 0.3804
	              . 0.1687
	              , 0.0736
	           </S> 0.0736

        figured   416726   1 (8)
	        figured 0.7789
	              a 0.5492
	          found 0.2236
	            are 0.1687
	             is 0.1687
	           </S> 0.1687
	              , 0.0942
	              . 0.0736

          figs.   416748   5 (7)
	              a 0.5492
	           </S> 0.5492
	              ( 0.5492
	            and 0.5492
	           figs 0.5178
	          first 0.2388
	            the 0.0736

            233   416754 inf (8)
	              , 0.7789
	             23 0.7789
	          plate 0.5492
	            the 0.5492
	              a 0.5492
	             us 0.5492
	           </S> 0.1687
	              1 0.0736

           Farn   416784   2 (9)
	            For 0.7789
	         seller 0.5492
	              a 0.5492
	           Farn 0.5492
	            arz 0.5492
	              , 0.2388
	           Bush 0.1687
	           </S> 0.1687
	       Chairman 0.0736

             's   416788   1 (5)
	             's 0.7789
	             is 0.7789
	             us 0.5492
	              , 0.1687
	           </S> 0.0736

            236   416807 inf (7)
	       shipping 0.5492
	             us 0.5178
	              2 0.2388
	              , 0.1687
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

        Frohawk   416828   1 (12)
	          other 0.5492
	        program 0.5492
	             A. 0.5492
	              . 0.5492
	          world 0.5492
	              a 0.5492
	       Basefsky 0.5492
	        Frohawk 0.5492
	              , 0.2388
	           Bush 0.1687
	           </S> 0.1687
	       Chairman 0.0736

             my   416840   1 (5)
	             my 0.5492
	              , 0.5492
	             us 0.5492
	              a 0.5492
	           </S> 0.0736

 characteristic   416876   4 (11)
	          lucky 0.5492
	        warrant 0.5492
	          large 0.5492
	 characteristic 0.5178
	              , 0.1687
	             is 0.1687
	            not 0.1687
	        contact 0.1687
	              a 0.0942
	            the 0.0736
	           </S> 0.0736

   representing   416910   1 (10)
	   representing 0.7789
	             us 0.5492
	           here 0.5492
	      different 0.5492
	             to 0.2388
	           </S> 0.2388
	              , 0.1687
	              a 0.1687
	             it 0.0942
	            the 0.0736

            but   417255   1 (6)
	              a 0.5492
	              , 0.5492
	            but 0.5492
	             us 0.5492
	              } 0.2236
	           </S> 0.0736

       mollusca   417327   1 (9)
	       mollusca 0.7789
	          music 0.5492
	             us 0.5492
	              , 0.2388
	             it 0.2388
	         Monday 0.2388
	           </S> 0.2388
	              a 0.1687
	            the 0.0736

       Sheppard   417411   1 (8)
	       Sheppard 0.5492
	              a 0.5492
	       Software 0.5492
	       national 0.5492
	              , 0.5178
	             A. 0.5178
	          <UNK> 0.0942
	           </S> 0.0736

        Whitear   417424 inf (13)
	         Whiter 0.7789
	        vMentor 0.5492
	      Whitetara 0.5492
	        Whitean 0.5492
	           pans 0.5492
	          woman 0.5492
	             us 0.5492
	           year 0.5492
	            was 0.2388
	              , 0.1687
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

              )   417431   2 (8)
	              . 0.7789
	              ) 0.5492
	            the 0.5492
	      submitted 0.5492
	             us 0.5492
	              , 0.1687
	            and 0.0736
	           </S> 0.0736

          stale   417511   1 (7)
	              a 0.5492
	              s 0.5492
	          state 0.5492
	              , 0.5492
	          stale 0.5492
	              } 0.2236
	           </S> 0.0736

           fish   417517   3 (6)
	           find 0.5492
	            cia 0.5492
	           fish 0.5178
	           </S> 0.2388
	              , 0.0942
	              . 0.0736

        carrion   417548   1 (8)
	        carrion 0.7789
	            one 0.2388
	            can 0.2388
	           most 0.2388
	              , 0.1687
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

       devoured   417573   1 (8)
	       devoured 0.7789
	          items 0.5492
	      available 0.1687
	       required 0.1687
	              a 0.1687
	              , 0.1687
	           </S> 0.1687
	            not 0.0736

      greedil}'   417582   3 (10)
	             us 0.7789
	             to 0.7789
	       greedily 0.5492
	          great 0.5492
	      available 0.5492
	         winner 0.5492
	           </S> 0.5178
	              a 0.5178
	              , 0.2388
	             by 0.0736

              ,   417591   1 (4)
	           </S> 0.5492
	            the 0.5492
	             us 0.5492
	              , 0.5492

             as   417593   1 (8)
	            and 0.5492
	              I 0.5492
	             as 0.5492
	           very 0.5492
	          works 0.5492
	              " 0.5492
	             us 0.5178
	            the 0.0736

            lie   417652 inf (10)
	            lie 0.7789
	            cia 0.5492
	              a 0.5492
	           like 0.5178
	             it 0.5178
	          there 0.5017
	             of 0.1687
	           </S> 0.1687
	              , 0.0736
	              . 0.0736

         weakly   417729   1 (10)
	         weakly 0.7789
	              - 0.5492
	             us 0.5492
	          short 0.5492
	           well 0.5178
	              . 0.2388
	              , 0.2388
	           </S> 0.2388
	              a 0.1687
	             as 0.0736

           half   417736   2 (11)
	           have 0.7789
	           hill 0.5492
	           half 0.5492
	          shall 0.5492
	              s 0.5492
	              a 0.5178
	            non 0.5178
	            the 0.3804
	              , 0.1687
	           </S> 0.1687
	        similar 0.0736

              -   417740   3 (6)
	             us 0.7789
	           </S> 0.2388
	              - 0.1687
	              , 0.1687
	            the 0.1687
	             of 0.0736

            Mr.   417792   3 (8)
	             My 0.7789
	              , 0.7789
	             Mr 0.5492
	            Mrs 0.5492
	              a 0.5492
	            arz 0.5492
	              " 0.2388
	           </S> 0.0736

             V.   417799 inf (9)
	             A. 0.5492
	             VA 0.5492
	       Flanagan 0.5492
	             of 0.5178
	              I 0.5178
	              . 0.2388
	             .. 0.1687
	           </S> 0.0736
	              , 0.0736

          Aplin   417802   2 (8)
	          April 0.7789
	        ROBERTS 0.5492
	          Aplin 0.5492
	          Aedon 0.5492
	              I 0.5178
	          <UNK> 0.1687
	              , 0.0736
	           </S> 0.0736

      Zoologist   417810   1 (8)
	      Zoologist 0.7789
	              s 0.5492
	          could 0.5492
	              a 0.2388
	              , 0.1687
	              ) 0.1687
	          <UNK> 0.1687
	           </S> 0.0736

              "   417820   1 (7)
	              , 0.5492
	           </S> 0.5492
	              § 0.5492
	              " 0.5492
	          <UNK> 0.5492
	             us 0.5178
	            the 0.0736

         bridle   417914   1 (9)
	            ... 0.5492
	             of 0.5492
	          Price 0.5492
	         bridle 0.5492
	              a 0.5492
	           fish 0.5178
	           </S> 0.2388
	              , 0.1687
	        railway 0.0736

      .standing   417926   1 (6)
	       standing 0.7789
	       training 0.5492
	              a 0.5178
	           </S> 0.1687
	              - 0.1687
	              , 0.0736

           near   417936   1 (7)
	             of 0.5492
	            new 0.5492
	              , 0.5492
	           near 0.5492
	              a 0.5492
	           </S> 0.5492
	            arz 0.5492

    Clattercutt   417955 inf (8)
	              , 0.7789
	          water 0.7789
	             us 0.7789
	     Clattercot 0.5492
	    Clattercote 0.5492
	           </S> 0.5178
	              a 0.5017
	            the 0.0736

      Reservoir   417967   1 (8)
	      Reservoir 0.5492
	           </S> 0.5492
	           room 0.5492
	              , 0.5492
	       research 0.5492
	              . 0.5492
	            and 0.5492
	              a 0.5492

            has   417977   2 (7)
	             us 0.5492
	            has 0.5178
	              A 0.5178
	           Dogs 0.1687
	              , 0.1687
	              . 0.1687
	           </S> 0.0736

        Carrion   418032   1 (10)
	        Carrion 0.7789
	            non 0.5492
	          minor 0.5492
	              3 0.2388
	        service 0.2388
	            two 0.2388
	              , 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

              -   418039   3 (6)
	            the 0.7789
	             us 0.5492
	              . 0.5178
	              - 0.5178
	              , 0.1687
	           </S> 0.0736

          Crows   418040   1 (8)
	          Crows 0.7789
	              s 0.5492
	              . 0.2388
	           from 0.2388
	             up 0.1687
	             to 0.1687
	              a 0.1687
	           </S> 0.0736

            One   418111   1 (7)
	              , 0.7789
	            One 0.7789
	             us 0.5492
	              a 0.5492
	            one 0.5492
	              " 0.2388
	           </S> 0.0736

          toads   418205   1 (10)
	          toads 0.7789
	              a 0.5492
	          torax 0.5492
	           that 0.5178
	              . 0.2388
	              , 0.2388
	          books 0.2388
	        reasons 0.1687
	           </S> 0.1687
	          years 0.0736

         partly   418233   1 (9)
	         partly 0.7789
	          parva 0.5492
	              a 0.5017
	           part 0.5017
	           </S> 0.2388
	              , 0.1687
	              . 0.1687
	             's 0.1687
	             of 0.0736

        fledged   418240   1 (8)
	              s 0.5492
	        fledged 0.5492
	           free 0.5178
	              , 0.2388
	           </S> 0.2388
	              a 0.2388
	            the 0.2388
	        because 0.0736

       nestling   418248   1 (7)
	            the 0.5492
	              a 0.5492
	       nestling 0.5492
	        Listing 0.5492
	           Unix 0.5178
	           </S> 0.1687
	              , 0.0736

          finch   418257   2 (9)
	              a 0.7789
	         kernel 0.5492
	          finch 0.5492
	          minor 0.5492
	           find 0.5492
	              , 0.5178
	           </S> 0.3804
	         period 0.2388
	             in 0.0736

           also   418264   1 (7)
	           </S> 0.5492
	           also 0.5492
	           alba 0.5492
	              , 0.5492
	           with 0.1687
	           from 0.1687
	            the 0.0736

      Partridge   418328   1 (9)
	      Partridge 0.7789
	          Flora 0.5492
	          Cover 0.5492
	       Services 0.2388
	              , 0.1687
	           </S> 0.1687
	              a 0.1687
	           more 0.1687
	            the 0.0736

         showed   418365   1 (8)
	         showed 0.7789
	         should 0.5324
	           mind 0.2388
	              , 0.2388
	        writing 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

          perch   418402   2 (10)
	           part 0.7789
	       possible 0.5492
	        kitchen 0.5492
	          perch 0.5492
	          parva 0.5492
	           </S> 0.5178
	              a 0.5178
	              , 0.5017
	              . 0.5017
	             by 0.0736

           wing   418425   1 (11)
	          minor 0.5492
	           wing 0.5492
	              a 0.5178
	          signs 0.5178
	           sign 0.5178
	          <UNK> 0.5178
	              - 0.5017
	           with 0.3804
	           </S> 0.2388
	              , 0.1687
	             of 0.0736

      hurriedly   418485   1 (8)
	      hurriedly 0.7789
	       provided 0.5492
	           </S> 0.1687
	           have 0.1687
	           been 0.1687
	              , 0.1687
	              a 0.1687
	             be 0.0736

         croaks   418547   1 (8)
	         croaks 0.7789
	          Books 0.5492
	             he 0.5492
	              a 0.5178
	           </S> 0.2388
	          cries 0.2388
	              . 0.0942
	              , 0.0736

      expressed   418554   2 (7)
	              a 0.7789
	       expected 0.5492
	      expressed 0.5492
	           </S> 0.2388
	            and 0.2388
	              , 0.1687
	              . 0.0736

     banqueting   418603   1 (7)
	     banqueting 0.7789
	        January 0.5492
	              a 0.5492
	      residence 0.5492
	              , 0.2388
	           </S> 0.1687
	            own 0.0736

          ample   418693   1 (8)
	          ample 0.7789
	              I 0.5492
	            are 0.5178
	              , 0.2388
	           </S> 0.2388
	          other 0.2388
	              a 0.1687
	             as 0.0736

           Only   418732   1 (8)
	              , 0.7789
	           Only 0.7789
	              a 0.5492
	           only 0.5492
	           sala 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

          Crows   418788   1 (8)
	          Crows 0.7789
	              a 0.5492
	         Corvus 0.5492
	           from 0.3804
	              , 0.1687
	           </S> 0.1687
	          years 0.1687
	              - 0.0736

    considering   418840   2 (9)
	         within 0.5492
	    considering 0.5178
	             by 0.2388
	              , 0.1687
	           </S> 0.1687
	              a 0.1687
	             in 0.1687
	           that 0.1687
	            the 0.0736

       wildfowl   418923   1 (8)
	       wildfowl 0.7789
	            DVD 0.5492
	           will 0.2388
	            you 0.1687
	              , 0.1687
	              a 0.0942
	           </S> 0.0736
	            the 0.0736

         j'oung   418947   6 (12)
	          Young 0.7789
	         jugong 0.5492
	         jagung 0.5492
	              , 0.5492
	           jung 0.5492
	          young 0.5017
	        posters 0.2388
	      customers 0.2388
	        website 0.2388
	           </S> 0.1687
	          lives 0.1687
	            own 0.0736

        Carrion   419033   1 (9)
	        Carrion 0.7789
	            sub 0.5492
	              , 0.5492
	              A 0.5492
	            non 0.5492
	           same 0.1687
	           City 0.1687
	            two 0.1687
	           </S> 0.0736

   considerable   419114   1 (7)
	   considerable 0.7789
	              , 0.5492
	        General 0.5492
	              . 0.2388
	              a 0.2388
	            The 0.1687
	           </S> 0.0736

        numbers   419129   6 (10)
	              a 0.5492
	           will 0.5492
	        further 0.5492
	            you 0.5492
	              : 0.5492
	        numbers 0.5017
	         number 0.1687
	           </S> 0.1687
	              , 0.1687
	         amount 0.0736

         arrive   419137   1 (9)
	         arrive 0.7789
	          based 0.5492
	          above 0.5178
	         listed 0.5178
	              I 0.5178
	           </S> 0.1687
	              , 0.1687
	            are 0.1687
	             of 0.0736

        Seebohm   419178   3 (6)
	              , 0.7789
	            See 0.7789
	        Seebohm 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

             's   419185   4 (6)
	             is 0.7789
	             us 0.5492
	              a 0.5492
	             's 0.5017
	           </S> 0.0736
	              , 0.0736

        Bonhote   419344 inf (14)
	       Bonhomme 0.7789
	           list 0.5492
	              a 0.5492
	            not 0.5492
	         nonhot 0.5492
	          world 0.5492
	             to 0.5492
	       nonhotel 0.5492
	        Benhote 0.5492
	              , 0.2388
	             J. 0.2388
	           </S> 0.1687
	           Bush 0.1687
	       Chairman 0.0736

             's   419351   1 (6)
	             's 0.7789
	             is 0.5492
	             us 0.5492
	              a 0.5492
	           </S> 0.2388
	              , 0.0736

   communicated   419366   1 (7)
	           </S> 0.5492
	              a 0.5492
	            and 0.5492
	            can 0.5492
	   communicated 0.5492
	             it 0.1687
	            the 0.0736

       November   419379   1 (6)
	       November 0.5492
	           over 0.5324
	              a 0.5324
	           </S> 0.5178
	              , 0.5017
	             to 0.0736

           1896   419393 inf (11)
	           said 0.7789
	         writes 0.5492
	           1986 0.5492
	              s 0.5492
	              , 0.5492
	           1996 0.5492
	          after 0.5492
	           2005 0.5492
	           </S> 0.5492
	              a 0.5492
	            the 0.0736

        Carrion   419418   1 (8)
	        Carrion 0.7789
	        service 0.5492
	          White 0.5492
	            non 0.2388
	              , 0.1687
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

              -   419425   4 (7)
	            the 0.7789
	             us 0.5492
	       Counting 0.5492
	              . 0.5178
	              - 0.5178
	              , 0.1687
	           </S> 0.0736

          Crows   419426   1 (10)
	          Crows 0.7789
	             is 0.5492
	           site 0.5492
	              s 0.5492
	           they 0.5492
	              . 0.2388
	           from 0.2388
	             to 0.1687
	              a 0.1687
	           </S> 0.0736

            the   419461   1 (5)
	             us 0.5492
	            the 0.5492
	              , 0.5492
	              } 0.2236
	           </S> 0.0736

           when   419477   1 (7)
	              a 0.5178
	           when 0.5178
	             in 0.2388
	              - 0.1687
	           </S> 0.1687
	              , 0.1687
	            flu 0.0736

        actions   419562   1 (7)
	        actions 0.7789
	              I 0.5492
	        against 0.5492
	            for 0.2388
	              , 0.1687
	           </S> 0.1687
	             to 0.0736

          moves   419593   1 (10)
	          moves 0.7789
	             of 0.5492
	              . 0.5492
	          Pales 0.5492
	              , 0.5178
	           </S> 0.2388
	            had 0.2388
	           more 0.1687
	             be 0.0736
	              a 0.0736

           bird   419625   1 (11)
	            cia 0.7789
	           bird 0.7789
	              I 0.5492
	             of 0.5492
	         attack 0.5492
	             by 0.5178
	              " 0.2388
	              , 0.1687
	             is 0.1687
	           </S> 0.1687
	         Soviet 0.0736

           Grey   419631   3 (10)
	         Sheryl 0.5492
	           ICTY 0.5492
	           Grey 0.5178
	              - 0.2388
	           free 0.2236
	              a 0.1687
	           </S> 0.1687
	              s 0.1687
	             or 0.1687
	          <UNK> 0.0736

           Crow   419636   1 (8)
	           Crow 0.7789
	              a 0.5492
	          Suede 0.5492
	            arz 0.5492
	           from 0.5178
	              ) 0.1687
	              , 0.1687
	           </S> 0.0736

         aviary   419722   1 (9)
	         aviary 0.7789
	            are 0.5492
	              I 0.5492
	             to 0.2236
	             of 0.1687
	           </S> 0.1687
	          world 0.1687
	              , 0.1687
	             or 0.0736

Familx-C0K]'I1K-E   419777 inf (8)
	           will 0.7789
	             -- 0.7789
	              a 0.7789
	         normal 0.5492
	              - 0.5178
	              ) 0.5178
	              , 0.2388
	           </S> 0.0736

              .   419794   1 (6)
	             us 0.5492
	            the 0.5492
	           </S> 0.5492
	              " 0.5492
	              , 0.5492
	              . 0.5492

        Collins   419815   2 (8)
	              , 0.7789
	              a 0.5492
	        College 0.5492
	         Corvus 0.5492
	        Collins 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

          comix   419823   2 (7)
	           come 0.7789
	              a 0.5492
	          comix 0.5492
	     Publishers 0.5178
	         Street 0.2388
	           </S> 0.1687
	              , 0.0736

           LiNN   419830 inf (13)
	           </S> 0.5492
	           List 0.5492
	            yes 0.5492
	              , 0.5492
	      Melbourne 0.5492
	            NiL 0.5492
	            cia 0.5492
	            LNN 0.5492
	              a 0.5492
	           LiNK 0.5492
	          beast 0.5492
	             pp 0.2388
	            the 0.0736

              .   419834   1 (6)
	            the 0.5492
	           </S> 0.5492
	              . 0.5492
	              , 0.5492
	             us 0.5492
	         stoich 0.5492

              "   419837 inf (6)
	              - 0.7789
	              , 0.7789
	            the 0.7789
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

          ^OUND   419841 inf (10)
	           YOUR 0.7789
	          COUNT 0.7789
	            UND 0.7114
	              a 0.5492
	            OUN 0.5492
	        popular 0.5492
	           UODN 0.5492
	              " 0.2388
	              , 0.1687
	           </S> 0.0736

     throughout   419847   1 (5)
	              , 0.5492
	           </S> 0.5492
	     throughout 0.5492
	              s 0.5492
	              a 0.5492

         Europe   419858   3 (6)
	         corone 0.5492
	              a 0.5017
	         Europe 0.2388
	           </S> 0.2388
	              , 0.2388
	            the 0.0736

           loug   419879 inf (14)
	           loud 0.7789
	           lava 0.7789
	            lou 0.7789
	           logu 0.5492
	          lough 0.5492
	          world 0.5492
	        country 0.5492
	              , 0.2388
	             it 0.1687
	           your 0.1687
	              a 0.1687
	           </S> 0.1687
	              . 0.1687
	            the 0.0736

              .   419883   1 (6)
	            the 0.5492
	              . 0.5492
	              , 0.5492
	             us 0.5492
	           </S> 0.5178
	          <UNK> 0.0736

            10°   419885 inf (8)
	            the 0.7789
	      ChangeLog 0.7789
	              , 0.7789
	              I 0.7789
	              1 0.5492
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

              ,   419888   1 (5)
	              , 0.5492
	      configure 0.5492
	             us 0.5492
	            the 0.5492
	           </S> 0.5492

            and   419890   2 (7)
	           tako 0.7789
	              s 0.5492
	            and 0.5492
	           </S> 0.5492
	              , 0.5492
	        drepper 0.5492
	            the 0.0736

             iu   419894   2 (6)
	             iu 0.7789
	              , 0.1687
	           </S> 0.1687
	             in 0.1687
	              a 0.1687
	            the 0.0736

           Asia   419897   3 (9)
	              s 0.7789
	             it 0.7789
	           Asia 0.5492
	             As 0.5492
	              a 0.5324
	              . 0.5178
	              , 0.2388
	              - 0.1687
	           </S> 0.0736

        extends   419902   1 (6)
	        extends 0.7789
	        extensa 0.5492
	         extent 0.5492
	              , 0.1687
	              - 0.1687
	           </S> 0.0736

              I   419910 inf (10)
	             us 0.7789
	             In 0.7789
	              : 0.5492
	             II 0.5492
	       students 0.5492
	             MI 0.5492
	              , 0.2388
	           </S> 0.2388
	             to 0.0736
	            the 0.0736

              '   419912 inf (7)
	             us 0.7789
	         headed 0.5492
	            the 0.5178
	           live 0.2388
	           </S> 0.1687
	              , 0.1687
	             'm 0.0736

      Turkestan   419923   1 (10)
	      Turkestan 0.7789
	        Baghdad 0.5492
	          great 0.5492
	             it 0.2388
	             us 0.2388
	              , 0.2388
	           them 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

      Palestine   419997   1 (10)
	      Palestine 0.7789
	         online 0.5492
	          Laden 0.5492
	             us 0.5178
	             it 0.2388
	           </S> 0.2388
	              . 0.2388
	              , 0.2388
	              a 0.1687
	            the 0.0736

       Examples   420019   1 (8)
	              , 0.7789
	       Examples 0.7789
	              a 0.5492
	             us 0.5492
	        example 0.5492
	      Treasures 0.5492
	              " 0.2388
	           </S> 0.0736

       replaced   420075   1 (9)
	             us 0.5492
	       replaced 0.5492
	              a 0.5492
	        related 0.5492
	       declined 0.5492
	           mare 0.5178
	              - 0.1687
	           </S> 0.0942
	              , 0.0736

     capcllauns   420125 inf (14)
	     cabillauds 0.5492
	        callans 0.5492
	      calculans 0.5492
	            the 0.5492
	        account 0.5492
	       capellas 0.5492
	       capelans 0.5492
	              a 0.5492
	     capillatus 0.5492
	             to 0.5178
	        elegans 0.2388
	          <UNK> 0.1687
	              , 0.1687
	           </S> 0.0736

              ;   420136   1 (5)
	           </S> 0.5492
	             us 0.5492
	            the 0.5492
	              ; 0.5492
	              , 0.5492

            but   420138   1 (6)
	            but 0.5492
	             by 0.5492
	             us 0.5492
	              ) 0.5178
	              } 0.2236
	           </S> 0.0736

       Siberian   420142   1 (7)
	       Siberian 0.7789
	          their 0.2388
	              a 0.1687
	              , 0.1687
	           </S> 0.1687
	            the 0.0942
	              I 0.0736

          birds   420151   1 (10)
	          birds 0.7789
	          first 0.7789
	              a 0.5492
	           they 0.5492
	            the 0.5492
	          Parus 0.5492
	              , 0.5017
	        Huskies 0.2388
	           </S> 0.2388
	          Husky 0.0736

          birds   420201   2 (10)
	          first 0.7789
	             of 0.5492
	            you 0.5492
	          Parus 0.5492
	          birds 0.5492
	              a 0.5492
	            rug 0.5178
	              , 0.1687
	           </S> 0.1687
	           Gulf 0.0736

              -   420249   3 (6)
	             us 0.5178
	             he 0.2388
	              , 0.1687
	            the 0.1687
	              - 0.1687
	           </S> 0.0736

     Sceboli??!   420251 inf (14)
	              a 0.7789
	          Click 0.7789
	              I 0.7789
	              " 0.7789
	            old 0.7789
	              , 0.5492
	        replied 0.5492
	  Subordination 0.5492
	             el 0.5492
	              s 0.5492
	           said 0.5492
	           side 0.5492
	          below 0.5492
	           </S> 0.0736

              .   420261   1 (7)
	              " 0.5492
	            the 0.5492
	              . 0.5492
	             us 0.5492
	           </S> 0.5492
	              , 0.5492
	              - 0.5492

             An   420264   1 (7)
	             An 0.7789
	              , 0.7789
	              I 0.7789
	             AM 0.5492
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

        England   420297   1 (7)
	        English 0.5492
	    programmers 0.5492
	        England 0.5492
	            try 0.2388
	             us 0.2388
	              a 0.1687
	            the 0.0736

         whilst   420379   1 (7)
	            dog 0.5492
	              , 0.5492
	              a 0.5492
	          while 0.5492
	         whilst 0.5492
	              } 0.2236
	           </S> 0.0736

     Throughout   420440 inf (8)
	              , 0.7789
	          There 0.7789
	     throughout 0.5492
	              a 0.5492
	     Throughput 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

  interbreeding   420529   1 (8)
	  interbreeding 0.7789
	              ( 0.5492
	              a 0.5492
	           </S> 0.5492
	            and 0.5492
	          there 0.1687
	            who 0.1687
	            the 0.0736

   occasionally   420543   2 (8)
	         freely 0.7789
	   occasionally 0.5492
	           only 0.5492
	              a 0.5492
	        closely 0.5492
	           </S> 0.2388
	              , 0.1687
	           with 0.0736

        Carrion   420565   1 (7)
	        Carrion 0.7789
	            non 0.5492
	              I 0.5492
	           same 0.1687
	              - 0.1687
	           City 0.1687
	           </S> 0.0736

       countr}^   420592   5 (8)
	              a 0.5492
	        countor 0.5492
	             of 0.5492
	          South 0.5492
	        country 0.5178
	              , 0.1687
	           </S> 0.1687
	         Soviet 0.0736

            and   420601   1 (6)
	              - 0.5492
	           </S> 0.5492
	              , 0.5492
	             of 0.5492
	            and 0.5492
	            arz 0.5492

         Hooded   420628   2 (8)
	          Hotel 0.7789
	              I 0.5492
	         Hooded 0.5492
	             DT 0.5492
	     homeowners 0.5492
	           </S> 0.1687
	              , 0.1687
	             of 0.0736

      remainder   420744   1 (5)
	              , 0.5492
	              a 0.5492
	      remainder 0.5492
	              } 0.2236
	           </S> 0.0736

        plumage   420757   1 (7)
	        plumage 0.7789
	         please 0.7789
	              , 0.2388
	             us 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

           ashy   420765   1 (9)
	            non 0.5492
	              I 0.5492
	           alba 0.5492
	           ashy 0.5492
	   professional 0.5492
	             as 0.5178
	           </S> 0.2388
	              . 0.0736
	              , 0.0736

       becoming   420855   1 (9)
	           </S> 0.5492
	              a 0.5492
	              ( 0.5492
	            and 0.5492
	       becoming 0.5492
	          being 0.5492
	            but 0.5492
	            was 0.1687
	            the 0.0736

           bill   420895   1 (7)
	           bill 0.5492
	              , 0.5492
	           will 0.5492
	            cia 0.5492
	              a 0.5492
	              } 0.2236
	           </S> 0.0736

           iris   420916   1 (8)
	             is 0.5492
	            and 0.5492
	              , 0.5492
	              a 0.5492
	           iris 0.5492
	             iu 0.5492
	              } 0.2236
	           </S> 0.0736

        browner   420971   1 (8)
	        browner 0.7789
	         before 0.2388
	              , 0.1687
	           also 0.1687
	           </S> 0.1687
	              a 0.1687
	            the 0.0942
	              I 0.0736

           bill   421015   4 (9)
	            cia 0.7114
	              , 0.5492
	              a 0.5492
	           bill 0.2388
	           will 0.2236
	          world 0.1687
	         system 0.1687
	           user 0.1687
	           </S> 0.0736

        broader   421035   1 (8)
	        broader 0.7789
	          order 0.5324
	           only 0.1687
	              a 0.1687
	              , 0.1687
	           </S> 0.1687
	            the 0.0942
	              I 0.0736

          lower   421082   1 (7)
	          lower 0.7789
	           long 0.7789
	              a 0.5492
	           </S> 0.2388
	              . 0.1687
	              , 0.1687
	           than 0.0736

        Hoodies   421174   2 (8)
	         Movies 0.7789
	              a 0.5492
	        Hoodies 0.5492
	         Donors 0.5492
	              . 0.5178
	              - 0.2388
	              , 0.1687
	           </S> 0.0736

     southwards   421182   2 (6)
	              T 0.7789
	         design 0.5492
	          South 0.5492
	     southwards 0.5492
	              , 0.1687
	           </S> 0.0736

     visitation   421254   1 (11)
	     visitation 0.7789
	     newsletter 0.5492
	     department 0.5492
	              a 0.5492
	        version 0.5492
	             to 0.5017
	              . 0.2388
	          basis 0.2388
	           </S> 0.1687
	            and 0.0736
	              , 0.0497

        Royston   421332   1 (8)
	        Royston 0.7789
	              , 0.5492
	              a 0.5492
	         Legend 0.5492
	            New 0.1687
	              " 0.1687
	         system 0.1687
	           </S> 0.0736

           Crow   421355   1 (13)
	    Camaroptera 0.5492
	           Crow 0.5492
	          Storm 0.5492
	            arz 0.5492
	             is 0.5492
	        sources 0.5492
	           from 0.5324
	              a 0.5178
	              , 0.3804
	           </S> 0.2388
	              - 0.2236
	             up 0.1687
	             by 0.0736

       arriving   421431   1 (10)
	       arriving 0.5492
	            and 0.5492
	    information 0.5492
	              I 0.5492
	            are 0.5492
	              " 0.5492
	           </S> 0.5492
	            who 0.1687
	             or 0.1687
	            the 0.0736

           They   421562   1 (6)
	              , 0.7789
	           They 0.7789
	            The 0.7114
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

       frequent   421567   1 (6)
	       frequent 0.7789
	       frequens 0.5492
	        request 0.5324
	              , 0.5017
	           </S> 0.2388
	            are 0.0736

         broads   421598   1 (10)
	         broads 0.7789
	              , 0.5492
	          story 0.5492
	          major 0.5492
	            hip 0.5492
	          broad 0.5017
	           same 0.1687
	           time 0.1687
	           book 0.1687
	           </S> 0.0736

        Norfolk   421831   2 (9)
	       ensuring 0.5492
	        Norfolk 0.5178
	             us 0.2388
	              , 0.2388
	          those 0.2388
	           more 0.1687
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

         leaves   421869   1 (8)
	         leaves 0.7789
	         around 0.5492
	           lava 0.5492
	          level 0.5178
	           </S> 0.1687
	              , 0.0942
	              . 0.0736
	             of 0.0736

             iu   421892   3 (6)
	              a 0.5492
	             iu 0.5492
	           </S> 0.1687
	             in 0.1687
	              , 0.1687
	              . 0.0736

       probably   421955   1 (6)
	       probably 0.5492
	        program 0.5492
	              a 0.5324
	              - 0.3804
	           </S> 0.1687
	              , 0.0736

        pr\-ing   422066   1 (13)
	         prying 0.7789
	           ping 0.7789
	           prin 0.7789
	              , 0.5492
	         piring 0.5492
	          point 0.5492
	        enemies 0.5492
	        mailing 0.5492
	        pricing 0.5178
	              a 0.1687
	        display 0.1687
	           </S> 0.1687
	            own 0.0736

          e\'es   422074   1 (11)
	              . 0.5492
	           eses 0.5492
	           </S> 0.5492
	           eyes 0.5492
	           even 0.5492
	            ees 0.5492
	          esses 0.5492
	              a 0.5492
	              , 0.5492
	             es 0.5492
	          Pales 0.5492

            and   422080   1 (3)
	            and 0.5492
	            the 0.5492
	            arz 0.5492

    carnivorons   422084   1 (10)
	    carnivorous 0.7789
	    carnivorans 0.7789
	      carnivoro 0.5492
	     carnivoros 0.5492
	  materialistic 0.5492
	            can 0.2388
	           </S> 0.1687
	              , 0.1687
	              a 0.1687
	            the 0.0736

   propensities   422096   1 (8)
	           </S> 0.5492
	              , 0.5492
	           more 0.5492
	             us 0.5492
	        process 0.5492
	   propensities 0.5492
	              a 0.5492
	              . 0.5492

       liowever   422121  10 (12)
	         liever 0.7789
	        lowlier 0.7789
	           </S> 0.5492
	        However 0.5492
	          major 0.5492
	      therefore 0.5492
	              , 0.5492
	              a 0.5492
	           like 0.2388
	        however 0.1687
	             of 0.1687
	            the 0.0736

              j   422232 inf (9)
	             us 0.7789
	           been 0.5492
	             ja 0.5492
	             dj 0.5492
	            the 0.5178
	           </S> 0.2388
	              . 0.1687
	              , 0.1687
	           fees 0.0736

              -   422233   5 (8)
	             us 0.7789
	       behaving 0.5492
	              . 0.5178
	            the 0.5178
	              - 0.2388
	              = 0.1687
	              , 0.1687
	           </S> 0.0736

           ears   422234   4 (10)
	           side 0.5492
	              s 0.5492
	        sending 0.5492
	           ears 0.5324
	          years 0.5178
	              . 0.2388
	              a 0.1687
	             up 0.1687
	             to 0.1687
	           </S> 0.0736

            vSt   422287   4 (14)
	            vat 0.7789
	             vt 0.7789
	            Svt 0.5492
	             Eq 0.5178
	             to 0.5178
	             St 0.5178
	             me 0.2388
	              , 0.2388
	           CliC 0.2388
	             us 0.2388
	           Svet 0.2174
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

              .   422290   1 (7)
	             us 0.5492
	            the 0.5492
	           </S> 0.5492
	              . 0.5492
	              , 0.5492
	            St. 0.5492
	              - 0.0736

           John   422292   1 (6)
	           John 0.7789
	              I 0.7789
	              , 0.7789
	             It 0.7789
	              " 0.2388
	           </S> 0.0736

       Mora}',"   422329 inf (9)
	             or 0.7789
	              , 0.7789
	       Colorado 0.5492
	         Modern 0.5492
	          March 0.5492
	             us 0.5492
	           </S> 0.5178
	              a 0.2388
	            the 0.0736

             p.   422338 inf (7)
	             pm 0.5492
	             us 0.5492
	              a 0.5492
	             up 0.5492
	              , 0.5492
	              . 0.5492
	           </S> 0.5492

    newlj'-boru   422359 inf (12)
	             or 0.7789
	          about 0.7789
	            now 0.5492
	          never 0.5492
	             no 0.5492
	      wonderful 0.5492
	              s 0.5492
	            you 0.5178
	              a 0.2388
	             me 0.2388
	              , 0.1687
	           </S> 0.0736

          lambs   422371   1 (7)
	              a 0.5492
	           </S> 0.5492
	             to 0.5492
	           last 0.5492
	              , 0.5492
	          lambs 0.5492
	           lava 0.5492

             It   422450   1 (6)
	              , 0.7789
	             It 0.7789
	             us 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

         )-oung   422462   5 (9)
	          found 0.7789
	            oun 0.7789
	          goung 0.5492
	             us 0.5492
	          young 0.5178
	              , 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

         grouse   422469   1 (7)
	         grouse 0.5492
	              , 0.5492
	         groups 0.5492
	              a 0.5492
	           site 0.5492
	           </S> 0.5492
	        animals 0.5492

          vcr}'   422509   4 (9)
	             vc 0.7789
	            crv 0.5492
	            vcs 0.5492
	            not 0.1687
	           </S> 0.1687
	           very 0.1687
	            the 0.1687
	              , 0.1687
	              a 0.0736

    destructive   422515   1 (7)
	              , 0.5492
	          going 0.5492
	    destructive 0.5492
	       designed 0.5492
	             to 0.5492
	           </S> 0.5492
	              a 0.5492

             In   422549   1 (6)
	             In 0.7789
	              , 0.7789
	             us 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

        certain   422552   2 (7)
	        Certhia 0.5492
	        certain 0.5178
	              , 0.3804
	              / 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

        feeding   422560   1 (8)
	        feeding 0.7789
	          being 0.7789
	        natural 0.5492
	              a 0.5492
	              , 0.1687
	           </S> 0.1687
	          cases 0.1687
	           that 0.0736

             No   422667   1 (7)
	             No 0.7789
	              , 0.7789
	              s 0.5492
	              a 0.5492
	              ) 0.2388
	              " 0.2388
	           </S> 0.0736

           au}'   422708 inf (12)
	           alba 0.7789
	              I 0.5492
	            aua 0.5492
	             au 0.5324
	            and 0.5178
	           auto 0.5178
	          other 0.1687
	              , 0.1687
	            you 0.1687
	              a 0.0942
	            the 0.0736
	           </S> 0.0736

           bird   422713   1 (8)
	              . 0.5492
	           </S> 0.5492
	              , 0.5492
	             to 0.5492
	            cia 0.5492
	           bird 0.5492
	              a 0.5492
	             by 0.5492

          leave   422718   1 (11)
	          level 0.7789
	          leave 0.7789
	         builds 0.5492
	          flaps 0.5492
	           lava 0.5492
	              a 0.5178
	             in 0.2388
	             to 0.2388
	           </S> 0.1687
	              , 0.1687
	            flu 0.0736

         Hooded   422743   1 (9)
	         Hooded 0.7789
	              . 0.5492
	       intended 0.5492
	         Holder 0.5178
	          Hotel 0.5017
	           same 0.1687
	          other 0.1687
	            way 0.1687
	           </S> 0.0736

          often   422814   1 (7)
	          other 0.7789
	          often 0.7789
	              a 0.5178
	              , 0.2388
	              . 0.1687
	           </S> 0.1687
	             of 0.0736

             iu   422847   4 (6)
	             iu 0.5492
	              a 0.5178
	             of 0.2388
	           </S> 0.1687
	             in 0.1687
	              , 0.0736

            All   422874   1 (6)
	            All 0.7789
	              , 0.7789
	             us 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

           seem   422884   4 (8)
	            see 0.7789
	       reserved 0.5492
	           sala 0.5492
	              a 0.5178
	           seem 0.5178
	            are 0.1687
	           </S> 0.1687
	              , 0.0736

        Peewits   422908   1 (8)
	    destination 0.5492
	        Peewits 0.5492
	           with 0.2388
	              , 0.1687
	              a 0.1687
	           </S> 0.1687
	              I 0.1687
	            the 0.0736

          Gulls   422917   2 (10)
	          rufus 0.7789
	              x 0.5492
	              ( 0.5492
	            and 0.5492
	           </S> 0.5492
	      therefore 0.5492
	              a 0.5492
	          Gulls 0.5492
	           will 0.2388
	            the 0.0736

      Redshanks   422924   1 (9)
	              x 0.5492
	      workshops 0.5492
	              a 0.5492
	          Terns 0.5492
	              , 0.5492
	      therefore 0.5492
	      Redshanks 0.5492
	           that 0.1687
	            the 0.0736

           etc.   422935   8 (9)
	          <UNK> 0.5492
	      therefore 0.5492
	              , 0.5492
	            Jen 0.5492
	           Pica 0.5492
	           each 0.2388
	              i 0.2388
	           etc. 0.1687
	            the 0.0736

         attack   422941   1 (8)
	            and 0.5492
	           back 0.5492
	           </S> 0.5492
	              , 0.5492
	         attack 0.5492
	              I 0.5492
	            but 0.5492
	            the 0.0736

      furiously   422953   1 (7)
	      furiously 0.7789
	              a 0.5492
	      seriously 0.5178
	          major 0.3804
	              , 0.2388
	           </S> 0.1687
	             of 0.0736

           an\'   422963 inf (9)
	              I 0.7789
	             an 0.5492
	           anna 0.5492
	           alba 0.5492
	           </S> 0.5178
	            the 0.5178
	            and 0.2388
	              , 0.1687
	              . 0.0736

           Crow   422968   1 (6)
	              , 0.5492
	           from 0.5492
	              a 0.5492
	           </S> 0.5492
	           Crow 0.5492
	            arz 0.5492

          which   422973   1 (6)
	          which 0.7789
	          white 0.7789
	           Pica 0.5492
	          South 0.5178
	              , 0.0736
	           </S> 0.0736

        hunting   422988   1 (9)
	        hunting 0.7789
	         during 0.5178
	             us 0.2388
	             as 0.2388
	              . 0.1687
	              , 0.1687
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

      destro3-s   423066   5 (11)
	         destro 0.7789
	          minor 0.5492
	          geese 0.5492
	      destrosso 0.5492
	       destroys 0.5178
	           from 0.2388
	           </S> 0.1687
	           more 0.1687
	              a 0.1687
	              , 0.1687
	            the 0.0736

          great   423076   1 (8)
	           </S> 0.5492
	       security 0.5492
	              . 0.5492
	              , 0.5492
	             us 0.5492
	              a 0.5492
	          phone 0.5492
	          great 0.5492

        osprc}'   423187   1 (9)
	         osprey 0.7789
	           both 0.2388
	            not 0.1687
	              , 0.1687
	      otherwise 0.1687
	          other 0.1687
	              a 0.0942
	            the 0.0736
	           </S> 0.0736

         happen   423216   1 (9)
	         happen 0.7789
	       guardian 0.5492
	              s 0.5492
	              a 0.5178
	            not 0.5178
	           have 0.2388
	            are 0.1687
	           </S> 0.1687
	              , 0.0736

         Redcar   423276   1 (9)
	         Redcar 0.7789
	           Read 0.7789
	    Underground 0.5492
	              , 0.2388
	             us 0.2388
	              a 0.1687
	              $ 0.1687
	           </S> 0.1687
	            the 0.0736

      Zoologist   423286   1 (8)
	      Zoologist 0.7789
	          could 0.5492
	              s 0.5492
	              a 0.2388
	              ) 0.1687
	              , 0.1687
	          <UNK> 0.1687
	           </S> 0.0736

              "   423296   1 (7)
	           </S> 0.5492
	              , 0.5492
	              § 0.5492
	              " 0.5492
	             us 0.5178
	            pub 0.5178
	            the 0.0736

        Hoodies   423344   1 (10)
	        Hoodies 0.7789
	   publications 0.5492
	           Jews 0.5492
	         photos 0.5492
	           good 0.5492
	              , 0.2388
	             us 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

        Messrs.   423390   1 (8)
	         Messrs 0.5492
	              , 0.5492
	              a 0.5492
	           2005 0.5492
	            and 0.5492
	         search 0.5492
	           </S> 0.5492
	            the 0.0736

             T.   423398   3 (7)
	              a 0.5492
	             To 0.5492
	             T. 0.5178
	              , 0.5178
	             A. 0.5017
	         Robert 0.2388
	           </S> 0.0736

        Pilling   423419   1 (8)
	           will 0.5492
	              a 0.5492
	             P. 0.5492
	           Last 0.5492
	        Pilling 0.5492
	              . 0.2388
	              , 0.0736
	           </S> 0.0736

        observe   423427   1 (8)
	       observed 0.5492
	             A. 0.5492
	        Updated 0.5492
	        observe 0.5492
	              a 0.5324
	        Subject 0.5178
	           </S> 0.1687
	              , 0.0736

        Hoodies   423443   1 (10)
	        Hoodies 0.7789
	        changes 0.5492
	              a 0.5492
	         people 0.5492
	              , 0.5492
	         stakes 0.5492
	           book 0.1687
	              " 0.1687
	           </S> 0.0736
	      following 0.0497

        largest   423476   1 (7)
	        largest 0.7789
	             us 0.5492
	          large 0.5017
	              , 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

          thick   423499   1 (9)
	          thick 0.7789
	          think 0.7789
	         chilly 0.5492
	      inclement 0.5492
	           Pica 0.5492
	              , 0.5178
	           </S> 0.2388
	              a 0.1687
	            the 0.0736

        Seebohm   423552   1 (6)
	        Seebohm 0.7789
	           </S> 0.5492
	           both 0.5492
	             us 0.2388
	              a 0.1687
	            the 0.0736

           this   423560   1 (6)
	           this 0.5492
	            the 0.5492
	            cia 0.5492
	              a 0.5492
	           </S> 0.0736
	              , 0.0736

            b}'   423582   1 (8)
	             by 0.7789
	             bb 0.5492
	             us 0.5492
	              a 0.5178
	           </S> 0.5017
	              , 0.5017
	            the 0.3804
	             to 0.0736

           da\-   423586   1 (9)
	              , 0.5492
	             da 0.5492
	            day 0.5492
	              a 0.5492
	            the 0.5492
	           </S> 0.5492
	            dad 0.5492
	          blogs 0.5492
	           lava 0.5492

              ,   423590 inf (3)
	             of 0.5492
	             us 0.5492
	            the 0.5492

            and   423592   1 (4)
	            and 0.5492
	            arz 0.5492
	           your 0.2388
	            the 0.0736

          Gatke   423596 inf (11)
	          Gatka 0.7789
	        Gataket 0.5492
	     warranties 0.5492
	           Gate 0.5178
	           make 0.2388
	            she 0.2388
	              , 0.1687
	           </S> 0.1687
	             he 0.1687
	              a 0.1687
	            the 0.0736

           says   423602   2 (9)
	           </S> 0.7789
	        include 0.5492
	              . 0.5492
	           said 0.5492
	           sala 0.5492
	           ASIN 0.5492
	           says 0.5492
	              a 0.5492
	              , 0.0736

      commences   423671   1 (6)
	      commences 0.7789
	              a 0.5492
	       comments 0.5492
	           </S> 0.1687
	             of 0.0736
	              , 0.0497

            the   423775   1 (5)
	            the 0.5492
	             us 0.5492
	              , 0.5492
	              } 0.2236
	           </S> 0.0736

     consisting   423825   1 (8)
	              ( 0.5492
	              a 0.5492
	            and 0.5492
	           </S> 0.5492
	     consisting 0.5492
	         online 0.5492
	            one 0.1687
	            the 0.0736

      continues   423893   2 (8)
	     trademarks 0.5492
	      continues 0.5178
	        contact 0.2388
	           </S> 0.1687
	              a 0.1687
	              , 0.1687
	           that 0.1687
	            the 0.0736

      scarcel}^   423988   1 (10)
	       scarcely 0.7789
	              a 0.5492
	           live 0.5492
	      scarselle 0.5492
	         result 0.5178
	              , 0.5178
	           </S> 0.5017
	         search 0.2236
	             be 0.0736
	            not 0.0497

         assume   424022   1 (9)
	       provided 0.5492
	         assume 0.5492
	              - 0.5492
	           </S> 0.5492
	              I 0.5492
	            and 0.5492
	           same 0.5178
	             so 0.1687
	            the 0.0736

     Heligoland   424113   1 (11)
	         people 0.5492
	        changes 0.5492
	             us 0.5492
	     Heligoland 0.5492
	           that 0.5178
	              a 0.5178
	        section 0.2388
	           </S> 0.2388
	              , 0.2388
	            the 0.1687
	              - 0.0736

     migrations   424255   1 (10)
	          think 0.5492
	           many 0.5492
	        options 0.5492
	     migrations 0.5492
	              ) 0.5492
	            was 0.5492
	              a 0.5178
	            set 0.5017
	           </S> 0.2388
	              , 0.0736

          eight   424346   2 (7)
	          right 0.7789
	          eight 0.5492
	       neighbor 0.5492
	              a 0.5178
	           </S> 0.1687
	              . 0.1687
	              , 0.0736

         extend   424442   1 (10)
	         extend 0.7789
	            Act 0.5492
	           city 0.5492
	           even 0.5324
	              ) 0.5017
	              a 0.5017
	           </S> 0.1687
	              . 0.1687
	              , 0.1687
	             of 0.0736

          while   424450   1 (6)
	              , 0.5492
	     moratorium 0.5492
	          while 0.5492
	              a 0.5492
	              } 0.2236
	           </S> 0.0736

simultaneous!}'   424481   1 (10)
	 simultaneously 0.7789
	         photos 0.5492
	            and 0.5492
	              " 0.5492
	   simultaneous 0.5492
	           </S> 0.5492
	              a 0.5492
	              , 0.5492
	         should 0.5492
	            the 0.0736

            and   424497   1 (6)
	              , 0.5492
	           </S> 0.5492
	             it 0.5492
	            the 0.5492
	            and 0.5492
	            arz 0.5492

    Bremerhaven   424554   1 (9)
	        America 0.5492
	    Bremerhaven 0.5492
	              , 0.2388
	       possible 0.1687
	            the 0.1687
	           </S> 0.1687
	           well 0.1687
	              I 0.1687
	              a 0.0736

             as   424567   1 (8)
	              ( 0.5492
	           </S> 0.5492
	             as 0.5492
	              I 0.5492
	            and 0.5492
	             us 0.5178
	          which 0.1687
	            the 0.0736

          plies   424618   1 (11)
	          plies 0.7789
	          place 0.7114
	              a 0.5492
	       features 0.5492
	          Pales 0.5492
	           like 0.5324
	            the 0.5178
	           </S> 0.1687
	              , 0.1687
	             to 0.1687
	              . 0.0736

             We   424666   1 (6)
	             We 0.7789
	              , 0.7789
	             us 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

      migration   424680   3 (11)
	              , 0.5492
	         screen 0.5492
	      migration 0.5178
	      migratory 0.5178
	           free 0.1687
	           wide 0.1687
	        million 0.1687
	          major 0.1687
	         single 0.1687
	            new 0.0736
	           </S> 0.0736

         column   424690   1 (9)
	          range 0.5492
	            res 0.5492
	         column 0.5492
	              a 0.5492
	          could 0.5178
	           path 0.2388
	           </S> 0.1687
	             of 0.0736
	              , 0.0497

           Herr   424753   2 (7)
	            arz 0.7789
	           Herr 0.7114
	           Help 0.5178
	              a 0.2388
	              ) 0.1687
	              , 0.1687
	           </S> 0.0736

          Gatke   424758 inf (10)
	          Gatka 0.5492
	           Gate 0.5492
	          Games 0.5492
	        Gataket 0.5492
	              a 0.5492
	           then 0.5492
	              " 0.5178
	             M. 0.5178
	           </S> 0.1687
	              , 0.0736

       proceeds   424764   2 (6)
	           </S> 0.7789
	             J. 0.5492
	       proceeds 0.5492
	          Ringe 0.5492
	              a 0.5492
	              , 0.0736

   nevertheless   424932   1 (6)
	              , 0.5492
	             us 0.5492
	   nevertheless 0.5492
	              a 0.5492
	          there 0.5492
	           </S> 0.0736

      important   424990   8 (10)
	            and 0.5492
	             as 0.5492
	              , 0.5492
	              a 0.5492
	           </S> 0.5492
	   respectively 0.5492
	              s 0.5492
	      important 0.5178
	           more 0.2388
	            the 0.0736

             as   425002   1 (6)
	             as 0.5492
	              , 0.5492
	             us 0.5492
	              I 0.5492
	              } 0.2236
	           </S> 0.0736

          Crows   425227   1 (11)
	          Crows 0.7789
	              a 0.5492
	         Corvus 0.5492
	       variable 0.5492
	           from 0.3804
	         people 0.1687
	         issues 0.1687
	              . 0.1687
	              , 0.1687
	           </S> 0.0942
	            are 0.0736

       econom_v   425240   5 (12)
	        econome 0.7789
	              , 0.5492
	         School 0.5492
	      oeconomus 0.5492
	       economic 0.2388
	        economy 0.2388
	            use 0.1687
	           case 0.1687
	            end 0.1687
	           same 0.1687
	          state 0.1687
	           </S> 0.0736

    Evcr\'where   425260   2 (8)
	              , 0.7789
	            and 0.5492
	          where 0.5492
	             us 0.5492
	     Everywhere 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

            the   425272   1 (4)
	             us 0.5492
	              , 0.5492
	            the 0.5492
	           </S> 0.5492

        creates   425296   1 (9)
	        creates 0.7789
	          after 0.5492
	              a 0.5178
	             of 0.1687
	           </S> 0.1687
	             in 0.1687
	            and 0.1687
	              , 0.0736
	              . 0.0497

      altliough   425421   2 (8)
	         though 0.7789
	              I 0.5492
	           </S> 0.5492
	       although 0.5492
	              , 0.5492
	           with 0.5178
	        through 0.2174
	            the 0.0736

          snuiU   425471 inf (11)
	       wildlife 0.5492
	          snuif 0.5492
	              a 0.5492
	          Unsui 0.5492
	           said 0.5178
	          major 0.2388
	           </S> 0.1687
	              , 0.1687
	        product 0.1687
	              . 0.1687
	           than 0.0736

        species   425477   1 (7)
	           </S> 0.5492
	        special 0.5492
	              , 0.5492
	              . 0.5492
	        species 0.5492
	              a 0.5492
	        suecica 0.5492

   nevertheless   425572   1 (7)
	             us 0.5492
	          these 0.5492
	              , 0.5492
	              a 0.5492
	   nevertheless 0.5492
	              } 0.2236
	           </S> 0.0736

            all   425585   2 (5)
	           alba 0.5492
	            all 0.5178
	           </S> 0.2388
	              I 0.2388
	              , 0.0736

         Ital}'   425654   5 (11)
	          Itala 0.7789
	           Ital 0.7789
	            use 0.5492
	             us 0.5492
	          Italy 0.5017
	           more 0.2388
	              , 0.2388
	           that 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

         during   425661   1 (7)
	           than 0.5492
	             to 0.5492
	              a 0.5492
	           </S> 0.5492
	         during 0.5492
	              , 0.5492
	         dubius 0.5492

      migration   425681   4 (10)
	           year 0.5492
	             us 0.5492
	          cycle 0.5492
	      migration 0.5178
	    information 0.2388
	        package 0.2388
	           </S> 0.1687
	              , 0.1687
	              a 0.1687
	            the 0.0736

      scarcel}'   425705   1 (8)
	       scarcely 0.7789
	         should 0.5492
	      scarselle 0.5492
	              a 0.5178
	              , 0.5178
	           </S> 0.2236
	           have 0.1687
	             be 0.0736

          equal   425715   1 (9)
	           that 0.5492
	             to 0.5492
	          equal 0.5492
	              a 0.5492
	           </S> 0.5492
	              , 0.5492
	             in 0.5492
	           eBay 0.5492
	             us 0.5492

      destroyed   425756   2 (8)
	              a 0.7789
	             us 0.5492
	      destroyed 0.5492
	        through 0.5492
	           </S> 0.2388
	             of 0.2388
	              , 0.1687
	              . 0.0736

            b}-   425766   7 (7)
	             us 0.5178
	              - 0.5178
	              a 0.2388
	           </S> 0.2388
	              , 0.1687
	              . 0.0736
	             by 0.0497

            the   425770   1 (4)
	            the 0.5492
	             us 0.5492
	              , 0.5492
	           </S> 0.5492

         Hooded   425774   1 (7)
	         Hooded 0.7789
	          Hotel 0.5017
	          world 0.1687
	              - 0.1687
	           same 0.1687
	           time 0.1687
	           </S> 0.0736

         during   425787   1 (6)
	              a 0.7789
	         during 0.7789
	         dubius 0.5492
	            are 0.5178
	              , 0.1687
	           </S> 0.0736

         Hooded   425872   1 (8)
	         Hooded 0.7789
	          Hotel 0.5178
	           each 0.2388
	              , 0.2388
	             us 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

        becomes   425885   2 (4)
	              a 0.7789
	        becomes 0.5492
	              , 0.1687
	           </S> 0.0736

        nowhere   425893   1 (6)
	          where 0.7789
	        nowhere 0.7789
	              , 0.2388
	           </S> 0.1687
	           more 0.1687
	              a 0.0736

   prepondering   425918 inf (10)
	      pondering 0.7789
	 preponderating 0.7789
	          major 0.5492
	    preordering 0.5492
	   preponderant 0.5492
	       property 0.5178
	              , 0.2388
	           </S> 0.2388
	              a 0.1687
	             as 0.0736

       quantity   425931   1 (7)
	              , 0.5492
	              a 0.5492
	           </S> 0.5492
	            the 0.5492
	       quantity 0.5492
	        quality 0.5492
	            way 0.5492

     Heligoland   425946   1 (10)
	     Heligoland 0.7789
	          Sinai 0.5492
	             us 0.5492
	         France 0.5492
	              , 0.2388
	           part 0.2388
	            and 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

            but   426031   1 (6)
	             us 0.5492
	              a 0.5492
	            but 0.5492
	              , 0.5492
	              } 0.2236
	           </S> 0.0736

         during   426110   2 (8)
	         dubius 0.5492
	         during 0.5178
	         couple 0.2388
	              a 0.2388
	              : 0.2388
	            the 0.1687
	           </S> 0.1687
	              , 0.0736

        impedes   426243   1 (9)
	        impedes 0.7789
	            and 0.5492
	              ( 0.5492
	              a 0.5492
	           </S> 0.5492
	            its 0.2388
	           with 0.1687
	             or 0.1687
	            the 0.0736

            and   426262   1 (5)
	            and 0.5492
	              , 0.5492
	            arz 0.5492
	              } 0.2236
	           </S> 0.0736

       impudent   426324   1 (9)
	       impudent 0.7789
	          under 0.5492
	            and 0.5492
	           </S> 0.5492
	              a 0.5492
	              ( 0.5492
	         please 0.1687
	           such 0.1687
	            the 0.0736

          thej^   426336   5 (8)
	          thyej 0.5492
	          kthej 0.5492
	          their 0.2388
	              , 0.2388
	            the 0.1687
	           they 0.1687
	           </S> 0.1687
	              a 0.0736

            are   426342   1 (8)
	             as 0.5492
	            arz 0.5492
	            and 0.5492
	              I 0.5492
	             is 0.5492
	           </S> 0.5492
	              , 0.5492
	            are 0.5492

            da3   426394   7 (14)
	             da 0.7789
	            dad 0.7789
	              a 0.5492
	            cia 0.5492
	             do 0.5324
	            BBQ 0.5178
	            day 0.2388
	           term 0.2388
	           days 0.2388
	         months 0.1687
	           </S> 0.1687
	             of 0.1687
	              , 0.0736
	              . 0.0736

             's   426397   1 (9)
	             us 0.5492
	             is 0.5492
	            day 0.5492
	         winter 0.5492
	             's 0.5492
	              a 0.5492
	           </S> 0.5017
	              , 0.2388
	              : 0.0736

         earl}^   426406   4 (10)
	           earl 0.7789
	         before 0.5492
	          earle 0.5492
	          early 0.5178
	             us 0.2388
	              , 0.2388
	           each 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

           dawn   426413   1 (7)
	             am 0.5492
	              a 0.5492
	           lava 0.5492
	            day 0.5492
	           dawn 0.5492
	              , 0.5492
	           </S> 0.5492

        plunder   426433   1 (8)
	        plunder 0.7789
	          under 0.5178
	             in 0.1687
	              a 0.1687
	           </S> 0.1687
	              , 0.1687
	            the 0.0942
	              I 0.0736

           Lark   426476   4 (11)
	              , 0.5492
	      beginning 0.5492
	            arz 0.5492
	           Lark 0.5324
	           Last 0.5017
	           part 0.2388
	            way 0.1687
	            top 0.1687
	           same 0.1687
	          right 0.1687
	           </S> 0.0736

        Dresser   426495   1 (8)
	        Dresser 0.7789
	              . 0.5492
	          Press 0.5178
	           </S> 0.1687
	              s 0.1687
	              a 0.1687
	              3 0.1687
	          <UNK> 0.0736

         wonder   426522   1 (8)
	         wonder 0.7789
	        thought 0.5492
	             us 0.5492
	          under 0.5178
	             to 0.2388
	           </S> 0.2388
	              a 0.1687
	              , 0.0736

         Hooded   426572   1 (8)
	         Hooded 0.7789
	          Hotel 0.7789
	              . 0.5492
	             us 0.5492
	              , 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

           left   426586   5 (10)
	              A 0.5492
	              , 0.5492
	            The 0.5492
	           lava 0.5178
	           left 0.5017
	            why 0.2388
	           like 0.2388
	             or 0.1687
	          while 0.1687
	            the 0.0736

             By   426605   1 (7)
	             by 0.7789
	              , 0.7789
	             By 0.7789
	              s 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

            bj^   426711   5 (10)
	         simply 0.5492
	             bj 0.5492
	            bja 0.5492
	             us 0.5324
	             by 0.2388
	              , 0.2388
	              a 0.2388
	           </S> 0.1687
	          those 0.1687
	             in 0.0736

     abstaining   426715   1 (7)
	              I 0.5492
	           </S> 0.5492
	             us 0.5492
	            the 0.5492
	        against 0.5492
	              , 0.5492
	     abstaining 0.5492

           an}-   426742 inf (9)
	           very 0.5492
	           alba 0.5492
	              I 0.5492
	           anna 0.5492
	            and 0.5178
	             an 0.5178
	           </S> 0.5017
	              , 0.2388
	            the 0.0736

          small   426747   1 (6)
	          small 0.5492
	           sala 0.5492
	              , 0.5492
	              . 0.5492
	              a 0.5492
	           </S> 0.5492

      shrubbery   426753   1 (7)
	      shrubbery 0.7789
	              a 0.5017
	        numbers 0.2388
	         groups 0.1687
	           </S> 0.1687
	              , 0.0736
	       business 0.0736

       songster   426838   1 (10)
	             us 0.5492
	             of 0.5492
	          after 0.5492
	            the 0.5492
	       songster 0.5492
	             as 0.2388
	            way 0.2388
	              a 0.2236
	           </S> 0.1687
	              , 0.0736

              a   426847   1 (6)
	             us 0.5492
	              a 0.5492
	            the 0.5492
	           </S> 0.5178
	             of 0.5017
	              , 0.0736

           nook   426856   1 (10)
	           nook 0.7789
	          known 0.7789
	          point 0.5492
	              a 0.5492
	            not 0.5324
	             of 0.5178
	           list 0.5017
	           </S> 0.1687
	              , 0.1687
	              . 0.0736

          above   426875   1 (6)
	              , 0.5492
	          above 0.5492
	              I 0.5492
	        arborea 0.5492
	              } 0.2236
	           </S> 0.0736

     compassing   426916   2 (10)
	          using 0.7789
	          least 0.5492
	           </S> 0.5492
	              , 0.5492
	      improving 0.5492
	            the 0.5492
	     compassing 0.5492
	              a 0.5492
	             us 0.5178
	           your 0.0736

         Hooded   426946   1 (8)
	         Hooded 0.7789
	            Two 0.5492
	          Hotel 0.5178
	             us 0.2388
	              , 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

   unsparingl}'   426959   2 (7)
	              a 0.7789
	    unsparingly 0.5492
	              s 0.5492
	         during 0.5492
	           Nest 0.1687
	              , 0.1687
	           </S> 0.0736

              ,   426971   1 (4)
	            the 0.5492
	              , 0.5492
	             us 0.5492
	           </S> 0.5492

          3'ear   426973   7 (9)
	           </S> 0.5492
	              a 0.5492
	            NSW 0.5492
	           zoom 0.5492
	            ear 0.5178
	           rear 0.5178
	           year 0.5017
	             or 0.1687
	            the 0.0736

             in   426979   1 (5)
	              a 0.5492
	              , 0.5492
	           </S> 0.5492
	             in 0.5492
	             iu 0.5492

            b}'   426992   1 (9)
	             by 0.5492
	           </S> 0.5492
	            and 0.5492
	              a 0.5492
	              , 0.5492
	              ' 0.5492
	             us 0.5178
	           with 0.1687
	            the 0.0736

            all   426996   1 (7)
	            the 0.5492
	              I 0.5492
	           alba 0.5492
	             of 0.5492
	            all 0.5492
	              , 0.5492
	           </S> 0.5492

   nidification   427039   1 (8)
	              , 0.5492
	   nidification 0.5492
	              a 0.5492
	        purpose 0.1687
	    information 0.1687
	     University 0.1687
	              " 0.1687
	           </S> 0.0736

             in   427108   1 (6)
	             in 0.5492
	             iu 0.5492
	              a 0.5492
	              , 0.5492
	              } 0.2236
	           </S> 0.0736

        Ireland   427111   3 (9)
	             us 0.5492
	           what 0.5492
	        Ireland 0.5178
	            and 0.2388
	              , 0.2388
	          which 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

            the   427182   1 (5)
	              , 0.5492
	             us 0.5492
	            the 0.5492
	              } 0.2236
	           </S> 0.0736

         coroue   427223   1 (13)
	         corone 0.7789
	          Group 0.7114
	              a 0.5492
	         coroun 0.5492
	         corrue 0.5492
	          corou 0.5492
	    information 0.5492
	        elegans 0.2388
	        Sassoon 0.2388
	              . 0.2388
	          <UNK> 0.1687
	              , 0.1687
	           </S> 0.0736

            and   427231   1 (7)
	             S. 0.5492
	              s 0.5492
	           </S> 0.5492
	            and 0.5492
	          which 0.1687
	             it 0.1687
	            the 0.0736

      according   427313   1 (8)
	              I 0.5492
	              ( 0.5492
	      according 0.5492
	           </S> 0.5492
	         online 0.5492
	            and 0.5492
	             or 0.1687
	            the 0.0736

     precisel}^   427345   1 (8)
	      precisely 0.7789
	           much 0.5492
	           just 0.3804
	              , 0.2388
	       provided 0.2388
	              a 0.1687
	           </S> 0.1687
	            not 0.0736

           like   427356   1 (7)
	           </S> 0.5492
	             to 0.5492
	           lava 0.5492
	              , 0.5492
	              a 0.5492
	    necessarily 0.5492
	           like 0.5492

         coronc   427448   1 (12)
	         corone 0.7789
	         corona 0.5492
	        company 0.5492
	         corono 0.5492
	              a 0.5492
	          There 0.5492
	        Koronco 0.5492
	            who 0.5492
	          coron 0.5492
	              . 0.2388
	              , 0.1687
	           </S> 0.0736

            are   427455   1 (5)
	              , 0.5492
	           </S> 0.5492
	            are 0.5492
	              s 0.5492
	              I 0.5492

            but   427505   1 (7)
	              , 0.5492
	              a 0.5492
	            but 0.5492
	             us 0.5492
	            the 0.5492
	              } 0.2236
	           </S> 0.0736

         Hooded   427513   1 (9)
	         Hooded 0.7789
	              a 0.5492
	          major 0.5492
	           real 0.5492
	          Hotel 0.5017
	            way 0.1687
	           same 0.1687
	              - 0.1687
	           </S> 0.0736

          Dixon   427563   4 (8)
	           Sign 0.7789
	              , 0.7789
	           This 0.7789
	              a 0.5492
	          Dixon 0.5492
	          minor 0.5492
	              " 0.2388
	           </S> 0.0736

  Ornithologist   427581   3 (9)
	        through 0.7789
	             of 0.7789
	          major 0.5492
	  Ornithologist 0.5492
	            way 0.5178
	              , 0.5178
	            one 0.1687
	              a 0.1687
	           </S> 0.0736

           saj-   427628   7 (10)
	           sala 0.7789
	            saj 0.7789
	           saja 0.5492
	         search 0.5492
	           </S> 0.5492
	           said 0.5178
	            say 0.2388
	            pay 0.2388
	              a 0.1687
	            the 0.0736

           Crow   427642   1 (11)
	           Crow 0.7789
	        purpose 0.5492
	            arz 0.5492
	           from 0.2388
	              a 0.2388
	              , 0.1687
	           book 0.1687
	           </S> 0.1687
	              . 0.1687
	             is 0.0736
	           item 0.0497

             he   427648   1 (6)
	              a 0.5492
	              , 0.5492
	             he 0.5492
	             us 0.5492
	              } 0.2236
	           </S> 0.0736

          never   427852   1 (8)
	          never 0.7789
	       activity 0.5492
	           need 0.5178
	              a 0.5178
	           </S> 0.1687
	              . 0.0736
	              , 0.0736
	             of 0.0497

         Mail}-   427880 inf (9)
	          Maili 0.7789
	         Mailer 0.7789
	           Mail 0.5178
	           mail 0.5178
	              a 0.2388
	             he 0.2388
	            The 0.1687
	              , 0.1687
	           </S> 0.0736

        readers   427887   1 (7)
	           </S> 0.5492
	              " 0.5492
	        readers 0.5492
	              , 0.5492
	            one 0.5492
	           read 0.5492
	              a 0.5492

           held   427924   7 (10)
	            and 0.5492
	              a 0.5492
	        excited 0.5492
	           been 0.5492
	           </S> 0.5492
	           sala 0.5324
	           held 0.5017
	           here 0.2388
	             or 0.1687
	            the 0.0736

          willi   427943   7 (12)
	          wills 0.5492
	         willis 0.5492
	          wolfi 0.5492
	              a 0.5178
	             by 0.5178
	           will 0.5178
	           with 0.2388
	              . 0.1687
	             on 0.1687
	              , 0.1687
	             of 0.0736
	           </S> 0.0736

         regard   427949   4 (9)
	            the 0.7789
	              a 0.7789
	             ng 0.7789
	            how 0.5492
	         regard 0.5492
	         report 0.5492
	              , 0.5178
	            ... 0.0736
	           </S> 0.0736

         tliere   427995   5 (9)
	          tiere 0.5492
	         teiere 0.5492
	         tiller 0.5492
	         Gliere 0.5492
	          there 0.5017
	              a 0.2388
	           </S> 0.2388
	              , 0.1687
	           that 0.0736

        appears   428002   1 (9)
	        appears 0.5492
	              , 0.5492
	          years 0.5492
	recommendations 0.5492
	             us 0.5492
	              I 0.5492
	           </S> 0.5492
	            the 0.5492
	             is 0.0736

      redeeming   428019   4 (12)
	          major 0.5492
	         during 0.5492
	              a 0.5492
	      redeeming 0.5178
	           real 0.2388
	             to 0.2388
	           more 0.1687
	            way 0.1687
	           </S> 0.1687
	              , 0.1687
	              . 0.1687
	         longer 0.0736

         Hoodie   428059   1 (9)
	         Hoodie 0.7789
	              . 0.5492
	          major 0.5492
	              , 0.5492
	              a 0.5492
	           Home 0.2388
	          world 0.1687
	           page 0.1687
	           </S> 0.0736

           when   428083   1 (7)
	             us 0.7789
	           when 0.7789
	              a 0.5324
	           </S> 0.5178
	             on 0.5178
	              , 0.2388
	             of 0.0736

            not   428118   1 (6)
	              a 0.5492
	              , 0.5492
	            not 0.5492
	              s 0.5492
	              } 0.2236
	           </S> 0.0736

         Giitke   428200 inf (11)
	           Gite 0.5492
	         Gietki 0.5492
	           with 0.5492
	           itke 0.5492
	            the 0.5492
	          Giitu 0.5492
	             he 0.5492
	              a 0.5492
	             M. 0.5178
	           </S> 0.1687
	              , 0.0736

          tells   428207   1 (7)
	              a 0.5492
	              , 0.5492
	           tell 0.5492
	           </S> 0.5492
	          Ringe 0.5492
	          tells 0.5492
	          Pales 0.5492

  Heligolanders   428225   1 (8)
	              , 0.5492
	             is 0.5492
	              a 0.5492
	  Heligolanders 0.5492
	              " 0.1687
	      following 0.1687
	           same 0.1687
	           </S> 0.0736

         esteem   428239   1 (6)
	             of 0.5492
	              a 0.5492
	              , 0.5492
	         system 0.5492
	         esteem 0.5492
	           </S> 0.5492

           Lord   428273   1 (8)
	           Lord 0.7789
	           more 0.7789
	              , 0.7789
	            the 0.5492
	              a 0.5492
	          Loxia 0.5492
	              " 0.2388
	           </S> 0.0736

        Lilford   428278 inf (8)
	        Milford 0.7789
	        Lifford 0.7789
	        Linford 0.5492
	           Lord 0.5178
	              I 0.5017
	           </S> 0.2388
	              , 0.1687
	             of 0.0736

            sa3   428286 inf (12)
	             it 0.5492
	            say 0.5492
	            sas 0.5492
	            the 0.5492
	              a 0.5492
	             so 0.5492
	           sala 0.5492
	             sa 0.5492
	             's 0.5178
	           </S> 0.2388
	              , 0.1687
	              V 0.0736

             's   428289 inf (7)
	             us 0.5492
	             ss 0.5492
	             as 0.5492
	             is 0.5492
	              , 0.5178
	           </S> 0.2388
	              - 0.0736

     abominable   428333   1 (12)
	             us 0.5492
	         winner 0.5492
	        private 0.5492
	     abominable 0.5492
	        welcome 0.2388
	             to 0.2388
	       striving 0.2388
	      available 0.1687
	              a 0.1687
	           </S> 0.1687
	              , 0.1687
	           been 0.0736

       although   428349   4 (10)
	    destination 0.5492
	          users 0.5492
	        product 0.5492
	       although 0.5178
	        through 0.5017
	           </S> 0.1687
	              , 0.1687
	              I 0.1687
	           more 0.1687
	            the 0.0736

          Gre}'   428573 inf (12)
	          Greer 0.7789
	              a 0.5492
	              , 0.5492
	          major 0.5492
	              . 0.5492
	            Gre 0.5324
	          Group 0.2388
	          Great 0.2388
	         United 0.1687
	        country 0.1687
	           most 0.1687
	           </S> 0.0736

           Crow   428579   1 (9)
	              a 0.5492
	           </S> 0.5492
	              , 0.5492
	         States 0.5492
	              . 0.5492
	           from 0.5492
	             of 0.5492
	           Crow 0.5492
	            arz 0.5492

        vagrant   428610   1 (7)
	        vagrant 0.5492
	             of 0.5492
	              a 0.5492
	        against 0.5492
	           </S> 0.5017
	         enough 0.2388
	              , 0.0736

             We   428677   1 (7)
	             We 0.7789
	              , 0.7789
	            you 0.7789
	             us 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

  c\ten)ii}iatc   428699 inf (15)
	             us 0.7789
	      eliminate 0.5492
	           </S> 0.5492
	       indicate 0.5492
	    participate 0.5492
	        contact 0.5492
	          match 0.5492
	            eat 0.5492
	              , 0.5492
	         attend 0.5492
	            see 0.5178
	           have 0.5178
	           make 0.5178
	              a 0.5017
	            the 0.0736

            any   428713   1 (8)
	            the 0.5492
	            any 0.5492
	              I 0.5492
	              , 0.5492
	            you 0.5492
	           </S> 0.5492
	           that 0.5492
	            arz 0.5492

            but   428723   1 (6)
	             us 0.5492
	            but 0.5492
	              , 0.5492
	              a 0.5492
	              } 0.2236
	           </S> 0.0736

Fawilx-COR]'ID.E   428806 inf (6)
	           will 0.7789
	              a 0.7789
	              ) 0.5178
	              - 0.5178
	              , 0.2388
	           </S> 0.0736

              .   428822   1 (6)
	             us 0.5492
	            the 0.5492
	           </S> 0.5492
	              " 0.5492
	              , 0.5492
	              . 0.5492

        Corviis   428836 inf (8)
	              , 0.7789
	          Corvi 0.5492
	              a 0.5492
	        Corvids 0.5492
	        Corvida 0.5492
	         Comics 0.5492
	              " 0.2388
	           </S> 0.0736

   /nigi/i(;i(s   428844 inf (10)
	              n 0.5492
	              , 0.5492
	      configure 0.5492
	        million 0.5492
	   configure.in 0.5492
	             is 0.5492
	              a 0.5492
	           </S> 0.5492
	         config 0.5492
	  config.status 0.5492

              ,   428856 inf (3)
	             of 0.5492
	             us 0.5492
	            the 0.5492

           Linn   428858   1 (6)
	           List 0.5492
	           Linn 0.5492
	          minor 0.5178
	              i 0.2388
	             pp 0.2388
	            the 0.0736

             IN   428865   1 (8)
	             In 0.7789
	             IN 0.7789
	              , 0.7789
	             us 0.5492
	              a 0.5492
	              " 0.2388
	              ) 0.2388
	           </S> 0.0736

        Western   428868   1 (7)
	        Western 0.7789
	        WITNESS 0.5178
	              , 0.2388
	              : 0.2388
	           </S> 0.1687
	              A 0.1687
	            THE 0.0736

           Rook   428887   1 (9)
	           Rook 0.7789
	              , 0.5492
	          major 0.5492
	              a 0.5492
	            dog 0.2388
	           good 0.2388
	           same 0.1687
	          world 0.1687
	           </S> 0.0736

         breeds   428892   2 (8)
	         Corvus 0.7789
	           been 0.5492
	         breeds 0.5492
	              a 0.5492
	             of 0.5178
	           </S> 0.1687
	              , 0.1687
	             's 0.0736

      migratory   429102   1 (9)
	      migratory 0.7789
	    migratorius 0.5492
	           more 0.2388
	           also 0.1687
	            not 0.1687
	           </S> 0.1687
	              , 0.1687
	              a 0.1687
	              I 0.0736

       Southern   429191   2 (7)
	           more 0.5492
	          South 0.5178
	       Southern 0.5178
	             us 0.2388
	            see 0.1687
	              a 0.1687
	            the 0.0736

           Asia   429258   2 (7)
	            cia 0.7789
	            All 0.5178
	           Asia 0.5178
	              , 0.1687
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

      Eastwards   429270 inf (8)
	              , 0.7789
	           Last 0.5492
	       Eastward 0.5492
	              a 0.5492
	              s 0.5492
	            the 0.5492
	              " 0.2388
	           </S> 0.0736

      Turkestan   429313   1 (10)
	      Turkestan 0.7789
	         Alaska 0.5492
	    destination 0.5492
	           said 0.5492
	           tone 0.5492
	            The 0.2388
	              , 0.1687
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

       Cashmere   429364   1 (10)
	          <UNK> 0.5492
	      therefore 0.5492
	            and 0.5492
	              a 0.5492
	         Kuwait 0.5492
	              , 0.5492
	           Iraq 0.5492
	       Cashmere 0.5492
	          there 0.1687
	            the 0.0736

             In   429392   1 (6)
	             In 0.7789
	              , 0.7789
	             us 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

           Rook   429427   1 (9)
	           Rook 0.7789
	      Institute 0.5492
	   prescription 0.5492
	           Road 0.3804
	           good 0.2388
	           same 0.1687
	        problem 0.1687
	              - 0.1687
	           </S> 0.0736

        prett}^   429435   4 (9)
	          prett 0.7789
	             A. 0.5492
	         prette 0.5492
	         better 0.2388
	         pretty 0.2388
	            not 0.1687
	              , 0.1687
	           </S> 0.1687
	              a 0.0736

      generally   429443   1 (7)
	              a 0.5492
	              , 0.5492
	             to 0.5492
	        general 0.5492
	            and 0.5492
	           </S> 0.5492
	      generally 0.5492

     localities   429481   1 (10)
	     localities 0.7789
	         states 0.5492
	          major 0.5492
	          cases 0.5492
	              a 0.5492
	             of 0.5492
	        quality 0.5178
	              , 0.5017
	           </S> 0.2388
	            for 0.0736

             in   429494   1 (6)
	              , 0.5492
	              a 0.5492
	             in 0.5492
	             iu 0.5492
	              } 0.2236
	           </S> 0.0736

         though   429506   1 (5)
	         though 0.7789
	              a 0.5492
	        through 0.5178
	              , 0.1687
	           </S> 0.0736

          rarer   429513   1 (7)
	          rarer 0.7789
	          order 0.7789
	          Parus 0.5492
	           more 0.5178
	           </S> 0.2388
	              a 0.2388
	              , 0.0736

           Rook   429676   4 (11)
	           good 0.7789
	            now 0.7789
	          color 0.7789
	         condom 0.5492
	           Rook 0.5492
	              I 0.5492
	             of 0.2388
	            who 0.2388
	           </S> 0.1687
	              , 0.1687
	            and 0.0736

          l^are   429777 inf (11)
	           lare 0.7789
	          laare 0.5492
	              , 0.5492
	              a 0.5492
	             to 0.5492
	    legislative 0.5492
	            are 0.5178
	           lava 0.5178
	     registered 0.1687
	            bit 0.1687
	           </S> 0.0736

           grey   429783   1 (8)
	             of 0.5492
	           free 0.5492
	           </S> 0.5492
	              a 0.5492
	              , 0.5492
	       proposal 0.5492
	           grey 0.5492
	            arz 0.5492

          warty   429788   2 (7)
	          party 0.7789
	              t 0.5492
	          warty 0.5492
	          Parus 0.5492
	           area 0.1687
	           </S> 0.0942
	              , 0.0736

          patch   429794   1 (9)
	           part 0.5492
	              a 0.5492
	          patch 0.5492
	          parva 0.5492
	           </S> 0.5178
	              " 0.5178
	              ) 0.5178
	              , 0.2388
	              - 0.0736

           Bill   429855   1 (7)
	              , 0.7789
	           Bill 0.7789
	           will 0.5492
	              a 0.5492
	           Baya 0.5492
	              " 0.2388
	           </S> 0.0736

           iris   429876   1 (8)
	              a 0.5492
	           iris 0.5492
	             is 0.5492
	              , 0.5492
	           dark 0.5492
	             iu 0.5492
	              } 0.2236
	           </S> 0.0736

           Tlie   429888 inf (9)
	           This 0.7789
	              , 0.7789
	            Tli 0.5492
	           Tile 0.5492
	              a 0.5492
	           Tlia 0.5492
	           alba 0.5492
	              " 0.2388
	           </S> 0.0736

         female   429893   1 (5)
	         female 0.5492
	              , 0.5492
	              a 0.5492
	           </S> 0.1687
	          <UNK> 0.0736

           Tlie   429951 inf (9)
	           This 0.7789
	              , 0.7789
	              a 0.5492
	            Tli 0.5492
	              s 0.5492
	           Tile 0.5492
	           Tlia 0.5492
	              " 0.2388
	           </S> 0.0736

          young   429956   1 (5)
	              a 0.5492
	              , 0.5492
	          young 0.5492
	           </S> 0.1687
	          <UNK> 0.0736

        Carrion   430036   1 (10)
	        Carrion 0.7789
	            mid 0.5492
	              , 0.5492
	              A 0.5492
	            non 0.5492
	           case 0.1687
	           City 0.1687
	           same 0.1687
	          world 0.1687
	           </S> 0.0736

             it   430073   1 (7)
	          which 0.5492
	              , 0.5492
	              a 0.5492
	             it 0.5492
	             iu 0.5492
	              } 0.2236
	           </S> 0.0736

       .slender   430109   3 (8)
	       Calendar 0.7789
	       literacy 0.5492
	        slender 0.5178
	              a 0.3804
	           </S> 0.1687
	              , 0.1687
	              . 0.1687
	           than 0.0736

           bill   430118   1 (7)
	              a 0.5492
	              , 0.5492
	           bill 0.5492
	           </S> 0.5492
	      judgments 0.5492
	            cia 0.5492
	           will 0.5492

           tlie   430127   9 (9)
	           alba 0.7789
	           trie 0.7789
	          tliet 0.5492
	           tile 0.5178
	           this 0.2388
	              a 0.1687
	              , 0.1687
	           </S> 0.1687
	            the 0.0736

           deep   430132   3 (9)
	              . 0.7789
	              , 0.7789
	           does 0.5492
	            the 0.5492
	           deep 0.5492
	              a 0.5492
	             us 0.5492
	           </S> 0.1687
	          <UNK> 0.0736

         .slate   430205   1 (11)
	          slate 0.7789
	              : 0.5492
	             re 0.5492
	            non 0.5492
	         Islate 0.5492
	           </S> 0.5492
	          state 0.5017
	             us 0.2388
	         enable 0.2388
	              a 0.1687
	            the 0.0736

              -   430211   1 (6)
	            the 0.5492
	              - 0.5492
	              , 0.5492
	             us 0.5492
	           </S> 0.5492
	            you 0.5492

         colour   430212   3 (9)
	   authenticate 0.5492
	              s 0.5492
	         colour 0.5178
	              . 0.2388
	           your 0.2236
	             to 0.1687
	             up 0.1687
	              a 0.1687
	           </S> 0.0736

             In   430230   1 (6)
	              , 0.7789
	             In 0.7789
	             us 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

           Rook   430245   1 (9)
	           Rook 0.7789
	        website 0.5492
	           Road 0.3804
	           good 0.2388
	              - 0.1687
	          world 0.1687
	        problem 0.1687
	           same 0.1687
	           </S> 0.0736

             so   430267   2 (8)
	             us 0.7789
	            for 0.5178
	             so 0.5178
	              a 0.5178
	           with 0.2388
	           </S> 0.1687
	              , 0.1687
	            flu 0.0736

         larvje   430335   7 (12)
	           lava 0.7789
	              , 0.5492
	          larve 0.5492
	              . 0.5492
	           larv 0.5492
	              a 0.5492
	         larvae 0.5324
	        ability 0.2388
	           last 0.2388
	       families 0.1687
	           </S> 0.1687
	            own 0.0736

            but   430376   1 (6)
	            but 0.5492
	              , 0.5492
	              a 0.5492
	             us 0.5492
	              } 0.2236
	           </S> 0.0736

        drought   430406   6 (10)
	        through 0.7789
	             if 0.5492
	              a 0.5492
	           that 0.5492
	             us 0.5492
	        drought 0.5178
	            the 0.5017
	              , 0.1687
	           </S> 0.1687
	            and 0.0736

          after   430470   1 (8)
	          after 0.5492
	              a 0.5492
	              I 0.5492
	         Passer 0.5492
	             to 0.5178
	           </S> 0.2388
	              . 0.1687
	              , 0.0736

             In   430506   1 (6)
	             In 0.7789
	              , 0.7789
	              a 0.5492
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

         almost   430583   1 (10)
	           also 0.5492
	          times 0.5492
	         almost 0.5492
	             us 0.5492
	              I 0.5492
	           </S> 0.5324
	             by 0.1687
	              , 0.1687
	              . 0.1687
	            the 0.0736

        Carrion   430605   1 (9)
	        Carrion 0.7789
	            non 0.5492
	              , 0.5492
	             as 0.5492
	              A 0.5492
	           City 0.1687
	              " 0.1687
	           next 0.1687
	           </S> 0.0736

           weak   430679   1 (9)
	           weak 0.5492
	       economic 0.5492
	            cia 0.5492
	           were 0.5178
	             be 0.5178
	           </S> 0.2388
	              a 0.2388
	            the 0.1687
	              , 0.0736

          birds   430684   1 (9)
	          birds 0.7789
	           life 0.5492
	          Parus 0.5492
	          first 0.5178
	              a 0.5178
	     similarity 0.2388
	           </S> 0.1687
	              . 0.0736
	              , 0.0736

            for   430724   1 (7)
	              , 0.5492
	            for 0.5492
	              a 0.5492
	       clothing 0.5492
	            arz 0.5492
	              } 0.2236
	           </S> 0.0736

      witnessed   430785   1 (7)
	      witnessed 0.7789
	              a 0.5178
	           </S> 0.2388
	             in 0.2388
	           with 0.2236
	              , 0.0942
	              . 0.0736

      predatory   430800   1 (9)
	      predatory 0.7789
	            bad 0.5492
	            may 0.2388
	              a 0.2388
	              , 0.1687
	        product 0.1687
	           </S> 0.1687
	             is 0.0736
	           page 0.0736

         severe   430819   2 (7)
	             us 0.5492
	         severe 0.5178
	              , 0.2388
	          every 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

         haunts   430889   1 (8)
	         haunts 0.7114
	           stay 0.2388
	           have 0.1687
	             is 0.1687
	           </S> 0.1687
	              a 0.1687
	              , 0.1687
	            the 0.0736

           well   430896   1 (9)
	           life 0.5492
	       informed 0.5492
	           well 0.5492
	          wolfi 0.5492
	              a 0.5178
	           </S> 0.2388
	              , 0.1687
	              . 0.1687
	             of 0.0736

              -   430900   4 (6)
	             us 0.7789
	           </S> 0.2388
	            the 0.2388
	              , 0.1687
	              - 0.1687
	             as 0.0736

    preferabl}^   430923   6 (9)
	     preferable 0.7789
	            and 0.5492
	           </S> 0.5492
	              a 0.5492
	         public 0.5492
	     preferably 0.5178
	          which 0.1687
	             or 0.1687
	            the 0.0736

          where   430935   1 (6)
	            its 0.5492
	           </S> 0.5492
	              a 0.5492
	              , 0.5492
	         cities 0.5492
	          where 0.5492

           here   430990   1 (6)
	              , 0.5492
	           here 0.5492
	              a 0.5492
	            arz 0.5492
	              } 0.2236
	           </S> 0.0736

         busily   431024   1 (7)
	         busily 0.7789
	          Music 0.7789
	        pusilla 0.5492
	              a 0.2388
	           </S> 0.1687
	              , 0.0942
	              . 0.0736

          grubs   431105   2 (9)
	          group 0.7789
	              a 0.5492
	          grubs 0.5492
	    merchandise 0.5492
	          rufus 0.5492
	              . 0.5178
	              , 0.2388
	           </S> 0.2388
	          weeds 0.0736

             in   431113   1 (6)
	             iu 0.5492
	             in 0.5492
	              a 0.5492
	              , 0.5492
	              } 0.2236
	           </S> 0.0736

       swallows   431149   1 (9)
	             us 0.5492
	       swallows 0.5492
	          still 0.5324
	             in 0.5178
	              . 0.5178
	           </S> 0.5178
	              a 0.2388
	             be 0.1687
	              , 0.0736

   incalculable   431182   1 (7)
	   incalculable 0.7789
	             us 0.5492
	        include 0.5178
	           </S> 0.5017
	              , 0.2388
	              a 0.2388
	            not 0.0736

           wire   431214   2 (9)
	           were 0.7789
	            non 0.5492
	   Productivity 0.5492
	           wire 0.5492
	            cia 0.5492
	           </S> 0.5017
	              , 0.2388
	              a 0.2388
	            the 0.0736

    cockchafers   431239   1 (10)
	    cockchafers 0.7789
	         speech 0.5492
	             it 0.2388
	           them 0.2388
	             us 0.2388
	         course 0.2388
	              , 0.2236
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

          onl}'   431289   2 (9)
	          ollon 0.5492
	              a 0.1687
	           have 0.1687
	           only 0.1687
	              , 0.1687
	           </S> 0.1687
	             to 0.1687
	           been 0.1687
	             be 0.0736

        devours   431295   1 (9)
	              , 0.5492
	             at 0.5492
	             to 0.5492
	        devours 0.5492
	              a 0.5492
	           </S> 0.5492
	             us 0.5492
	            any 0.5492
	          hours 0.5492

           such   431303   1 (6)
	           such 0.5492
	           sala 0.5492
	           </S> 0.5178
	              , 0.5017
	              a 0.2388
	            the 0.0736

          grubs   431331   2 (9)
	          great 0.7789
	          grubs 0.5492
	          rufus 0.5492
	             of 0.2388
	              a 0.2388
	           </S> 0.1687
	              . 0.1687
	              , 0.0736
	             is 0.0736

   considerable   431362   1 (6)
	   considerable 0.7789
	          could 0.5492
	           </S> 0.5178
	              , 0.5017
	              a 0.5017
	            not 0.0736

    destructive   431406   2 (6)
	        service 0.5492
	    destructive 0.5178
	              , 0.1687
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

    caterpillar   431418   1 (10)
	             us 0.5492
	         number 0.5492
	    development 0.5492
	    caterpillar 0.5492
	       services 0.5492
	              a 0.5492
	        effects 0.2388
	           </S> 0.1687
	              , 0.0942
	              . 0.0736

       segetuin   431456  10 (11)
	        cinerea 0.7789
	         seguin 0.5492
	              a 0.5492
	         segeti 0.5492
	       shipping 0.5492
	        seguint 0.5492
	              , 0.5178
	           </S> 0.5178
	              ) 0.5017
	        segetum 0.1687
	        ipsilon 0.0736

              )   431464   1 (5)
	              ) 0.5492
	             us 0.5492
	            the 0.5492
	              , 0.5492
	           </S> 0.5492

              .   431466   4 (7)
	             us 0.5178
	              · 0.5017
	            the 0.2388
	              . 0.1687
	              , 0.1687
	              - 0.1687
	           </S> 0.0736

         either   431538   1 (6)
	         either 0.5492
	         shrubs 0.5492
	              a 0.5492
	              , 0.5492
	              } 0.2236
	           </S> 0.0736

         copses   431548   1 (11)
	         copses 0.7789
	             us 0.5492
	         person 0.5492
	           turn 0.3804
	           fact 0.2388
	           case 0.2388
	        writing 0.2388
	              , 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

       bounding   431618   1 (8)
	       bounding 0.5492
	          being 0.5492
	              a 0.5178
	             on 0.3804
	              , 0.1687
	           </S> 0.1687
	             in 0.1687
	             of 0.0736

            but   431695   1 (6)
	              a 0.5492
	            but 0.5492
	              , 0.5492
	             us 0.5492
	              } 0.2236
	           </S> 0.0736

      Stevenson   431699   1 (8)
	      Stevenson 0.7789
	           even 0.2388
	             as 0.1687
	           </S> 0.1687
	              a 0.1687
	              , 0.1687
	            the 0.0942
	              I 0.0736

        rightly   431709   1 (9)
	            the 0.5492
	              a 0.5492
	         rights 0.5492
	        Courier 0.5492
	             he 0.5492
	        rightly 0.5492
	             's 0.2388
	           </S> 0.1687
	              , 0.0736

      selecting   431751   1 (7)
	      selecting 0.7789
	             us 0.5492
	          being 0.5492
	              a 0.5178
	           </S> 0.2388
	              , 0.1687
	             of 0.0736

         Scotch   431856   2 (6)
	          Stock 0.7789
	              a 0.5492
	         Scotch 0.5492
	              , 0.1687
	           </S> 0.1687
	              - 0.0736

      Spixworth   431983   1 (9)
	              a 0.5492
	            the 0.5492
	              , 0.5492
	          South 0.5492
	        College 0.5492
	        Harding 0.5492
	      Spixworth 0.5492
	             us 0.2388
	           your 0.0736

           Park   431993   1 (8)
	           Page 0.5492
	           Park 0.5492
	              a 0.5492
	     University 0.5492
	           time 0.5492
	          Parus 0.5492
	           </S> 0.1687
	              , 0.0736

    laurustinus   432082   3 (10)
	              a 0.7789
	            the 0.7789
	           rose 0.5492
	             us 0.5492
	    laurustinus 0.5492
	        looking 0.5492
	           </S> 0.5178
	              - 0.2388
	              , 0.1687
	              . 0.0736

         bushes   432094   1 (8)
	             us 0.5492
	              a 0.5492
	       business 0.5492
	         prints 0.5492
	           </S> 0.5492
	         tuning 0.5492
	         bushes 0.5492
	              , 0.0736

      foiirteen   432118   1 (13)
	       fourteen 0.7114
	        further 0.5492
	       forinten 0.5492
	       flirteen 0.5492
	        hirteen 0.5492
	        damages 0.5492
	         forten 0.5492
	        fifteen 0.5178
	           more 0.1687
	              , 0.1687
	              a 0.0942
	            the 0.0736
	           </S> 0.0736

           feet   432128   1 (8)
	           free 0.5492
	        arising 0.5492
	             us 0.5492
	              . 0.5492
	              , 0.5492
	           feet 0.5492
	           </S> 0.5492
	              a 0.5492

           ilex   432172   1 (9)
	             iu 0.5492
	           ilex 0.5492
	             of 0.5178
	              a 0.5178
	             in 0.2388
	         galaxy 0.2388
	          novae 0.1687
	           </S> 0.1687
	              , 0.0736

          close   432178   1 (8)
	             up 0.5492
	           </S> 0.5492
	              a 0.5492
	          close 0.5492
	         corone 0.5492
	          those 0.2388
	             or 0.1687
	            the 0.0736

     connecting   432212   1 (9)
	           </S> 0.5492
	              a 0.5492
	            and 0.5492
	     connecting 0.5492
	              , 0.5492
	         online 0.5492
	           with 0.1687
	            who 0.1687
	            the 0.0736

          fi^om   432328   6 (10)
	          minor 0.7789
	          finom 0.5492
	              a 0.5492
	           fimo 0.5492
	             fi 0.5492
	              , 0.1687
	           </S> 0.1687
	           from 0.1687
	             in 0.0942
	             to 0.0736

        rookery   432367   1 (10)
	         Booker 0.7789
	        rookery 0.7789
	         report 0.5492
	              , 0.5492
	         person 0.1687
	          major 0.1687
	          child 0.1687
	              " 0.1687
	           </S> 0.0736
	            new 0.0736

       moreover   432491   1 (7)
	       moreover 0.5492
	           over 0.5492
	              . 0.5492
	              , 0.5492
	              a 0.5492
	              } 0.2236
	           </S> 0.0736

      continual   432504   4 (10)
	       continua 0.7789
	           ugly 0.5492
	     subjective 0.5492
	      continual 0.5178
	       National 0.1687
	           same 0.1687
	          right 0.1687
	          total 0.1687
	              - 0.1687
	           </S> 0.0736

         noises   432514   1 (10)
	         noises 0.7789
	         number 0.5492
	              a 0.5492
	             of 0.5492
	        opinion 0.5492
	           need 0.5017
	              , 0.2388
	    development 0.2388
	           </S> 0.1687
	    improvement 0.0736

          Rooks   432606   1 (7)
	          Rooks 0.7789
	          Books 0.7789
	           </S> 0.1687
	              I 0.1687
	              a 0.1687
	              , 0.1687
	            the 0.0736

          still   432612   2 (8)
	            can 0.7789
	              a 0.5492
	          shall 0.5492
	          still 0.5492
	           sala 0.5492
	             is 0.5178
	           </S> 0.0942
	              , 0.0736

          breed   432628   4 (11)
	    participate 0.5492
	         invest 0.5492
	     trademarks 0.5492
	          breed 0.5178
	           been 0.5178
	       services 0.2388
	              , 0.1687
	             to 0.1687
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

     connucuced   432735 inf (11)
	        between 0.7789
	        include 0.7789
	      connected 0.5492
	        reduced 0.5492
	             13 0.5492
	       conduced 0.5492
	             to 0.5324
	              , 0.5178
	           </S> 0.5017
	              a 0.2388
	     dispatched 0.0736

             or   432746   1 (8)
	         within 0.5492
	             to 0.5492
	             in 0.5492
	              a 0.5492
	              , 0.5492
	             us 0.5492
	           </S> 0.5492
	             or 0.5492

       repaired   432749   2 (8)
	             26 0.5492
	       repaired 0.5178
	       required 0.5178
	              , 0.1687
	            two 0.1687
	              a 0.0942
	            the 0.0736
	           </S> 0.0736

             iu   432764   6 (6)
	              I 0.5492
	             iu 0.5492
	              , 0.1687
	             as 0.1687
	           </S> 0.1687
	             in 0.0736

          March   432767   2 (7)
	              s 0.7789
	          March 0.5492
	              a 0.5324
	             's 0.5178
	              , 0.2388
	          <UNK> 0.2388
	           </S> 0.0736

      unusualh-   432784   1 (9)
	      unusually 0.7789
	        unusual 0.7789
	            not 0.5492
	       unusuall 0.5492
	        January 0.5017
	           </S> 0.2388
	              , 0.2388
	              a 0.1687
	            the 0.0736

           mild   432794   1 (8)
	           mail 0.5492
	              a 0.5492
	          minor 0.5492
	              , 0.5492
	           </S> 0.5492
	            the 0.5492
	              . 0.5492
	           mild 0.5492

       building   432807   1 (6)
	       building 0.5492
	              a 0.5324
	           </S> 0.2388
	            and 0.1687
	              , 0.0942
	              . 0.0736

     operations   432816   2 (7)
	           cool 0.5492
	        options 0.5178
	     operations 0.5178
	           </S> 0.1687
	              a 0.1687
	              , 0.0736
	              . 0.0736

      sometimes   432827   1 (6)
	      sometimes 0.7789
	              a 0.5492
	        systems 0.5492
	              , 0.1687
	           </S> 0.1687
	              . 0.0736

       commence   432837   1 (7)
	       commence 0.7789
	       comments 0.7789
	            too 0.2388
	             as 0.2388
	              a 0.1687
	           </S> 0.1687
	              , 0.0736

         1895-6   432899 inf (8)
	             us 0.7789
	           what 0.7789
	              , 0.7789
	           1995 0.5492
	           1996 0.5492
	           </S> 0.5178
	              a 0.5017
	            the 0.0736

              I   432906   1 (6)
	             us 0.5492
	            the 0.5492
	              I 0.5492
	           </S> 0.2388
	              , 0.1687
	              . 0.0736

          Rooks   432926   1 (9)
	             us 0.5492
	          Books 0.5492
	              a 0.5492
	          Rooks 0.5492
	            men 0.1687
	            man 0.1687
	           </S> 0.1687
	              , 0.1687
	         people 0.0736

        sitting   432932   1 (5)
	              a 0.5492
	        Listing 0.5492
	        sitting 0.5492
	           </S> 0.0942
	              , 0.0736

          the}-   432972 inf (8)
	           thee 0.7789
	          their 0.5017
	            the 0.1687
	              , 0.1687
	             he 0.1687
	           </S> 0.1687
	              a 0.1687
	             is 0.0736

            had   432978   1 (8)
	            the 0.5492
	           </S> 0.5492
	           have 0.5492
	            had 0.5492
	            are 0.5492
	              , 0.5492
	              a 0.5492
	            cia 0.5492

          Rooks   433047   1 (8)
	          Rooks 0.7789
	          Books 0.5178
	           Rock 0.5178
	           same 0.1687
	          world 0.1687
	            way 0.1687
	              - 0.1687
	           </S> 0.0736

        rookery   433058   1 (11)
	        rookery 0.7789
	         source 0.5492
	              , 0.5492
	         report 0.5492
	              a 0.5492
	        subject 0.5492
	         series 0.1687
	           very 0.1687
	          major 0.1687
	            new 0.0736
	           </S> 0.0736

          close   433066   3 (10)
	      connected 0.7789
	              a 0.7789
	           case 0.5492
	       addition 0.5492
	          close 0.5492
	         corone 0.5492
	             of 0.2388
	           </S> 0.2388
	              , 0.0942
	              . 0.0736

      repairing   433084   1 (7)
	      repairing 0.7789
	         during 0.5492
	            New 0.5492
	              a 0.2388
	           </S> 0.1687
	              , 0.0736
	              . 0.0736

          their   433094   3 (7)
	            car 0.5178
	          minor 0.5178
	          their 0.5017
	           </S> 0.2388
	              , 0.1687
	              a 0.1687
	            the 0.0736

        January   433109   2 (9)
	             us 0.5492
	        January 0.3804
	           turn 0.3804
	        general 0.2388
	        writing 0.2388
	              , 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

      Februar}-   433125   6 (12)
	        Februar 0.7789
	             is 0.5492
	       Februare 0.5492
	          about 0.5492
	             us 0.5492
	       February 0.5178
	              , 0.2388
	           such 0.2388
	          which 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

              a   433135   1 (5)
	            the 0.5492
	             us 0.5492
	              a 0.5492
	              , 0.5492
	           </S> 0.5492

          daily   433142   1 (8)
	           days 0.7789
	          daily 0.7789
	           sala 0.5492
	            has 0.5178
	              a 0.5178
	              , 0.2388
	           </S> 0.1687
	             of 0.0736

        visited   433148   1 (7)
	        visited 0.7789
	              a 0.5492
	          visit 0.5178
	           dose 0.2388
	           </S> 0.1687
	              , 0.1687
	              . 0.0736

            m^'   433156   2 (7)
	             mm 0.5492
	             us 0.2388
	             my 0.2388
	              a 0.1687
	           </S> 0.1687
	              , 0.1687
	            the 0.0736

         garden   433160   1 (7)
	           site 0.5492
	         Garden 0.5492
	             us 0.5492
	         garden 0.5492
	           </S> 0.5492
	              , 0.5492
	              a 0.5492

        Dulwich   433206   1 (8)
	              a 0.5492
	              , 0.5492
	           </S> 0.5492
	        Dulwich 0.5492
	            the 0.5492
	             us 0.2388
	          which 0.1687
	           your 0.0736

          first   433214   1 (6)
	              a 0.5492
	          first 0.5492
	              . 0.3804
	           </S> 0.1687
	        College 0.1687
	              , 0.0736

           made   433282   1 (9)
	       articles 0.5492
	          major 0.5492
	           made 0.5492
	          items 0.5492
	              a 0.5178
	           </S> 0.0942
	              . 0.0942
	              , 0.0736
	          sites 0.0736

       assuring   433303   1 (11)
	            and 0.5492
	       assuring 0.5492
	           </S> 0.5492
	     conditions 0.5492
	              I 0.5492
	              " 0.5492
	      Passerine 0.5492
	          using 0.2388
	         please 0.1687
	             to 0.1687
	            the 0.0736

          Rooks   433353   1 (9)
	          Rooks 0.7789
	           eyes 0.5492
	          shoes 0.5178
	          Books 0.5178
	              , 0.2388
	             us 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

       carrying   433359   1 (7)
	        current 0.5492
	              a 0.5492
	       carrying 0.5492
	              - 0.5178
	              . 0.5017
	           </S> 0.0942
	              , 0.0736

      Feathered   433401   1 (9)
	      Feathered 0.7789
	          other 0.5492
	          Hello 0.5492
	             of 0.2388
	             as 0.2388
	              a 0.2388
	            The 0.1687
	              , 0.1687
	           </S> 0.0736

            Mr.   433440   1 (9)
	              s 0.5492
	              a 0.5492
	            Mr. 0.5492
	             My 0.5492
	           </S> 0.5492
	              @ 0.5492
	             d. 0.5492
	              , 0.5492
	            the 0.0736

             W.   433444 inf (9)
	             We 0.7789
	              . 0.5492
	              a 0.5492
	      Spielberg 0.5492
	             J. 0.2388
	              , 0.2388
	         Robert 0.2388
	           </S> 0.1687
	       Chairman 0.0736

             N.   433447 inf (8)
	             No 0.7114
	           Ryan 0.5492
	             A. 0.5492
	              I 0.5492
	              . 0.2388
	              , 0.1687
	           </S> 0.1687
	           Bush 0.0736

         Rushen   433450   2 (9)
	          Rules 0.7789
	              a 0.5492
	              s 0.5492
	           User 0.5492
	         Rushen 0.5492
	          Korea 0.2388
	        America 0.2388
	           </S> 0.1687
	              , 0.0736

           says   433457   2 (8)
	           From 0.7789
	            TEL 0.5492
	              a 0.5492
	           says 0.5492
	           said 0.5492
	           sala 0.5492
	              , 0.0942
	           </S> 0.0736

          Rooks   433482   1 (11)
	             us 0.5492
	          Books 0.5492
	              a 0.5492
	          Rooks 0.5492
	           </S> 0.1687
	            men 0.1687
	       children 0.1687
	              , 0.1687
	              . 0.1687
	            man 0.1687
	         people 0.0736

           near   433488   1 (6)
	           near 0.5492
	            new 0.5492
	            arz 0.5492
	              a 0.5492
	           </S> 0.0942
	              , 0.0736

       Wanstead   433493   1 (8)
	       Wanstead 0.7789
	        instead 0.7789
	           Hyde 0.5492
	          major 0.5492
	              a 0.2388
	           </S> 0.2388
	              , 0.2388
	            the 0.0736

            and   433573   1 (5)
	              , 0.5492
	            and 0.5492
	            arz 0.5492
	              } 0.2236
	           </S> 0.0736

          the}-   433604 inf (8)
	              , 0.5492
	           </S> 0.5492
	            and 0.5492
	              a 0.5492
	           thee 0.5324
	          their 0.2388
	            you 0.1687
	            the 0.0736

           must   433610   1 (6)
	           must 0.5492
	              a 0.5492
	           </S> 0.5492
	             us 0.5492
	              I 0.5492
	              , 0.5492

              t   433651 inf (8)
	             tt 0.5324
	             us 0.5178
	             of 0.2388
	             at 0.2388
	             to 0.2388
	              ) 0.1687
	              , 0.1687
	           </S> 0.0736

         formed   433693   4 (7)
	              a 0.5492
	           </S> 0.5492
	            and 0.5492
	         formed 0.5178
	            for 0.1687
	            one 0.1687
	            the 0.0736

         sticks   433710   1 (9)
	          still 0.7789
	         sticks 0.7789
	          bones 0.5492
	         spinas 0.5492
	              a 0.2388
	       language 0.2388
	              . 0.1687
	           </S> 0.1687
	              , 0.0736

           moss   433793   2 (10)
	             us 0.7789
	           moss 0.5492
	           most 0.5178
	              ) 0.2388
	           </S> 0.1687
	           even 0.1687
	              a 0.1687
	              . 0.1687
	            not 0.1687
	              , 0.0736

           dead   433799   1 (11)
	          young 0.5492
	              a 0.5492
	      sometimes 0.5492
	           dead 0.5492
	           </S> 0.5492
	            cia 0.5492
	            dry 0.5178
	           year 0.5017
	           your 0.2388
	          which 0.1687
	            the 0.0736

         number   433835   1 (8)
	         number 0.7789
	       benefits 0.5492
	          price 0.5492
	              a 0.5178
	             of 0.2388
	           </S> 0.1687
	            are 0.1687
	              , 0.0736

        similar   433922   2 (7)
	        various 0.5324
	           some 0.5178
	             no 0.5178
	        similar 0.5178
	           </S> 0.2388
	              , 0.2388
	              a 0.0736

           they   433968   1 (6)
	           they 0.5492
	              a 0.5492
	              , 0.5492
	         Corvus 0.5492
	              } 0.2236
	           </S> 0.0736

             iu   434083   4 (8)
	              a 0.5492
	             iu 0.5492
	           when 0.5178
	           </S> 0.2388
	             in 0.2388
	              . 0.1687
	              , 0.0942
	           than 0.0736

      different   434086   4 (7)
	              s 0.7789
	              a 0.7789
	             of 0.7789
	      different 0.5492
	            the 0.5324
	              , 0.2236
	           </S> 0.0736

          nests   434096   1 (8)
	          nests 0.7789
	            new 0.5178
	           next 0.5178
	           </S> 0.1687
	          parts 0.1687
	              , 0.1687
	           ways 0.1687
	           from 0.0736

            the   434104   1 (5)
	              , 0.5492
	            the 0.5492
	             us 0.5492
	              } 0.2236
	           </S> 0.0736

        thicklj   434165   1 (7)
	        thickly 0.7789
	          think 0.5017
	          click 0.2388
	              , 0.1687
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

              '   434172   1 (7)
	              ' 0.5492
	             be 0.5492
	           </S> 0.5492
	              . 0.5492
	             us 0.5492
	            the 0.5492
	              , 0.5492

           deep   434242   1 (10)
	           does 0.7789
	           deep 0.7789
	           webs 0.7114
	             us 0.5492
	              a 0.5492
	            for 0.5017
	              . 0.2388
	           </S> 0.1687
	              , 0.1687
	          image 0.0736

        figured   434287   1 (8)
	        figured 0.5492
	       products 0.5492
	              a 0.5178
	             of 0.2388
	           that 0.2388
	            for 0.2388
	           </S> 0.1687
	              , 0.0736

          figs.   434309   5 (7)
	              ( 0.5492
	              a 0.5492
	           </S> 0.5492
	            and 0.5492
	           figs 0.5178
	          first 0.2388
	            the 0.0736

            241   434315 inf (7)
	             24 0.7789
	              , 0.7789
	             us 0.5492
	            the 0.5492
	              a 0.5492
	           </S> 0.1687
	              1 0.0736

            243   434359 inf (8)
	       analysis 0.5492
	             us 0.5178
	              2 0.2388
	             on 0.2388
	           </S> 0.1687
	              , 0.1687
	              a 0.1687
	            the 0.0736

           Farn   434394   1 (8)
	              a 0.5492
	             C. 0.5492
	         Dalton 0.5492
	           Farn 0.5492
	            arz 0.5492
	            For 0.5178
	              , 0.1687
	           </S> 0.0736

             's   434398   1 (8)
	             is 0.7789
	             's 0.7789
	              s 0.5492
	         MATTER 0.5492
	              a 0.5492
	              , 0.1687
	           </S> 0.0736
	           Wang 0.0497

              .   434400   4 (9)
	           page 0.5492
	          words 0.5492
	             us 0.5178
	              " 0.1687
	              . 0.1687
	              , 0.1687
	            the 0.1687
	           </S> 0.0736
	              a 0.0736

             as   434561   1 (6)
	             us 0.5492
	              I 0.5492
	              , 0.5492
	             as 0.5492
	              } 0.2236
	           </S> 0.0736

         branch   434583   2 (8)
	           rain 0.5492
	         branch 0.5178
	         Branch 0.5178
	         Search 0.5017
	         future 0.1687
	           same 0.1687
	              - 0.1687
	           </S> 0.0736

          the}-   434590 inf (8)
	          their 0.7789
	           thee 0.5492
	              a 0.5492
	            the 0.5178
	              , 0.1687
	              - 0.1687
	           </S> 0.1687
	             of 0.0736

            tip   434596   1 (6)
	              a 0.5492
	            tip 0.5492
	              , 0.5492
	            the 0.5492
	           </S> 0.5492
	            cia 0.5492

       forwards   434600   1 (9)
	       forwards 0.7789
	        forward 0.5324
	              s 0.5178
	         sheets 0.5178
	              a 0.5017
	          drill 0.2388
	              , 0.1687
	           </S> 0.1687
	             of 0.0736

            but   434672   1 (6)
	            but 0.5492
	             us 0.5492
	              , 0.5492
	              a 0.5492
	              } 0.2236
	           </S> 0.0736

          the}'   434729 inf (7)
	              a 0.5492
	            and 0.5492
	              - 0.5492
	           </S> 0.5492
	           thee 0.5324
	          their 0.2388
	            the 0.0736

      gradually   434735   1 (6)
	           </S> 0.5492
	              , 0.5492
	      gradually 0.5492
	        details 0.5492
	              a 0.5492
	             us 0.5492

             To   434906   1 (6)
	             To 0.7789
	              , 0.7789
	             us 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

       accuracv   435173   8 (11)
	         accura 0.7789
	              * 0.5492
	              a 0.5492
	       accuravi 0.5492
	       contents 0.5492
	              , 0.5492
	        address 0.5492
	       accuracy 0.5178
	     University 0.1687
	        purpose 0.1687
	           </S> 0.0736

      authoress   435296   1 (7)
	      authoress 0.7789
	              F 0.5492
	      directors 0.5492
	         author 0.2388
	           term 0.1687
	              - 0.1687
	           </S> 0.0736

              '   435305   4 (7)
	             us 0.5492
	             DT 0.5492
	            the 0.5492
	              ' 0.5178
	           </S> 0.2236
	              , 0.1687
	             of 0.0736

           Rook   435398   1 (9)
	           Rook 0.7789
	        success 0.5492
	              , 0.5492
	       coverage 0.5492
	              . 0.5492
	              a 0.5492
	           good 0.2388
	           </S> 0.1687
	           site 0.0736

          could   435404   1 (8)
	              s 0.5492
	            and 0.5492
	          could 0.5492
	           </S> 0.5492
	              a 0.5492
	            why 0.2388
	           will 0.2388
	            the 0.0736

         Hooded   435451   1 (7)
	         Hooded 0.7789
	       Counting 0.5492
	          Hotel 0.5178
	              , 0.1687
	              a 0.0942
	            the 0.0736
	           </S> 0.0736

            she   435465   1 (7)
	            she 0.5492
	              , 0.5492
	              a 0.5492
	            see 0.5492
	             us 0.5492
	              } 0.2236
	           </S> 0.0736

         parent   435485   2 (9)
	           part 0.7789
	              a 0.5492
	          tries 0.5492
	          based 0.5492
	         parent 0.5492
	          parva 0.5492
	             of 0.5178
	              , 0.0736
	           </S> 0.0736

            Yet   435637   1 (7)
	            Yet 0.7789
	              , 0.7789
	            You 0.7789
	             us 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

       creature   435667   1 (10)
	       creature 0.5492
	              a 0.5324
	             us 0.5178
	           </S> 0.5178
	             of 0.5178
	        because 0.2388
	     Christians 0.2388
	         church 0.2388
	              , 0.0736
	             by 0.0736

         hungiy   435714   1 (13)
	         hungry 0.7789
	           hung 0.7789
	              a 0.5492
	       hungrily 0.5492
	         Dhungi 0.5492
	        hinugay 0.5492
	          Munia 0.5492
	              , 0.1687
	          hours 0.1687
	           </S> 0.1687
	          years 0.1687
	              . 0.1687
	              - 0.0736

            and   435721   1 (5)
	           </S> 0.5492
	              . 0.5492
	              , 0.5492
	            and 0.5492
	            arz 0.5492

      clamorous   435730   1 (9)
	      clamorous 0.5492
	             us 0.5492
	              a 0.2388
	           more 0.1687
	              , 0.1687
	             so 0.1687
	           </S> 0.1687
	              - 0.0942
	              . 0.0736

         mouths   435740   2 (10)
	         people 0.7789
	             be 0.5492
	              a 0.5492
	             us 0.5492
	         before 0.5492
	          South 0.5492
	         mouths 0.5492
	           </S> 0.5178
	              . 0.2388
	              , 0.0736

   depredations   435843   1 (9)
	   depredations 0.5492
	    information 0.5492
	              a 0.5492
	         Corvus 0.5178
	         Agency 0.5017
	           laws 0.5017
	              . 0.2388
	              , 0.0736
	           </S> 0.0736

           Poor   435960   2 (7)
	              , 0.7789
	              a 0.5492
	           good 0.5492
	           Poor 0.5492
	           Pica 0.5492
	              " 0.2388
	           </S> 0.0736

         hunted   435965   2 (5)
	          hotel 0.7789
	              a 0.5492
	         hunted 0.5492
	              , 0.2388
	           </S> 0.0736

           Crow   435972   1 (8)
	              s 0.5492
	         Stupid 0.5492
	           Crow 0.5492
	              a 0.5178
	           from 0.5017
	           </S> 0.2388
	              , 0.1687
	           down 0.0736

        against   435978   1 (9)
	              " 0.5492
	              I 0.5492
	            The 0.5492
	         Corvus 0.5492
	            and 0.5492
	           </S> 0.5492
	        against 0.5492
	             to 0.1687
	            the 0.0736

         ever}'   435991   3 (9)
	          other 0.5492
	         everre 0.5492
	          every 0.5178
	           ever 0.5178
	              . 0.2388
	           </S> 0.2388
	              , 0.1687
	              a 0.1687
	            the 0.0736

            man   435998   1 (8)
	          major 0.5492
	             is 0.5492
	            man 0.5492
	           </S> 0.5492
	              , 0.5492
	            may 0.5492
	              a 0.5492
	           have 0.5492

            She   436021   1 (7)
	              a 0.5492
	            She 0.5492
	             us 0.5492
	            the 0.5492
	              , 0.5492
	              ) 0.2388
	           </S> 0.0736

      thirsting   436086   1 (7)
	        Listing 0.5492
	      thirsting 0.5492
	              a 0.5178
	           </S> 0.2388
	             of 0.1687
	              , 0.0942
	              . 0.0736

       cylinder   436121   1 (11)
	       cylinder 0.7789
	            may 0.5492
	              a 0.5492
	             is 0.5492
	         online 0.5492
	              , 0.5492
	           sign 0.5492
	          major 0.2388
	           </S> 0.1687
	           time 0.1687
	            day 0.0736

        pointed   436130   1 (7)
	          point 0.7789
	        pointed 0.7789
	              a 0.5492
	             of 0.2388
	           </S> 0.1687
	              , 0.0736
	              . 0.0497

          snare   436197   1 (10)
	          state 0.7789
	          snare 0.7789
	           sala 0.5492
	            way 0.5178
	              a 0.5178
	          thing 0.5178
	             of 0.5178
	           </S> 0.3804
	              , 0.0736
	            and 0.0736

       entangle   436206   1 (7)
	       entangle 0.7789
	         murder 0.5492
	         change 0.2388
	            try 0.2388
	             us 0.2388
	              a 0.1687
	            the 0.0736

           dear   436251   1 (8)
	           </S> 0.5492
	              a 0.5492
	            and 0.5492
	           dear 0.5492
	            arz 0.5492
	           year 0.5017
	           such 0.1687
	            the 0.0736

        clamour   436271   1 (8)
	            and 0.5492
	              , 0.5492
	           </S> 0.5492
	              a 0.5492
	        clamour 0.5492
	           your 0.2388
	             or 0.1687
	            the 0.0736

            How   436289   1 (7)
	            How 0.7789
	           Home 0.7789
	              , 0.7789
	             us 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

              -   436292   5 (7)
	             us 0.7789
	              , 0.5178
	           </S> 0.3804
	            the 0.2388
	           much 0.1687
	              - 0.1687
	             to 0.0736

             or   436345   1 (6)
	             us 0.5492
	             or 0.5492
	              a 0.5492
	              , 0.5492
	              } 0.2236
	           </S> 0.0736

          Robin   436353   2 (7)
	          comix 0.7789
	          Robin 0.5324
	           down 0.5178
	           </S> 0.1687
	              a 0.1687
	              , 0.1687
	            the 0.0736

         babies   436359   2 (11)
	          based 0.7789
	              a 0.5492
	         babies 0.5492
	           they 0.5492
	     statements 0.5492
	         Lanius 0.5492
	             is 0.2388
	       Williams 0.1687
	              , 0.1687
	           </S> 0.1687
	           Hood 0.0736

         babies   436406   1 (9)
	         babies 0.5492
	           been 0.5492
	            the 0.5492
	              a 0.5492
	           like 0.5492
	         Lanius 0.5492
	              . 0.1687
	           </S> 0.0736
	              , 0.0736

            The   436436   1 (6)
	              a 0.5492
	              , 0.5492
	            The 0.5492
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

        ignores   436447   1 (8)
	           into 0.5492
	        ignores 0.5492
	              a 0.5178
	             of 0.2388
	            and 0.1687
	           </S> 0.1687
	             in 0.1687
	              , 0.0736

            she   436479   1 (7)
	            she 0.7789
	             us 0.5492
	              a 0.5178
	            the 0.5178
	              . 0.1687
	           </S> 0.1687
	              , 0.0736

           carr   436647   1 (11)
	            cia 0.5492
	           good 0.5492
	           free 0.5492
	           carr 0.5492
	             to 0.2388
	            can 0.2388
	              , 0.2388
	              a 0.1687
	             do 0.1687
	           </S> 0.1687
	     dispatched 0.0736

           catv   436667 inf (14)
	           cats 0.7789
	            cat 0.7789
	         appear 0.5492
	        catvine 0.5492
	            cia 0.5492
	           cvat 0.5492
	          least 0.5492
	            can 0.2388
	             it 0.1687
	              a 0.1687
	           </S> 0.1687
	            not 0.1687
	            the 0.1687
	              , 0.0736

            and   436673   1 (6)
	           </S> 0.5492
	      sometimes 0.5492
	            and 0.5492
	            arz 0.5492
	           with 0.1687
	            the 0.0736

        rookery   436711   1 (10)
	        rookery 0.7789
	          house 0.5492
	           wife 0.5492
	          worth 0.5492
	           fast 0.5492
	          Books 0.1687
	           name 0.1687
	              , 0.1687
	              a 0.0736
	           </S> 0.0736

           born   436720   1 (9)
	         photos 0.5492
	           born 0.5492
	              " 0.5492
	       Coronado 0.5492
	          corax 0.5492
	           free 0.2388
	           more 0.2388
	              i 0.2388
	            the 0.0736

      incessant   436743   1 (7)
	          heavy 0.5492
	        Germany 0.5492
	      incessant 0.5492
	              , 0.5178
	           </S> 0.2388
	              a 0.1687
	            the 0.0736

        ar-cc-o   436848 inf (11)
	           </S> 0.5492
	            and 0.5492
	         Golden 0.5492
	              , 0.5492
	         arccos 0.5492
	        arrocco 0.5492
	            The 0.5492
	            Vol 0.5492
	              I 0.5492
	             pp 0.2388
	            the 0.0736

              .   436855   1 (6)
	           </S> 0.5492
	           Gate 0.5492
	             us 0.5492
	            the 0.5492
	              , 0.5492
	              . 0.5492

           arid   436959   1 (11)
	           arid 0.7789
	            arz 0.5492
	              e 0.2388
	            all 0.2388
	            are 0.1687
	          other 0.1687
	              , 0.1687
	            any 0.1687
	            the 0.0736
	           </S> 0.0736
	           more 0.0497

     localities   436964   1 (11)
	             us 0.5492
	           like 0.5492
	     localities 0.5492
	         images 0.5492
	              a 0.5324
	              ) 0.5178
	              . 0.2388
	        regions 0.1687
	              , 0.1687
	           </S> 0.1687
	            and 0.0736

       mollusca   436991   1 (9)
	       mollusca 0.7789
	       wildlife 0.5492
	          <UNK> 0.5492
	      therefore 0.5492
	              , 0.5492
	            and 0.5492
	              a 0.5492
	           most 0.2388
	            the 0.0736

        carrion   437035   1 (10)
	        carrion 0.7789
	             us 0.5492
	unconsciousness 0.5492
	           case 0.2388
	        writing 0.2388
	           Iraq 0.2388
	              , 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

          Later   437074   1 (8)
	              , 0.7789
	           Date 0.7789
	          Later 0.7789
	            but 0.5492
	              a 0.5492
	          Pales 0.5492
	              " 0.2388
	           </S> 0.0736

         fruits   437092   1 (9)
	         fruits 0.7789
	          rufus 0.5492
	              a 0.5017
	           2000 0.2388
	           from 0.2388
	             of 0.1687
	           </S> 0.1687
	              . 0.0736
	              , 0.0497

          beech   437100   1 (10)
	           </S> 0.5492
	              ( 0.5492
	             xf 0.5492
	              s 0.5492
	           self 0.5492
	              a 0.5492
	       desserts 0.5492
	          beech 0.5492
	           been 0.5492
	            the 0.0736

            but   437134   1 (6)
	              , 0.5492
	              a 0.5492
	            but 0.5492
	             us 0.5492
	              } 0.2236
	           </S> 0.0736

         refuse   437205   1 (7)
	         refuse 0.7789
	          rufus 0.7789
	         before 0.5178
	              , 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

          heaps   437212   1 (7)
	          heaps 0.7789
	        display 0.5492
	           help 0.5324
	           </S> 0.5017
	              a 0.5017
	              , 0.2388
	             to 0.0736

           cast   437237   1 (7)
	           cast 0.5492
	            cia 0.5492
	              a 0.5324
	            can 0.5178
	           </S> 0.2388
	              , 0.1687
	             of 0.0736

         though   437260   1 (5)
	         though 0.5492
	              a 0.5492
	              , 0.5492
	              } 0.2236
	           </S> 0.0736

       sparrows   437324   1 (9)
	       sparrows 0.5492
	        support 0.5492
	         editor 0.5492
	       bacteria 0.5178
	           </S> 0.2388
	              , 0.2388
	              a 0.2388
	             us 0.2236
	            the 0.0736

           cage   437393   1 (10)
	           cage 0.7789
	            cia 0.7789
	       yourself 0.5492
	            can 0.5178
	           free 0.2388
	              , 0.2388
	           </S> 0.1687
	           sale 0.1687
	              a 0.1687
	            the 0.0736

           ni}-   437410 inf (9)
	            nin 0.5492
	             ni 0.5492
	              a 0.5492
	              , 0.5492
	           nice 0.5492
	            cia 0.5492
	            not 0.5492
	              } 0.2236
	           </S> 0.0736

        brother   437415   1 (4)
	              ) 0.5492
	       Brothers 0.5492
	        brother 0.5492
	           </S> 0.5492

            Mr.   437490   3 (8)
	              , 0.7789
	             My 0.7789
	              s 0.5492
	              a 0.5492
	             Mr 0.5492
	            Mrs 0.5492
	              " 0.2388
	           </S> 0.0736

        Bonhote   437503 inf (10)
	           Book 0.5492
	              s 0.5492
	         nonhot 0.5492
	       nonhotel 0.5492
	        Benhote 0.5492
	       Bonhomme 0.5492
	              : 0.2388
	          <UNK> 0.2388
	           </S> 0.0942
	              , 0.0736

         writes   437511   1 (7)
	          Clark 0.5492
	          write 0.5492
	         writes 0.5492
	              a 0.5492
	        tristis 0.5492
	           </S> 0.2388
	              , 0.0736

            but   437544   1 (7)
	             us 0.5492
	            but 0.5492
	              , 0.5492
	         humans 0.5492
	              a 0.5492
	              } 0.2236
	           </S> 0.0736

        Carrion   437558   1 (11)
	        Carrion 0.7789
	              , 0.5492
	            non 0.5492
	            sub 0.5492
	              I 0.5492
	       Sarbanes 0.5492
	           same 0.1687
	           rest 0.1687
	            two 0.1687
	           City 0.1687
	           </S> 0.0736

       scarcely   437605   1 (6)
	              a 0.5492
	       securely 0.5492
	              , 0.5492
	       scarcely 0.5492
	              } 0.2236
	           </S> 0.0736

         FAMILY   437721   1 (5)
	              a 0.5492
	         FAMILY 0.5492
	              " 0.1687
	              , 0.1687
	           </S> 0.0736

     ALAUDIDJ-:   437728 inf (13)
	        MEDICAL 0.7789
	              ) 0.7789
	        STUDIES 0.7789
	          ALBUM 0.7789
	              D 0.5492
	           LAND 0.5492
	      FILTERING 0.5492
	              a 0.5492
	              s 0.5492
	            AND 0.5178
	              , 0.5017
	           </S> 0.0736
	              : 0.0736

              .   437738   1 (6)
	              , 0.5492
	             us 0.5492
	             OF 0.5492
	            the 0.5492
	              . 0.5492
	           </S> 0.5492

            THE   437741   1 (7)
	            THE 0.7789
	              I 0.7789
	              , 0.7789
	             us 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

       position   437745   1 (7)
	       positive 0.7789
	       position 0.7789
	              , 0.5492
	      configure 0.5492
	  JURISIDICTION 0.5492
	           BEST 0.1687
	           </S> 0.0736

      vSannders   437770 inf (13)
	        Sanders 0.7789
	         anders 0.5492
	            are 0.5492
	              a 0.5492
	       vianders 0.5492
	        vanders 0.5492
	           very 0.5492
	             us 0.5492
	         person 0.5492
	            the 0.5178
	           Dean 0.1687
	              , 0.0736
	           </S> 0.0497

            has   437780   1 (6)
	             us 0.5492
	            has 0.5492
	              , 0.5492
	           </S> 0.5492
	   accidentally 0.5492
	              a 0.5492

         phiccd   437784 inf (15)
	            phi 0.7789
	         phocid 0.5492
	          piccy 0.5492
	          ophic 0.5492
	        phichqa 0.5492
	        chicchi 0.5492
	       informed 0.5492
	          price 0.5324
	         priced 0.5324
	              , 0.2388
	           made 0.2388
	           done 0.2388
	           </S> 0.1687
	              a 0.1687
	           been 0.0736

           this   437791   1 (5)
	              a 0.5492
	              , 0.5492
	           </S> 0.5492
	           this 0.5492
	            cia 0.5492

       faniil_y   437796   7 (14)
	         fanihy 0.5492
	       fanmilyi 0.5492
	         fanilo 0.5492
	         fainly 0.5492
	         Daniil 0.5492
	        fancily 0.5492
	         family 0.5017
	              a 0.2388
	           </S> 0.1687
	            one 0.1687
	              , 0.1687
	             is 0.0736
	           page 0.0736
	           site 0.0736

              -   437856   2 (8)
	             us 0.7789
	              - 0.5492
	             to 0.5017
	           </S> 0.2388
	             be 0.1687
	              , 0.1687
	            the 0.1687
	            not 0.0736

   Motaciilidcc   437952   1 (9)
	             us 0.5492
	              , 0.5492
	              a 0.5492
	   Motacillidae 0.5492
	            the 0.5492
	          local 0.1687
	         public 0.1687
	            top 0.1687
	           </S> 0.0736

             as   437966   1 (8)
	           </S> 0.5492
	              ( 0.5492
	             as 0.5492
	            and 0.5492
	              I 0.5492
	             us 0.5178
	             or 0.1687
	            the 0.0736

      vSeel)ohm   437972   1 (9)
	        Seebohm 0.5492
	           Enya 0.5492
	           very 0.5492
	          today 0.5492
	              " 0.2388
	              , 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

             's   437981   1 (7)
	           </S> 0.5492
	          <UNK> 0.5492
	              , 0.5492
	              a 0.5492
	             us 0.5492
	             is 0.5492
	             's 0.5492

      evidently   438020   1 (8)
	      evidently 0.7789
	      available 0.5492
	          those 0.2388
	              , 0.2388
	            the 0.1687
	              " 0.1687
	           </S> 0.1687
	              a 0.0736

      advocated   438030   1 (7)
	      advocated 0.5492
	          about 0.5178
	              I 0.5178
	             as 0.5178
	           </S> 0.2388
	              , 0.0736
	              a 0.0497

            b}'   438040   6 (6)
	             us 0.7789
	              ' 0.5178
	           </S> 0.2388
	              , 0.2388
	              a 0.1687
	             by 0.0736

            Dr.   438044   1 (7)
	            are 0.5492
	              , 0.5492
	            Dr. 0.5492
	              a 0.5492
	            the 0.5492
	           </S> 0.5492
	            arz 0.5492

         Sharpc   438048   1 (10)
	         Sharpe 0.7789
	          Share 0.7789
	              A 0.5492
	        Sarpech 0.5492
	          Sharp 0.5178
	             A. 0.2388
	         Martin 0.1687
	          <UNK> 0.1687
	           </S> 0.0736
	              , 0.0497

          Larks   438161   1 (10)
	          Parus 0.7789
	          Larks 0.7789
	              a 0.5492
	              , 0.5492
	          Links 0.5178
	          world 0.1687
	         system 0.1687
	           same 0.1687
	    information 0.1687
	           </S> 0.0736

           than   438207   1 (7)
	              a 0.7789
	            fly 0.7789
	           than 0.7789
	          torax 0.5492
	             of 0.5178
	              , 0.1687
	           </S> 0.0736

         Pipits   438219   1 (10)
	         Pipits 0.7789
	              a 0.5492
	             us 0.5492
	            the 0.5492
	              , 0.5492
	         rights 0.2388
	            top 0.1687
	         public 0.1687
	          world 0.1687
	           </S> 0.0736

            had   438272   1 (8)
	            had 0.7789
	            cia 0.5492
	              a 0.5492
	              ) 0.2388
	              . 0.1687
	             of 0.1687
	              , 0.1687
	           </S> 0.0736

          borne   438295   2 (8)
	           been 0.7789
	          borne 0.5492
	          corax 0.5492
	              a 0.5178
	           </S> 0.1687
	             of 0.0736
	              , 0.0736
	              . 0.0736

       vSeebohm   438305   1 (9)
	        Seebohm 0.5492
	        Hewllet 0.5492
	          Delta 0.5492
	           </S> 0.5178
	           what 0.5178
	              a 0.5178
	          about 0.5178
	              , 0.2388
	             of 0.0736

             's   438313   1 (7)
	             's 0.5492
	              , 0.5492
	           </S> 0.5492
	             us 0.5492
	            the 0.5492
	              a 0.5492
	             is 0.5492

         appear   438337   3 (8)
	             of 0.7789
	             is 0.7789
	         appear 0.5492
	              I 0.5492
	          areas 0.5492
	           </S> 0.1687
	              , 0.1687
	              ' 0.0736

         Pipits   438377   1 (9)
	         Pipits 0.7789
	            the 0.5492
	             us 0.5492
	              , 0.5492
	              a 0.5492
	         rights 0.2388
	           fact 0.1687
	            top 0.1687
	           </S> 0.0736

       Thrushes   438393   1 (9)
	       Thrushes 0.7789
	              , 0.5492
	           bill 0.5492
	          three 0.5492
	              a 0.5492
	          world 0.1687
	           same 0.1687
	            way 0.1687
	           </S> 0.0736

             do   438402   2 (7)
	             of 0.7789
	             us 0.5492
	              a 0.5492
	             do 0.5492
	            way 0.5492
	           </S> 0.1687
	              , 0.0736

       Warblers   438412   1 (11)
	       Warblers 0.7789
	       question 0.5492
	              , 0.5492
	              a 0.5492
	            the 0.5492
	        cablets 0.5492
	              " 0.1687
	         public 0.1687
	            top 0.1687
	          World 0.1687
	           </S> 0.0736

         Jerdon   438426   1 (9)
	         Jerdon 0.5492
	          Aedon 0.5492
	             it 0.2388
	         person 0.2388
	              " 0.1687
	              , 0.1687
	              a 0.0942
	           </S> 0.0736
	            the 0.0736

             's   438432   9 (10)
	              . 0.7789
	             is 0.7789
	            non 0.5492
	              a 0.5492
	             us 0.5492
	              " 0.5492
	              , 0.1687
	           </S> 0.1687
	            JVC 0.0736
	             's 0.0736

              -   438435   4 (8)
	           book 0.5492
	          Draft 0.5492
	             us 0.5178
	              - 0.1687
	              , 0.1687
	            the 0.1687
	              a 0.0736
	           </S> 0.0736

            may   438448   1 (8)
	            may 0.7789
	            can 0.7789
	             of 0.7789
	          major 0.5492
	              I 0.5492
	              , 0.1687
	           </S> 0.1687
	              ' 0.0736

       P'inchcs   438476 inf (10)
	        Pinchas 0.7789
	          Pinch 0.7789
	             us 0.5492
	              a 0.5492
	              , 0.5492
	      Committee 0.5492
	            the 0.5492
	          right 0.1687
	            top 0.1687
	           </S> 0.0736

             on   438485   1 (6)
	             us 0.5492
	              , 0.5492
	           </S> 0.5492
	             on 0.5492
	              a 0.5492
	             of 0.5492

Jloiifijniioi/Ia   438510 inf (11)
	             in 0.7789
	             us 0.7789
	    information 0.5492
	     individual 0.5492
	             if 0.5492
	       national 0.5492
	           find 0.5492
	              , 0.5324
	           </S> 0.5178
	              a 0.2388
	            the 0.0736

            and   438527   1 (5)
	              , 0.5492
	            and 0.5492
	            the 0.5492
	           </S> 0.5492
	            arz 0.5492

  PUciropluvics   438531 inf (12)
	              , 0.7789
	       services 0.7789
	          click 0.7789
	        Privacy 0.7789
	     facilities 0.5492
	              i 0.5492
	    scholarship 0.5492
	        service 0.5492
	       products 0.5492
	           </S> 0.2388
	              a 0.2236
	            the 0.0736

              ;   438545   1 (6)
	              , 0.5492
	              ; 0.5492
	             us 0.5492
	              . 0.5492
	           </S> 0.5492
	            the 0.5492

            and   438547   1 (4)
	            and 0.5492
	            arz 0.5492
	              } 0.2236
	           </S> 0.0736

         Pipits   438575   1 (9)
	          Posts 0.7789
	         Pipits 0.7789
	          Pipes 0.7114
	              . 0.5492
	           body 0.5492
	       emotions 0.5492
	          world 0.1687
	           same 0.1687
	           </S> 0.0736

        through   438582   2 (6)
	         Anthus 0.7789
	        through 0.5492
	             of 0.5492
	              a 0.5492
	           </S> 0.1687
	              , 0.0736

     Corydallar   438590   1 (8)
	            RSS 0.5492
	         Canada 0.5492
	      Corydalla 0.5492
	             C. 0.5492
	              , 0.5324
	           </S> 0.5178
	              a 0.2388
	            the 0.0736

            The   438602   1 (6)
	           </S> 0.5492
	            the 0.5492
	              , 0.5492
	            The 0.5492
	              a 0.5492
	             us 0.5492

        familj-   438634   7 (12)
	              , 0.5492
	              . 0.5492
	              a 0.5492
	        familja 0.5492
	          major 0.5492
	         familj 0.5492
	         family 0.2388
	           book 0.1687
	        project 0.1687
	           best 0.1687
	          world 0.1687
	           </S> 0.0736

             is   438642   1 (6)
	             is 0.5492
	           </S> 0.5492
	             of 0.5492
	             iu 0.5492
	              , 0.5492
	              a 0.5492

   scutellation   438649   1 (12)
	             to 0.5492
	          major 0.5492
	 responsibility 0.5492
	              a 0.5492
	              , 0.5492
	   scutellation 0.5492
	          world 0.1687
	           most 0.1687
	    information 0.1687
	            top 0.1687
	           case 0.1687
	           </S> 0.0736

             at   438662   1 (6)
	              I 0.5492
	             at 0.5492
	              , 0.5492
	             of 0.5492
	           </S> 0.5492
	            arz 0.5492

            and   438689   1 (5)
	              , 0.5492
	            and 0.5492
	            arz 0.5492
	              } 0.2236
	           </S> 0.0736

      probabl}'   438699   3 (9)
	        probabl 0.7789
	       probabla 0.5492
	       possible 0.2388
	       probably 0.2388
	           </S> 0.1687
	              , 0.1687
	            the 0.1687
	            not 0.1687
	              a 0.0736

          tliis   438720   7 (10)
	           tiis 0.7789
	          tsiis 0.5492
	          aliis 0.5492
	         tiliis 0.5492
	              s 0.5492
	              , 0.2388
	           </S> 0.1687
	           this 0.1687
	              a 0.1687
	            the 0.0736

    peculiarity   438726   1 (8)
	    peculiarity 0.5492
	              , 0.5492
	              . 0.5492
	              a 0.5492
	           best 0.5492
	         public 0.5492
	          <UNK> 0.1687
	           </S> 0.0736

              (   438738   3 (6)
	            the 0.7789
	             us 0.5492
	              ( 0.5324
	           </S> 0.5178
	              , 0.2388
	             of 0.0736

        becanse   438747   5 (14)
	         becase 0.7789
	        bacanes 0.5492
	         secans 0.5492
	          becan 0.5492
	        because 0.2388
	             of 0.2388
	              . 0.1687
	            the 0.1687
	           </S> 0.1687
	           that 0.1687
	              , 0.1687
	          think 0.1687
	              a 0.1687
	             be 0.0736

           they   438755   1 (9)
	           they 0.5492
	        support 0.5492
	             us 0.5492
	             to 0.5492
	              a 0.5492
	           </S> 0.5492
	              , 0.5492
	            the 0.5492
	             of 0.0736

       Sannders   438798 inf (9)
	        Sanders 0.7789
	         anders 0.5492
	              a 0.5492
	         Server 0.5178
	             A. 0.2388
	             is 0.2388
	           Dean 0.1687
	           </S> 0.0942
	              , 0.0736

  subordinating   438807   1 (6)
	            and 0.5492
	              , 0.5492
	           </S> 0.5492
	         during 0.5492
	              a 0.5492
	  subordinating 0.5492

          sa3-s   438842   9 (11)
	             sa 0.7789
	            sas 0.7789
	           sass 0.7789
	           sala 0.5492
	              a 0.5492
	             as 0.5178
	           </S> 0.2388
	              , 0.2388
	           says 0.1687
	           said 0.1687
	            was 0.0736

      majorit}-   438867   6 (10)
	              a 0.5492
	        members 0.5492
	              , 0.5492
	              . 0.5492
	       majorait 0.5492
	       majority 0.2388
	           more 0.2388
	            use 0.1687
	            top 0.1687
	           </S> 0.0736

             O.   438887   1 (8)
	              a 0.5492
	             A. 0.5492
	             O. 0.5492
	             of 0.5178
	              . 0.2388
	              , 0.1687
	             .. 0.1687
	           </S> 0.0736

    Alaiiiiidic   438937 inf (13)
	       American 0.7789
	           page 0.7789
	        listing 0.5492
	              , 0.5492
	              . 0.5492
	           land 0.5492
	    medications 0.5492
	          child 0.5492
	              a 0.5492
	          major 0.5492
	     individual 0.5492
	          world 0.5178
	           </S> 0.0736

     Coii'ida''   438957 inf (12)
	       original 0.7789
	           user 0.7789
	        company 0.7789
	          Board 0.7789
	              ' 0.7789
	            day 0.7789
	        Company 0.5492
	              , 0.5492
	              a 0.5492
	              . 0.5492
	          other 0.5178
	           </S> 0.0736

            has   438968   1 (7)
	             of 0.5492
	              a 0.5492
	           </S> 0.5492
	             is 0.5492
	            has 0.5492
	             us 0.5492
	              , 0.5492

          Larks   438983   1 (12)
	          Parus 0.7789
	          Larks 0.7789
	          table 0.5492
	          Large 0.5178
	          Links 0.5178
	          terms 0.2388
	              - 0.1687
	           form 0.1687
	           same 0.1687
	            top 0.1687
	          world 0.1687
	           </S> 0.0736

       Passcrcs   439007   1 (13)
	       Passeres 0.7789
	      asscracks 0.5492
	         Passca 0.5492
	              a 0.5492
	              . 0.5492
	              , 0.5492
	       Passirac 0.5492
	          world 0.1687
	           page 0.1687
	            day 0.1687
	           last 0.1687
	           year 0.1687
	           </S> 0.0736

            all   439017   1 (9)
	            and 0.5492
	            all 0.5492
	           </S> 0.5492
	              I 0.5492
	              ( 0.5492
	           alba 0.5492
	           with 0.1687
	          while 0.1687
	            the 0.0736

          i'eet   439049 inf (8)
	            eet 0.7789
	            ite 0.7789
	          ikeet 0.5492
	           idea 0.2388
	          items 0.2388
	           same 0.1687
	              - 0.1687
	           </S> 0.0736

         scaled   439055   1 (8)
	              , 0.5492
	           sala 0.5492
	          shall 0.5492
	            not 0.5492
	              a 0.5492
	             of 0.5492
	         scaled 0.5492
	           </S> 0.5492

          Larks   439082   1 (9)
	          Larks 0.7789
	          Parus 0.7789
	       comments 0.5492
	           dead 0.5492
	          Links 0.5178
	          Large 0.5178
	              - 0.1687
	           </S> 0.0736
	      following 0.0497

        walking   439092   1 (7)
	        walking 0.5178
	        working 0.2388
	           </S> 0.1687
	              , 0.1687
	              a 0.1687
	            the 0.0942
	            not 0.0736

          birds   439100   1 (11)
	          first 0.7789
	          birds 0.7789
	         winner 0.5492
	          Parus 0.5492
	         trails 0.2388
	              a 0.2388
	         around 0.1687
	           </S> 0.1687
	              , 0.1687
	             to 0.1687
	       distance 0.0736

       building   439107   1 (9)
	           fish 0.5492
	       building 0.5492
	              , 0.5492
	            and 0.5492
	              a 0.5492
	           </S> 0.5492
	       business 0.5492
	         photos 0.5492
	            the 0.0736

          man}'   439123   4 (9)
	           mana 0.7789
	            man 0.5178
	          major 0.5178
	              - 0.2388
	           many 0.2388
	              , 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

        species   439129   1 (6)
	              , 0.5492
	              a 0.5492
	        species 0.5492
	           </S> 0.5492
	           with 0.5492
	        suecica 0.5492

       roosting   439137   1 (9)
	       roosting 0.7789
	           nest 0.5492
	          based 0.5492
	        Hosting 0.5492
	        Oosting 0.5492
	           name 0.5178
	           </S> 0.1687
	              , 0.0942
	              . 0.0736

       arboreal   439193   1 (11)
	       arboreal 0.7789
	           area 0.5492
	        arborea 0.5492
	            you 0.2388
	         common 0.2388
	              I 0.2236
	              . 0.1687
	           </S> 0.1687
	              , 0.1687
	             of 0.1687
	           than 0.0736

          the}-   439209 inf (8)
	           </S> 0.5492
	              ( 0.5492
	             by 0.5492
	            and 0.5492
	              a 0.5492
	           thee 0.5324
	          their 0.2388
	            the 0.0736

         rarely   439215   1 (5)
	              , 0.5492
	              a 0.5492
	         really 0.5492
	         rarely 0.5492
	           </S> 0.5492

          perch   439222   1 (8)
	          perch 0.7789
	            per 0.7789
	          agree 0.5492
	          parva 0.5492
	           </S> 0.1687
	              a 0.1687
	              , 0.0736
	           seen 0.0497

            and   439239   1 (5)
	              , 0.5492
	            and 0.5492
	            arz 0.5492
	              } 0.2236
	           </S> 0.0736

           dust   439313   1 (10)
	           dust 0.5178
	            dry 0.5178
	             us 0.5178
	           just 0.2388
	           </S> 0.1687
	              a 0.1687
	              , 0.1687
	           they 0.1687
	              I 0.0736
	             it 0.0736

       Sparrows   439349   1 (9)
	       Sparrows 0.7789
	        Service 0.2388
	            use 0.2388
	              , 0.2388
	            one 0.2388
	             us 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

   Gallinaceous   439361   1 (8)
	           dead 0.5492
	    application 0.5492
	   Gallinaceous 0.5492
	          other 0.1687
	              , 0.1687
	              a 0.0942
	           </S> 0.0736
	            the 0.0736

          Their   439381   1 (6)
	          Their 0.7789
	              , 0.7789
	          There 0.7789
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

          Larks   439463   3 (7)
	          Links 0.7789
	              , 0.7789
	              a 0.5492
	          Larks 0.5492
	          Parus 0.5492
	              " 0.2388
	           </S> 0.0736

            are   439469   3 (6)
	            arz 0.5492
	              n 0.5492
	            are 0.5178
	              , 0.1687
	           </S> 0.1687
	              ' 0.0736

            the   439528   1 (5)
	            the 0.5492
	             us 0.5492
	              , 0.5492
	              } 0.2236
	           </S> 0.0736

       stronger   439570   1 (6)
	       stronger 0.7789
	        service 0.5492
	              a 0.5017
	           </S> 0.1687
	             of 0.0736
	              , 0.0736

      doubtless   439625   6 (9)
	              a 0.5492
	            and 0.5492
	      according 0.5492
	              ( 0.5492
	           </S> 0.5492
	      doubtless 0.5178
	          would 0.2388
	             or 0.1687
	            the 0.0736

        soaring   439668   1 (7)
	        soaring 0.7789
	   independence 0.5492
	         spring 0.5178
	        working 0.5178
	              " 0.2388
	           </S> 0.1687
	            own 0.0736

       hovering   439676   1 (7)
	         having 0.5492
	       hovering 0.5492
	              a 0.5492
	        profits 0.5178
	              . 0.1687
	           </S> 0.1687
	              , 0.0736

              -   439750   5 (8)
	             us 0.7789
	              % 0.5492
	            the 0.5178
	           that 0.2236
	              - 0.1687
	           </S> 0.1687
	              , 0.0736
	              . 0.0497

        fulness   439814   1 (8)
	        fulness 0.7789
	       Business 0.7789
	              a 0.5492
	         weight 0.5178
	         access 0.2388
	              , 0.2388
	           </S> 0.1687
	           than 0.0736

             By   439836   1 (7)
	              , 0.7789
	             by 0.7789
	             By 0.7789
	             us 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

           bird   439860   5 (11)
	            cia 0.7114
	              i 0.5492
	            non 0.5492
	            sub 0.5492
	           bird 0.5178
	             by 0.5178
	              - 0.1687
	           same 0.1687
	            two 0.1687
	            way 0.1687
	           </S> 0.0736

          Larks   439905   1 (7)
	          Larks 0.7789
	          Parus 0.7789
	          Links 0.5178
	              , 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

       directly   439911   1 (8)
	       directly 0.5492
	         person 0.5492
	      Directory 0.5492
	              a 0.5492
	              . 0.2388
	              , 0.1687
	           </S> 0.1687
	              ' 0.0736

          tells   440011   1 (7)
	          tells 0.7789
	              a 0.5492
	           tell 0.5492
	        greeted 0.5492
	          Pales 0.5492
	           </S> 0.1687
	              , 0.0736

           Lark   440038   1 (12)
	           Lark 0.7789
	              , 0.5492
	           that 0.5492
	              a 0.5492
	              . 0.5492
	            arz 0.5492
	           word 0.2388
	           part 0.1687
	          child 0.1687
	         person 0.1687
	            new 0.0736
	           </S> 0.0736

    Practically   440155 inf (8)
	         Please 0.7789
	              , 0.7789
	    practically 0.5492
	   Practicality 0.5492
	              a 0.5492
	      Practical 0.5492
	              " 0.2388
	           </S> 0.0736

       Aluudida   440171   1 (11)
	      Alaudidae 0.7789
	         Alauda 0.7789
	        aludida 0.5492
	          udida 0.5492
	          style 0.5492
	      Alluaudia 0.5492
	            use 0.1687
	       American 0.1687
	              - 0.1687
	           same 0.1687
	           </S> 0.0736

     constitute   440180   1 (6)
	      community 0.5492
	              a 0.5492
	             of 0.5492
	     constitute 0.5492
	           </S> 0.5492
	              , 0.5492

         fainih   440204 inf (7)
	           find 0.7789
	          faini 0.5492
	        fininha 0.5492
	              O 0.5492
	            War 0.1687
	              , 0.1687
	           </S> 0.0736

              '   440210   1 (6)
	           </S> 0.5492
	              ' 0.5492
	              , 0.5492
	             us 0.5492
	            the 0.5492
	             II 0.5492

         Jerdon   440269   4 (8)
	          Aedon 0.5492
	           John 0.5492
	              , 0.2388
	         Jerdon 0.2174
	              " 0.1687
	           </S> 0.1687
	             he 0.1687
	              a 0.0736

       observes   440276   2 (10)
	     Enterprise 0.7789
	       reserved 0.5492
	          whole 0.5492
	       observes 0.5492
	              a 0.5492
	           said 0.5492
	             as 0.5492
	           </S> 0.1687
	              , 0.1687
	            JVC 0.0736

    j\Iala3-ana   440326 inf (13)
	              , 0.7789
	         Canada 0.7789
	           time 0.7789
	        writing 0.7789
	        vanilla 0.5492
	      corporate 0.5492
	       Malaysia 0.5492
	             us 0.5492
	     managerial 0.5492
	             an 0.5324
	           </S> 0.5178
	              a 0.2388
	            the 0.0736

            and   440338   1 (5)
	             in 0.5492
	           </S> 0.5492
	            and 0.5492
	              , 0.5492
	            arz 0.5492

        Familx-   440355   3 (7)
	              s 0.5492
	        Femilax 0.5492
	         Family 0.5178
	              a 0.2388
	             he 0.2388
	              , 0.1687
	           </S> 0.0736

      ALAUDID.E   440363 inf (8)
	            the 0.5492
	              A 0.5492
	           said 0.5492
	              . 0.5492
	              , 0.5492
	              a 0.5492
	           </S> 0.5492
	              " 0.5492

              .   440372 inf (3)
	             of 0.5492
	             us 0.5492
	            the 0.5492

         Alauda   440390   2 (6)
	              , 0.7789
	         Alauda 0.5492
	              a 0.5492
	         Alaska 0.5492
	              " 0.2388
	           </S> 0.0736

      iDVCiisis   440397   9 (9)
	      configure 0.5492
	          Virus 0.5492
	             is 0.5492
	          dists 0.5492
	           this 0.5492
	              a 0.5492
	           </S> 0.5178
	              , 0.5178
	       arvensis 0.0736

              ,   440406   1 (4)
	              , 0.5492
	            the 0.5492
	             us 0.5492
	           </S> 0.5492

           LiNN   440408 inf (8)
	            LNN 0.5492
	           List 0.5492
	           LiNK 0.5492
	            NiL 0.5492
	            cia 0.5492
	             pp 0.2388
	              i 0.2388
	            the 0.0736

              .   440412   1 (5)
	           </S> 0.5492
	              , 0.5492
	             us 0.5492
	              . 0.5492
	            the 0.5492

          FOUND   440415 inf (10)
	              , 0.7789
	              I 0.7789
	            FOR 0.7789
	       FOXHOUND 0.5492
	            UND 0.5492
	       ZFOUNDRY 0.5492
	           FUND 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

         during   440421   1 (8)
	             of 0.5492
	         during 0.5492
	         dubius 0.5492
	              a 0.5324
	             on 0.5178
	              , 0.2388
	           </S> 0.1687
	              - 0.0736

        nesting   440478   1 (7)
	              a 0.5492
	        Listing 0.5492
	       Swingers 0.5492
	              , 0.5492
	        nesting 0.5492
	              } 0.2236
	           </S> 0.0736

            70°   440522   4 (9)
	              , 0.7789
	              I 0.7789
	            the 0.7789
	             us 0.5492
	           70.5 0.5492
	              0 0.5492
	            270 0.5492
	              " 0.2388
	           </S> 0.0736

              ,   440525   1 (4)
	              , 0.5492
	             us 0.5492
	            the 0.5492
	           </S> 0.5492

      sparingly   440560   1 (9)
	             be 0.5492
	      sparingly 0.5492
	             us 0.5492
	          still 0.5492
	           such 0.5178
	              a 0.2388
	           </S> 0.2388
	              . 0.0736
	              , 0.0736

          South   440719   1 (9)
	          South 0.5492
	              s 0.5492
	           </S> 0.5492
	              a 0.5492
	            and 0.5492
	              ( 0.5492
	           self 0.5492
	           Site 0.5492
	            the 0.0736

      IMongolia   440730   1 (10)
	       Mongolia 0.7789
	        sources 0.5492
	         London 0.5178
	              a 0.5178
	           Asia 0.5017
	              , 0.1687
	              - 0.1687
	           </S> 0.1687
	          coast 0.1687
	             of 0.0736

      Turkestan   440741   1 (8)
	              a 0.5492
	            and 0.5492
	          women 0.5492
	         photos 0.5492
	           </S> 0.5492
	      Turkestan 0.5492
	          these 0.2388
	            the 0.0736

             In   440763   1 (6)
	              , 0.7789
	             In 0.7789
	             us 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

     Throughout   441022 inf (9)
	          There 0.7789
	              , 0.7789
	              a 0.5492
	     throughout 0.5492
	     Throughput 0.5492
	              s 0.5492
	            get 0.5492
	              " 0.2388
	           </S> 0.0736

              -   441067   4 (6)
	             us 0.5492
	            the 0.5178
	             of 0.5178
	              - 0.1687
	              , 0.1687
	           </S> 0.0736

    \^excepting   441110 inf (12)
	      excepting 0.7789
	       terrible 0.5492
	    participate 0.5492
	     trademarks 0.5492
	    unexcepting 0.5492
	       services 0.2388
	    information 0.2388
	              , 0.2388
	              a 0.1687
	           </S> 0.1687
	             to 0.1687
	            the 0.0736

           have   441195   1 (8)
	           have 0.7789
	           lava 0.5492
	              a 0.5492
	            has 0.5178
	              " 0.5178
	              - 0.2388
	              , 0.1687
	           </S> 0.0736

             A.   441256 inf (9)
	             AM 0.7114
	              . 0.5492
	             us 0.5178
	            All 0.5178
	              , 0.2388
	            the 0.1687
	           </S> 0.1687
	              " 0.1687
	              a 0.0736

       dulcivox   441259 inf (12)
	       dulciolo 0.5492
	           name 0.5492
	          whole 0.5492
	       dulcitol 0.5492
	        mulcivo 0.5492
	             as 0.5492
	              a 0.5492
	         dulcio 0.5492
	           does 0.5492
	          <UNK> 0.2388
	              , 0.0942
	           </S> 0.0736

             A.   441269   1 (7)
	              a 0.5492
	            and 0.5492
	           </S> 0.5492
	            All 0.5492
	             A. 0.5492
	           took 0.5492
	            the 0.0736

    caiitarclla   441285 inf (12)
	            all 0.5492
	        Maritan 0.5492
	          alert 0.5492
	        contact 0.5492
	              a 0.5492
	             it 0.5492
	    Paccagnella 0.5492
	         Stella 0.5492
	             at 0.5492
	          <UNK> 0.2388
	              , 0.0942
	           </S> 0.0736

             A.   441298   1 (6)
	              a 0.5492
	            and 0.5492
	           </S> 0.5492
	            All 0.5492
	             A. 0.5492
	            the 0.0736

         liopus   441301 inf (12)
	          lopus 0.5492
	      Scoliopus 0.5492
	           your 0.5492
	         lippus 0.5492
	              a 0.5492
	           opus 0.5492
	         pilous 0.5492
	        Oriolus 0.5492
	          <UNK> 0.1687
	            Yes 0.1687
	              , 0.0736
	           </S> 0.0736

             A.   441309   1 (6)
	              a 0.5492
	            and 0.5492
	           </S> 0.5492
	            All 0.5492
	             A. 0.5492
	            the 0.0736

     blakistoni   441312 inf (11)
	     Blakistons 0.5492
	    Blakistonia 0.5492
	      Blakiston 0.5492
	   blacklistons 0.5492
	        listoni 0.5492
	              a 0.5492
	           also 0.5492
	            Yes 0.5178
	          <UNK> 0.2388
	              , 0.0942
	           </S> 0.0736

             A.   441326   1 (6)
	              a 0.5492
	            and 0.5492
	           </S> 0.5492
	            All 0.5492
	             A. 0.5492
	            the 0.0736

      giilgiila   441329 inf (7)
	           will 0.5492
	       gingilla 0.5492
	              a 0.5492
	            Yes 0.5178
	          <UNK> 0.2388
	              , 0.0942
	           </S> 0.0736

             A.   441340   1 (6)
	              a 0.5492
	            and 0.5492
	           </S> 0.5492
	            All 0.5492
	             A. 0.5492
	            the 0.0736

        axlivox   441357 inf (10)
	        altivos 0.5492
	           also 0.5492
	         axlike 0.5492
	           livo 0.5492
	         alivio 0.5492
	          axlir 0.5492
	              I 0.2388
	          <UNK> 0.1687
	           </S> 0.0736
	              , 0.0736

             A.   441366   1 (6)
	              a 0.5492
	            and 0.5492
	           </S> 0.5492
	            All 0.5492
	             A. 0.5492
	            the 0.0736

      ivai/crsi   441369 inf (8)
	              a 0.5492
	       vaincrai 0.5492
	       vaikersi 0.5492
	          first 0.5492
	            Yes 0.5178
	          <UNK> 0.2388
	              , 0.0942
	           </S> 0.0736

           arid   441380   1 (9)
	            and 0.5492
	           </S> 0.5492
	              " 0.5492
	              I 0.5492
	            are 0.5492
	           arid 0.5492
	            arz 0.5492
	           with 0.1687
	            the 0.0736

             A.   441385 inf (9)
	            All 0.5492
	             AM 0.5492
	             us 0.5492
	              a 0.5178
	             to 0.2388
	              . 0.2388
	           </S> 0.1687
	              , 0.1687
	            and 0.0736

           sala   441388   2 (6)
	           said 0.7789
	           sala 0.5492
	            Yes 0.1687
	              I 0.1687
	              , 0.0736
	           </S> 0.0736

            but   441395   1 (6)
	              , 0.5492
	            but 0.5492
	              a 0.5492
	             us 0.5492
	              } 0.2236
	           </S> 0.0736

    intergrades   441407   1 (7)
	    intergrades 0.7789
	              a 0.2236
	    information 0.2236
	         people 0.1372
	              , 0.0497
	             of 0.0497
	           </S> 0.0497

          exist   441419   1 (7)
	             us 0.5492
	              a 0.5492
	           list 0.5492
	          exist 0.5492
	              , 0.5178
	           </S> 0.5178
	           with 0.0736

 Ornithologists   441430   1 (8)
	 Ornithologists 0.5492
	          those 0.5017
	             is 0.1687
	           they 0.1687
	              , 0.1687
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

      generally   441445   2 (9)
	             is 0.7789
	              a 0.5492
	            you 0.5492
	      generally 0.5492
	         manual 0.5492
	        General 0.5492
	              , 0.5178
	           </S> 0.2388
	              ' 0.0736

            Our   441512   1 (8)
	              , 0.7789
	            Our 0.7789
	            our 0.5492
	             us 0.5492
	              a 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

            Sky   441516   1 (9)
	            See 0.7789
	            Sky 0.7789
	           know 0.5492
	              E 0.5492
	              e 0.5492
	              . 0.5492
	            Pyi 0.5492
	           </S> 0.2388
	          Price 0.0736

              -   441519   4 (7)
	             us 0.5492
	           Fire 0.5492
	            the 0.5178
	              : 0.1687
	              , 0.1687
	              - 0.1687
	           </S> 0.0736

         golden   441565   1 (6)
	         golden 0.7789
	           good 0.7789
	              a 0.5178
	              , 0.1687
	           </S> 0.1687
	             of 0.0736

        centres   441593   1 (10)
	        centres 0.5492
	           Back 0.5492
	              a 0.5492
	        control 0.5492
	           view 0.5492
	        cinerea 0.5492
	           </S> 0.5178
	              . 0.2388
	              , 0.1687
	              - 0.0736

          edges   441619   1 (7)
	          edges 0.5492
	           even 0.5492
	              a 0.5492
	              , 0.5492
	          Pales 0.5492
	              } 0.2236
	           </S> 0.0736

          paler   441649   1 (10)
	          paler 0.7789
	              - 0.7789
	           page 0.5492
	          Pales 0.5492
	              ) 0.5178
	          white 0.5178
	              a 0.5178
	           </S> 0.2388
	              , 0.0736
	              . 0.0736

            the   441657   1 (5)
	             us 0.5492
	            the 0.5492
	              , 0.5492
	              } 0.2236
	           </S> 0.0736

              -   441666   6 (9)
	             us 0.7789
	             's 0.5492
	            the 0.5178
	             of 0.5178
	              , 0.2388
	           </S> 0.1687
	           edge 0.1687
	              - 0.1687
	          space 0.0736

              -   441677   4 (8)
	             us 0.7789
	            all 0.5178
	            the 0.5178
	           </S> 0.1687
	             of 0.1687
	              - 0.1687
	              . 0.0736
	              , 0.0497

       blackish   441717   1 (12)
	       blackish 0.7789
	              , 0.5492
	        winning 0.5492
	            red 0.5492
	              . 0.5492
	              a 0.5492
	    significant 0.1687
	            few 0.1687
	          major 0.1687
	          place 0.1687
	           </S> 0.0736
	            new 0.0736

         streak   441726   1 (8)
	         streak 0.7789
	              a 0.5492
	             of 0.5492
	          store 0.5492
	         impact 0.5492
	           </S> 0.5178
	              , 0.1687
	              - 0.0736

            the   441751   1 (5)
	              , 0.5492
	            the 0.5492
	             us 0.5492
	              } 0.2236
	           </S> 0.0736

        sccuiid   441755 inf (12)
	        sciurid 0.7789
	          white 0.5492
	           cuii 0.5492
	          scuid 0.5492
	           text 0.5492
	        scuirid 0.5492
	        securis 0.5492
	        process 0.1687
	              - 0.1687
	         school 0.1687
	           same 0.1687
	           </S> 0.0736

        feather   441763   1 (7)
	        feather 0.5492
	              , 0.5492
	           </S> 0.5492
	             of 0.5492
	            and 0.5492
	              a 0.5492
	          other 0.5492

          white   441771   1 (8)
	           sits 0.7789
	          white 0.7789
	          while 0.7789
	              a 0.5178
	              . 0.1687
	           </S> 0.1687
	            boa 0.1687
	              , 0.0736

         inider   441801 inf (11)
	        insider 0.7789
	         Snider 0.7789
	       Miniderm 0.5492
	         indier 0.5492
	            QML 0.5492
	              , 0.5492
	         United 0.2388
	              a 0.2388
	          <UNK> 0.1687
	            The 0.1687
	           </S> 0.0736

          parts   441808   1 (7)
	          parts 0.5492
	          party 0.5492
	              a 0.5492
	              : 0.5492
	          parva 0.5492
	              , 0.5492
	           </S> 0.5492

        buffish   441814   1 (9)
	            RHA 0.5492
	            off 0.5492
	        buffish 0.5492
	              a 0.5178
	            but 0.5178
	              : 0.2388
	           </S> 0.1687
	              , 0.1687
	             of 0.0736

          witli   441850  12 (12)
	              a 0.7789
	         witali 0.5492
	           wilt 0.5492
	        witling 0.5492
	          Titli 0.5492
	          witai 0.5492
	           wili 0.5492
	          wolfi 0.5492
	           </S> 0.5178
	              . 0.5017
	              , 0.2388
	           with 0.0736

l:)hickish-br(iwu   441856 inf (7)
	            his 0.7789
	          which 0.7789
	       brownish 0.5492
	              , 0.5492
	           </S> 0.5178
	              a 0.2388
	            the 0.0736

             on   441874   1 (3)
	             us 0.5492
	             on 0.5492
	            the 0.5492

           tlie   441877  10 (10)
	           alba 0.7789
	           trie 0.7789
	           tile 0.7114
	          tliet 0.5492
	         breast 0.5492
	              , 0.2388
	              a 0.1687
	           this 0.1687
	           </S> 0.1687
	            the 0.0736

         throat   441882   2 (9)
	              , 0.7789
	           site 0.5492
	         throat 0.5492
	              a 0.5492
	   augmentation 0.5492
	          torax 0.5492
	           that 0.5492
	           </S> 0.1687
	          <UNK> 0.0736

           bill   441909   1 (8)
	              a 0.5492
	              , 0.5492
	           will 0.5492
	            and 0.5492
	           bill 0.5492
	            cia 0.5492
	              } 0.2236
	           </S> 0.0736

           dark   441914   1 (8)
	            day 0.7789
	           dark 0.7789
	            arz 0.5492
	              a 0.5178
	           </S> 0.1687
	            and 0.1687
	              , 0.0942
	              . 0.0736

           feet   441946   1 (7)
	           free 0.5492
	              a 0.5492
	              , 0.5492
	           feet 0.5492
	              ) 0.5178
	              } 0.2236
	           </S> 0.0736

              j   441951 inf (9)
	             us 0.7789
	             dj 0.7789
	          state 0.5492
	             ja 0.5492
	          water 0.5178
	            the 0.5178
	           </S> 0.1687
	              . 0.0736
	              , 0.0736

              -   441952   3 (6)
	             us 0.7789
	            the 0.5178
	              - 0.2388
	              ) 0.1687
	              , 0.1687
	           </S> 0.0736

       ellowish   441953 inf (9)
	      yellowish 0.7789
	           with 0.5492
	              s 0.5492
	           LECT 0.5492
	              . 0.2388
	             of 0.1687
	             to 0.1687
	              a 0.1687
	           </S> 0.0736

              -   441961   1 (5)
	              , 0.5492
	             us 0.5492
	              - 0.5492
	           </S> 0.5492
	            the 0.5492

           iris   441970   1 (7)
	              a 0.5492
	             is 0.5492
	              , 0.5492
	           iris 0.5492
	             iu 0.5492
	              } 0.2236
	           </S> 0.0736

          hazel   441975   1 (7)
	           have 0.7789
	          hazel 0.7789
	           here 0.7789
	          Pales 0.5492
	              ) 0.2388
	           </S> 0.1687
	              , 0.0736

              .   441980   3 (6)
	            the 0.7789
	             us 0.5492
	           </S> 0.2388
	              . 0.2388
	              , 0.1687
	           eyes 0.0736

          d(jes   442053   4 (11)
	            jes 0.7789
	          Pales 0.5492
	          dejes 0.5492
	            did 0.2388
	           does 0.2388
	            can 0.1687
	              a 0.1687
	              , 0.1687
	           </S> 0.1687
	             do 0.1687
	              I 0.0736

        plumage   442073   1 (9)
	        plumage 0.7789
	             us 0.5492
	         thread 0.5492
	         please 0.5324
	              , 0.2388
	           </S> 0.1687
	              a 0.1687
	           this 0.1687
	            the 0.0736

              :   442081   2 (6)
	             us 0.5492
	            the 0.5178
	              : 0.5178
	           </S> 0.2388
	             of 0.1687
	              , 0.0736

         3-oung   442083   3 (8)
	            oun 0.7789
	          goung 0.5492
	          found 0.5178
	          young 0.5178
	              . 0.2388
	              a 0.2388
	            The 0.1687
	           </S> 0.0736

          birds   442090   1 (8)
	              , 0.5492
	          first 0.5492
	           </S> 0.5492
	          birds 0.5492
	              a 0.5492
	            you 0.5492
	              : 0.5492
	          Parus 0.5492

           buff   442107   1 (9)
	           buff 0.7789
	          rufus 0.5492
	            but 0.5178
	             to 0.5178
	              a 0.5017
	     discretion 0.5017
	              , 0.1687
	           </S> 0.1687
	          range 0.0736

           tips   442112   1 (11)
	           tips 0.7789
	          icons 0.5492
	          cover 0.5492
	            cia 0.5492
	           this 0.5324
	             of 0.5178
	             as 0.5178
	              a 0.5178
	             to 0.2388
	           </S> 0.1687
	              , 0.0736

          moult   442151   1 (8)
	          moult 0.7789
	          maura 0.5492
	          would 0.5324
	              a 0.5178
	           </S> 0.1687
	              , 0.0736
	              . 0.0736
	             of 0.0497

           both   442157   3 (6)
	            but 0.7789
	              a 0.7789
	           both 0.5492
	           </S> 0.1687
	              , 0.0736
	              . 0.0736

         tawn}^   442177   1 (10)
	          tawny 0.7789
	     interested 0.5492
	           tawn 0.5492
	              a 0.5017
	             to 0.2388
	        results 0.2388
	         likely 0.1687
	              , 0.1687
	           </S> 0.1687
	           than 0.0736

      colouring   442187   1 (9)
	      colouring 0.7789
	             us 0.5492
	       children 0.5492
	              , 0.2388
	          other 0.2388
	          stock 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

           bird   442253   1 (9)
	           bird 0.7789
	              a 0.5492
	            cia 0.5492
	             of 0.5492
	       Websites 0.5492
	          right 0.5492
	             by 0.5178
	           </S> 0.1687
	              , 0.0736

       primar}'   442402   1 (11)
	        primary 0.7789
	         primar 0.5492
	             of 0.5492
	       primaria 0.5492
	        primari 0.5492
	        process 0.5178
	              a 0.5017
	           </S> 0.2388
	              , 0.1687
	           time 0.1687
	              - 0.0736

        touches   442411   1 (8)
	             of 0.5492
	           term 0.5492
	           they 0.5492
	             in 0.5492
	           </S> 0.5492
	              , 0.5492
	              a 0.5492
	        touches 0.5492

    distinctl}-   442488   1 (8)
	     distinctly 0.7789
	         little 0.5492
	           much 0.5492
	           more 0.2388
	             no 0.2388
	              , 0.1687
	           </S> 0.1687
	              a 0.0736

         longer   442500   1 (8)
	              a 0.5492
	         higher 0.5492
	           long 0.5492
	           more 0.5492
	              , 0.5492
	         longer 0.5492
	             to 0.5492
	           </S> 0.5492

           se.\   442627 inf (11)
	      direction 0.5492
	           sala 0.5492
	             se 0.5492
	            see 0.5324
	             of 0.2388
	              a 0.2388
	           part 0.1687
	              . 0.1687
	           </S> 0.1687
	              , 0.0736
	             is 0.0736

              .   442631   1 (6)
	            but 0.5492
	            the 0.5492
	             us 0.5492
	              . 0.5492
	              , 0.5492
	           </S> 0.5492

           thus   442675   1 (9)
	           thus 0.7789
	         Anthus 0.5492
	           this 0.5178
	              a 0.5178
	           have 0.2388
	           </S> 0.1687
	            and 0.1687
	              , 0.0736
	              . 0.0497

       catchers   442742   1 (10)
	       catchers 0.7789
	             us 0.5492
	              , 0.5492
	            the 0.5492
	              a 0.5492
	            top 0.1687
	          world 0.1687
	         public 0.1687
	          other 0.1687
	           </S> 0.0736

      forwarded   442811   1 (7)
	      forwarded 0.7789
	       provided 0.5492
	             to 0.2388
	              a 0.1687
	           </S> 0.1687
	              , 0.0736
	           used 0.0497

            b}-   442821   6 (8)
	             us 0.7114
	              - 0.5178
	           </S> 0.5017
	              a 0.5017
	              , 0.5017
	              . 0.2388
	             by 0.2388
	             to 0.0736

    experienced   442825   1 (6)
	             us 0.5492
	              , 0.5492
	              a 0.5492
	    experienced 0.5492
	           </S> 0.5492
	            the 0.5492

     poulterers   442907   1 (10)
	     poulterers 0.7789
	            the 0.5492
	             us 0.5492
	              , 0.5492
	              a 0.5492
	          world 0.1687
	            top 0.1687
	         public 0.1687
	       Internet 0.1687
	           </S> 0.0736

       Although   442920   1 (5)
	              I 0.7789
	              , 0.7789
	       Although 0.7789
	              " 0.2388
	           </S> 0.0736

       abundant   442929   1 (7)
	       abundant 0.7789
	            any 0.5178
	              , 0.2388
	            not 0.2388
	           </S> 0.2388
	              I 0.1687
	            the 0.0736

         enough   442938   4 (8)
	        through 0.7114
	             is 0.5492
	              a 0.5492
	    information 0.5178
	         enough 0.5178
	              , 0.1687
	           </S> 0.1687
	             in 0.0736

          downs   442967   1 (10)
	          downs 0.7789
	           </S> 0.5492
	      therefore 0.5492
	          <UNK> 0.5492
	   honeymooners 0.5492
	              - 0.5492
	              a 0.5492
	            and 0.5492
	           does 0.2388
	            the 0.0736

      certainly   443022   2 (8)
	    Calandrella 0.7789
	              a 0.5492
	        certain 0.5492
	      certainly 0.5492
	              " 0.5324
	              - 0.5178
	              , 0.1687
	           </S> 0.0736

        prefers   443032   1 (7)
	        prefers 0.7789
	        present 0.5178
	           </S> 0.2388
	              , 0.1687
	             do 0.1687
	              a 0.1687
	            not 0.0736

         arable   443040   2 (9)
	            are 0.7789
	             us 0.5492
	              I 0.5492
	         arable 0.5492
	              , 0.5178
	           </S> 0.5178
	              a 0.5017
	             to 0.2388
	         PayPal 0.0736

          shuns   443131   1 (10)
	          shuns 0.7789
	              s 0.5492
	            she 0.5178
	              : 0.2388
	           </S> 0.1687
	            was 0.1687
	              , 0.1687
	              a 0.1687
	             is 0.0736
	             's 0.0497

        thickly   443148   1 (7)
	        thickly 0.7789
	          think 0.7789
	             us 0.5178
	           </S> 0.1687
	              a 0.1687
	             to 0.0736
	              , 0.0736

    plantatious   443203   7 (13)
	    destination 0.5492
	           said 0.5492
	       children 0.5492
	 plantationibus 0.5492
	        servile 0.5492
	      plantatio 0.5492
	    plantations 0.5324
	    information 0.2388
	          there 0.2388
	           </S> 0.1687
	              , 0.1687
	              a 0.1687
	            the 0.0736

            but   443216   1 (9)
	              a 0.5492
	            but 0.5492
	            and 0.5492
	              ( 0.5492
	           </S> 0.5492
	              s 0.5492
	          which 0.1687
	             it 0.1687
	            the 0.0736

        country   443255   2 (7)
	             us 0.5492
	        country 0.5178
	         County 0.5178
	              , 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

      Excepting   443276 inf (7)
	              , 0.7789
	              a 0.5492
	      excepting 0.5492
	      Expecting 0.5492
	      Exception 0.5492
	              " 0.2388
	           </S> 0.0736

     iudividual   443313   6 (12)
	     University 0.5492
	          first 0.5492
	       National 0.5492
	              a 0.5492
	       dividual 0.5492
	     individual 0.5017
	          major 0.2388
	        edition 0.2388
	            one 0.1687
	           </S> 0.1687
	              , 0.1687
	              . 0.0736

             of   443324   1 (7)
	           with 0.5492
	              . 0.5492
	           </S> 0.5492
	             us 0.5492
	              , 0.5492
	             of 0.5492
	           pass 0.5492

             it   443421   1 (6)
	              , 0.5492
	              a 0.5492
	             iu 0.5492
	             it 0.5492
	              } 0.2236
	           </S> 0.0736

          ver3'   443525   4 (9)
	            ver 0.7789
	          verve 0.7789
	            why 0.2388
	              , 0.1687
	           very 0.1687
	            not 0.1687
	            the 0.1687
	           </S> 0.1687
	              a 0.0736

 characteristic   443531   1 (7)
	              , 0.5492
	           </S> 0.5492
	              a 0.5492
	             we 0.5492
	 characteristic 0.5492
	             to 0.5492
	           case 0.5492

              .   443545   3 (6)
	             us 0.5492
	            the 0.5178
	           </S> 0.2388
	              , 0.2388
	              . 0.2388
	             of 0.0736

         always   443571   1 (9)
	            all 0.5492
	            and 0.5492
	           </S> 0.5492
	              I 0.5492
	              ( 0.5492
	         always 0.5492
	           alba 0.5492
	        finding 0.5492
	            the 0.0736

      commences   443578   1 (9)
	      commences 0.7789
	        contact 0.5492
	        returns 0.5492
	            the 0.1687
	              , 0.1687
	           </S> 0.1687
	              a 0.1687
	            had 0.1687
	           been 0.0736

       hovering   443631   1 (11)
	       hovering 0.7789
	           live 0.5492
	          shape 0.5492
	           have 0.5492
	             us 0.2388
	              - 0.2388
	           </S> 0.2388
	            the 0.1687
	              a 0.1687
	              , 0.1687
	             to 0.0736

         action   443640   1 (10)
	         action 0.7789
	              I 0.5492
	              ) 0.5324
	           </S> 0.5178
	       overhead 0.5178
	            and 0.5017
	              , 0.2388
	          about 0.2388
	              . 0.2388
	           over 0.0736

             at   443719   1 (6)
	             as 0.5492
	              , 0.5492
	             at 0.5492
	            arz 0.5492
	              } 0.2236
	           </S> 0.0736

     obliquel}-   443743   1 (9)
	            not 0.5492
	        oblique 0.5492
	             us 0.5492
	      obliquely 0.5492
	           only 0.5178
	              a 0.5017
	           </S> 0.1687
	              , 0.1687
	             to 0.0736

            and   443754   1 (5)
	              , 0.5492
	           </S> 0.5492
	            and 0.5492
	            the 0.5492
	            arz 0.5492

       rapidl}'   443758   4 (8)
	    destination 0.5492
	   subsidiaries 0.5492
	           said 0.5492
	        rapidly 0.5178
	              a 0.1687
	           </S> 0.1687
	              , 0.1687
	            the 0.0736

       abruptly   443850   2 (8)
	          about 0.7789
	       abruptly 0.5492
	             us 0.5492
	              I 0.5492
	           </S> 0.1687
	             to 0.1687
	              , 0.1687
	             of 0.0736

        perhaps   443859   1 (7)
	        perhaps 0.5492
	             BP 0.5492
	              a 0.5492
	          place 0.5492
	           </S> 0.2388
	              . 0.0736
	              , 0.0736

       flutters   444008   1 (9)
	       flutters 0.7789
	             us 0.5492
	          other 0.5492
	           </S> 0.1687
	              a 0.1687
	              , 0.1687
	            was 0.1687
	             is 0.0736
	             's 0.0497

           each   444055   1 (6)
	              , 0.5492
	           each 0.5492
	           lava 0.5492
	              a 0.5492
	              } 0.2236
	           </S> 0.0736

         shrill   444100   2 (10)
	          shall 0.7789
	         shrill 0.5492
	              s 0.5492
	          order 0.5178
	             of 0.2388
	           </S> 0.1687
	              a 0.1687
	        touches 0.1687
	              , 0.1687
	            the 0.0736

              '   444107 inf (6)
	             us 0.5492
	            the 0.5324
	           </S> 0.5178
	              ' 0.5178
	              . 0.1687
	              , 0.0736

          ivhcc   444108 inf (13)
	            icc 0.7789
	          voice 0.5492
	          Avich 0.5492
	           vicc 0.5492
	           Ahcc 0.5492
	          ivica 0.5492
	              a 0.2388
	              ) 0.1687
	              s 0.1687
	             in 0.1687
	           </S> 0.0736
	              , 0.0736
	          <UNK> 0.0497

              ,   444113   1 (6)
	           </S> 0.5492
	            the 0.5492
	              ' 0.5492
	              , 0.5492
	             us 0.5492
	          Night 0.5492

          tvhee   444115 inf (11)
	            tvh 0.7789
	          tehee 0.7789
	              , 0.5492
	          <UNK> 0.5492
	      therefore 0.5492
	          vehet 0.5492
	             L. 0.5492
	           thee 0.5324
	              i 0.2388
	           they 0.1687
	            the 0.0736

          w/icc   444122 inf (9)
	            icc 0.7789
	           wici 0.5492
	          <UNK> 0.5492
	           Pica 0.5492
	          wicca 0.5178
	              i 0.2388
	            one 0.1687
	          which 0.1687
	            the 0.0736

             of   444128   1 (4)
	              , 0.5492
	           </S> 0.5492
	             us 0.5492
	             of 0.5492

     generall}-   444240   7 (8)
	       generall 0.7789
	              a 0.5492
	              ( 0.5492
	            and 0.5492
	            all 0.5492
	           </S> 0.5492
	      generally 0.5178
	            the 0.0736

        amongst   444251   1 (4)
	              I 0.5492
	              , 0.5492
	        amongst 0.5492
	           </S> 0.5492

        growing   444259   1 (8)
	         growth 0.7789
	        growing 0.7789
	              , 0.5178
	           </S> 0.2388
	             us 0.2388
	              a 0.2388
	          other 0.1687
	            the 0.0736

      sheltered   444287   1 (9)
	      sheltered 0.5492
	             us 0.5492
	           work 0.5492
	          based 0.5492
	          state 0.5178
	              , 0.5017
	           </S> 0.2388
	             to 0.1687
	              a 0.0736

            b}'   444309   5 (9)
	             us 0.7789
	              ' 0.5178
	              a 0.5178
	            the 0.2388
	            and 0.1687
	           </S> 0.1687
	             by 0.1687
	              , 0.1687
	             of 0.0736

             an   444313   1 (6)
	             an 0.5492
	           </S> 0.5492
	              , 0.5492
	              I 0.5492
	            the 0.5492
	            arz 0.5492

           tuft   444328   3 (12)
	           that 0.7789
	             of 0.7789
	           tuft 0.5492
	         source 0.5492
	          rufus 0.5492
	          ledge 0.5178
	           part 0.5178
	              a 0.5017
	              , 0.5017
	           </S> 0.2388
	           rock 0.2388
	            the 0.0736

       whatever   444404   1 (8)
	     whatsoever 0.7789
	       whatever 0.7789
	          water 0.7789
	             us 0.5492
	              a 0.5178
	              . 0.1687
	           </S> 0.1687
	              , 0.0736

              a   444415   1 (6)
	             us 0.5492
	              a 0.5492
	              , 0.5492
	            the 0.5492
	              } 0.2236
	           </S> 0.0736

           nest   444426   2 (11)
	            new 0.7789
	             us 0.5492
	           nest 0.5492
	        pronoun 0.5178
	              a 0.5178
	           verb 0.5017
	         vision 0.2388
	             of 0.2388
	           </S> 0.1687
	            and 0.0736
	              , 0.0736

         formed   444450   1 (10)
	         formed 0.7789
	     University 0.5492
	             us 0.5492
	             me 0.5492
	              a 0.5178
	            off 0.2388
	            for 0.2388
	              , 0.1687
	           </S> 0.1687
	              . 0.0736

          bents   444630   1 (8)
	          bents 0.7789
	              a 0.5492
	           best 0.5492
	          steel 0.5492
	              . 0.1687
	           </S> 0.1687
	              , 0.0736
	             up 0.0736

           dead   444640   2 (7)
	            cia 0.7789
	           year 0.5178
	           dead 0.5178
	              , 0.1687
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

         number   444696   1 (7)
	         number 0.7789
	          price 0.5492
	              a 0.5178
	             of 0.2388
	            are 0.1687
	           </S> 0.1687
	              , 0.0736

      incubated   444755   1 (9)
	      incubated 0.5492
	        include 0.5492
	             us 0.5178
	              , 0.1687
	           here 0.1687
	           </S> 0.1687
	              a 0.1687
	             to 0.1687
	             in 0.0736

     represents   444816   1 (9)
	     represents 0.7789
	             by 0.5492
	      different 0.5492
	              s 0.5492
	              a 0.2388
	           </S> 0.1687
	              , 0.1687
	            had 0.1687
	              . 0.0736

        huffish   444904 inf (9)
	        huffish 0.7789
	              - 0.5492
	          silty 0.5492
	           </S> 0.5492
	              a 0.5492
	            and 0.5492
	            his 0.2388
	             or 0.1687
	            the 0.0736

           clay   444912   2 (7)
	           </S> 0.7789
	           clay 0.5492
	            red 0.5492
	              a 0.5492
	            cia 0.5492
	            can 0.5492
	              , 0.0736

      generally   444949   1 (5)
	      generally 0.5492
	              a 0.5492
	              , 0.5492
	              } 0.2236
	           </S> 0.0736

        densely   444959   1 (6)
	        densely 0.7789
	          sense 0.7789
	           </S> 0.1687
	              a 0.1687
	             in 0.1687
	              , 0.0736

        mottled   444967   1 (8)
	        mottled 0.7789
	             to 0.7114
	              a 0.5492
	         little 0.5492
	              , 0.5178
	           </S> 0.2236
	         packed 0.1687
	      populated 0.0736

         smok}'   444989 inf (11)
	           smok 0.7789
	          until 0.5492
	         canola 0.5492
	      vegetable 0.5492
	          smoko 0.5492
	          smoke 0.5178
	           some 0.1687
	              , 0.1687
	              a 0.0942
	            the 0.0736
	           </S> 0.0736

           grey   444996   1 (9)
	              , 0.5492
	           </S> 0.5492
	           grey 0.5492
	           free 0.5492
	              . 0.5492
	              a 0.5492
	              e 0.5492
	         golden 0.5492
	            arz 0.5492

           zone   445061   1 (9)
	             of 0.7789
	           zone 0.7789
	           look 0.7789
	            one 0.7789
	              a 0.7789
	         corone 0.5492
	           </S> 0.2388
	              , 0.1687
	           than 0.0736

      sometimes   445118   1 (6)
	      sometimes 0.5492
	              , 0.5492
	              a 0.5492
	       November 0.5492
	              } 0.2236
	           </S> 0.0736

        streaks   445154   1 (11)
	        streaks 0.5492
	             us 0.5492
	           that 0.5492
	          sites 0.5178
	              a 0.5178
	           here 0.5017
	           </S> 0.1687
	              . 0.1687
	         around 0.1687
	              , 0.1687
	     throughout 0.0736

            egg   445207   2 (10)
	            the 0.7789
	             us 0.5492
	            egg 0.5492
	      criminals 0.5492
	              a 0.5492
	          thing 0.5492
	            get 0.5492
	           </S> 0.1687
	              , 0.1687
	       behavior 0.0736

         whicli   445211   4 (7)
	        Chiclid 0.5492
	         whilie 0.5492
	         chwili 0.5492
	              a 0.5178
	          which 0.5178
	           </S> 0.1687
	              , 0.0736

              I   445218   1 (6)
	              I 0.5492
	            you 0.5492
	             us 0.5492
	              , 0.5178
	            the 0.0736
	           </S> 0.0736

           lent   445238   1 (10)
	           lava 0.7789
	           lent 0.7789
	           next 0.5178
	           been 0.5178
	              a 0.5017
	              ) 0.2388
	           </S> 0.2388
	          thing 0.2388
	              , 0.1687
	             of 0.0736

             XI   445288   3 (9)
	              , 0.7789
	             In 0.7789
	              a 0.5492
	              s 0.5492
	            rho 0.5492
	             XI 0.5492
	              " 0.2388
	              ) 0.2388
	           </S> 0.0736

           fig.   445292  10 (14)
	           figi 0.7789
	              s 0.5492
	              , 0.5492
	              a 0.5492
	        section 0.5492
	            XII 0.5492
	              y 0.5492
	              § 0.5492
	           </S> 0.5492
	            fig 0.5178
	           figs 0.5178
	             p. 0.2388
	           find 0.2388
	            the 0.0736

        Bunting   445363   2 (10)
	         during 0.7789
	             of 0.5492
	              a 0.5492
	         States 0.5492
	        Bunting 0.5492
	              . 0.2388
	           Lisp 0.1687
	              , 0.1687
	           </S> 0.0942
	          Stock 0.0736

             it   445373   1 (6)
	              a 0.5492
	             iu 0.5492
	             it 0.5492
	              , 0.5492
	              } 0.2236
	           </S> 0.0736

         sieuua   445441 inf (10)
	          sieur 0.5492
	         images 0.5492
	           seua 0.5492
	         seguia 0.5492
	            six 0.5178
	              , 0.5017
	           </S> 0.2388
	             it 0.2388
	              a 0.1687
	            the 0.0736

            and   445448   1 (6)
	            and 0.5492
	              , 0.5492
	           body 0.5492
	              . 0.5492
	           </S> 0.5492
	            arz 0.5492

        macular   445461   1 (10)
	           east 0.5492
	        macular 0.5492
	              a 0.5492
	            may 0.5492
	          maura 0.5492
	           </S> 0.2388
	              , 0.2388
	              . 0.2388
	           more 0.1687
	            out 0.0736

          along   445469   2 (9)
	              . 0.7789
	             of 0.5492
	           also 0.5492
	              I 0.5492
	          along 0.5492
	           alba 0.5492
	              , 0.5178
	           </S> 0.5178
	   degeneration 0.0736

              -   445513   4 (6)
	             us 0.5492
	            the 0.5178
	             of 0.5178
	              - 0.1687
	              , 0.1687
	           </S> 0.0736

          pairs   445519   1 (10)
	           part 0.5492
	          pairs 0.5492
	          parva 0.5492
	              a 0.5492
	       invasion 0.5492
	     Distillery 0.5324
	              " 0.5178
	              - 0.2388
	              , 0.1687
	           </S> 0.0736

   nidification   445535   1 (10)
	   nidification 0.7789
	           2005 0.5492
	            and 0.5492
	              , 0.5492
	              a 0.5492
	            but 0.5492
	           </S> 0.5492
	            not 0.1687
	            who 0.1687
	            the 0.0736

           does   445548   1 (7)
	             do 0.5492
	              a 0.5492
	             us 0.5492
	           does 0.5492
	           </S> 0.5324
	              , 0.1687
	             of 0.0736

          nests   445587   1 (10)
	          nests 0.7114
	           2005 0.5492
	              a 0.5492
	            and 0.5492
	              , 0.5492
	         mental 0.5492
	           </S> 0.5492
	            new 0.2388
	             is 0.1687
	            the 0.0736

          ]\Iay   445632 inf (9)
	             ay 0.7789
	           Itay 0.7789
	            may 0.5178
	              , 0.2388
	             it 0.2388
	             us 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

              ;   445638   1 (7)
	            the 0.5492
	              ; 0.5492
	              , 0.5492
	          first 0.5492
	           </S> 0.5492
	              . 0.5492
	             us 0.5492

            two   445640   1 (6)
	            top 0.5492
	            two 0.5492
	             us 0.5492
	              ) 0.5178
	              } 0.2236
	           </S> 0.0736

           eggs   445712   1 (8)
	           eggs 0.5178
	              , 0.2388
	           each 0.2388
	             us 0.2388
	           </S> 0.1687
	              a 0.1687
	           your 0.1687
	            the 0.0736

            Jul   445742 inf (7)
	            Jul 0.7114
	             us 0.5178
	            Jan 0.5178
	              , 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

              '   445746   2 (7)
	             us 0.5178
	              ) 0.2388
	              ' 0.2388
	            the 0.2388
	              . 0.1687
	              , 0.1687
	           </S> 0.0736

           Both   445749   1 (9)
	              , 0.7789
	           with 0.7789
	           Both 0.7789
	              a 0.5492
	              s 0.5492
	           them 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

     descending   445817   1 (10)
	     descending 0.7789
	        details 0.5492
	           come 0.2388
	            get 0.1687
	            got 0.1687
	           </S> 0.1687
	              a 0.1687
	              , 0.1687
	             be 0.0942
	           been 0.0736

        towards   445963   2 (7)
	              a 0.7789
	        towards 0.5492
	           that 0.5178
	             of 0.2388
	           </S> 0.2388
	              . 0.1687
	              , 0.0736

  niothcr-l)ird   446052 inf (10)
	    information 0.7789
	          third 0.5492
	    traditional 0.5492
	           word 0.5492
	         better 0.5492
	              , 0.5492
	          ninth 0.5492
	          flock 0.5492
	              a 0.5492
	           </S> 0.0736

        wanders   446066   1 (8)
	          under 0.5492
	             of 0.5492
	        wanders 0.5492
	           </S> 0.5492
	             is 0.5492
	              , 0.5492
	              a 0.5492
	          water 0.5492

             By   446233   1 (7)
	              , 0.7789
	             By 0.7789
	             by 0.7789
	             us 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

       watching   446236   3 (7)
	              / 0.5492
	              . 0.5492
	       watching 0.5178
	       matching 0.5178
	              a 0.2388
	           </S> 0.1687
	              : 0.0736

      patiently   446245   1 (9)
	      patiently 0.7789
	         people 0.5178
	             us 0.5017
	            and 0.2388
	           them 0.2388
	           </S> 0.2388
	              a 0.1687
	              , 0.1687
	            the 0.0736

             's   446326   5 (8)
	              a 0.5492
	             us 0.5492
	             is 0.5178
	              " 0.5178
	              - 0.2388
	             's 0.2388
	              , 0.1687
	           </S> 0.0736

           soug   446329 inf (13)
	            sou 0.7789
	           sala 0.7789
	          sough 0.7789
	           sugo 0.7789
	     Zappos.com 0.5492
	           head 0.5492
	        mission 0.5492
	           soul 0.5178
	           some 0.2388
	            the 0.1687
	              , 0.1687
	           </S> 0.0736
	              a 0.0736

             is   446334   1 (7)
	             is 0.5492
	             me 0.5492
	             iu 0.5492
	              , 0.5492
	              a 0.5492
	           </S> 0.2388
	            ... 0.0736

             it   446416   1 (5)
	             it 0.5492
	             iu 0.5492
	              a 0.5492
	              , 0.5492
	           </S> 0.0736

          trill   446461   2 (10)
	          still 0.7789
	          trill 0.5492
	        sources 0.5492
	              a 0.5492
	       diseases 0.5492
	           </S> 0.1687
	          butts 0.1687
	              - 0.1687
	              . 0.0736
	              , 0.0736

   interspersed   446468   6 (8)
	       together 0.5492
	           </S> 0.5492
	            and 0.5492
	           work 0.5492
	              a 0.5492
	   interspersed 0.5178
	          there 0.1687
	            the 0.0736

          drawn   446493   1 (9)
	          drawn 0.5178
	           down 0.5178
	              a 0.5017
	        periods 0.2388
	           </S> 0.2388
	              , 0.1687
	           term 0.1687
	           time 0.1687
	              - 0.0736

   marvellously   446513   1 (9)
	    recommended 0.5492
	   marvellously 0.5492
	         really 0.5017
	              . 0.2388
	              , 0.2388
	             an 0.1687
	           </S> 0.1687
	            not 0.1687
	              a 0.0736

   exhilarating   446526   1 (11)
	           free 0.5492
	   exhilarating 0.5492
	      available 0.5492
	              a 0.5492
	     surprising 0.5492
	             us 0.5492
	           </S> 0.5324
	             to 0.5178
	              , 0.1687
	           well 0.1687
	              . 0.0736

    considering   446540   1 (8)
	              " 0.5492
	            and 0.5492
	    considering 0.5492
	              i 0.2388
	           with 0.1687
	      including 0.1687
	             or 0.1687
	            the 0.0736

         either   446602   1 (8)
	         either 0.7789
	          other 0.7789
	           when 0.5178
	             us 0.5178
	           </S> 0.2388
	              . 0.1687
	              a 0.1687
	              , 0.0736

        soaring   446609   1 (9)
	        soaring 0.7789
	         minors 0.5492
	         during 0.5017
	              a 0.1687
	              , 0.1687
	           </S> 0.1687
	           case 0.1687
	            the 0.0736
	              . 0.0736

       consists   446699   2 (10)
	    Calandrella 0.7789
	        control 0.5492
	              a 0.5492
	       consists 0.5492
	        version 0.5492
	        Ranches 0.5492
	              " 0.5324
	              - 0.5178
	              , 0.1687
	           </S> 0.0736

            but   446755   1 (7)
	     documented 0.5492
	              , 0.5492
	            but 0.5492
	             us 0.5492
	              a 0.5492
	              } 0.2236
	           </S> 0.0736

     gregarious   446916   1 (9)
	     gregarious 0.7789
	          great 0.5492
	             to 0.5492
	              a 0.5492
	              , 0.1687
	      important 0.1687
	           </S> 0.1687
	           much 0.0942
	           good 0.0736

        immense   446959   1 (10)
	        immense 0.7789
	             us 0.5492
	           time 0.5492
	          phone 0.5492
	             of 0.5178
	              . 0.5178
	              a 0.2388
	           </S> 0.2388
	            the 0.1687
	              , 0.0736

       iisually   447002 inf (7)
	       visually 0.7789
	              s 0.5492
	          shall 0.5492
	              a 0.5178
	            and 0.1687
	           </S> 0.1687
	              , 0.0736

      realizing   447011   1 (6)
	           </S> 0.5492
	              , 0.5492
	              a 0.5492
	        animals 0.5492
	      realizing 0.5492
	        reading 0.5492

           from   447021   1 (7)
	           from 0.7114
	            arz 0.5492
	              , 0.5178
	           </S> 0.5178
	          their 0.2388
	              a 0.2388
	           that 0.0736

             gd   447026 inf (8)
	             gd 0.7789
	             do 0.5324
	             us 0.2388
	              , 0.2388
	           CliC 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

             to   447030   1 (5)
	              , 0.7789
	             to 0.7789
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

         apiece   447037   3 (9)
	              , 0.7789
	              I 0.7789
	            are 0.5492
	             to 0.5492
	           that 0.5492
	         apiece 0.5492
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

            the   447119   1 (5)
	             us 0.5492
	              , 0.5492
	            the 0.5492
	              } 0.2236
	           </S> 0.0736

             In   447188   1 (6)
	             In 0.7789
	              , 0.7789
	              a 0.5492
	              s 0.5492
	              " 0.2388
	           </S> 0.0736

        rearing   447224   1 (8)
	            the 0.5492
	         during 0.5492
	           </S> 0.5492
	              a 0.5492
	        rearing 0.5492
	              , 0.5492
	             us 0.2388
	           your 0.0736

            Sky   447232   1 (8)
	           drop 0.5492
	            See 0.5492
	              e 0.5492
	            Sky 0.5492
	            Pyi 0.5492
	              a 0.2388
	           </S> 0.1687
	              , 0.0736

              -   447235   5 (7)
	             us 0.5492
	     Soundtrack 0.5492
	            the 0.5178
	         Harbor 0.2388
	              , 0.1687
	              - 0.1687
	           </S> 0.0736

          Larks   447236   1 (10)
	          Larks 0.7789
	              s 0.5492
	          Links 0.5017
	              . 0.2388
	           mail 0.1687
	              a 0.1687
	             of 0.1687
	             up 0.1687
	             to 0.1687
	           </S> 0.0736

          seven   447268   1 (8)
	            see 0.7789
	          seven 0.7789
	            not 0.5492
	          Aedon 0.5492
	              a 0.2388
	              , 0.2388
	           </S> 0.2388
	           from 0.0736

            but   447352   1 (6)
	              , 0.5492
	             us 0.5492
	              a 0.5492
	            but 0.5492
	              } 0.2236
	           </S> 0.0736

        bounded   447414   1 (8)
	        bounded 0.7789
	          under 0.5178
	              a 0.2388
	           work 0.2388
	           </S> 0.1687
	              , 0.0736
	           that 0.0736
	              . 0.0736

      alighting   447477   1 (11)
	      alighting 0.7789
	            sat 0.5492
	          right 0.5492
	         report 0.5492
	             so 0.2388
	              , 0.1687
	            not 0.1687
	           </S> 0.1687
	             to 0.1687
	              I 0.1687
	            the 0.0736

         bought   447556   1 (8)
	         bought 0.5492
	           </S> 0.5492
	              a 0.5492
	              ( 0.5492
	           your 0.2388
	             is 0.1687
	           with 0.1687
	            the 0.0736

     Larkrunuer   447571 inf (11)
	              a 0.7789
	            are 0.7789
	          value 0.5492
	        Warrior 0.5492
	        neutral 0.5492
	         broker 0.5492
	              s 0.5492
	              ) 0.5178
	          <UNK> 0.2388
	              , 0.2388
	           </S> 0.0736

           cage   447599   1 (7)
	           cage 0.5492
	              I 0.5492
	            cia 0.5492
	             of 0.5492
	            can 0.5492
	           </S> 0.2388
	              , 0.0736

             In   447672   1 (7)
	              , 0.7789
	             In 0.7789
	          where 0.5492
	             us 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

          Sedge   447696   1 (10)
	          Sedge 0.7789
	            bug 0.5492
	              C 0.5492
	          Aedon 0.5492
	           Send 0.5324
	            two 0.1687
	              - 0.1687
	            non 0.1687
	           </S> 0.0736
	            new 0.0736

           ui}'   447722 inf (10)
	            uit 0.7789
	           uiui 0.5492
	             ui 0.5492
	           </S> 0.2388
	             us 0.2388
	              a 0.1687
	              , 0.1687
	             up 0.1687
	            the 0.0736
	             it 0.0736

          birds   447727   1 (8)
	              , 0.5492
	          birds 0.5492
	           </S> 0.5492
	              a 0.5492
	             in 0.5492
	           back 0.5492
	          first 0.5492
	          Parus 0.5492

            cue   447736 inf (8)
	            cue 0.7789
	            cia 0.7789
	            can 0.5178
	              , 0.2388
	           more 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

            ]jy   447740   6 (10)
	            ajy 0.5492
	             jy 0.5492
	           than 0.5492
	         second 0.5492
	            Pyi 0.5492
	             by 0.5178
	              a 0.5017
	           </S> 0.1687
	              , 0.0736
	           from 0.0736

            one   447744   1 (6)
	              , 0.5492
	             us 0.5492
	            one 0.5492
	              a 0.5492
	              ) 0.5492
	           </S> 0.5492

        jumping   447787   1 (8)
	         during 0.7789
	        jumping 0.7789
	        Cumming 0.5492
	              , 0.5492
	          being 0.5492
	            way 0.1687
	           </S> 0.1687
	            own 0.0736

           When   447863   1 (6)
	              , 0.7789
	           When 0.7789
	           when 0.7789
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

            off   447893   1 (8)
	            off 0.7789
	              a 0.5492
	             us 0.5492
	             of 0.5178
	             to 0.2388
	           </S> 0.2388
	              , 0.0736
	              . 0.0736

        blanket   447906   5 (10)
	        blanche 0.7789
	              , 0.5492
	            hip 0.5492
	          truth 0.5492
	        blanket 0.5178
	            top 0.1687
	          world 0.1687
	           best 0.1687
	           same 0.1687
	           </S> 0.0736

        tumbled   447935   1 (7)
	        tumbled 0.7789
	         number 0.5178
	              a 0.5017
	           </S> 0.1687
	             of 0.1687
	              , 0.0736
	              . 0.0736

              -   448003   3 (5)
	             us 0.7789
	           </S> 0.5017
	            the 0.2388
	              - 0.2388
	              , 0.0736

            lec   448005 inf (9)
	            lec 0.7789
	          linux 0.5492
	           name 0.5492
	              s 0.5492
	              . 0.2388
	            New 0.2388
	              a 0.1687
	             to 0.1687
	           </S> 0.0736

              -   448008   6 (6)
	            the 0.5492
	             us 0.5492
	           name 0.5492
	           </S> 0.1687
	              , 0.1687
	              - 0.0736

          tcc-u   448013 inf (13)
	           tchu 0.7789
	            tcu 0.7789
	          Ntccc 0.5492
	           Atcc 0.5492
	     Scotchgard 0.5492
	              a 0.5492
	          <UNK> 0.5492
	            and 0.5492
	           </S> 0.5492
	             us 0.5492
	              , 0.5492
	             tc 0.5324
	            the 0.0736

            and   448029   1 (5)
	              , 0.5492
	            and 0.5492
	            arz 0.5492
	              } 0.2236
	           </S> 0.0736

         wear}-   448090 inf (9)
	           wear 0.7789
	         Search 0.7789
	         wearer 0.5492
	          wears 0.5492
	              , 0.5017
	            now 0.2388
	           </S> 0.2388
	              a 0.1687
	            the 0.0736

            and   448098   1 (5)
	            and 0.5492
	           </S> 0.5492
	            arz 0.5492
	           when 0.1687
	            the 0.0736

          tlien   448102   7 (12)
	           tien 0.7789
	         tolien 0.5492
	          tliet 0.5492
	         tilien 0.5492
	        Atliens 0.5492
	           lien 0.5324
	           </S> 0.1687
	              a 0.1687
	             he 0.1687
	              , 0.1687
	           then 0.1687
	            the 0.0736

        tumbled   448108   1 (8)
	           </S> 0.5492
	              . 0.5492
	              a 0.5492
	        tumbled 0.5492
	             us 0.5492
	         number 0.5492
	             it 0.5492
	              , 0.0736

           They   448159   1 (6)
	              , 0.7789
	           They 0.7789
	            The 0.7114
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

         seemed   448164   3 (6)
	         server 0.7789
	          semen 0.5492
	         seemed 0.5178
	              , 0.5017
	           </S> 0.2388
	            are 0.0736

          the}'   448204   2 (8)
	           thee 0.7789
	           they 0.5178
	          their 0.5178
	              a 0.5017
	            the 0.5017
	           </S> 0.2388
	              , 0.1687
	             of 0.0736

            got   448210   1 (7)
	              , 0.5492
	            got 0.5492
	           </S> 0.5492
	            get 0.5492
	            the 0.5492
	             us 0.5492
	              a 0.5492

  subsequentl}'   448259   4 (8)
	              I 0.5492
	      currently 0.5492
	       recently 0.5492
	   subsequently 0.5324
	           </S> 0.1687
	              , 0.1687
	           have 0.0942
	             'm 0.0736

      purchased   448273   1 (7)
	      purchased 0.5492
	           </S> 0.5492
	              , 0.5492
	         posted 0.5492
	           have 0.5492
	            not 0.5492
	              a 0.5492

         3'oung   448285   4 (11)
	          goung 0.5492
	          found 0.5178
	          Young 0.5178
	          young 0.2388
	            oun 0.2174
	         single 0.1687
	          major 0.1687
	              - 0.1687
	           very 0.1687
	           </S> 0.0736
	            new 0.0736

           male   448292   1 (7)
	           make 0.5492
	           male 0.5492
	              , 0.5492
	           sala 0.5492
	             of 0.5492
	              a 0.5492
	           </S> 0.5492

              -   448459   5 (7)
	            the 0.7789
	             us 0.5492
	            man 0.5492
	          drive 0.5492
	              - 0.2388
	              , 0.1687
	           </S> 0.0736

    continually   448557   1 (9)
	    continually 0.7789
	             us 0.5492
	           only 0.5178
	              a 0.2388
	              . 0.1687
	            and 0.1687
	           </S> 0.1687
	            the 0.0736
	              , 0.0497

         fl\ing   448604   1 (11)
	            ing 0.7789
	         flying 0.7789
	          fling 0.7789
	         filing 0.7789
	      Northeast 0.5492
	         closes 0.2388
	           find 0.2388
	           </S> 0.1687
	              , 0.1687
	              a 0.1687
	           been 0.0736

              ,   448610   1 (6)
	             us 0.5492
	             be 0.5492
	            the 0.5492
	           </S> 0.5492
	              , 0.5492
	             to 0.5492

           when   448622   1 (5)
	           when 0.5178
	              , 0.5017
	           </S> 0.5017
	              a 0.2388
	            the 0.0736

     recklessly   448654   1 (6)
	     recklessly 0.7789
	        process 0.5492
	           </S> 0.1687
	              , 0.1687
	              a 0.1687
	             to 0.0736

  consecjuences   448693   1 (11)
	   consequences 0.7789
	       services 0.5492
	             up 0.5492
	       anything 0.5492
	   consecuentes 0.5492
	              , 0.5178
	        service 0.5178
	             us 0.5017
	           </S> 0.2388
	              a 0.1687
	            the 0.0736

             to   448707   1 (6)
	             in 0.5492
	              . 0.5492
	              , 0.5492
	           </S> 0.5492
	             us 0.5492
	             to 0.5492

             he   448867   1 (6)
	             he 0.5492
	              a 0.5492
	             us 0.5492
	              , 0.5492
	              } 0.2236
	           </S> 0.0736

           claw   448906   1 (9)
	            can 0.7789
	           claw 0.7789
	            cia 0.5492
	             of 0.5492
	              a 0.5017
	           </S> 0.2388
	              , 0.2388
	              . 0.2236
	             be 0.0736

     watercress   448959   4 (8)
	          water 0.7789
	     TWikiUsers 0.7789
	              , 0.7789
	           milk 0.5492
	     watercress 0.5492
	           </S> 0.5178
	              a 0.1687
	            the 0.0736

             In   449037   1 (7)
	              , 0.7789
	              . 0.7789
	             In 0.7789
	              a 0.5492
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

              I   449054   1 (8)
	           2005 0.5492
	              8 0.5492
	           </S> 0.5492
	              , 0.5492
	              I 0.5492
	             us 0.5178
	             we 0.1687
	            the 0.0736

       nestling   449069   1 (8)
	       nestling 0.7789
	        nothing 0.7789
	              a 0.5492
	          major 0.2388
	          years 0.1687
	              , 0.1687
	           </S> 0.1687
	              - 0.0736

            Sky   449078   2 (10)
	              a 0.7789
	            See 0.5492
	           Bare 0.5492
	           year 0.5492
	            Sky 0.5492
	            Pyi 0.5492
	              . 0.5178
	              , 0.5178
	           </S> 0.3804
	             in 0.0736

          Larks   449082   1 (10)
	          Larks 0.7789
	           High 0.5492
	              s 0.5492
	          Links 0.5017
	              . 0.2388
	           term 0.2388
	             up 0.1687
	             to 0.1687
	              a 0.1687
	           </S> 0.0736

        brought   449092   4 (9)
	           pick 0.5492
	            let 0.5492
	            set 0.5492
	        brought 0.5178
	        through 0.3804
	              , 0.1687
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

    Nightingale   449116   1 (9)
	           land 0.5492
	       original 0.5492
	              , 0.5492
	    Nightingale 0.5492
	         little 0.2388
	           work 0.1687
	           </S> 0.1687
	       products 0.0736
	            own 0.0497

           food   449128   1 (9)
	           food 0.5492
	              a 0.5492
	          House 0.5178
	              ) 0.5178
	            for 0.5178
	              . 0.2388
	              " 0.2388
	              , 0.0942
	           </S> 0.0736

            the   449216   1 (4)
	            the 0.5492
	              , 0.5492
	              s 0.5492
	           </S> 0.0736

         Bulbul   449293   1 (10)
	         number 0.5492
	        galbula 0.5492
	              a 0.5492
	             of 0.5492
	         Bulbul 0.5492
	            and 0.2388
	              . 0.2388
	           </S> 0.1687
	              , 0.1687
	           Gulf 0.0736

           into   449300   1 (9)
	            War 0.5492
	           into 0.5492
	          minor 0.5492
	              a 0.5492
	             in 0.5324
	            and 0.5178
	              , 0.2388
	           </S> 0.1687
	         Sharma 0.0736

          Larks   449409   1 (10)
	          Links 0.7789
	          Larks 0.7789
	              a 0.5492
	          Parus 0.5492
	            age 0.2388
	           </S> 0.1687
	       children 0.1687
	              , 0.1687
	              . 0.1687
	         people 0.0736

           when   449415   1 (5)
	              a 0.5492
	           when 0.5492
	              , 0.1687
	           </S> 0.1687
	              ' 0.0736

       Although   449546   1 (7)
	              , 0.7789
	       Although 0.7789
	              a 0.5492
	        through 0.5492
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

          cramp   449579   1 (11)
	          cramp 0.7789
	           fact 0.5492
	          corax 0.5492
	          class 0.5178
	            can 0.5178
	             it 0.2388
	              , 0.2388
	           this 0.1687
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

         reared   449603   1 (8)
	         reared 0.7789
	              a 0.5492
	             of 0.5492
	         review 0.5178
	              , 0.1687
	           </S> 0.1687
	     understand 0.1687
	              - 0.0736

          moult   449640   1 (8)
	          moult 0.7789
	          years 0.5492
	          maura 0.5492
	          would 0.5324
	              a 0.5178
	           </S> 0.1687
	              , 0.0736
	              . 0.0736

            two   449646   2 (9)
	              a 0.7789
	         winter 0.5492
	            two 0.5492
	         mosaic 0.5492
	             us 0.5492
	          cycle 0.5178
	           </S> 0.1687
	              . 0.0736
	              , 0.0736

            the   449665   1 (5)
	             us 0.5492
	              , 0.5492
	            the 0.5492
	              } 0.2236
	           </S> 0.0736

           tame   449700   1 (10)
	           time 0.7789
	           tame 0.7789
	             of 0.5492
	           lava 0.5492
	              a 0.5492
	      beautiful 0.5178
	           </S> 0.5017
	           rich 0.2388
	              , 0.1687
	              . 0.0736

         little   449705   2 (7)
	          Sitta 0.5492
	         little 0.5324
	           </S> 0.2388
	              a 0.2388
	            and 0.1687
	              , 0.0736
	            the 0.0736

             it   449773   1 (6)
	              , 0.5492
	             iu 0.5492
	              a 0.5492
	             it 0.5492
	              } 0.2236
	           </S> 0.0736

          crest   449831   3 (8)
	              , 0.5492
	          major 0.5492
	          crest 0.5178
	           best 0.1687
	            way 0.1687
	           </S> 0.1687
	              a 0.1687
	            own 0.0736

             it   449874   2 (7)
	             iu 0.5492
	              a 0.5178
	             it 0.5178
	             of 0.2388
	              , 0.1687
	           </S> 0.1687
	            flu 0.0736

     eventually   449952   1 (6)
	     eventually 0.5492
	             us 0.5492
	         really 0.5492
	              a 0.5492
	              , 0.5492
	           </S> 0.0736

           This   450002   1 (6)
	           This 0.7789
	              , 0.7789
	              a 0.5492
	            cia 0.5492
	              " 0.2388
	           </S> 0.0736

       perching   450029   1 (7)
	       perching 0.7789
	             us 0.2388
	        service 0.2388
	              , 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

        hanging   450084   1 (10)
	        hanging 0.7789
	             do 0.5492
	             us 0.5492
	         Rating 0.5492
	              a 0.5178
	             it 0.5178
	              . 0.1687
	           </S> 0.1687
	              , 0.0942
	              - 0.0736

        roosted   450141   1 (12)
	        roosted 0.7789
	          based 0.5492
	            not 0.5492
	             us 0.5492
	        depends 0.5492
	           used 0.2388
	              - 0.2388
	              a 0.1687
	           </S> 0.1687
	              , 0.1687
	           been 0.0736
	             be 0.0736

        Judging   450197   1 (7)
	        Judging 0.7789
	        funding 0.7789
	           Sort 0.5492
	              a 0.2388
	              s 0.2236
	              , 0.1687
	           </S> 0.0736

            mj^   450208   4 (10)
	             mj 0.7789
	            mjw 0.7789
	             us 0.5017
	          their 0.2388
	            his 0.2388
	             my 0.2388
	              , 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

            own   450212   1 (8)
	           </S> 0.5492
	             us 0.5492
	            one 0.5492
	            the 0.5492
	              , 0.5492
	            own 0.5492
	              a 0.5492
	             of 0.5492

        rearing   450230   1 (7)
	        rearing 0.7114
	         during 0.5324
	             us 0.2388
	              , 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

            Sky   450238   2 (10)
	            non 0.7789
	            Sky 0.5492
	            Pyi 0.5492
	           with 0.5178
	             by 0.5178
	       children 0.2388
	              a 0.2388
	           </S> 0.1687
	              . 0.1687
	              , 0.0736

          Larks   450242   1 (8)
	          Larks 0.7789
	             so 0.5492
	              s 0.5492
	          Links 0.5017
	              . 0.2388
	             to 0.1687
	              a 0.1687
	           </S> 0.0736

    Whitethroat   450325   1 (11)
	    Whitethroat 0.7789
	             it 0.5492
	              . 0.5492
	         moment 0.5492
	     University 0.5492
	              a 0.5492
	            rat 0.5492
	              , 0.5492
	          major 0.1687
	         person 0.1687
	           </S> 0.0736

             's   450336   3 (7)
	             is 0.7789
	             of 0.7789
	              a 0.5492
	             's 0.5492
	             us 0.5492
	              , 0.1687
	           </S> 0.0736

          fixed   450344   2 (7)
	           find 0.7789
	          fixed 0.5492
	              a 0.5178
	           </S> 0.1687
	             of 0.1687
	              , 0.0942
	              . 0.0736

            the   450376   1 (5)
	              , 0.5492
	            the 0.5492
	             us 0.5492
	              } 0.2236
	           </S> 0.0736

          the}-   450442 inf (7)
	              a 0.5492
	           thee 0.5492
	          their 0.5324
	            the 0.3804
	           </S> 0.1687
	              . 0.0736
	              , 0.0736

         crouch   450448   1 (7)
	           </S> 0.5492
	              a 0.5492
	              , 0.5492
	              . 0.5492
	          could 0.5492
	         crouch 0.5492
	        curruca 0.5492

            but   450534   1 (6)
	              a 0.5492
	             us 0.5492
	            but 0.5492
	              , 0.5492
	              } 0.2236
	           </S> 0.0736

      moistened   450638   1 (6)
	      moistened 0.7789
	           most 0.2388
	           </S> 0.1687
	              a 0.1687
	              , 0.1687
	            the 0.0736

           ants   450648   1 (8)
	           ants 0.5492
	           alba 0.5492
	              I 0.5492
	           </S> 0.5178
	              , 0.2388
	            and 0.2388
	              . 0.0942
	           with 0.0736

              '   450652   3 (6)
	             us 0.7789
	            the 0.5178
	              ' 0.5017
	            and 0.1687
	           </S> 0.1687
	              , 0.0736

        cocoons   450654   1 (9)
	        cocoons 0.7789
	        contact 0.5492
	           nest 0.5492
	       termites 0.5492
	              a 0.2388
	              s 0.1687
	              ) 0.1687
	              , 0.0736
	           </S> 0.0736

           When   450663   1 (7)
	           When 0.7789
	              , 0.7789
	           when 0.7789
	              a 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

      mealworms   450688   1 (10)
	              a 0.5492
	      mealworms 0.5492
	        members 0.3804
	              . 0.2388
	          major 0.2388
	              , 0.1687
	           </S> 0.1687
	             of 0.1687
	          times 0.1687
	              - 0.0736

        canar}'   450718   1 (10)
	         canary 0.7789
	            ink 0.5492
	          canar 0.5492
	         Canada 0.3804
	           time 0.2388
	             us 0.2388
	              , 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

            and   450726   1 (5)
	           </S> 0.5492
	              , 0.5492
	              . 0.5492
	            and 0.5492
	            arz 0.5492

     watercress   450759   1 (8)
	     watercress 0.7789
	           were 0.5492
	           then 0.1687
	           </S> 0.1687
	              I 0.1687
	              a 0.1687
	              , 0.1687
	            the 0.0736

           when   450770   1 (7)
	            the 0.5492
	           when 0.5492
	             us 0.5492
	              a 0.5492
	           </S> 0.2388
	              . 0.1687
	              , 0.0736

         1891-2   450872 inf (13)
	              , 0.7789
	             us 0.7789
	         things 0.5492
	           1982 0.5492
	           1991 0.5492
	        1971-72 0.5492
	           1862 0.5492
	      2001-2002 0.5492
	           1918 0.5492
	           2003 0.5492
	           </S> 0.5178
	              a 0.5017
	            the 0.0736

           that   450879   1 (7)
	              a 0.5492
	             in 0.5492
	           that 0.5492
	          torax 0.5492
	              , 0.1687
	              . 0.1687
	           </S> 0.0736

           nets   450927   1 (11)
	           nets 0.7789
	             us 0.7789
	         tongue 0.5492
	              , 0.5492
	              a 0.5492
	           cock 0.2388
	           next 0.2388
	            way 0.1687
	           hand 0.1687
	           </S> 0.1687
	       products 0.0736

       thirteen   450956   1 (8)
	       thirteen 0.5492
	          three 0.5178
	              a 0.5017
	              . 0.1687
	              - 0.1687
	              , 0.1687
	           </S> 0.0942
	           page 0.0736

            Sky   450965   1 (10)
	              a 0.5492
	            Sky 0.5492
	            See 0.5492
	          tacho 0.5492
	            Pyi 0.5492
	            the 0.5178
	           </S> 0.2388
	           year 0.1687
	              , 0.1687
	          years 0.0736

          Larks   450969   1 (10)
	          Larks 0.7789
	              s 0.5492
	           step 0.5492
	          Links 0.5017
	              . 0.2388
	             up 0.1687
	             to 0.1687
	              a 0.1687
	           mail 0.1687
	           </S> 0.0736

          about   451011   1 (5)
	          about 0.5492
	              , 0.5492
	              I 0.5492
	              } 0.2236
	           </S> 0.0736

            one   451111   1 (6)
	             us 0.5492
	              , 0.5492
	              a 0.5492
	            one 0.5492
	              } 0.2236
	           </S> 0.0736

       retained   451134   1 (9)
	       required 0.7789
	       retained 0.7789
	            not 0.5492
	             it 0.3804
	              a 0.2388
	           said 0.2388
	           </S> 0.2388
	            got 0.1687
	              , 0.0736

           This   451183   1 (6)
	              , 0.7789
	           This 0.7789
	            cia 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

           tame   451204   1 (10)
	           tame 0.7789
	       athletic 0.5492
	           lava 0.5492
	           time 0.5178
	             to 0.2388
	          there 0.2388
	              a 0.1687
	           </S> 0.1687
	              , 0.1687
	           been 0.0736

         turfed   451261   2 (9)
	          three 0.7114
	          slave 0.5492
	         turfed 0.5492
	              " 0.5178
	             in 0.2388
	           </S> 0.2388
	              , 0.1687
	              a 0.1687
	             of 0.0736

         sanded   451277   1 (11)
	         sanded 0.7789
	             us 0.5492
	            out 0.5492
	           said 0.5178
	              ) 0.5017
	           </S> 0.2388
	              . 0.1687
	              a 0.1687
	              , 0.1687
	              - 0.1687
	             of 0.0736

             he   451285   1 (6)
	             us 0.5492
	              a 0.5492
	              , 0.5492
	             he 0.5492
	              } 0.2236
	           </S> 0.0736

          3'our   451363   7 (9)
	            not 0.5492
	             us 0.5178
	              a 0.5178
	            our 0.5178
	             to 0.5178
	           </S> 0.5017
	           your 0.2388
	              , 0.2388
	           down 0.0736

           eyes   451369   1 (7)
	           been 0.5492
	           eyes 0.5492
	           </S> 0.5492
	            the 0.5492
	              a 0.5492
	              , 0.5492
	            Pyi 0.5492

       dropping   451427   1 (8)
	       dropping 0.7789
	       Shopping 0.7789
	          liner 0.5492
	              a 0.5492
	              , 0.2388
	           last 0.1687
	           </S> 0.1687
	            own 0.0736

      i-eturned   451448   5 (12)
	              a 0.5492
	             as 0.5492
	       inturned 0.5492
	        whether 0.5492
	          tried 0.2388
	       returned 0.2388
	          wants 0.2388
	           </S> 0.2388
	           came 0.2388
	              , 0.2388
	            had 0.1687
	            was 0.0736

             to   451458   1 (7)
	           </S> 0.5492
	              . 0.5492
	              , 0.5492
	             us 0.5492
	             to 0.5492
	            the 0.5492
	             on 0.5492

        Towards   451468 inf (8)
	          There 0.7789
	              , 0.7789
	             to 0.5492
	         Toward 0.5492
	       Tawadros 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

          moult   451526   1 (9)
	          moult 0.7789
	              a 0.5492
	          maura 0.5492
	          would 0.5178
	              , 0.2388
	           head 0.1687
	           wife 0.1687
	           </S> 0.1687
	            own 0.0736

            Mr.   451597   3 (8)
	             My 0.7789
	              , 0.7789
	            Mrs 0.5492
	              a 0.5492
	             Mr 0.5492
	            arz 0.5492
	              " 0.2388
	           </S> 0.0736

            Sky   451639   3 (9)
	            Pyi 0.7789
	          mixed 0.5492
	            Sky 0.5178
	            See 0.5178
	            non 0.5017
	              , 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

              -   451642   4 (6)
	             us 0.5492
	            the 0.5178
	              . 0.2388
	              - 0.1687
	              , 0.1687
	           </S> 0.0736

          Larks   451643   1 (9)
	          Larks 0.7789
	              s 0.5492
	           such 0.5492
	         signal 0.5492
	          Links 0.5017
	              . 0.2388
	             to 0.1687
	              a 0.1687
	           </S> 0.0736

     Heligoland   451671   1 (7)
	     Heligoland 0.7789
	             us 0.5492
	            and 0.2388
	              , 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

            but   451711   1 (6)
	              , 0.5492
	            but 0.5492
	              a 0.5492
	             us 0.5492
	              } 0.2236
	           </S> 0.0736

       Speaking   451764   1 (8)
	       Speaking 0.7789
	              , 0.7789
	            One 0.7789
	              a 0.5492
	          State 0.5492
	           part 0.5492
	              " 0.2388
	           </S> 0.0736

     diminution   451806   3 (11)
	         rights 0.5492
	     diminutiva 0.5492
	     diminution 0.5178
	            end 0.1687
	    information 0.1687
	            use 0.1687
	              - 0.1687
	          world 0.1687
	           same 0.1687
	           time 0.1687
	           </S> 0.0736

           Herr   451827   1 (9)
	            and 0.5492
	              ( 0.5492
	           </S> 0.5492
	           Help 0.5492
	              a 0.5492
	           Herr 0.5492
	            arz 0.5492
	          every 0.2388
	            the 0.0736

          Gatke   451832 inf (8)
	              a 0.5492
	          Games 0.5492
	          Gatka 0.5492
	        Gataket 0.5492
	           Gate 0.5492
	             M. 0.5178
	           </S> 0.1687
	              , 0.0736

          saj'S   451838 inf (9)
	           </S> 0.7789
	           said 0.5492
	           saja 0.5492
	              a 0.5492
	            saj 0.5492
	          Ringe 0.5492
	          Sajas 0.5492
	           sala 0.5492
	              , 0.0736

              :   451844 inf (3)
	             of 0.5492
	             us 0.5492
	            the 0.5492

              "   451848   4 (8)
	              : 0.5492
	              , 0.5492
	             us 0.5178
	              " 0.3430
	           mail 0.1687
	             up 0.1687
	            the 0.1687
	           </S> 0.0736

        passage   451889   1 (9)
	        message 0.7789
	        passage 0.7789
	              a 0.5492
	    Association 0.5492
	             of 0.5492
	              , 0.1687
	           </S> 0.1687
	              . 0.0942
	         amount 0.0736

         travel   451963   1 (7)
	         travel 0.7789
	           this 0.5178
	              ; 0.5017
	              a 0.2388
	           </S> 0.1687
	              , 0.0942
	              . 0.0736

      migration   452254   1 (9)
	      migration 0.7789
	              a 0.5492
	            the 0.5492
	             as 0.5492
	    information 0.5492
	        amounts 0.1687
	           </S> 0.1687
	              , 0.1687
	         amount 0.0736

            and   452274   1 (6)
	              , 0.5492
	            and 0.5492
	            arz 0.5492
	              " 0.5178
	              } 0.2236
	           </S> 0.0736

          Larks   452312   1 (8)
	          Larks 0.5492
	          Parus 0.5492
	          Links 0.5492
	           fish 0.5492
	              a 0.5017
	              , 0.2388
	              . 0.1687
	           </S> 0.0736

         caught   452318   1 (10)
	           more 0.5492
	          cause 0.5492
	              $ 0.5492
	         caught 0.5492
	        caudata 0.5492
	              a 0.5492
	        Tongues 0.3804
	              , 0.1687
	           </S> 0.1687
	              ' 0.0736

         autumn   452332   1 (7)
	         autumn 0.7789
	            and 0.2388
	           more 0.2388
	           </S> 0.2388
	              I 0.2388
	              , 0.1687
	             of 0.0736

  approximately   452354   1 (10)
	  approximately 0.7789
	         simply 0.5492
	    necessarily 0.2388
	          apply 0.2388
	              a 0.1687
	      available 0.1687
	           have 0.1687
	           </S> 0.1687
	              , 0.1687
	             be 0.0736

        express   452368   1 (9)
	        express 0.7789
	           even 0.5492
	             us 0.5492
	             to 0.5492
	              , 0.5017
	           half 0.2388
	              a 0.2388
	           </S> 0.1687
	              $ 0.0736

        migrant   452434   5 (11)
	         system 0.5492
	        migrans 0.5492
	              , 0.5492
	     serialized 0.5492
	        migrant 0.5178
	          might 0.5178
	          valid 0.1687
	          great 0.1687
	          major 0.1687
	           </S> 0.0736
	            new 0.0736

          245-8   452471 inf (10)
	            the 0.7789
	              2 0.7789
	              a 0.7789
	            who 0.5492
	           code 0.5492
	           that 0.5178
	              - 0.5178
	           </S> 0.2388
	              . 0.1687
	              , 0.0736

            are   452477   1 (7)
	            arz 0.5492
	              I 0.5492
	            are 0.5492
	      collected 0.5492
	           </S> 0.5178
	              , 0.5178
	              . 0.0736

           Farn   452496   1 (9)
	             C. 0.5492
	           Bock 0.5492
	         Schott 0.5492
	              a 0.5492
	              s 0.5492
	           Farn 0.5492
	            For 0.5178
	              , 0.1687
	           </S> 0.0736

             's   452500   1 (7)
	             's 0.7789
	             is 0.7789
	              a 0.5492
	              s 0.5492
	             D. 0.5492
	              , 0.1687
	           </S> 0.0736

            249   452516 inf (8)
	       excerpts 0.5492
	             us 0.5492
	           data 0.5492
	              a 0.5492
	            the 0.5492
	              , 0.5492
	              } 0.2236
	           </S> 0.0736

        Frohawk   452529   1 (11)
	         seller 0.5492
	              a 0.5492
	             50 0.5492
	           Crew 0.5492
	        Frohawk 0.5492
	              , 0.2388
	             J. 0.2388
	           Food 0.2236
	           Bush 0.1687
	           </S> 0.1687
	       Chairman 0.0736

             's   452536   1 (8)
	             's 0.7789
	             us 0.5492
	          moved 0.5492
	          <UNK> 0.5492
	             is 0.5492
	           </S> 0.5178
	              , 0.5017
	           1898 0.0736

          250-4   452544 inf (11)
	        support 0.7789
	              , 0.7789
	              2 0.7789
	              - 0.7789
	       shipping 0.5492
	          tales 0.5492
	           more 0.5178
	             to 0.5178
	           </S> 0.2388
	              a 0.2236
	            the 0.0736

           from   452550   1 (8)
	             of 0.5492
	           from 0.5492
	             by 0.5492
	              a 0.5492
	            arz 0.5492
	              , 0.5178
	              . 0.1687
	           </S> 0.0736

        Family^   452576   2 (6)
	              , 0.7789
	              a 0.5492
	         Family 0.5492
	              ) 0.2388
	              " 0.2388
	           </S> 0.0736

            ALA   452584 inf (6)
	             us 0.5492
	              a 0.5492
	            All 0.5492
	              , 0.5492
	           </S> 0.5492
	            ALA 0.5492

           UDID   452588 inf (11)
	            UDI 0.5492
	              I 0.5492
	           UDIG 0.5492
	          GUDID 0.5492
	           UDDI 0.5492
	            USD 0.5492
	         SEQRES 0.5017
	              , 0.2388
	              ) 0.1687
	           </S> 0.1687
	              A 0.0736

              .   452592   1 (6)
	              , 0.7789
	              . 0.7789
	             us 0.5492
	              F 0.5492
	            the 0.5492
	           </S> 0.0736

              F   452594 inf (9)
	            the 0.7789
	              , 0.7789
	             OF 0.5492
	             us 0.5492
	             FL 0.5492
	             FF 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

              .   452595   3 (7)
	             us 0.7789
	            the 0.5178
	              . 0.5017
	              ' 0.3804
	              ) 0.1687
	              , 0.1687
	           </S> 0.0736

        Alaitdn   452614   2 (10)
	              , 0.7789
	         Allied 0.5492
	              a 0.5492
	          Alain 0.5492
	         Alauda 0.5492
	           Alai 0.5492
	        Alaitoc 0.5492
	       Adailton 0.5492
	              " 0.2388
	           </S> 0.0736

       ar/iorca   452622   1 (11)
	          arior 0.5492
	        artiora 0.5492
	        authors 0.5492
	        acriora 0.5492
	        arborea 0.5492
	         siorca 0.5492
	              I 0.5492
	              , 0.5492
	      configure 0.5492
	           </S> 0.5492
	        Maiorca 0.5492

              ,   452630 inf (3)
	             of 0.5492
	             us 0.5492
	            the 0.5492

           LlNN   452632 inf (10)
	           LLNL 0.5492
	            yes 0.5492
	           LMNN 0.5492
	            LNN 0.5492
	           List 0.5492
	             Ll 0.5492
	           alba 0.5492
	             pp 0.2388
	              i 0.2388
	            the 0.0736

              .   452636   1 (6)
	            CAN 0.5492
	           </S> 0.5492
	              , 0.5492
	             us 0.5492
	              . 0.5492
	            the 0.5492

              "   452639 inf (6)
	              , 0.7789
	            the 0.7789
	             us 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

              T   452641 inf (8)
	             TT 0.5324
	             IT 0.5178
	             us 0.5178
	             To 0.2388
	              , 0.1687
	              ) 0.1687
	            the 0.1687
	           </S> 0.0736

              N   452643 inf (8)
	             us 0.7789
	             NN 0.7789
	             IN 0.5324
	             No 0.5324
	            the 0.5178
	              " 0.2388
	              , 0.1687
	           </S> 0.0736

         summer   452645   1 (8)
	         summer 0.7789
	              a 0.5492
	              s 0.5492
	             in 0.5178
	             is 0.3804
	              , 0.1687
	           </S> 0.0736
	              / 0.0736

           Wood   452656   4 (10)
	           much 0.5492
	              I 0.5492
	            num 0.5492
	           Wood 0.5178
	           good 0.2388
	            non 0.2388
	           same 0.1687
	              - 0.1687
	            two 0.1687
	           </S> 0.0736

       inhabits   452666   2 (9)
	             of 0.7789
	              a 0.5492
	             us 0.5492
	       inhabits 0.5492
	           into 0.5492
	              - 0.5178
	             in 0.2388
	              , 0.1687
	           </S> 0.0736

         Russia   452719   1 (11)
	         Russia 0.7789
	          Music 0.7789
	         posted 0.5492
	              a 0.5492
	         cassia 0.5492
	        discuss 0.5492
	         Europe 0.5492
	              . 0.2388
	           </S> 0.1687
	              , 0.1687
	             'm 0.0736

          below   452726   1 (8)
	          below 0.7789
	           been 0.7789
	            not 0.5492
	        talking 0.5492
	          Aedon 0.5492
	              a 0.5178
	           </S> 0.0736
	              , 0.0736

            60°   452738   2 (8)
	            600 0.5492
	             60 0.5017
	              , 0.2388
	             us 0.1687
	           </S> 0.1687
	           this 0.1687
	              a 0.1687
	            the 0.0736

             N.   452742 inf (7)
	              , 0.5492
	              . 0.5492
	           </S> 0.5492
	             us 0.5492
	             No 0.5492
	              a 0.5492
	         parody 0.5492

             as   452751   1 (6)
	           </S> 0.5492
	             as 0.5492
	              " 0.5492
	             us 0.5178
	             so 0.1687
	            the 0.0736

      Southward   452826   2 (7)
	              , 0.7789
	              a 0.5492
	       Software 0.5492
	             us 0.5492
	      Southward 0.5492
	              " 0.2388
	           </S> 0.0736

              -   452880   3 (6)
	             us 0.5492
	            the 0.5178
	              - 0.3804
	           </S> 0.1687
	              , 0.0736
	              . 0.0736

           down   452913   4 (10)
	              s 0.5492
	       Bordeaux 0.5492
	           does 0.5178
	           down 0.2388
	              . 0.2388
	           mail 0.1687
	             to 0.1687
	             up 0.1687
	              a 0.1687
	           </S> 0.0736

            its   452965   1 (6)
	              , 0.5492
	            its 0.5492
	             iu 0.5492
	              a 0.5492
	              } 0.2236
	           </S> 0.0736

       Northern   453064   1 (8)
	       Northern 0.7789
	          other 0.5324
	          South 0.5178
	             us 0.5178
	              a 0.2388
	           </S> 0.1687
	              , 0.1687
	             to 0.0736

             "^   453153   5 (6)
	             of 0.7789
	              , 0.7789
	             us 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

              -   453156   1 (5)
	              , 0.5492
	              - 0.5492
	             us 0.5492
	            the 0.5492
	           </S> 0.5492

       Iloivard   453158 inf (12)
	         Rivard 0.7789
	          Ilova 0.5492
	              s 0.5492
	        Ilioara 0.5492
	        Ilgvars 0.5492
	          world 0.5492
	          loiva 0.5492
	              . 0.2388
	           mail 0.1687
	             to 0.1687
	              a 0.1687
	           </S> 0.0736

       Saunders   453167   1 (8)
	           </S> 0.5492
	              , 0.5492
	              a 0.5492
	          under 0.5492
	              - 0.5492
	             us 0.5492
	              ) 0.5492
	       Saunders 0.5492

              .   453175   5 (7)
	            the 0.7789
	             us 0.5492
	              : 0.2388
	            and 0.2388
	              . 0.1687
	           </S> 0.1687
	              , 0.0736

             In   453178   1 (6)
	              , 0.7789
	             In 0.7789
	              a 0.5492
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

           Wood   453199   6 (11)
	      insurance 0.5492
	              a 0.5492
	     Archbishop 0.5492
	              , 0.5492
	            sub 0.5492
	           Wood 0.5178
	           good 0.2388
	            non 0.2388
	            two 0.1687
	           same 0.1687
	           </S> 0.0736

              -   453203   4 (6)
	             us 0.5492
	            the 0.5178
	             of 0.5017
	              - 0.1687
	           </S> 0.0736
	              , 0.0736

           Lark   453204   1 (11)
	           Lark 0.7789
	           axis 0.5492
	       wrapping 0.5492
	              s 0.5492
	           this 0.5492
	          which 0.5492
	            are 0.5017
	              . 0.2388
	              a 0.1687
	             to 0.1687
	           </S> 0.0736

      occurring   453279   1 (6)
	      according 0.5492
	              , 0.5492
	      occurring 0.5492
	              a 0.5492
	              } 0.2236
	           </S> 0.0736

     undulating   453300   1 (6)
	     undulating 0.7789
	    information 0.5017
	              , 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

         dotted   453332   1 (6)
	         dotted 0.7789
	         posted 0.5492
	              C 0.5178
	           </S> 0.1687
	              . 0.0736
	              , 0.0736

            six   453495   1 (7)
	             so 0.5492
	              a 0.5492
	            six 0.5492
	              , 0.5492
	            cia 0.5492
	              } 0.2236
	           </S> 0.0736

            but   453552   1 (7)
	             us 0.5492
	            but 0.5492
	              , 0.5492
	              a 0.5492
	     Consulting 0.5492
	              } 0.2236
	           </S> 0.0736

             In   453623   1 (6)
	             In 0.7789
	              , 0.7789
	              a 0.5492
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

  Stirlingshire   453695   1 (10)
	             us 0.5492
	       business 0.5492
	         common 0.5492
	      captivity 0.5492
	  Stirlingshire 0.5492
	          stock 0.5178
	              , 0.5178
	           </S> 0.2388
	              a 0.1687
	            the 0.0736

             In   453804   1 (6)
	             In 0.7789
	              , 0.7789
	             us 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

      colouring   453877   1 (5)
	      colouring 0.7789
	      following 0.5492
	              a 0.5492
	           </S> 0.1687
	              , 0.0736

           Wood   453891   3 (9)
	          major 0.5492
	              i 0.5492
	           Wood 0.5178
	           good 0.2388
	            non 0.2388
	           same 0.1687
	            two 0.1687
	              - 0.1687
	           </S> 0.0736

         nearly   453901   1 (8)
	         nearly 0.5492
	          early 0.5492
	              a 0.5492
	           that 0.5492
	    Calandrella 0.5324
	              - 0.2388
	              , 0.1687
	           </S> 0.0736

            Sky   453922   4 (11)
	            Pyi 0.7789
	              C 0.5492
	           well 0.5492
	            See 0.5178
	            Sky 0.5178
	            sub 0.5017
	            non 0.2388
	           same 0.1687
	            two 0.1687
	              - 0.1687
	           </S> 0.0736

              -   453925   4 (6)
	             us 0.5492
	            the 0.5178
	             of 0.5178
	              , 0.1687
	              - 0.1687
	           </S> 0.0736

       perching   453974   1 (8)
	       perching 0.7789
	             us 0.5492
	          being 0.5492
	              , 0.2388
	           </S> 0.1687
	              a 0.1687
	            you 0.0736
	            the 0.0736

            the   454067   1 (5)
	             us 0.5492
	              , 0.5492
	            the 0.5492
	              } 0.2236
	           </S> 0.0736

        bastard   454071   5 (11)
	           term 0.5492
	          major 0.5492
	          based 0.5324
	        Bastard 0.5324
	        bastard 0.5178
	           same 0.1687
	          whole 0.1687
	            two 0.1687
	              - 0.1687
	            way 0.1687
	           </S> 0.0736

        primary   454079   1 (10)
	        primary 0.5492
	             it 0.5492
	        Privacy 0.5492
	          shoes 0.5492
	              a 0.5178
	             he 0.5178
	             of 0.2388
	           </S> 0.2388
	              , 0.1687
	              . 0.0736

            the   454104   1 (5)
	             us 0.5492
	              , 0.5492
	            the 0.5492
	              } 0.2236
	           </S> 0.0736

       blackish   454108   1 (10)
	         blacky 0.7789
	       blackish 0.7789
	          urban 0.5492
	          major 0.5492
	              - 0.1687
	           best 0.1687
	            way 0.1687
	           same 0.1687
	          world 0.1687
	           </S> 0.0736

        centres   454117   2 (9)
	           back 0.7789
	        centres 0.5492
	             of 0.5492
	              a 0.5492
	        cinerea 0.5492
	        control 0.5492
	           </S> 0.5178
	              , 0.1687
	              - 0.0736

         iipper   454148 inf (13)
	          Earth 0.5492
	              , 0.5492
	         pipier 0.5492
	          major 0.5492
	              a 0.5492
	           item 0.5492
	           land 0.5492
	              . 0.5492
	         ripper 0.5324
	         Ripper 0.5178
	           most 0.1687
	           page 0.1687
	           </S> 0.0736

        surface   454155   1 (8)
	              , 0.5492
	        service 0.5492
	           that 0.5492
	              . 0.5492
	             of 0.5492
	              a 0.5492
	        surface 0.5492
	           </S> 0.5492

        central   454249   1 (6)
	              , 0.5492
	              s 0.5492
	              a 0.5492
	        central 0.5492
	              } 0.2236
	           </S> 0.0736

        reddish   454272   1 (9)
	        reddish 0.5492
	           real 0.5492
	           Eyes 0.5492
	              - 0.5178
	     1999/08/27 0.5178
	              a 0.5178
	          <UNK> 0.5178
	           </S> 0.2388
	              , 0.0736

        centres   454298   1 (10)
	     exceptions 0.5492
	        cinerea 0.5492
	        centres 0.5492
	        control 0.5492
	    information 0.5492
	              a 0.5492
	            red 0.2388
	           </S> 0.2388
	              . 0.2388
	              , 0.0736

      outermost   454307   1 (7)
	      outermost 0.7789
	              a 0.5492
	            and 0.5492
	         yellow 0.5492
	           </S> 0.5492
	          other 0.2388
	            the 0.0736

        feather   454317   1 (6)
	        feather 0.7789
	          other 0.5492
	              a 0.5492
	              , 0.2388
	           </S> 0.1687
	          layer 0.0736

          brown   454325   1 (9)
	          Brown 0.5492
	          brown 0.5492
	              a 0.5178
	         pillow 0.5017
	         duster 0.2388
	           beds 0.1687
	           </S> 0.1687
	              . 0.1687
	              , 0.0736

          dusky   454346   4 (7)
	           dust 0.7789
	             us 0.7789
	            due 0.7789
	          dusky 0.5492
	              , 0.1687
	           </S> 0.1687
	           site 0.0736

      remaining   454405   1 (5)
	              a 0.5492
	              , 0.5492
	      remaining 0.5492
	              } 0.2236
	           </S> 0.0736

       feathers   454415   1 (7)
	       feathers 0.7789
	        kmalloc 0.5492
	       features 0.5178
	              a 0.2388
	              , 0.1687
	           </S> 0.0942
	             in 0.0736

       blackish   454424   3 (10)
	           back 0.7789
	              a 0.7114
	              % 0.5492
	             us 0.5492
	         caches 0.5492
	       blackish 0.5492
	              ) 0.5178
	           </S> 0.2388
	              , 0.0736
	              . 0.0497

     triangular   454448   1 (8)
	     triangular 0.5492
	              a 0.5492
	        program 0.3804
	            and 0.1687
	              ( 0.1687
	              , 0.1687
	              . 0.0736
	           </S> 0.0736

              a   454472   1 (6)
	              a 0.5492
	             us 0.5492
	            the 0.5492
	              , 0.5492
	              } 0.2236
	           </S> 0.0736

        buffish   454480   1 (9)
	             of 0.5492
	            off 0.5492
	       business 0.5492
	           File 0.5492
	        buffish 0.5492
	              a 0.5178
	              , 0.1687
	           </S> 0.1687
	          range 0.0736

            ear   454548   1 (7)
	              a 0.5492
	              , 0.5492
	           year 0.5492
	            ear 0.5492
	            arz 0.5492
	              } 0.2236
	           </S> 0.0736

         rufous   454560   2 (11)
	              - 0.7789
	          rufus 0.5492
	         rufous 0.5492
	        sources 0.5492
	          group 0.5492
	   descriptions 0.5492
	              a 0.5178
	          white 0.5178
	           </S> 0.2388
	              . 0.0736
	              , 0.0736

         cheeks   454595   1 (6)
	          check 0.5492
	              a 0.5492
	              , 0.5492
	         cheeks 0.5492
	              } 0.2236
	           </S> 0.0736

    distinctl}'   454631   1 (5)
	     distinctly 0.7789
	        details 0.5492
	              , 0.5178
	           </S> 0.2388
	              a 0.0736

      yellowish   454643   1 (8)
	           year 0.5492
	              , 0.5492
	              . 0.5492
	           full 0.5492
	          major 0.5492
	           </S> 0.5492
	              a 0.5492
	      yellowish 0.5492

         flanks   454686   1 (6)
	              a 0.5492
	         Thanks 0.5492
	         flanks 0.5492
	              , 0.5492
	              } 0.2236
	           </S> 0.0736

       brownish   454693   2 (7)
	            you 0.7789
	       browsing 0.5492
	       brownish 0.5492
	              a 0.5324
	           </S> 0.5178
	              , 0.1687
	             of 0.0736

         throat   454704   1 (6)
	              , 0.5492
	              a 0.5492
	         throat 0.5492
	          torax 0.5492
	              } 0.2236
	           </S> 0.0736

       narrowly   454711   1 (6)
	       narrowly 0.5492
	              a 0.5178
	             is 0.2388
	           </S> 0.2388
	              , 0.0942
	              . 0.0736

         breast   454742   1 (6)
	         breast 0.5492
	              , 0.5492
	              a 0.5492
	          break 0.5492
	              } 0.2236
	           </S> 0.0736

        broadly   454760   1 (9)
	        product 0.5492
	        broadly 0.5492
	             us 0.5492
	         cancer 0.5492
	              a 0.5324
	           </S> 0.5178
	              , 0.1687
	              . 0.1687
	             of 0.0736

       streaked   454768   1 (7)
	       streaked 0.7789
	         stream 0.5492
	              a 0.5492
	           </S> 0.1687
	            and 0.1687
	        defined 0.1687
	              , 0.0736

              ;   454777   1 (7)
	              ; 0.7114
	             us 0.5492
	          while 0.5492
	           </S> 0.5178
	            the 0.5178
	              , 0.2388
	           with 0.0736

           bill   454779   1 (7)
	           will 0.5492
	              , 0.5492
	              a 0.5492
	           bill 0.5492
	            cia 0.5492
	              } 0.2236
	           </S> 0.0736

           dark   454784   1 (8)
	            day 0.7789
	           dark 0.7789
	            arz 0.5492
	              a 0.5178
	           </S> 0.1687
	            and 0.1687
	              , 0.0942
	              . 0.0736

           feet   454816   1 (7)
	           free 0.5492
	              a 0.5492
	              , 0.5492
	           feet 0.5492
	              ) 0.5178
	              } 0.2236
	           </S> 0.0736

          light   454821   1 (6)
	          light 0.7789
	              a 0.5178
	           </S> 0.1687
	             of 0.1687
	              , 0.0736
	              . 0.0736

           horn   454827   1 (10)
	           horn 0.7789
	        reddish 0.5492
	       Tide2006 0.5492
	          corax 0.5492
	           here 0.5178
	            box 0.5017
	              a 0.2388
	           </S> 0.1687
	              , 0.0942
	             of 0.0736

              -   454831   4 (7)
	             us 0.7789
	           dark 0.5492
	            the 0.5178
	              - 0.1687
	              . 0.1687
	           </S> 0.1687
	              , 0.0736

           iris   454839   1 (7)
	              a 0.5492
	             is 0.5492
	              , 0.5492
	           iris 0.5492
	             iu 0.5492
	              } 0.2236
	           </S> 0.0736

          hazel   454844   1 (7)
	           have 0.7789
	          hazel 0.7789
	           here 0.7789
	          Pales 0.5492
	              ) 0.2388
	           </S> 0.1687
	              , 0.0736

              .   454849   3 (6)
	            the 0.7789
	             us 0.5492
	           </S> 0.2388
	              . 0.2388
	              , 0.1687
	           eyes 0.0736

      soniewhal   454870   6 (9)
	              a 0.7114
	        Toniwha 0.5492
	      nonlethal 0.5492
	       societal 0.5492
	        similar 0.5492
	              , 0.5178
	       somewhat 0.5178
	           </S> 0.5178
	           from 0.0736

             as   454880   1 (6)
	           </S> 0.5492
	             us 0.5492
	           that 0.5492
	              , 0.5492
	            the 0.5492
	             as 0.5492

           Sk3'   454890 inf (11)
	             Sk 0.7789
	              A 0.5492
	              , 0.5492
	            mid 0.5492
	            non 0.5492
	           Skip 0.5324
	           Site 0.2388
	           case 0.1687
	           same 0.1687
	          world 0.1687
	           </S> 0.0736

              -   454894   1 (6)
	           </S> 0.5492
	              , 0.5492
	             of 0.5492
	              - 0.5492
	             us 0.5492
	            the 0.5492

            the   454902   1 (5)
	             us 0.5492
	            the 0.5492
	              , 0.5492
	              } 0.2236
	           </S> 0.0736

      deeidedly   454917   1 (9)
	      decidedly 0.7789
	         deeded 0.7789
	        Aidedly 0.5492
	           much 0.5492
	        deedily 0.5492
	        decided 0.5178
	              , 0.1687
	           </S> 0.1687
	              a 0.0736

        shorter   454927   1 (8)
	        shorter 0.5492
	           </S> 0.5492
	             us 0.5492
	          store 0.5492
	             to 0.5492
	              , 0.5492
	            out 0.5492
	              a 0.5492

          Yonng   454965 inf (8)
	              , 0.7789
	            You 0.7789
	           Yong 0.5492
	          Yonne 0.5492
	              a 0.5492
	              s 0.5492
	              " 0.2388
	           </S> 0.0736

        l:)irds   454971   1 (5)
	          birds 0.5492
	         lairds 0.5492
	              a 0.5492
	              , 0.5492
	           </S> 0.5492

            are   454979   1 (4)
	           area 0.5492
	            are 0.5492
	            arz 0.5492
	            the 0.5492

         rnfons   454988 inf (14)
	          frons 0.5492
	         infons 0.5492
	          rufus 0.5492
	         refons 0.5492
	       renflons 0.5492
	           Info 0.5178
	          fully 0.5017
	              a 0.3804
	             to 0.2388
	            you 0.2388
	         likely 0.1687
	           </S> 0.1687
	              , 0.1687
	           than 0.0736

          above   454995   1 (8)
	           </S> 0.5492
	          above 0.5492
	              , 0.5492
	              I 0.5492
	             to 0.5492
	          about 0.5492
	        arborea 0.5492
	           know 0.5492

          below   455033   1 (6)
	              , 0.5492
	          below 0.5492
	              a 0.5492
	          Aedon 0.5492
	              } 0.2236
	           </S> 0.0736

        3'ellow   455053 inf (10)
	         Yellow 0.7789
	           ello 0.5492
	          below 0.5178
	              a 0.3804
	             to 0.2388
	      expensive 0.2388
	         likely 0.1687
	           </S> 0.1687
	              , 0.1687
	           than 0.0736

        spotted   455082   1 (9)
	         people 0.5492
	             do 0.5492
	        spotted 0.5492
	              a 0.5492
	           than 0.5178
	           </S> 0.2388
	              , 0.1687
	              . 0.1687
	      available 0.0736

             On   455118   1 (7)
	             in 0.7789
	              , 0.7789
	             On 0.7789
	             us 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

            Dr.   455243   1 (11)
	            Dry 0.5492
	              ( 0.5492
	           </S> 0.5492
	              a 0.5492
	            and 0.5492
	             Dr 0.5492
	        writers 0.5492
	            arz 0.5492
	            are 0.5492
	          which 0.1687
	            the 0.0736

        vSharpe   455247   1 (8)
	         Sharpe 0.7789
	          share 0.5492
	              a 0.5492
	             A. 0.2388
	         Jekyll 0.2388
	           King 0.1687
	           </S> 0.0736
	              , 0.0497

            and   455255   1 (5)
	              , 0.5492
	            and 0.5492
	           </S> 0.5492
	             's 0.5492
	              s 0.5492

        Lullula   455306   1 (10)
	        Lullula 0.7789
	          value 0.5492
	              s 0.5492
	       specific 0.5492
	              . 0.2388
	             up 0.1687
	           mail 0.1687
	             to 0.1687
	              a 0.1687
	           </S> 0.0736

              ,   455313   1 (7)
	              , 0.5492
	             us 0.5492
	           </S> 0.5492
	              - 0.5492
	            the 0.5492
	          genus 0.5492
	        arborea 0.0736

           Kaup   455315   1 (10)
	              - 0.5492
	              a 0.5492
	            and 0.5492
	           </S> 0.5492
	      therefore 0.5492
	          <UNK> 0.5492
	           Kaup 0.5492
	           lava 0.5178
	           your 0.2388
	            the 0.0736

         IvU-lu   455357 inf (8)
	              s 0.5492
	          Ivalu 0.5492
	             In 0.2388
	              a 0.2388
	              , 0.1687
	              ) 0.1687
	          <UNK> 0.1687
	           </S> 0.0736

           Col.   455422   2 (9)
	              , 0.7789
	           Cold 0.5492
	           Coll 0.5492
	            Col 0.5492
	              a 0.5492
	           only 0.5492
	           sala 0.5492
	              " 0.2388
	           </S> 0.0736

             L.   455427   2 (6)
	              a 0.5492
	             L. 0.5178
	             of 0.1687
	          James 0.1687
	              , 0.1687
	           </S> 0.0736

          Irb}'   455436   1 (11)
	           Irby 0.7789
	           Iraq 0.7789
	        However 0.5492
	            Irb 0.5492
	             A. 0.5492
	         Claver 0.5492
	              A 0.2388
	              , 0.1687
	          <UNK> 0.1687
	             .. 0.0736
	           </S> 0.0736

    Ornithology   455452   1 (7)
	    Ornithology 0.7789
	        Journal 0.5492
	            One 0.5492
	           with 0.2388
	              a 0.2388
	              , 0.1687
	           </S> 0.0736

          sa3'S   455494 inf (9)
	           sala 0.7789
	           SasS 0.5492
	             sa 0.5178
	              a 0.2388
	              x 0.2388
	           said 0.1687
	            and 0.1687
	              , 0.1687
	           </S> 0.0736

           that   455500   1 (7)
	              a 0.5492
	              " 0.5492
	           </S> 0.5492
	              s 0.5492
	              = 0.5492
	              , 0.5492
	           that 0.5492

     Andalucian   455514   1 (9)
	      Andalucia 0.7789
	     Andalucian 0.7789
	              B 0.5492
	              , 0.5492
	           same 0.1687
	          other 0.1687
	            top 0.1687
	       American 0.1687
	           </S> 0.0736

           Wood   455534   5 (10)
	             EU 0.5492
	              i 0.5492
	             by 0.5492
	            sub 0.5492
	           Wood 0.5178
	            non 0.2388
	           good 0.2388
	              - 0.1687
	           same 0.1687
	           </S> 0.0736

              -   455538   4 (6)
	             us 0.5492
	            the 0.5178
	             of 0.5017
	              - 0.1687
	           </S> 0.0736
	              , 0.0736

           Lark   455539   1 (10)
	           Lark 0.7789
	              s 0.5492
	          Mizer 0.5492
	       wrapping 0.5492
	            are 0.5017
	              . 0.2388
	             it 0.2388
	             to 0.1687
	              a 0.1687
	           </S> 0.0736

    frequenting   455642   1 (8)
	    frequenting 0.7789
	              a 0.5492
	           2005 0.5492
	           </S> 0.5492
	              , 0.5492
	            and 0.5492
	           free 0.2388
	            the 0.0736

          scrub   455654   2 (8)
	         places 0.7789
	          scrub 0.5492
	          Parus 0.5492
	           such 0.5324
	           </S> 0.5324
	              , 0.5178
	              a 0.2388
	            the 0.0736

            not   455666   2 (7)
	             us 0.7114
	            not 0.5178
	              , 0.2388
	          there 0.1687
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

           \&xy   455670 inf (12)
	           Next 0.7789
	             xy 0.7789
	            Oxy 0.5492
	           sexy 0.5178
	        limited 0.2388
	            too 0.2388
	              a 0.1687
	              , 0.1687
	           have 0.1687
	           only 0.1687
	           </S> 0.1687
	             be 0.0736

          thick   455675   1 (7)
	              a 0.5492
	              , 0.5492
	             to 0.5492
	          thick 0.5492
	           </S> 0.5492
	           Pica 0.5492
	          think 0.5492

       locality   455694   1 (8)
	       locality 0.7789
	              a 0.5492
	           town 0.5492
	          local 0.5178
	           </S> 0.2388
	              , 0.2388
	             of 0.2388
	       searches 0.0736

      Gibraltar   455708   1 (9)
	      Gibraltar 0.7789
	      Australia 0.5492
	             us 0.5178
	           </S> 0.2388
	              , 0.2388
	              a 0.2388
	             to 0.2388
	         future 0.1687
	            the 0.0736

      Chaparaks   455728 inf (13)
	     Chaparrals 0.7789
	         Charak 0.7789
	        Company 0.5492
	      Chaparall 0.5492
	     Chaparajos 0.5492
	              t 0.5492
	         Chapar 0.5492
	              . 0.5492
	       Charakas 0.5492
	          world 0.1687
	          first 0.1687
	           same 0.1687
	           </S> 0.0736

              (   455738   1 (6)
	           </S> 0.5492
	             of 0.5492
	              , 0.5492
	            the 0.5492
	             us 0.5492
	              ( 0.5492

           Well   455788   1 (8)
	            Web 0.7789
	           Well 0.7789
	              , 0.7789
	          paper 0.5492
	              a 0.5492
	           sala 0.5492
	              " 0.2388
	           </S> 0.0736

       vSpanish   455806   6 (10)
	              , 0.5492
	            the 0.5492
	              a 0.5492
	             us 0.5492
	        English 0.5492
	        Spanish 0.2388
	         public 0.1687
	           main 0.1687
	            top 0.1687
	           </S> 0.0736

           bird   455815   1 (8)
	             of 0.5492
	           bird 0.5492
	              a 0.5492
	             by 0.5492
	              , 0.5492
	           </S> 0.5492
	            cia 0.5492
	         Double 0.5492

           they   455865   1 (5)
	              , 0.5492
	              a 0.5492
	           they 0.5492
	              } 0.2236
	           </S> 0.0736

          never   455901   1 (7)
	          never 0.5492
	              a 0.5492
	         impact 0.5492
	    Calandrella 0.5324
	              - 0.2388
	              , 0.1687
	           </S> 0.0736

        remains   455907   1 (7)
	        remains 0.7789
	        reading 0.7114
	              , 0.1687
	              a 0.1687
	           </S> 0.1687
	           have 0.1687
	           been 0.0736

          onl}'   455999   3 (7)
	        nowhere 0.5492
	          ollon 0.5492
	           only 0.2388
	          going 0.2388
	              , 0.1687
	           </S> 0.1687
	              a 0.0736

       timbered   456020   1 (7)
	       timbered 0.7789
	             us 0.5492
	          there 0.5492
	              , 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

            not   456038   1 (7)
	              , 0.5492
	            and 0.5492
	              a 0.5492
	            not 0.5492
	             us 0.5492
	              } 0.2236
	           </S> 0.0736

      clearings   456119   1 (9)
	      clearings 0.7789
	          major 0.5492
	         delays 0.2388
	              , 0.1687
	             in 0.1687
	         change 0.1687
	              a 0.0942
	           </S> 0.0736
	            the 0.0736

       although   456164   1 (9)
	           </S> 0.5492
	       although 0.5492
	            but 0.5492
	              ( 0.5492
	              I 0.5492
	            and 0.5492
	        through 0.2388
	           that 0.1687
	            the 0.0736

        resorts   456197   5 (9)
	        results 0.7789
	            son 0.5492
	     fatalities 0.5492
	              a 0.5492
	        resorts 0.5324
	              . 0.2388
	              , 0.2388
	           </S> 0.2388
	       searches 0.0736

            for   456207   1 (6)
	              a 0.5492
	              , 0.5492
	            for 0.5492
	            arz 0.5492
	              } 0.2236
	           </S> 0.0736

        commons   456229   2 (9)
	         heaths 0.7789
	        company 0.5492
	             me 0.5492
	        commons 0.5492
	         corone 0.5492
	           </S> 0.5178
	              , 0.5178
	              a 0.5178
	            the 0.0736

            but   456239   1 (6)
	             us 0.5492
	              a 0.5492
	              , 0.5492
	            but 0.5492
	              } 0.2236
	           </S> 0.0736

          trees   456243   2 (10)
	          Pales 0.5492
	          trees 0.5324
	          these 0.2388
	           they 0.1687
	           </S> 0.1687
	              , 0.1687
	              a 0.1687
	            not 0.1687
	             it 0.0736
	              I 0.0736

              '   456271   2 (9)
	             us 0.7789
	              ' 0.5492
	            due 0.5178
	            the 0.5178
	             in 0.2388
	           </S> 0.2388
	              , 0.1687
	            for 0.1687
	             to 0.0736

       Although   456346   1 (7)
	              , 0.7789
	            Not 0.7789
	       Although 0.7789
	        through 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

          feeds   456417   2 (7)
	          needs 0.7789
	          feeds 0.5492
	              a 0.5492
	    Calandrella 0.5324
	              - 0.2388
	              , 0.1687
	           </S> 0.0736

         roosts   456464   1 (8)
	         roosts 0.7789
	         rights 0.7789
	             us 0.5492
	              , 0.1687
	           </S> 0.1687
	            has 0.1687
	              a 0.1687
	             be 0.0736

         builds   456475   1 (9)
	         builds 0.5178
	             in 0.1687
	           </S> 0.1687
	              a 0.1687
	           that 0.1687
	           will 0.1687
	              , 0.1687
	             to 0.1687
	            the 0.0736

        tussock   456567   1 (10)
	        tussock 0.7789
	          large 0.5492
	           this 0.5492
	              s 0.5492
	              . 0.2388
	              a 0.1687
	           time 0.1687
	           year 0.1687
	             to 0.1687
	           </S> 0.0736

             it   456591   1 (6)
	              , 0.5492
	             iu 0.5492
	              a 0.5492
	             it 0.5492
	              } 0.2236
	           </S> 0.0736

     compactl}'   456602   1 (8)
	      compactly 0.7114
	        solidly 0.5492
	              a 0.5017
	       complete 0.5017
	             to 0.2388
	           </S> 0.1687
	              , 0.1687
	           than 0.0736

          built   456613   1 (8)
	          built 0.5492
	           than 0.5492
	              , 0.5492
	            but 0.5492
	             us 0.5492
	              a 0.5492
	             to 0.5492
	           </S> 0.5492

           Sk^^   456636 inf (10)
	             Sk 0.7789
	          major 0.5492
	              , 0.5492
	            non 0.5492
	              . 0.5492
	              a 0.5492
	           Skip 0.5324
	           Site 0.2388
	           most 0.1687
	           </S> 0.0736

              -   456640   1 (7)
	             of 0.5492
	              . 0.5492
	              , 0.5492
	             us 0.5492
	            the 0.5492
	           </S> 0.5492
	              - 0.5492

      sometimes   456648   1 (6)
	    Calandrella 0.5492
	              a 0.5492
	              , 0.5492
	      sometimes 0.5492
	              } 0.2236
	           </S> 0.0736

          couch   456661   1 (10)
	          couch 0.7789
	          comix 0.7789
	          could 0.7114
	            sea 0.5492
	            non 0.5492
	           self 0.5492
	              , 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

          grass   456703   1 (9)
	          grass 0.7789
	          great 0.5492
	              a 0.5492
	   segmentation 0.5017
	           </S> 0.2388
	              . 0.2388
	         detail 0.2388
	              , 0.1687
	         points 0.0736

      sometimes   456742   1 (5)
	      sometimes 0.5492
	              a 0.5492
	              , 0.5492
	              } 0.2236
	           </S> 0.0736

          grass   456762   1 (7)
	          grass 0.5178
	          great 0.5017
	              , 0.2388
	             us 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

          bents   456768   2 (9)
	           best 0.7789
	        section 0.5492
	    information 0.5492
	      withereth 0.5492
	          bents 0.5492
	              a 0.5178
	           </S> 0.1687
	              . 0.1687
	              , 0.0736

        Central   456913   2 (7)
	         Cettia 0.5492
	         Center 0.5178
	        Central 0.5178
	              , 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

        Lilford   456955 inf (11)
	        Linford 0.7789
	        Lifford 0.7789
	        million 0.5492
	          title 0.5492
	              , 0.5492
	        Milford 0.5324
	              a 0.1687
	              s 0.1687
	           </S> 0.1687
	          <UNK> 0.0736
	              1 0.0736

          until   456984   3 (7)
	              a 0.7789
	             of 0.7789
	          under 0.5492
	          until 0.5492
	          Munia 0.5492
	           </S> 0.1687
	              , 0.0736

      Secholiin   457020 inf (12)
	       Decholin 0.5492
	       Scholion 0.5492
	       Scholing 0.5492
	      Schonlein 0.5492
	              . 0.5492
	         Sechin 0.5492
	         people 0.5492
	           </S> 0.1687
	              a 0.1687
	              s 0.1687
	          <UNK> 0.0736
	              1 0.0736

       huffish-   457072 inf (11)
	        huffish 0.5492
	            his 0.5492
	          white 0.5492
	   instructions 0.5492
	     trademarks 0.2388
	              . 0.1687
	           used 0.1687
	              a 0.1687
	           </S> 0.1687
	              , 0.1687
	            not 0.0736

             or   457081   1 (6)
	              a 0.5492
	             or 0.5492
	             us 0.5492
	              , 0.5492
	             to 0.5492
	           </S> 0.5492

         greyer   457167   2 (9)
	          great 0.7789
	       district 0.5492
	              . 0.5492
	        chronic 0.5492
	         greyer 0.5492
	              , 0.2388
	              a 0.2388
	           </S> 0.1687
	            the 0.0736

          spots   457174   1 (9)
	             of 0.5492
	        disease 0.5492
	              B 0.5492
	    regulations 0.5492
	           site 0.5492
	          spots 0.5492
	         spinas 0.5492
	           </S> 0.5178
	              , 0.0736

         massed   457288   1 (8)
	         massed 0.7789
	           made 0.5492
	              a 0.5492
	           look 0.5492
	         Passer 0.5492
	              , 0.5178
	           </S> 0.2388
	      populated 0.0736

             as   457350   1 (7)
	              I 0.5492
	             us 0.5492
	           with 0.5492
	              , 0.5492
	             as 0.5492
	              } 0.2236
	           </S> 0.0736

      confluent   457401   1 (10)
	      confluent 0.7789
	             us 0.5492
	           more 0.5492
	        content 0.5324
	              a 0.3804
	      expensive 0.2388
	              , 0.2388
	              . 0.1687
	           </S> 0.1687
	           than 0.0736

          being   457464   1 (6)
	          being 0.7789
	              a 0.5492
	    Calandrella 0.5324
	              - 0.2388
	              , 0.1687
	           </S> 0.0736

     generall}'   457470   3 (6)
	       generall 0.5492
	       formally 0.5492
	      generally 0.5178
	           </S> 0.1687
	              , 0.1687
	              a 0.0736

       admitted   457481   1 (8)
	            not 0.5492
	              I 0.5492
	      available 0.5492
	          after 0.5492
	             to 0.5492
	       admitted 0.5492
	              , 0.5492
	           </S> 0.5492

              '   457504 inf (8)
	             us 0.7789
	          match 0.5492
	              , 0.5492
	             to 0.2388
	            the 0.1687
	            one 0.1687
	           </S> 0.1687
	            all 0.0736

       resemble   457506   1 (9)
	       resemble 0.7789
	           read 0.2388
	              a 0.2388
	              s 0.1687
	            for 0.1687
	            The 0.1687
	             in 0.1687
	           </S> 0.0736
	              , 0.0736

         cjuite   457627 inf (10)
	         cluite 0.5492
	           uite 0.5492
	          cuite 0.5492
	        juncite 0.5492
	           site 0.5178
	              a 0.5017
	            for 0.2388
	           </S> 0.1687
	              . 0.0736
	              , 0.0736

          eaidy   457634 inf (8)
	              , 0.5492
	          ediya 0.5492
	           </S> 0.5492
	              a 0.5492
	          Saidy 0.5492
	            ead 0.5492
	           said 0.5492
	            the 0.5492

         enough   457640   1 (3)
	         enough 0.5492
	        through 0.5492
	         Keough 0.5492

     consisting   457735   1 (10)
	              a 0.5492
	    Calandrella 0.5492
	            and 0.5492
	              & 0.5492
	              - 0.5492
	           </S> 0.5492
	     consisting 0.5492
	         online 0.5492
	            was 0.1687
	            the 0.0736

              -   457806   6 (8)
	             DT 0.5492
	             us 0.5492
	            the 0.5178
	             of 0.5017
	       Flooring 0.2388
	              - 0.1687
	              , 0.0736
	           </S> 0.0736

             's   457811   5 (8)
	              a 0.5492
	             us 0.5492
	              ! 0.5324
	             is 0.5178
	              - 0.2388
	             's 0.2388
	              , 0.1687
	           </S> 0.0736

          ver^'   457822   3 (6)
	            ver 0.7789
	          verve 0.7789
	           </S> 0.1687
	           very 0.1687
	              , 0.1687
	              a 0.0736

           pnre   457828   1 (10)
	           page 0.5492
	            pre 0.5492
	           pure 0.5492
	              a 0.5492
	           inre 0.5492
	              , 0.5492
	             to 0.5492
	           </S> 0.5492
	           pren 0.5492
	          parva 0.5492

            and   457833   1 (3)
	            and 0.5492
	            the 0.5492
	            arz 0.5492

            b}-   457851   2 (7)
	             us 0.5178
	              - 0.2388
	             by 0.2388
	           </S> 0.1687
	              , 0.1687
	              a 0.1687
	            the 0.0736

          man}^   457855   1 (8)
	            man 0.5492
	              . 0.5492
	           mana 0.5492
	           </S> 0.5492
	          major 0.5492
	              , 0.5492
	           many 0.5492
	              a 0.5492

             it   457861   1 (3)
	             iu 0.5492
	             it 0.5492
	            the 0.5492

     certaiul}'   457927   2 (7)
	         really 0.7789
	      certainly 0.5492
	          could 0.5178
	              a 0.5178
	           </S> 0.2388
	              , 0.2388
	             is 0.0736

             is   457938   1 (7)
	              , 0.5492
	            not 0.5492
	           does 0.5492
	             is 0.5492
	              s 0.5492
	           </S> 0.5492
	              a 0.5492

   nevertheless   457991   1 (6)
	              a 0.5492
	        request 0.5492
	              , 0.5492
	   nevertheless 0.5492
	              } 0.2236
	           </S> 0.0736

     persevered   458030   1 (8)
	     persevered 0.5492
	       provided 0.2388
	           </S> 0.1687
	              , 0.1687
	            the 0.1687
	           used 0.1687
	              . 0.1687
	              a 0.0736

             it   458104   1 (6)
	              a 0.5492
	             it 0.5492
	             iu 0.5492
	              , 0.5492
	              } 0.2236
	           </S> 0.0736

            but   458182   1 (6)
	              s 0.5492
	              , 0.5492
	            but 0.5492
	              a 0.5492
	              } 0.2236
	           </S> 0.0736

            mj-   458369   3 (10)
	             mj 0.7789
	            mjw 0.5492
	              , 0.2388
	             us 0.2388
	             my 0.2388
	           </S> 0.1687
	             an 0.1687
	           your 0.1687
	              a 0.1687
	            the 0.0736

            old   458373   1 (8)
	              . 0.5492
	           </S> 0.5492
	              , 0.5492
	            old 0.5492
	             of 0.5492
	              a 0.5492
	             us 0.5492
	           best 0.5492

       Grayling   458393   2 (9)
	       training 0.7789
	    Blatherwick 0.5492
	       Grayling 0.5492
	              A 0.2388
	          <UNK> 0.1687
	             A. 0.1687
	              , 0.1687
	           </S> 0.0736
	             's 0.0736

  Sittiugbourne   458406   1 (8)
	  Sittingbourne 0.5492
	              , 0.5178
	         course 0.5017
	        Service 0.5017
	             us 0.5017
	           </S> 0.2388
	              a 0.1687
	            the 0.0736

              ;   458420   1 (6)
	              , 0.5492
	              ; 0.5492
	            the 0.5492
	             us 0.5492
	              . 0.5492
	           </S> 0.5492

             we   458422   1 (5)
	             we 0.5492
	             us 0.5492
	              ) 0.5178
	              } 0.2236
	           </S> 0.0736

     delightful   458505   4 (10)
	          sweet 0.5492
	          theme 0.5492
	     subjective 0.5492
	     delightful 0.5178
	          total 0.1687
	           date 0.1687
	          right 0.1687
	           same 0.1687
	              - 0.1687
	           </S> 0.0736

        looking   458538   1 (6)
	              a 0.5492
	              , 0.5492
	    Calandrella 0.5492
	        looking 0.5492
	              } 0.2236
	           </S> 0.0736

         espied   458557   1 (11)
	         espied 0.7789
	           used 0.7789
	            had 0.5178
	              a 0.5178
	          found 0.3804
	              ( 0.2388
	              , 0.1687
	           </S> 0.1687
	             to 0.1687
	             be 0.1687
	             as 0.0736

      promineut   458651   5 (11)
	           send 0.5492
	        promine 0.5492
	       prominet 0.5492
	    prominuerit 0.5492
	      prominent 0.5178
	           stay 0.2388
	           from 0.2388
	              , 0.1687
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

            eye   458661   1 (9)
	              , 0.5492
	       informed 0.5492
	              a 0.5492
	            eye 0.5492
	              . 0.5492
	           </S> 0.5492
	            New 0.5492
	          split 0.5492
	            Pyi 0.5492

              -   458664   4 (6)
	             us 0.7789
	            the 0.5017
	           </S> 0.1687
	              - 0.0942
	              , 0.0942
	              . 0.0736

      Presently   458673 inf (8)
	              , 0.7789
	              a 0.5492
	    Presciently 0.5492
	        Present 0.5492
	      presently 0.5492
	       recently 0.5492
	              " 0.2388
	           </S> 0.0736

          awaj^   458693   7 (12)
	           waaj 0.5492
	            awa 0.5492
	             us 0.5492
	              I 0.5492
	          Zawaj 0.5492
	          again 0.5324
	           away 0.5178
	           </S> 0.5178
	            off 0.5178
	              . 0.1687
	              , 0.1687
	             to 0.0736

         rising   458699   1 (6)
	         rating 0.5492
	              a 0.5492
	           </S> 0.5492
	            the 0.5492
	              , 0.5492
	         rising 0.5492

      obliquely   458715   1 (7)
	      obliquely 0.7789
	          other 0.5492
	              a 0.5492
	          major 0.2388
	              , 0.1687
	           </S> 0.1687
	           time 0.0736

       swinging   458744   1 (10)
	       swinging 0.7789
	            can 0.5492
	             us 0.5492
	           said 0.5492
	              a 0.5492
	            the 0.2388
	           came 0.2388
	           </S> 0.1687
	       increase 0.1687
	              , 0.0736

            aud   458775   1 (8)
	            and 0.5492
	           </S> 0.5492
	              " 0.5492
	            aud 0.5492
	            arz 0.5492
	              I 0.5492
	            who 0.1687
	            the 0.0736

         rising   458779   1 (6)
	          using 0.5492
	              , 0.5492
	              a 0.5492
	         rising 0.5492
	           </S> 0.5178
	              0 0.0736

         spiral   458850   1 (10)
	         spiral 0.7789
	        special 0.7789
	         spinas 0.5492
	         calves 0.5492
	              a 0.5178
	              - 0.1687
	              , 0.1687
	              . 0.1687
	           </S> 0.1687
	          range 0.0736

         curves   458857   4 (8)
	         course 0.7114
	              a 0.5492
	         Corvus 0.5492
	         curves 0.5324
	             as 0.5178
	              , 0.1687
	           </S> 0.1687
	             of 0.0736

      certainlj   458961   4 (10)
	           work 0.5492
	             us 0.5492
	       services 0.5492
	      certainly 0.5178
	              , 0.1687
	              . 0.1687
	            was 0.1687
	              a 0.1687
	           </S> 0.1687
	             is 0.0736

              ?   458970   1 (6)
	             it 0.5492
	              , 0.5492
	            the 0.5492
	             us 0.5492
	              ? 0.5492
	           </S> 0.5492

           does   458972   1 (6)
	             us 0.5492
	           down 0.5492
	           does 0.5492
	              ) 0.2388
	              " 0.2388
	           </S> 0.0736

       gloaming   458998   1 (9)
	       gloaming 0.7789
	              s 0.5492
	           good 0.5492
	              a 0.2388
	             of 0.2388
	              ) 0.1687
	              , 0.1687
	          <UNK> 0.1687
	           </S> 0.0736

        rustics   459023   1 (7)
	          Music 0.5492
	        rustica 0.5492
	        rustics 0.5492
	              a 0.2388
	              , 0.2388
	           </S> 0.2388
	             to 0.0736

    Nightingale   459064   1 (8)
	    Nightingale 0.7789
	              . 0.5492
	          night 0.5492
	          other 0.1687
	       National 0.1687
	           same 0.1687
	          world 0.1687
	           </S> 0.0736

            but   459078   1 (6)
	              a 0.5492
	            but 0.5492
	             us 0.5492
	              , 0.5492
	              } 0.2236
	           </S> 0.0736

       Although   459164   1 (6)
	       Although 0.7789
	              , 0.7789
	              I 0.7789
	         Anthus 0.5492
	              " 0.2388
	           </S> 0.0736

      sometimes   459183   1 (8)
	      sometimes 0.7789
	           site 0.5492
	              a 0.5178
	             is 0.2388
	           </S> 0.2388
	              . 0.1687
	              , 0.1687
	            flu 0.0736

          soars   459193   1 (8)
	          soars 0.7789
	          Board 0.5492
	           sala 0.5492
	              a 0.1687
	             be 0.1687
	           </S> 0.1687
	       referred 0.1687
	              , 0.0736

          quite   459199   2 (7)
	              a 0.7789
	           site 0.5492
	          quite 0.5492
	         quelea 0.5492
	              , 0.1687
	             to 0.0736
	           </S> 0.0736

           this   459229   2 (9)
	             it 0.7789
	        address 0.5492
	           this 0.5492
	            cia 0.5492
	              a 0.5492
	              " 0.5178
	              - 0.2388
	              , 0.1687
	           </S> 0.0736

       moreover   459261   1 (6)
	        However 0.5492
	              a 0.5492
	              , 0.5492
	       moreover 0.5492
	              } 0.2236
	           </S> 0.0736

             it   459270   2 (5)
	             iu 0.5492
	           </S> 0.5178
	             it 0.5178
	              a 0.5178
	              , 0.0736

      obliquely   459350   1 (7)
	      obliquely 0.7789
	         online 0.5492
	              , 0.2388
	             us 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

            b}'   459363   4 (10)
	              s 0.5492
	           beef 0.5178
	              ' 0.2388
	             in 0.1687
	              , 0.1687
	             by 0.1687
	              a 0.0942
	           </S> 0.0736
	            the 0.0736
	           more 0.0497

          jerky   459367   1 (9)
	           were 0.5492
	              . 0.5492
	              a 0.5492
	            few 0.5492
	           </S> 0.5492
	             us 0.5492
	            dew 0.5492
	              , 0.5492
	          jerky 0.5492

          drops   459373   3 (7)
	           does 0.7789
	              a 0.7789
	          drops 0.5492
	           </S> 0.2388
	      movements 0.2388
	              . 0.1687
	              , 0.0736

           Lark   459406   1 (9)
	           Lark 0.7789
	           this 0.5492
	              s 0.5492
	       wrapping 0.5492
	            are 0.5017
	              . 0.2388
	             to 0.1687
	              a 0.1687
	           </S> 0.0736

             On   459475   1 (7)
	             On 0.7789
	              , 0.7789
	             in 0.7789
	             us 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

            but   459689   1 (5)
	              a 0.5492
	            but 0.5492
	              , 0.5492
	             us 0.5492
	           </S> 0.0736

            fed   459710   1 (10)
	            fed 0.7789
	             us 0.7789
	            not 0.5178
	              a 0.5178
	            for 0.2388
	         became 0.2388
	           </S> 0.1687
	              . 0.1687
	              , 0.1687
	             as 0.0736

      repletion   459728   1 (10)
	      repletion 0.7789
	              , 0.5492
	           </S> 0.5492
	         people 0.5492
	            say 0.2388
	             me 0.2388
	             us 0.2388
	           cars 0.2388
	              a 0.1687
	            the 0.0736

          Later   459770   1 (8)
	              , 0.7789
	          Later 0.7789
	              a 0.5492
	          Pales 0.5492
	          after 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

            aud   459801   5 (8)
	            aud 0.5492
	            arz 0.5492
	              I 0.5178
	           </S> 0.2388
	              . 0.1687
	            and 0.1687
	              , 0.0942
	             of 0.0736

              I   459805   2 (6)
	            the 0.7789
	              , 0.5492
	              I 0.5492
	             us 0.5492
	           </S> 0.5178
	              0 0.0736

        exerted   459900   1 (8)
	        exerted 0.7789
	           were 0.5492
	           open 0.5492
	              , 0.1687
	            you 0.1687
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

       hawthorn   459954   1 (6)
	       hawthorn 0.7789
	          hours 0.5492
	              a 0.5492
	             of 0.5492
	           </S> 0.1687
	              , 0.0736

          About   460079   1 (5)
	              , 0.7789
	          About 0.7789
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

           bird   460148   5 (10)
	             by 0.7789
	             of 0.7789
	              a 0.7789
	           flip 0.7789
	           bird 0.5492
	            cia 0.5492
	              e 0.5492
	            eye 0.5492
	           </S> 0.5178
	              , 0.0736

           Wood   460190   1 (8)
	           Wood 0.7789
	           good 0.7789
	              a 0.5492
	              I 0.5492
	           File 0.5492
	             of 0.5178
	           </S> 0.2388
	              , 0.0736

     splendidly   460248   1 (10)
	           said 0.5492
	          major 0.5492
	     splendidly 0.5492
	          whole 0.5492
	             as 0.2388
	           </S> 0.2388
	          along 0.1687
	              " 0.1687
	              a 0.1687
	              , 0.0736

            One   460260   1 (7)
	              , 0.7789
	            One 0.7789
	              a 0.5492
	             us 0.5492
	            one 0.5492
	              " 0.2388
	           </S> 0.0736

              I   460381   1 (6)
	            the 0.7789
	              , 0.7789
	              I 0.7789
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

             it   460463   1 (7)
	              a 0.5492
	            the 0.5492
	              I 0.5492
	             it 0.5492
	              , 0.5492
	             iu 0.5492
	           </S> 0.0736

       uncann}'   460523   1 (11)
	             us 0.5492
	            him 0.5492
	        uncanny 0.5492
	              a 0.5178
	         unique 0.5178
	     misleading 0.5017
	            the 0.2388
	              , 0.1687
	           </S> 0.1687
	           like 0.1687
	           more 0.0736

              ;   460532   1 (6)
	              . 0.5492
	           </S> 0.5492
	            the 0.5492
	             us 0.5492
	              , 0.5492
	              ; 0.5492

        however   460534   1 (5)
	        however 0.5492
	          homer 0.5492
	              ) 0.5178
	              } 0.2236
	           </S> 0.0736

           Lark   460594   1 (10)
	           Lark 0.7789
	         profit 0.5492
	              s 0.5492
	            are 0.5017
	              . 0.2388
	             to 0.1687
	              a 0.1687
	             up 0.1687
	           mail 0.1687
	           </S> 0.0736

            and   460675   1 (6)
	              , 0.5492
	          again 0.5492
	            and 0.5492
	            arz 0.5492
	              } 0.2236
	           </S> 0.0736

            Sky   460751   1 (10)
	            Pyi 0.5492
	            See 0.5492
	            Sky 0.5492
	             of 0.5178
	              . 0.1687
	          house 0.1687
	              a 0.1687
	           </S> 0.0942
	          party 0.0736
	              , 0.0736

              -   460754   3 (5)
	             us 0.5492
	            the 0.5178
	              - 0.1687
	              , 0.1687
	           </S> 0.0736

          whose   460760   1 (8)
	          whose 0.5492
	              a 0.5492
	          those 0.5492
	    Calandrella 0.5324
	              " 0.5178
	              - 0.2388
	              , 0.1687
	           </S> 0.0736

              -   460803   4 (8)
	             us 0.7789
	             be 0.7114
	           </S> 0.2388
	              a 0.1687
	              , 0.1687
	              - 0.1687
	            the 0.1687
	             of 0.0736

              '   460879 inf (7)
	             us 0.5178
	           </S> 0.1687
	              , 0.1687
	             's 0.1687
	              . 0.1687
	             of 0.1687
	            the 0.0736

        figured   460906   1 (10)
	          found 0.5492
	             us 0.5492
	        figured 0.5492
	          rests 0.5492
	              a 0.5178
	        hatches 0.5017
	             of 0.2388
	             is 0.1687
	           </S> 0.1687
	              , 0.0736

           Farn   460945   1 (9)
	           Bock 0.5492
	             C. 0.5492
	         Schott 0.5492
	              a 0.5492
	              s 0.5492
	           Farn 0.5492
	            For 0.5178
	              , 0.1687
	           </S> 0.0736

             's   460949   1 (7)
	             's 0.7789
	             is 0.7789
	              a 0.5492
	              s 0.5492
	             D. 0.5492
	              , 0.1687
	           </S> 0.0736

     Familx-ALA   460965 inf (9)
	              - 0.7789
	              , 0.7789
	         Finite 0.5492
	       analysis 0.5492
	           will 0.5492
	              a 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

           UDID   460976 inf (8)
	              a 0.5492
	           UDDI 0.5492
	            USD 0.5492
	            UDI 0.5492
	              , 0.5492
	           UDIG 0.5492
	          GUDID 0.5492
	           </S> 0.5492

              E   460982 inf (9)
	             El 0.7789
	            the 0.7789
	              , 0.7789
	             us 0.5492
	             RE 0.5492
	             EE 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

        Crested   460990   1 (7)
	        Crested 0.7789
	              / 0.5492
	     Associated 0.5492
	        Chester 0.5178
	         Center 0.2388
	              - 0.1687
	           </S> 0.0736

         Alanda   461005   2 (10)
	              , 0.7789
	         Alando 0.5492
	              a 0.5492
	          Aland 0.5492
	        Alandia 0.5492
	         Alauda 0.5492
	         Alaska 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

       crisfafa   461012   1 (9)
	       crisaras 0.5492
	         Friday 0.5492
	              a 0.5492
	      configure 0.5492
	       cristata 0.5492
	          crisa 0.5492
	              , 0.5178
	           </S> 0.1687
	           Club 0.0736

              ,   461020   1 (5)
	             us 0.5492
	           </S> 0.5492
	              , 0.5492
	            the 0.5492
	       Marbella 0.5492

           LiNN   461022 inf (9)
	            LNN 0.5492
	           List 0.5492
	           LiNK 0.5492
	       Marbella 0.5492
	            NiL 0.5492
	            cia 0.5492
	             pp 0.2388
	              i 0.2388
	            the 0.0736

              .   461026   1 (5)
	           </S> 0.5492
	              , 0.5492
	             us 0.5492
	              . 0.5492
	            the 0.5492

       RESIDENT   461029 inf (9)
	              , 0.7789
	              I 0.7789
	        REIDEEN 0.5492
	        TRIDENT 0.5492
	        RESTENA 0.5492
	          IDENT 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

        Central   461041   3 (9)
	       Northern 0.5492
	         Cettia 0.5492
	         Center 0.5178
	        Central 0.5178
	        writing 0.2388
	              , 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

        Eiirope   461062  12 (16)
	        Eoropie 0.5492
	         Eiropa 0.5492
	           rope 0.5492
	           from 0.5492
	        siropen 0.5492
	         Valley 0.5492
	             us 0.5492
	              a 0.5492
	           Eiro 0.5492
	              . 0.5178
	              ) 0.3804
	         Europe 0.2388
	              , 0.2388
	         Africa 0.1687
	           </S> 0.1687
	     California 0.0736

            60°   461106   1 (8)
	           </S> 0.5492
	             60 0.5492
	            600 0.5492
	              , 0.5492
	             10 0.5492
	             us 0.2388
	              a 0.1687
	            the 0.0736

             N.   461110 inf (9)
	             us 0.5492
	            the 0.5492
	              a 0.5492
	             No 0.5492
	           </S> 0.5492
	              , 0.5492
	              % 0.5492
	          years 0.5492
	              . 0.5492

             in   461118   1 (6)
	             in 0.7789
	              , 0.7789
	             iu 0.5492
	              " 0.2388
	              ) 0.2388
	           </S> 0.0736

          North   461141   1 (6)
	          North 0.5492
	              , 0.5492
	              a 0.5492
	          corax 0.5492
	              } 0.2236
	           </S> 0.0736

     Senegambia   461168   1 (10)
	              , 0.5492
	       research 0.5492
	          music 0.5492
	     Senegambia 0.5492
	            you 0.2388
	            try 0.2388
	             us 0.2388
	              a 0.1687
	            see 0.1687
	            the 0.0736

      Abyssinia   461221   1 (7)
	      Abyssinia 0.7789
	         online 0.5178
	              , 0.2388
	             us 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

           east   461231   2 (7)
	              a 0.7789
	           each 0.5492
	           east 0.5492
	           lava 0.5492
	            non 0.5492
	           </S> 0.2388
	              , 0.0736

             To   461286   1 (7)
	              , 0.7789
	             To 0.7789
	              a 0.5492
	           Asia 0.5492
	              s 0.5492
	              " 0.2388
	           </S> 0.0736

            one   461452   1 (7)
	              . 0.5492
	            one 0.5492
	             us 0.5492
	              a 0.5492
	              , 0.5492
	              } 0.2236
	           </S> 0.0736

         Sussex   461536   2 (8)
	         Passer 0.7789
	           used 0.5178
	         Sussex 0.5178
	              , 0.2388
	          stock 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

   Macclesfield   461719   1 (9)
	   Macclesfield 0.7789
	        Welling 0.5492
	       moisture 0.5492
	       Services 0.2388
	              , 0.1687
	           more 0.1687
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

       climatic   461756   1 (9)
	       climatic 0.7789
	             us 0.5492
	      companies 0.5492
	              a 0.5178
	             to 0.2388
	              , 0.1687
	           </S> 0.1687
	     variations 0.1687
	         chance 0.0736

  modifications   461765   1 (7)
	             of 0.5492
	       movement 0.5492
	              a 0.5492
	  modifications 0.5492
	              , 0.2388
	           </S> 0.2388
	     conditions 0.0736

           Lark   461787   1 (10)
	           Lark 0.7789
	            arz 0.5492
	              a 0.2388
	           part 0.2388
	           </S> 0.1687
	        section 0.1687
	              . 0.1687
	            Web 0.1687
	              , 0.1687
	             is 0.0736

            all   461793   1 (7)
	            all 0.5492
	           </S> 0.5492
	              I 0.5492
	              ( 0.5492
	           alba 0.5492
	            one 0.1687
	            the 0.0736

           Tlie   461858 inf (10)
	           This 0.7789
	              , 0.7789
	           Tlia 0.5492
	            Tli 0.5492
	           fish 0.5492
	              a 0.5492
	           Tile 0.5492
	           alba 0.5492
	              " 0.2388
	           </S> 0.0736

        typical   461863   1 (5)
	        typical 0.5492
	              , 0.5492
	              a 0.5492
	           </S> 0.1687
	          <UNK> 0.0736

          watli   461911  12 (13)
	           wali 0.7789
	           wati 0.7789
	          wolfi 0.7789
	              , 0.5492
	         witali 0.5492
	        Quwatli 0.5492
	           </S> 0.5492
	          watti 0.5492
	            and 0.5492
	          Matli 0.5492
	              a 0.5492
	           with 0.1687
	            the 0.0736

         darker   461917   1 (6)
	              , 0.5492
	           </S> 0.5492
	         Passer 0.5492
	         market 0.5492
	              a 0.5492
	         darker 0.5492

        centres   461924   1 (8)
	        centres 0.7789
	         centre 0.7789
	        central 0.7789
	        cinerea 0.5492
	           </S> 0.2388
	           side 0.1687
	              , 0.0942
	           than 0.0736

            the   462019   1 (5)
	            the 0.5492
	             us 0.5492
	              , 0.5492
	              } 0.2236
	           </S> 0.0736

          crest   462036   1 (8)
	          crest 0.7789
	           term 0.5492
	           best 0.5492
	             us 0.5178
	              a 0.5178
	              , 0.5017
	           </S> 0.5017
	            out 0.0736

      fcatliers   462065 inf (13)
	     flatliners 0.7789
	          major 0.5492
	              , 0.5492
	     catlickers 0.5492
	              a 0.5492
	              . 0.5492
	       outliers 0.5324
	         fliers 0.5324
	          world 0.1687
	           most 0.1687
	          first 0.1687
	           page 0.1687
	           </S> 0.0736

         darker   462075   1 (9)
	              , 0.5492
	             of 0.5492
	           </S> 0.5492
	              . 0.5492
	           date 0.5492
	         rather 0.5492
	         darker 0.5492
	         Passer 0.5492
	              a 0.5492

            the   462098   1 (5)
	              , 0.5492
	            the 0.5492
	             us 0.5492
	              } 0.2236
	           </S> 0.0736

        hastard   462102 inf (12)
	       hamstrad 0.5492
	         hastar 0.5492
	          major 0.5492
	           term 0.5492
	        Bastard 0.5324
	           last 0.1687
	            two 0.1687
	           same 0.1687
	            way 0.1687
	        country 0.1687
	              - 0.1687
	           </S> 0.0736

        primary   462110   1 (8)
	              a 0.5492
	           </S> 0.5492
	              , 0.5492
	             it 0.5492
	        primary 0.5492
	             of 0.5492
	           size 0.5492
	        private 0.5492

            the   462128   1 (5)
	              , 0.5492
	            the 0.5492
	             us 0.5492
	              } 0.2236
	           </S> 0.0736

         Ijrown   462155  12 (15)
	          Brown 0.7789
	           Iron 0.7789
	      available 0.5492
	              a 0.5492
	           Ijon 0.5492
	         winner 0.5492
	         Intown 0.5492
	             us 0.5492
	         Ingrow 0.5492
	           down 0.5178
	             to 0.2388
	          brown 0.1687
	          green 0.1687
	           </S> 0.1687
	              , 0.0736

          greyi   462168 inf (10)
	   CheapTickets 0.5492
	            non 0.5492
	          pstat 0.5492
	          greyi 0.5492
	            Pyi 0.5492
	           free 0.2388
	              , 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

              -   462173   2 (7)
	              , 0.7114
	            the 0.5492
	              - 0.5492
	           name 0.5492
	             us 0.5492
	              . 0.5492
	           </S> 0.0736

       luargius   462177 inf (10)
	              a 0.7789
	              s 0.5492
	        largius 0.5492
	           list 0.5492
	        sources 0.5492
	              , 0.5017
	              " 0.5017
	              - 0.1687
	           </S> 0.0736
	             .. 0.0736

              ,   462185   1 (6)
	           </S> 0.5492
	              , 0.5492
	            the 0.5492
	              c 0.5492
	              / 0.5492
	             us 0.5492

         whicli   462219   5 (10)
	          wires 0.5492
	         chwili 0.5492
	         whilie 0.5492
	        Chiclid 0.5492
	           that 0.5178
	              a 0.5178
	          which 0.5178
	              . 0.1687
	           </S> 0.1687
	              , 0.0736

          outer   462250   2 (9)
	          other 0.7789
	          outer 0.5492
	          major 0.5492
	       complete 0.5492
	          tinge 0.5492
	              a 0.5178
	           </S> 0.1687
	              . 0.1687
	              , 0.0736

        feather   462276   1 (11)
	          other 0.7789
	        feather 0.7789
	              a 0.5492
	          major 0.2388
	           half 0.1687
	             is 0.1687
	              , 0.1687
	             in 0.1687
	           </S> 0.1687
	             of 0.1687
	              - 0.0736

          sandv   462296   7 (13)
	           sala 0.7789
	       sandvitx 0.5492
	          built 0.5492
	          vands 0.5492
	              a 0.5492
	              , 0.5492
	          sandy 0.5178
	           sand 0.5178
	           said 0.5178
	            non 0.1687
	            two 0.1687
	           </S> 0.0736
	            new 0.0736

              -   462301   1 (6)
	              , 0.5492
	            the 0.5492
	             of 0.5492
	              - 0.5492
	             us 0.5492
	           </S> 0.5492

         margin   462307   1 (10)
	          cover 0.5492
	             us 0.5492
	         margin 0.5492
	         access 0.5492
	           mail 0.5492
	          icons 0.5492
	              a 0.5178
	              - 0.1687
	           </S> 0.1687
	              , 0.0736

         t)uter   462321 inf (12)
	           uter 0.7789
	         tauter 0.7789
	            the 0.5492
	          tuter 0.5492
	          their 0.5492
	        Company 0.5492
	             us 0.5492
	         tutter 0.5492
	              a 0.5492
	              , 0.5492
	            top 0.1687
	           </S> 0.0736

            web   462328   1 (8)
	             us 0.5492
	              a 0.5492
	              , 0.5492
	              ) 0.5492
	             we 0.5492
	           </S> 0.5492
	             of 0.5492
	            web 0.5492

            the   462334   1 (6)
	              , 0.5492
	             us 0.5492
	            the 0.5492
	              ) 0.5178
	              } 0.2236
	           </S> 0.0736

      backwards   462382   1 (7)
	      backwards 0.7789
	              a 0.5178
	           </S> 0.2388
	           back 0.2388
	              , 0.1687
	           away 0.1687
	             as 0.0736

        buffish   462419   1 (10)
	       informed 0.5492
	            non 0.5492
	            off 0.5492
	        buffish 0.5492
	        because 0.2388
	            not 0.1687
	           </S> 0.1687
	              , 0.1687
	            the 0.1687
	              a 0.0736

            the   462435   1 (5)
	            the 0.5492
	             us 0.5492
	              , 0.5492
	              } 0.2236
	           </S> 0.0736

   principall}-   462455   1 (10)
	    principally 0.7789
	     principall 0.5492
	        scarlet 0.5492
	       actually 0.5492
	          white 0.5492
	              , 0.2388
	              a 0.1687
	      available 0.1687
	           </S> 0.1687
	            not 0.0736

        buffish   462468   1 (7)
	              a 0.5492
	            but 0.5492
	            non 0.5492
	              , 0.5492
	           </S> 0.5492
	             to 0.5492
	        buffish 0.5492

         deeper   462483   1 (11)
	         aerial 0.5492
	              a 0.5492
	         people 0.5492
	         deeper 0.5492
	            and 0.5492
	           </S> 0.5492
	      depending 0.5492
	              , 0.5492
	          while 0.1687
	             or 0.1687
	            the 0.0736

          sides   462517   1 (7)
	              , 0.5492
	          sides 0.5492
	          sites 0.5492
	              a 0.5492
	          Pales 0.5492
	              } 0.2236
	           </S> 0.0736

        spotted   462533   1 (7)
	         system 0.5492
	        spotted 0.5492
	      documents 0.5492
	              a 0.5178
	           </S> 0.2388
	              , 0.0942
	              . 0.0736

         breast   462563   1 (5)
	              , 0.5492
	         breast 0.5492
	              a 0.5492
	              } 0.2236
	           </S> 0.0736

        spotted   462570   1 (5)
	         sports 0.7789
	        spotted 0.7789
	           </S> 0.2388
	              , 0.1687
	         cancer 0.0736

         flanks   462609   1 (6)
	              , 0.5492
	         Thanks 0.5492
	              a 0.5492
	         flanks 0.5492
	              } 0.2236
	           </S> 0.0736

       slightly   462616   1 (5)
	       slightly 0.5492
	           </S> 0.5178
	              a 0.5178
	              , 0.1687
	             of 0.0736

       streaked   462625   1 (6)
	         stream 0.7789
	       streaked 0.7789
	              , 0.2388
	           </S> 0.2388
	      different 0.1687
	            out 0.0736

              ;   462634   2 (8)
	             of 0.7789
	              ; 0.7114
	             us 0.5492
	            the 0.5178
	           </S> 0.5178
	           gray 0.5178
	              , 0.2388
	           with 0.0736

           bill   462636   1 (7)
	              , 0.5492
	           will 0.5492
	              a 0.5492
	           bill 0.5492
	            cia 0.5492
	              } 0.2236
	           </S> 0.0736

       mandible   462654   1 (8)
	       mandible 0.7789
	            may 0.5492
	         museum 0.5492
	              , 0.5017
	           </S> 0.2388
	           this 0.1687
	              a 0.1687
	            the 0.0736

          paler   462663   2 (9)
	              a 0.7789
	          pages 0.5492
	            Act 0.5492
	          paler 0.5492
	          Pales 0.5492
	              ) 0.3804
	           </S> 0.1687
	              , 0.1687
	              . 0.0736

           feet   462671   1 (6)
	              a 0.5492
	           free 0.5492
	              , 0.5492
	           feet 0.5492
	              } 0.2236
	           </S> 0.0736

         fleshy   462676   1 (7)
	         fleshy 0.7789
	          files 0.7789
	              a 0.5178
	             of 0.1687
	           </S> 0.1687
	              , 0.0736
	              . 0.0736

           iris   462696   1 (7)
	              a 0.5492
	             is 0.5492
	              , 0.5492
	           iris 0.5492
	             iu 0.5492
	              } 0.2236
	           </S> 0.0736

          hazel   462701   1 (7)
	           have 0.7789
	          hazel 0.7789
	           here 0.7789
	          Pales 0.5492
	              ) 0.2388
	           </S> 0.1687
	              , 0.0736

              .   462706   3 (6)
	            the 0.7789
	             us 0.5492
	           </S> 0.2388
	              . 0.2388
	              , 0.1687
	           eyes 0.0736

          crest   462733   1 (9)
	          crest 0.7789
	           best 0.5492
	              a 0.5492
	             of 0.5017
	           time 0.1687
	              , 0.1687
	         period 0.1687
	           </S> 0.1687
	           than 0.0736

      rufescent   462825   1 (11)
	      rufescent 0.7789
	      rufescens 0.5492
	      different 0.5492
	              a 0.5017
	        complex 0.2388
	      effective 0.2388
	             to 0.2388
	         likely 0.1687
	              , 0.1687
	           </S> 0.1687
	           than 0.0736

       blackish   462844   1 (7)
	       blackish 0.7789
	              , 0.2388
	           also 0.2388
	              . 0.2388
	           </S> 0.1687
	           been 0.0736
	              a 0.0736

            sub   462853   1 (10)
	            sub 0.5492
	             us 0.5492
	             re 0.5492
	             so 0.5492
	              N 0.5492
	              a 0.5492
	             to 0.5324
	           </S> 0.5178
	              , 0.1687
	              - 0.0736

              -   462856   5 (5)
	             us 0.7789
	            the 0.7114
	              , 0.5017
	           </S> 0.5017
	              - 0.0736

           tips   462886   1 (8)
	           tips 0.7789
	     comparison 0.5492
	            cia 0.5492
	           this 0.5324
	              a 0.5178
	              - 0.1687
	           </S> 0.1687
	              , 0.0736

           tlie   462910   9 (9)
	           trie 0.7789
	           alba 0.7789
	          tliet 0.5492
	           tile 0.5178
	              , 0.2388
	              a 0.1687
	           this 0.1687
	           </S> 0.1687
	            the 0.0736

          moult   462945   1 (8)
	          moult 0.7789
	          maura 0.5492
	          would 0.5324
	              a 0.5178
	           </S> 0.1687
	              . 0.0736
	              , 0.0736
	             of 0.0497

        becomes   462983   1 (7)
	        becomes 0.5492
	         becker 0.5492
	       Mountain 0.5492
	       Galerida 0.5324
	    Calandrella 0.5324
	              , 0.1687
	           </S> 0.0736

        centres   463024   1 (9)
	        centres 0.7789
	        control 0.7114
	              a 0.5492
	        cinerea 0.5492
	             of 0.2388
	           side 0.1687
	           </S> 0.1687
	          brown 0.1687
	              , 0.0736

           less   463048   1 (8)
	           less 0.7789
	           lava 0.5492
	           News 0.5492
	              a 0.5178
	             of 0.1687
	           </S> 0.1687
	              . 0.0942
	              , 0.0736

           Col.   463067   2 (10)
	              , 0.7789
	           Cold 0.5492
	            Col 0.5492
	           only 0.5492
	              a 0.5492
	           Coll 0.5492
	           sala 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

          Irb}-   463072   1 (10)
	        Mustard 0.5492
	              a 0.5492
	           Iraq 0.5492
	            Irb 0.5492
	           Irby 0.5492
	      configure 0.5492
	             J. 0.5178
	              ) 0.1687
	              , 0.1687
	           </S> 0.0736

    Ornithology   463087   1 (7)
	    Ornithology 0.7789
	        Journal 0.5492
	            One 0.5492
	           with 0.2388
	              a 0.2388
	              , 0.1687
	           </S> 0.0736

      Andalucia   463249   1 (10)
	      Andalucia 0.7789
	         sticky 0.5492
	    destination 0.5492
	       products 0.5492
	           used 0.2388
	           </S> 0.1687
	              a 0.1687
	              , 0.1687
	             in 0.1687
	            the 0.0736

           They   463309   1 (6)
	              , 0.7789
	           They 0.7789
	            The 0.7114
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

            arc   463314   6 (6)
	            arc 0.7789
	            arz 0.5492
	            and 0.5178
	              , 0.5017
	           </S> 0.2388
	            are 0.0736

    distributed   463318   1 (9)
	    distributed 0.5492
	           well 0.5492
	              a 0.5178
	         system 0.5178
	            not 0.5178
	              s 0.2236
	           </S> 0.1687
	              . 0.0736
	              , 0.0736

          pairs   463333   3 (8)
	          parva 0.7789
	     commission 0.5492
	          pairs 0.5178
	           part 0.2388
	              , 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

          onl}'   463397   4 (8)
	            not 0.5492
	              s 0.5492
	          ollon 0.5492
	           only 0.5178
	              , 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

           some   463403   1 (8)
	              a 0.5492
	             to 0.5492
	           some 0.5492
	              . 0.5492
	              s 0.5492
	           </S> 0.5492
	           more 0.5492
	              , 0.5492

    Excessively   463422 inf (10)
	        However 0.7789
	              , 0.7789
	             us 0.5492
	      Excessive 0.5492
	    Exclusively 0.5492
	              a 0.5492
	    excessively 0.5492
	            the 0.5492
	              " 0.2388
	           </S> 0.0736

           tame   463434   3 (8)
	         drowsy 0.7789
	              , 0.7789
	              a 0.5492
	           time 0.5492
	           tame 0.5492
	           lava 0.5492
	           </S> 0.1687
	      Injurious 0.0736

      Curiiicit   463486 inf (11)
	              , 0.7789
	        service 0.7789
	           them 0.7789
	   organization 0.5492
	              s 0.5492
	       Curicica 0.5492
	        Curtici 0.5492
	        Curiini 0.5492
	           </S> 0.5178
	              a 0.5017
	            the 0.0736

    frequenting   463518   1 (7)
	    frequenting 0.7789
	      following 0.5492
	              , 0.2388
	             us 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

          roads   463530   1 (10)
	          rufus 0.5492
	        service 0.5492
	          roads 0.5492
	           made 0.5492
	    information 0.5492
	              , 0.5178
	           </S> 0.5178
	              . 0.5178
	              a 0.2388
	            the 0.0736

           dung   463599   1 (10)
	           dung 0.7789
	              s 0.5492
	             or 0.5492
	              . 0.2388
	          being 0.2236
	             do 0.2236
	             to 0.1687
	             up 0.1687
	              a 0.1687
	           </S> 0.0736

             at   463605   1 (9)
	              I 0.5492
	              - 0.5492
	            and 0.5492
	             at 0.5492
	           </S> 0.5492
	            arz 0.5492
	           with 0.1687
	             of 0.1687
	            the 0.0736

             as   463643   1 (10)
	              I 0.5492
	        written 0.5492
	             as 0.5492
	            and 0.5492
	        writing 0.5492
	           </S> 0.5492
	              " 0.5492
	             us 0.5178
	             or 0.1687
	            the 0.0736

        dusting   463665   1 (8)
	        dusting 0.7789
	     protecting 0.5492
	        rustica 0.5492
	         during 0.5324
	              , 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

            and   463686   1 (7)
	           what 0.5492
	           that 0.5492
	              , 0.5492
	            and 0.5492
	            arz 0.5492
	              } 0.2236
	           </S> 0.0736

     Sauderling   463758   1 (13)
	     Sanderling 0.7789
	      ouderling 0.5492
	       response 0.5492
	              , 0.5492
	          wheel 0.5492
	        service 0.5492
	       Sterling 0.5178
	         result 0.1687
	            bit 0.1687
	          major 0.1687
	           good 0.1687
	            new 0.0942
	           </S> 0.0736

         within   463769   1 (6)
	           </S> 0.5492
	             of 0.5492
	              a 0.5492
	              , 0.5492
	             in 0.5492
	         within 0.5492

          birds   463887   3 (10)
	              a 0.7789
	          first 0.7789
	           more 0.5492
	          birds 0.5492
	     convincing 0.5492
	          Parus 0.5492
	     characters 0.5178
	           </S> 0.5017
	              , 0.1687
	              . 0.0736

           This   463894   1 (6)
	           This 0.7789
	              , 0.7789
	              a 0.5492
	            cia 0.5492
	              " 0.2388
	           </S> 0.0736

      migrating   463948   1 (11)
	      migrating 0.7789
	             us 0.5492
	             to 0.5492
	           more 0.5178
	             it 0.2388
	        changes 0.2388
	              , 0.1687
	            any 0.1687
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

        Crested   463988   1 (6)
	        Crested 0.7789
	              / 0.5492
	        Chester 0.5178
	         Center 0.2388
	              - 0.1687
	           </S> 0.0736

        usually   464001   1 (5)
	        usualis 0.5492
	        usually 0.5492
	    Calandrella 0.5324
	              , 0.1687
	           </S> 0.0736

           eart   464135 inf (9)
	           eart 0.7789
	            non 0.5492
	            arz 0.5492
	             re 0.5178
	           each 0.2388
	              , 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

              -   464140   3 (7)
	            the 0.7789
	             us 0.5492
	              - 0.5178
	              . 0.5017
	           </S> 0.1687
	              , 0.1687
	              } 0.0736

          Larks   464179   1 (12)
	          Larks 0.7789
	              a 0.5492
	           site 0.5492
	          Parus 0.5492
	          Links 0.5324
	              , 0.1687
	           hand 0.1687
	      countries 0.1687
	         people 0.1687
	              . 0.1687
	           </S> 0.1687
	           than 0.0736

          bents   464206   1 (11)
	      workshops 0.5492
	           best 0.5492
	              ( 0.5492
	            and 0.5492
	          trees 0.5492
	           </S> 0.5492
	          bents 0.5492
	              a 0.5492
	      therefore 0.5492
	              x 0.5492
	            the 0.0736

           etc.   464213   8 (9)
	        wedgies 0.5492
	      therefore 0.5492
	          <UNK> 0.5492
	              , 0.5492
	           Pica 0.5492
	           each 0.2388
	              i 0.2388
	           etc. 0.1687
	            the 0.0736

       Saunders   464245   1 (9)
	          under 0.7789
	       Saunders 0.7789
	              a 0.5492
	              " 0.3804
	           said 0.2388
	             A. 0.2388
	          Stern 0.1687
	           </S> 0.0942
	              , 0.0736

         says:-   464254   4 (8)
	            Inn 0.5492
	          sayst 0.5492
	              a 0.5492
	              " 0.5178
	           says 0.5178
	        Company 0.2388
	           </S> 0.1687
	              , 0.0736

              -   464261   1 (5)
	            the 0.5492
	              - 0.5492
	              , 0.5492
	             us 0.5492
	           </S> 0.5492

              "   464263   3 (8)
	           with 0.5492
	             us 0.5178
	              " 0.3430
	              . 0.2388
	            the 0.1687
	             to 0.1687
	           mail 0.1687
	           </S> 0.0736

      commenced   464280   1 (8)
	      commenced 0.7789
	          could 0.5492
	         occurs 0.2388
	              a 0.1687
	           </S> 0.1687
	           with 0.1687
	            the 0.0942
	              , 0.0736

     depression   464337   1 (10)
	     depression 0.7789
	           kind 0.5492
	        details 0.5492
	        portion 0.5492
	            all 0.5492
	             us 0.5492
	           </S> 0.2388
	              , 0.2388
	              a 0.1687
	             as 0.0736

              -   464375   6 (8)
	             us 0.5492
	              : 0.5178
	            the 0.5178
	             of 0.2388
	           </S> 0.2388
	              - 0.1687
	              , 0.0736
	              . 0.0736

        herbage   464394   2 (12)
	           here 0.7789
	        herbage 0.5492
	            run 0.5492
	              ) 0.5492
	              , 0.5178
	              . 0.5178
	             us 0.2388
	           </S> 0.2388
	              a 0.2388
	           them 0.2388
	         others 0.1687
	            the 0.0736

            the   464510   1 (5)
	            the 0.5492
	              , 0.5492
	             us 0.5492
	              } 0.2236
	           </S> 0.0736

            diy   464539 inf (9)
	            did 0.7789
	             di 0.7789
	            day 0.7789
	           diya 0.5492
	            yid 0.5492
	            cia 0.5492
	              , 0.1687
	           </S> 0.1687
	              a 0.0736

          grass   464543   1 (6)
	              a 0.5492
	          grass 0.5492
	          great 0.5492
	             to 0.5324
	              , 0.1687
	           </S> 0.0736

     distinctly   464617   1 (7)
	     distinctly 0.5492
	              a 0.5492
	        listing 0.5492
	      chequered 0.5492
	           </S> 0.1687
	              - 0.1687
	              , 0.0736

        average   464709   1 (5)
	              I 0.5492
	        average 0.5492
	              , 0.5492
	              } 0.2236
	           </S> 0.0736

   measurements   464717   1 (7)
	        results 0.5492
	   measurements 0.5492
	              a 0.5178
	       exchange 0.5178
	           </S> 0.1687
	              , 0.1687
	             of 0.0736

            '95   464730 inf (10)
	             us 0.7789
	              5 0.5492
	              a 0.5492
	          rates 0.5492
	             's 0.5492
	            the 0.5178
	           made 0.2388
	           </S> 0.1687
	              , 0.1687
	             of 0.0736

              "   464737 inf (6)
	           midi 0.5492
	             us 0.5017
	              , 0.2388
	              " 0.2388
	           </S> 0.1687
	            the 0.0736

             bS   464738 inf (11)
	             Sb 0.7789
	            EbS 0.5492
	           PbSe 0.5492
	              s 0.5492
	             he 0.2388
	              a 0.2388
	             by 0.2388
	              - 0.1687
	              , 0.1687
	              ( 0.1687
	           </S> 0.0736

             in   464741   1 (8)
	              a 0.7789
	             in 0.7789
	              c 0.7789
	             iu 0.5492
	           said 0.5492
	              " 0.5178
	              , 0.5178
	           </S> 0.0736

              .   464743   2 (5)
	             us 0.5178
	              , 0.2388
	              . 0.2388
	           </S> 0.1687
	            the 0.0736

     Incubation   464745   4 (9)
	      ChangeLog 0.7789
	              , 0.7789
	        However 0.7789
	          world 0.5492
	         public 0.5492
	     Incubation 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

         wdiich   464760   6 (10)
	        Midwich 0.7789
	           dich 0.7789
	           wich 0.7789
	          Riich 0.5492
	             us 0.5492
	          which 0.2388
	              , 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

            the   464767   1 (4)
	              , 0.5492
	             us 0.5492
	            the 0.5492
	           </S> 0.5492

        Crested   464811   1 (9)
	        Crested 0.7789
	              / 0.5492
	              X 0.5492
	          major 0.5492
	         Center 0.2388
	              - 0.1687
	          first 0.1687
	           time 0.1687
	           </S> 0.0736

         sandj^   464868 inf (6)
	         sandja 0.5492
	           said 0.5492
	           </S> 0.5324
	              , 0.5178
	              a 0.2388
	            the 0.0736

          roads   464875   1 (6)
	              , 0.5492
	           </S> 0.5492
	           read 0.5492
	              a 0.5492
	          roads 0.5492
	          rufus 0.5492

        dusting   464906   1 (8)
	        dusting 0.7789
	         saying 0.5492
	        rustica 0.5492
	         during 0.5324
	              , 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

      rapidit}'   464946   1 (13)
	        leaping 0.5492
	           beer 0.5492
	    information 0.5492
	       rapidity 0.5492
	     rapiditati 0.5492
	           rate 0.5178
	              a 0.5178
	           idea 0.2388
	           </S> 0.2388
	         prices 0.1687
	              , 0.1687
	           deal 0.0736
	              . 0.0736

          glide   464984   1 (10)
	          glide 0.7789
	       afforded 0.5492
	           like 0.2388
	              . 0.1687
	             in 0.1687
	              , 0.1687
	              a 0.1687
	            was 0.1687
	           </S> 0.1687
	             is 0.0736

          wlien   465006   8 (15)
	          Alien 0.5492
	           lien 0.5492
	     technician 0.5492
	           look 0.5492
	           wien 0.5492
	        ewlieni 0.5492
	         willen 0.5492
	              a 0.5178
	           when 0.5178
	             of 0.2388
	         racing 0.1687
	              , 0.1687
	           </S> 0.1687
	           cock 0.0942
	            sex 0.0736

            Its   465051   1 (7)
	             It 0.7789
	              , 0.7789
	            Its 0.7789
	              a 0.5492
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

           Lark   465107   1 (10)
	           Lark 0.7789
	            Dog 0.5492
	           side 0.5492
	        Tikchik 0.5492
	              s 0.5492
	            are 0.5017
	              . 0.2388
	              a 0.1687
	             to 0.1687
	           </S> 0.0736

              .   465111   4 (7)
	            the 0.7789
	             us 0.5492
	              : 0.5178
	              - 0.2388
	              . 0.2388
	              , 0.1687
	           </S> 0.0736

     gregarious   465123   1 (8)
	     gregarious 0.7789
	          great 0.5492
	           easy 0.5492
	              , 0.1687
	              a 0.1687
	             to 0.1687
	           </S> 0.1687
	             be 0.0736

     generall}'   465142   3 (7)
	       generall 0.7789
	         really 0.2388
	      generally 0.2236
	           </S> 0.1687
	              , 0.1687
	            not 0.1687
	              a 0.0736

           seen   465153   1 (8)
	            see 0.5492
	            the 0.5492
	           </S> 0.5492
	           seen 0.5492
	              a 0.5492
	             to 0.5492
	           sala 0.5492
	              , 0.5492

            (U-   465166   9 (10)
	           </S> 0.5492
	             US 0.5492
	              - 0.5492
	             EU 0.5492
	            and 0.5492
	              a 0.5492
	        working 0.5492
	             us 0.5178
	             or 0.1687
	            the 0.0736

             iu   465170   1 (5)
	              a 0.5492
	             iu 0.5492
	           </S> 0.5492
	              , 0.5492
	             in 0.5492

          pairs   465173   2 (8)
	              s 0.7789
	          parts 0.5492
	          pairs 0.5492
	              a 0.5324
	              ) 0.2388
	              , 0.2388
	              - 0.1687
	           </S> 0.0736

        fauiily   465183 inf (12)
	       faultily 0.7789
	          small 0.5492
	        fairily 0.5492
	        private 0.5492
	           uily 0.5492
	       kawaiily 0.5492
	          minor 0.5492
	           will 0.1687
	              a 0.1687
	              , 0.1687
	           </S> 0.1687
	            the 0.0736

        parties   465191   1 (9)
	           more 0.5492
	              , 0.5492
	         groups 0.5492
	        parties 0.5492
	           part 0.5492
	             us 0.5492
	           </S> 0.5492
	              . 0.5492
	              a 0.5492

         liquid   465221   1 (7)
	         liquid 0.7789
	           when 0.5492
	           like 0.5017
	           </S> 0.2388
	              , 0.2388
	              a 0.2388
	           than 0.0736

        uttered   465272   1 (8)
	        uttered 0.7789
	          there 0.5178
	          based 0.2388
	            not 0.1687
	             to 0.1687
	              a 0.1687
	           </S> 0.1687
	              , 0.0736

         duriug   465308   4 (10)
	         dubius 0.5492
	          drugi 0.5492
	         durius 0.5492
	         during 0.5017
	           have 0.1687
	             in 0.1687
	             is 0.1687
	           </S> 0.1687
	              a 0.1687
	              , 0.0736

              a   465315   1 (7)
	              , 0.5492
	           </S> 0.5492
	            the 0.5492
	             up 0.5492
	             us 0.5492
	             to 0.5492
	              a 0.5492

            the   465364   1 (5)
	             us 0.5492
	              , 0.5492
	            the 0.5492
	              } 0.2236
	           </S> 0.0736

      syllabled   465380   1 (7)
	      described 0.5492
	       selected 0.5492
	      syllabled 0.5492
	           </S> 0.1687
	              , 0.1687
	           used 0.1687
	              a 0.0736

              '   465393   2 (6)
	             us 0.5178
	              , 0.2388
	              ' 0.2388
	           </S> 0.1687
	            the 0.1687
	              a 0.0736

              '   465403   1 (6)
	              ' 0.7789
	            the 0.7789
	              , 0.7789
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

          horse   465559   1 (7)
	          horse 0.7789
	           home 0.7789
	          corax 0.5492
	              , 0.2388
	           </S> 0.2388
	              a 0.2388
	            the 0.0736

          Dixon   465619   2 (8)
	              , 0.7789
	          Diego 0.5492
	              a 0.5492
	          Dixon 0.5492
	          minor 0.5492
	              " 0.2388
	              ) 0.2388
	           </S> 0.0736

            sa3   465625 inf (9)
	            say 0.7789
	             so 0.7789
	            sas 0.5492
	              a 0.5492
	           sala 0.5492
	             sa 0.5492
	          Hawke 0.5178
	           </S> 0.1687
	              , 0.0736

             's   465628   1 (8)
	            out 0.5492
	             us 0.5492
	             's 0.5492
	              a 0.5492
	             is 0.5492
	              , 0.5178
	           </S> 0.2388
	              - 0.0736

      xA-lgeria   465639   2 (8)
	             us 0.5492
	        Algeria 0.5178
	              , 0.2388
	          which 0.2388
	          their 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

             he   465649   1 (5)
	           </S> 0.5492
	              , 0.5492
	             he 0.5492
	             us 0.5492
	              a 0.5492

           soar   465674   1 (11)
	           some 0.7789
	          today 0.7789
	           soar 0.7789
	           sala 0.5492
	           goes 0.5324
	              a 0.5178
	             on 0.2388
	              , 0.1687
	              . 0.1687
	           </S> 0.1687
	            flu 0.0736

           iuto   465679   4 (9)
	             iu 0.5492
	           iuto 0.5492
	              a 0.5324
	           into 0.2388
	        through 0.2388
	             in 0.1687
	              , 0.1687
	           </S> 0.1687
	              . 0.0736

       warbling   465740   1 (7)
	       warbling 0.5492
	         within 0.5492
	              a 0.2388
	             of 0.1687
	           </S> 0.1687
	              , 0.0942
	              . 0.0736

       Theobald   465793   1 (8)
	            and 0.5492
	              a 0.5492
	            The 0.5492
	            New 0.5492
	              - 0.5492
	           </S> 0.5492
	       Theobald 0.5492
	            the 0.0736

      describes   465802   1 (6)
	              a 0.5492
	      describes 0.5492
	        because 0.5492
	            and 0.5178
	           </S> 0.1687
	              , 0.0736

 ovato-pyriform   465875 inf (11)
	    consecutive 0.7789
	          major 0.7114
	  ovatopyriform 0.5492
	       Category 0.5492
	              a 0.5492
	              ( 0.5178
	              . 0.5178
	           </S> 0.5178
	              , 0.5178
	             of 0.5017
	              - 0.0736

              3   465890 inf (7)
	              , 0.5492
	              . 0.5492
	             us 0.5492
	            the 0.5492
	             of 0.5492
	           year 0.5492
	           </S> 0.5492

              -   465891   4 (7)
	             us 0.7789
	         Column 0.5492
	            the 0.5178
	              ) 0.1687
	              - 0.1687
	              , 0.1687
	           </S> 0.0736

       ellowish   465892 inf (8)
	      yellowish 0.7789
	           with 0.5492
	              , 0.5492
	              s 0.5492
	              4 0.2388
	              a 0.1687
	             to 0.1687
	           </S> 0.0736

              -   465900   1 (5)
	             us 0.5492
	              - 0.5492
	            the 0.5492
	              , 0.5492
	           </S> 0.5492

      uuiformly   465912   1 (9)
	      uniformly 0.5492
	     muriformly 0.5492
	    ununiformly 0.5492
	              a 0.5178
	         before 0.5178
	           </S> 0.1687
	              . 0.1687
	            are 0.1687
	              , 0.0736

       freckled   465922   1 (6)
	              a 0.5492
	           laid 0.5492
	         filled 0.5492
	           </S> 0.5492
	              , 0.5492
	       freckled 0.5492

         Jerdon   465971   1 (9)
	         Jerdon 0.7789
	          Aedon 0.7789
	         person 0.5178
	             he 0.2388
	              a 0.2388
	             He 0.2388
	              , 0.1687
	              I 0.1687
	           </S> 0.0736

        Chendul   465994 inf (10)
	        Chendur 0.5492
	         Chendu 0.5492
	              s 0.5492
	           when 0.5492
	       Chundale 0.5492
	              a 0.2388
	             of 0.2388
	          <UNK> 0.1687
	              , 0.1687
	           </S> 0.0736

        chiefly   466031   1 (7)
	            and 0.5492
	           </S> 0.5492
	        chiefly 0.5492
	              a 0.5492
	          could 0.5492
	      including 0.1687
	            the 0.0736

          grass   466039   1 (8)
	          grass 0.7789
	           last 0.5492
	          major 0.5178
	             UK 0.5178
	           </S> 0.2388
	              a 0.2388
	              , 0.1687
	             in 0.0736

             II   466137   1 (7)
	              , 0.7789
	             In 0.7789
	             II 0.7789
	             us 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

            nor   466210   2 (7)
	            not 0.7789
	            nor 0.5492
	          minor 0.5492
	              a 0.5492
	          <UNK> 0.5178
	              , 0.1687
	           </S> 0.0736

             iu   466214   2 (7)
	             iu 0.5492
	             to 0.1687
	             in 0.1687
	              a 0.1687
	           </S> 0.1687
	              , 0.1687
	            the 0.0736

      Himalayas   466221   2 (8)
	          young 0.5492
	      Himalayas 0.5178
	       Himalaya 0.5178
	        company 0.1687
	              - 0.1687
	           same 0.1687
	          world 0.1687
	           </S> 0.0736

             iu   466236   2 (7)
	             iu 0.5492
	              , 0.1687
	           </S> 0.1687
	             is 0.1687
	             in 0.1687
	              a 0.1687
	            the 0.0736

             It   466270   1 (6)
	             It 0.7789
	              , 0.7789
	             us 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

         plaius   466296  10 (14)
	         closed 0.5492
	       products 0.5492
	         Lanius 0.5492
	           plai 0.5492
	         plausi 0.5492
	          plais 0.5492
	              a 0.5492
	       Agelaius 0.5492
	          place 0.5324
	         plains 0.5178
	              , 0.1687
	           </S> 0.1687
	          beach 0.0736
	        beaches 0.0736

       ploughed   466307   1 (9)
	       ploughed 0.7789
	            any 0.1687
	          other 0.1687
	             in 0.1687
	              , 0.1687
	             on 0.1687
	              a 0.0942
	            the 0.0736
	           </S> 0.0736

             It   466361   1 (7)
	             It 0.7789
	              , 0.7789
	             us 0.5492
	              a 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

             A.   466412 inf (9)
	             AM 0.7114
	              . 0.5492
	            All 0.5178
	             us 0.5178
	              $ 0.2388
	              , 0.2388
	           </S> 0.1687
	             to 0.1687
	              a 0.0736

     guli^iila*   466415 inf (13)
	      pratensis 0.5492
	             as 0.5492
	       nidulans 0.5492
	              a 0.5492
	      Similarly 0.5492
	          guide 0.5492
	              % 0.5492
	         Philip 0.5492
	           will 0.5492
	         advice 0.5492
	      eliminate 0.5492
	              , 0.0942
	           </S> 0.0736

            nor   466426   1 (7)
	           </S> 0.5492
	          minor 0.5492
	            not 0.5492
	             it 0.5492
	            nor 0.5492
	              , 0.5492
	              a 0.5492

           flue   466445 inf (10)
	           flue 0.5492
	           alba 0.5492
	           free 0.5178
	              a 0.2388
	           </S> 0.2388
	           much 0.1687
	             on 0.1687
	              , 0.1687
	            far 0.1687
	           that 0.0736

             In   466451   1 (6)
	              , 0.7789
	             In 0.7789
	             us 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

             iu   466507   3 (8)
	          other 0.5492
	             iu 0.5492
	           </S> 0.1687
	              a 0.1687
	              . 0.1687
	             in 0.1687
	           even 0.1687
	              , 0.0736

   considerable   466510   4 (7)
	             to 0.7789
	              a 0.7789
	              s 0.7789
	         really 0.5492
	   considerable 0.5492
	              , 0.2236
	           </S> 0.0736

         flocks   466523   1 (8)
	         flocks 0.7789
	         flores 0.5492
	          focus 0.5178
	      influence 0.2388
	           </S> 0.1687
	              , 0.1687
	           time 0.1687
	         amount 0.0736

         Jerdon   466584   1 (9)
	          Aedon 0.5492
	         Jerdon 0.5492
	         person 0.5324
	           </S> 0.2388
	              , 0.2388
	             he 0.1687
	              a 0.1687
	              I 0.1687
	            you 0.0736

        Chendul   466603 inf (11)
	         Chendu 0.5492
	        Chendur 0.5492
	           when 0.5492
	    unsubscribe 0.5492
	              s 0.5492
	       Chundale 0.5492
	              a 0.2388
	             of 0.2388
	              , 0.1687
	          <UNK> 0.1687
	           </S> 0.0736

        Seebohm   466695   2 (9)
	           both 0.7789
	              ) 0.5492
	        Seebohm 0.5492
	              , 0.5178
	           </S> 0.5178
	              a 0.5017
	             it 0.1687
	              I 0.1687
	            the 0.0736

         states   466703   2 (9)
	             is 0.7789
	          state 0.5492
	              a 0.5492
	           know 0.5492
	          think 0.5492
	         states 0.5492
	          Pales 0.5492
	              , 0.0736
	           </S> 0.0736

        Bunting   466778   1 (11)
	        Bunting 0.7789
	           Corn 0.5492
	         source 0.5492
	              s 0.5492
	         during 0.5178
	              . 0.2388
	              a 0.1687
	             to 0.1687
	             up 0.1687
	           year 0.1687
	           </S> 0.0736

          caged   466820   1 (10)
	          caged 0.5492
	          Pales 0.5492
	           that 0.5178
	            can 0.5178
	              a 0.2388
	           used 0.1687
	              , 0.1687
	           </S> 0.1687
	             to 0.1687
	          asked 0.0736

            the   466940   1 (5)
	            the 0.5492
	              , 0.5492
	             us 0.5492
	              } 0.2236
	           </S> 0.0736

         custom   466944   1 (7)
	         custom 0.5178
	           just 0.5178
	       customer 0.2388
	              - 0.1687
	           time 0.1687
	           same 0.1687
	           </S> 0.0736

           Herr   467233   2 (8)
	            arz 0.7789
	           Herr 0.7114
	      Exercised 0.5492
	           etc. 0.5492
	           Help 0.5178
	              a 0.2388
	              , 0.1687
	           </S> 0.0736

         Rausch   467238   1 (8)
	         Rausch 0.5492
	          cause 0.5492
	             he 0.5492
	              a 0.5492
	             M. 0.5178
	              " 0.5178
	           </S> 0.1687
	              , 0.0736

         speaks   467245   1 (7)
	          Ringe 0.5492
	              a 0.5492
	         speaks 0.5492
	         spinas 0.5492
	          speak 0.5492
	           </S> 0.1687
	              , 0.0736

       songster   467287   1 (9)
	              I 0.5492
	         system 0.5492
	       songster 0.5492
	           idea 0.2388
	             of 0.2388
	            one 0.2388
	         artist 0.1687
	           </S> 0.0942
	              , 0.0736

           wild   467338   5 (11)
	              a 0.5492
	      materials 0.5492
	        singles 0.5492
	          wolfi 0.5492
	           will 0.5178
	           wild 0.5178
	           </S> 0.1687
	              . 0.1687
	     population 0.1687
	              , 0.0942
	            sex 0.0736

         singer   467392   1 (9)
	         singer 0.5492
	          years 0.5492
	          minor 0.5492
	              a 0.5324
	          since 0.5178
	              ) 0.5178
	           </S> 0.2388
	              , 0.1687
	              . 0.0736

        Perhaps   467400   1 (6)
	              , 0.7789
	        Perhaps 0.7789
	              a 0.5492
	        perhaps 0.5492
	              " 0.2388
	           </S> 0.0736

           Herr   467408   1 (9)
	           Herr 0.7789
	           Help 0.5492
	            arz 0.5492
	           </S> 0.5017
	           most 0.2388
	            you 0.1687
	              a 0.1687
	              , 0.1687
	            the 0.0736

         Rausch   467413   1 (10)
	          cause 0.5492
	    importantly 0.5492
	            are 0.5492
	              a 0.5492
	         Rausch 0.5492
	             is 0.5178
	             M. 0.5178
	           </S> 0.1687
	          <UNK> 0.1687
	              , 0.0736

           like   467421   6 (8)
	              " 0.5492
	           </S> 0.5492
	              a 0.5492
	            and 0.5492
	           lava 0.5178
	           like 0.2388
	          while 0.1687
	            the 0.0736

        Seebohm   467426   1 (10)
	        Seebohm 0.5492
	          about 0.3804
	             us 0.2388
	           </S> 0.2388
	             me 0.2388
	              , 0.1687
	           that 0.1687
	              a 0.1687
	           this 0.1687
	             to 0.0736

        Bunting   467481   1 (10)
	        Bunting 0.7789
	              s 0.5492
	         during 0.5178
	              . 0.2388
	           Free 0.2388
	              a 0.1687
	             to 0.1687
	             up 0.1687
	           year 0.1687
	           </S> 0.0736

            aud   467490   1 (10)
	            and 0.5492
	           </S> 0.5492
	            but 0.5492
	              I 0.5492
	              - 0.5492
	            aud 0.5492
	            arz 0.5492
	          while 0.1687
	             so 0.1687
	            the 0.0736

  considerabl}'   467560 inf (10)
	     domesticus 0.5492
	   considerable 0.5492
	         called 0.5492
	           such 0.5492
	              a 0.5178
	            the 0.2388
	              , 0.2388
	             by 0.2388
	           </S> 0.2236
	           with 0.0736

             as   467574   1 (6)
	              , 0.5492
	             us 0.5492
	          their 0.5492
	             as 0.5492
	           </S> 0.5492
	        package 0.5492

           This   467622   1 (6)
	           This 0.7789
	              , 0.7789
	              a 0.5492
	            cia 0.5492
	              " 0.2388
	           </S> 0.0736

           tlie   467641   7 (11)
	           alba 0.7789
	           tile 0.7789
	           trie 0.7789
	          tliet 0.5492
	           this 0.5017
	           true 0.2388
	              , 0.1687
	           able 0.1687
	            the 0.1687
	           </S> 0.1687
	              a 0.0736

     PyauviotKs   467656 inf (11)
	              , 0.7789
	        various 0.7789
	       previous 0.5492
	        support 0.5492
	        respect 0.5324
	             us 0.5324
	            its 0.5324
	           </S> 0.5178
	           your 0.5178
	              a 0.1687
	            the 0.0736

       Icucotis   467667 inf (11)
	        cunctis 0.5492
	              a 0.5492
	       Isocotin 0.5492
	          Ictis 0.5492
	              , 0.5492
	          until 0.5492
	             of 0.5492
	              . 0.5492
	         scuoti 0.5492
	           </S> 0.5492
	          cotis 0.5492

            the   467676   1 (2)
	             us 0.5492
	            the 0.5492

      specimens   467688   1 (8)
	        service 0.5492
	         number 0.5492
	              a 0.5492
	             of 0.5492
	      specimens 0.5492
	              , 0.5017
	           </S> 0.2388
	           Gulf 0.0736

         wliich   467701   4 (10)
	           wich 0.7789
	          lwich 0.5492
	         Iliich 0.5492
	              , 0.2388
	           them 0.2388
	          which 0.2388
	             us 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

           have   467708   1 (8)
	           have 0.5492
	              . 0.5492
	              a 0.5492
	             in 0.5492
	           lava 0.5492
	              , 0.5324
	           </S> 0.1687
	            the 0.0736

       variable   467720   1 (8)
	       variable 0.7789
	      available 0.7789
	      selection 0.5017
	              a 0.5017
	           </S> 0.2388
	              , 0.1687
	             of 0.1687
	              . 0.0736

         liquid   467729   1 (7)
	         listed 0.7789
	         liquid 0.7789
	              a 0.5178
	             of 0.2388
	           </S> 0.1687
	              , 0.1687
	              . 0.0736

           song   467736   1 (8)
	           some 0.7789
	           song 0.7789
	              s 0.5492
	              a 0.5492
	          <UNK> 0.2388
	           </S> 0.1687
	       nitrogen 0.1687
	              , 0.0736

           N.W.   467780 inf (10)
	           NEWS 0.7789
	             us 0.5492
	           NWWW 0.5492
	             NW 0.5178
	            New 0.2388
	              , 0.2388
	           this 0.1687
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

          India   467785   1 (8)
	          Index 0.5492
	           that 0.5492
	          India 0.5492
	              a 0.5492
	              , 0.5492
	           site 0.5492
	          Munia 0.5492
	           </S> 0.0736

        Judging   467814   2 (6)
	              , 0.7789
	        funding 0.5492
	              a 0.5492
	        Judging 0.5492
	              " 0.2388
	           </S> 0.0736

            b}^   467822   6 (6)
	             us 0.7789
	              } 0.5492
	              , 0.5017
	              a 0.2388
	           </S> 0.1687
	             by 0.0736

         Jerdou   467826   1 (9)
	              a 0.5492
	           </S> 0.5492
	         Jersey 0.5492
	         Jerdon 0.5492
	         Jerrod 0.5492
	            the 0.5492
	          today 0.5492
	              , 0.5492
	          Aedon 0.5492

             's   467832 inf (6)
	             so 0.5492
	             us 0.5492
	             as 0.5492
	             is 0.5492
	             ss 0.5492
	            the 0.5492

          India   467864   3 (8)
	          Munia 0.5492
	          Index 0.5178
	          India 0.5017
	              , 0.2388
	          which 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

       Tientsin   467913   1 (7)
	       Tientsin 0.7789
	         person 0.5492
	        Tibetan 0.5492
	              , 0.1687
	              a 0.0942
	            the 0.0736
	           </S> 0.0736

           Lark   467922   2 (10)
	            are 0.7789
	              a 0.5492
	           Lark 0.5492
	            arz 0.5492
	              " 0.5324
	              ) 0.5178
	             to 0.5178
	              . 0.2388
	           </S> 0.2388
	              , 0.0736

       scolding   467977   1 (8)
	       scolding 0.7789
	             us 0.5492
	        working 0.5178
	              a 0.5178
	            the 0.5178
	           </S> 0.2388
	          words 0.1687
	              , 0.0736

             My   468056   1 (6)
	             My 0.7789
	              , 0.7789
	             us 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

  aviculturists   468069   1 (8)
	  aviculturists 0.7789
	           </S> 0.5492
	              " 0.5492
	              I 0.5492
	       students 0.5492
	             us 0.2388
	            you 0.1687
	            the 0.0736

          would   468083   2 (8)
	           </S> 0.7789
	        changes 0.5492
	          would 0.5492
	             is 0.5492
	              a 0.5492
	            the 0.5492
	          wolfi 0.5492
	              , 0.0736

         Rausch   468123   1 (8)
	         Rausch 0.7789
	          cause 0.5492
	          major 0.5492
	              a 0.5492
	              , 0.2388
	           </S> 0.1687
	           Bush 0.1687
	       Chairman 0.0736

             's   468129   2 (5)
	             us 0.5492
	             's 0.5178
	             is 0.5178
	           </S> 0.1687
	              , 0.0736

            but   468152   1 (6)
	            but 0.5492
	              a 0.5492
	              , 0.5492
	             us 0.5492
	              } 0.2236
	           </S> 0.0736

          the}'   468160 inf (7)
	           thee 0.7789
	           </S> 0.2388
	          their 0.2388
	              , 0.2388
	              a 0.1687
	            the 0.1687
	            you 0.0736

         desire   468166   1 (7)
	         design 0.5492
	           </S> 0.5492
	             is 0.5492
	              , 0.5492
	         desire 0.5492
	              a 0.5492
	           want 0.5492

        Crested   468185   1 (9)
	        Crested 0.7114
	              . 0.5492
	         things 0.5492
	         policy 0.5492
	        Chester 0.5178
	         Center 0.2388
	          world 0.1687
	           same 0.1687
	           </S> 0.0736

         import   468199   6 (10)
	              a 0.5492
	    Calandrella 0.5492
	              ( 0.5492
	             CO 0.5492
	           </S> 0.5492
	         import 0.5178
	        support 0.5017
	             so 0.1687
	            who 0.1687
	            the 0.0736

           Pere   468260 inf (7)
	           Pere 0.7789
	           Pica 0.7789
	           </S> 0.5492
	              : 0.5492
	           were 0.5178
	              a 0.1687
	            the 0.0736

         (P.Z.S   468271 inf (9)
	              a 0.7789
	             's 0.5492
	          Bowie 0.5492
	           IPZS 0.5492
	             P. 0.5492
	              , 0.5492
	           Park 0.5492
	           </S> 0.5492
	            and 0.0736

              .   468277   1 (5)
	              . 0.5492
	              , 0.5492
	             us 0.5492
	            the 0.5492
	           </S> 0.5492

            187   468279 inf (10)
	              - 0.7789
	            the 0.7789
	              , 0.7789
	              I 0.7789
	            100 0.5492
	             us 0.5492
	             80 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

             In   468349   1 (6)
	              , 0.7789
	             In 0.7789
	              a 0.5492
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

         Jerdon   468382   1 (8)
	         Jerdon 0.7789
	       equation 0.5492
	              : 0.5492
	           </S> 0.5492
	          Aedon 0.5492
	         person 0.5178
	              a 0.1687
	            the 0.0736

            Cat   468394   4 (9)
	              , 0.7789
	             at 0.7789
	              I 0.7789
	            Cat 0.5492
	            cia 0.5492
	              / 0.5178
	              ) 0.2388
	              " 0.2388
	           </S> 0.0736

          Birds   468399   3 (8)
	          first 0.7789
	              , 0.7789
	              s 0.5492
	              a 0.5492
	          Birds 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

             E.   468406 inf (10)
	             EE 0.5492
	              ( 0.5492
	           Cats 0.5492
	              a 0.5492
	             El 0.5492
	           </S> 0.5492
	             us 0.5178
	            see 0.2388
	             of 0.1687
	            the 0.0736

            Ind   468409   1 (8)
	            Ind 0.7789
	              a 0.5492
	             us 0.5492
	             In 0.5178
	          <UNK> 0.1687
	           coli 0.1687
	              , 0.0736
	           </S> 0.0736

              .   468412   3 (6)
	             us 0.7789
	            the 0.7789
	              . 0.2388
	              , 0.2388
	            Med 0.2388
	           </S> 0.0736

           Comp   468414   4 (8)
	              , 0.7789
	           Home 0.7789
	              I 0.7789
	           Comp 0.5492
	          comix 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

             II   468426   1 (8)
	             In 0.7789
	              , 0.7789
	             II 0.7789
	             us 0.5492
	              a 0.5492
	              " 0.2388
	              ) 0.2388
	           </S> 0.0736

   grasshoppers   468474   2 (10)
	          major 0.7789
	           know 0.5492
	        himself 0.5492
	   grasshoppers 0.5492
	          there 0.5492
	           </S> 0.5178
	              a 0.5178
	        because 0.2388
	              , 0.2388
	             in 0.0736

        Seebohm   468574   1 (7)
	        Seebohm 0.7789
	             us 0.5492
	              , 0.2388
	           both 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

              -   468583   1 (5)
	              - 0.7789
	             us 0.5492
	            the 0.5492
	              , 0.0736
	           </S> 0.0736

              "   468585   3 (8)
	           with 0.5492
	             us 0.5178
	              " 0.3430
	              . 0.2388
	            the 0.1687
	             to 0.1687
	           mail 0.1687
	           </S> 0.0736

             In   468831   1 (6)
	             In 0.7789
	              , 0.7789
	              a 0.5492
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

        insects   468902   1 (9)
	        insects 0.7789
	            its 0.5492
	          <UNK> 0.2388
	           said 0.2388
	           that 0.2388
	           </S> 0.1687
	              a 0.1687
	              , 0.1687
	             be 0.0736

      mealworms   468911   1 (10)
	      mealworms 0.7789
	           </S> 0.5492
	        spiders 0.5492
	      therefore 0.5492
	        rodents 0.5492
	              a 0.5492
	            and 0.5492
	           more 0.2388
	        however 0.1687
	            the 0.0736

     Familx-ALA   468928 inf (9)
	           will 0.7789
	              a 0.5492
	       Analysis 0.5492
	       tramadol 0.5492
	              - 0.5178
	              , 0.2388
	             .. 0.2236
	              ) 0.0736
	           </S> 0.0736

          UDID^   468939 inf (11)
	              ) 0.5492
	            UDI 0.5492
	            DVD 0.5492
	          UNIDO 0.5492
	           UDDI 0.5492
	             us 0.5492
	              , 0.5492
	           UDIG 0.5492
	              a 0.5492
	           </S> 0.5492
	          GUDID 0.5492

              .   468944 inf (3)
	             of 0.5492
	             us 0.5492
	            the 0.5492

        AVinged   468957 inf (12)
	         winged 0.7789
	        Avinger 0.5492
	          Vinge 0.5492
	          Ainge 0.5492
	              I 0.5492
	             of 0.5492
	         Vidgen 0.5492
	          thing 0.5492
	        Stripes 0.2388
	              , 0.1687
	          House 0.0736
	           </S> 0.0736

           Lark   468965   1 (7)
	           Last 0.5492
	              , 0.5492
	              a 0.5492
	           </S> 0.5492
	          <UNK> 0.5492
	           Lark 0.5492
	            arz 0.5492

              .   468969   3 (6)
	            the 0.7789
	             us 0.5492
	              . 0.2388
	          Books 0.1687
	              , 0.1687
	           </S> 0.0736

ilTclanocorypha   468972 inf (9)
	          Thank 0.7789
	              , 0.7789
	      Copyright 0.7789
	      According 0.7789
	              a 0.5492
	             in 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

       sidirica   468988   1 (10)
	      residiria 0.5492
	           </S> 0.5492
	      ossidrica 0.5492
	       sibirica 0.5492
	              a 0.5492
	              , 0.5492
	         ridica 0.5492
	         Sirica 0.5492
	         silica 0.5492
	      configure 0.5492

              ,   468996 inf (3)
	             of 0.5492
	             us 0.5492
	            the 0.5492

          Gmp;l   468998 inf (7)
	          Gmail 0.5492
	          Gympl 0.5492
	            Gmp 0.5492
	          Email 0.5492
	             pp 0.2388
	              i 0.2388
	            the 0.0736

              .   469003   1 (5)
	           </S> 0.5492
	              , 0.5492
	             us 0.5492
	              . 0.5492
	            the 0.5492

           THIS   469006   1 (6)
	              , 0.7789
	              I 0.7789
	           This 0.7789
	           THIS 0.7789
	              " 0.2388
	           </S> 0.0736

        species   469011   1 (8)
	        species 0.7789
	           case 0.5492
	              I 0.5492
	       document 0.5492
	        suecica 0.5492
	              , 0.2388
	           </S> 0.1687
	             IS 0.0736

           1869   469141 inf (7)
	           1986 0.5492
	           2005 0.5492
	              a 0.5492
	           1861 0.5492
	      therefore 0.5492
	           </S> 0.5492
	            the 0.0736

         Rowley   469178   1 (7)
	              a 0.5492
	              s 0.5492
	          Rules 0.5492
	         Rowley 0.5492
	              : 0.2388
	           </S> 0.1687
	              , 0.0736

           1870   469241 inf (6)
	             pp 0.7789
	           1871 0.5492
	           2006 0.5492
	           </S> 0.5492
	              a 0.5492
	            the 0.0736

        species   469270   1 (9)
	        species 0.7789
	           </S> 0.5492
	              a 0.5492
	              , 0.5492
	     Federation 0.5492
	             of 0.5492
	        suecica 0.5492
	        special 0.5178
	              ] 0.0736

            and   469279   1 (6)
	             eg 0.5492
	            and 0.5492
	              , 0.5492
	            arz 0.5492
	              } 0.2236
	           </S> 0.0736

             by   469284   1 (9)
	              , 0.5492
	             by 0.5492
	              a 0.5492
	           </S> 0.5492
	             us 0.5178
	             or 0.1687
	            for 0.1687
	            who 0.1687
	            the 0.0736

      Mongolian   469321   1 (8)
	             of 0.5492
	      Mongolian 0.5492
	          would 0.5492
	              a 0.5492
	              , 0.5324
	           </S> 0.5178
	         forces 0.5017
	         health 0.0736

        Eugland   469383   1 (11)
	           </S> 0.5492
	              , 0.5492
	     Euglandina 0.5492
	            and 0.5492
	        England 0.5492
	        Rugland 0.5492
	             us 0.2388
	           cars 0.2388
	            you 0.1687
	              a 0.1687
	            the 0.0736

           This   469473   1 (6)
	           This 0.7789
	              , 0.7789
	              a 0.5492
	            cia 0.5492
	              " 0.2388
	           </S> 0.0736

             in   469571   1 (6)
	              a 0.5492
	             in 0.5492
	              s 0.5492
	              , 0.5492
	              } 0.2236
	           </S> 0.0736

        January   469594   4 (8)
	    destination 0.5492
	           said 0.5492
	       children 0.5492
	        January 0.5178
	              , 0.1687
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

           1908   469603 inf (8)
	           1998 0.5492
	           1999 0.5492
	              , 0.5492
	           </S> 0.5492
	              a 0.5492
	            and 0.5492
	           with 0.5178
	            the 0.0736

         Sussex   469628   3 (10)
	         Passer 0.7789
	          color 0.5492
	         Sussex 0.5178
	           used 0.5178
	          place 0.2388
	              , 0.2388
	          stock 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

Faunlx-ALAUDID.E   469637 inf (11)
	       SATURDAY 0.7789
	              - 0.7789
	              , 0.7789
	        England 0.5492
	        Falkirk 0.5492
	           only 0.5492
	             DE 0.5492
	              a 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

              .   469653   1 (5)
	             us 0.5492
	           </S> 0.5492
	              , 0.5492
	              . 0.5492
	            the 0.5492

              .   469670   3 (5)
	            the 0.7789
	             us 0.5492
	              . 0.2388
	              , 0.1687
	           </S> 0.0736

 Mcla)iOLoyypha   469673 inf (11)
	              , 0.7789
	      ChangeLog 0.7789
	      Copyright 0.7789
	             My 0.5492
	              a 0.5492
	         Martin 0.5492
	   yeltoniensis 0.5492
	              / 0.5178
	              ) 0.5017
	              " 0.2388
	           </S> 0.0736

    ycltontemis   469688 inf (9)
	       contrast 0.5492
	              a 0.5492
	      Montornés 0.5492
	           </S> 0.5492
	     components 0.5492
	              , 0.5492
	       conftest 0.5492
	             to 0.5492
	      configure 0.5492

              ,   469699 inf (3)
	             of 0.5492
	             us 0.5492
	            the 0.5492

          FoRST   469701 inf (7)
	           FRST 0.5492
	            For 0.5492
	          FIRST 0.5492
	            RST 0.5492
	              i 0.2388
	             pp 0.2388
	            the 0.0736

              .   469706   2 (6)
	              , 0.7789
	           </S> 0.5492
	             us 0.5492
	              . 0.5492
	            the 0.5492
	              ) 0.0736

              A   469709   1 (7)
	              , 0.7789
	            the 0.7789
	              A 0.7789
	             us 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

          FLOCK   469711 inf (9)
	           nest 0.5492
	           FLOC 0.5492
	            FOR 0.5178
	          major 0.2388
	         number 0.2388
	              A 0.2388
	           copy 0.2388
	              , 0.1687
	           </S> 0.0736

          About   469822   1 (6)
	              , 0.7789
	          About 0.7789
	              a 0.5492
	        sources 0.5492
	              " 0.2388
	           </S> 0.0736

       imported   469860   7 (10)
	              , 0.5492
	          items 0.5492
	             us 0.5492
	              a 0.5492
	        ranging 0.5492
	           </S> 0.5492
	       imported 0.5178
	           many 0.2388
	             if 0.1687
	            the 0.0736

     Leadenhall   469905   1 (7)
	     Leadenhall 0.7789
	        January 0.5492
	          major 0.5492
	              , 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

          Larks   469924   3 (9)
	              , 0.7789
	          Links 0.7789
	       Research 0.5492
	         London 0.5492
	              a 0.5492
	          Larks 0.5492
	          Parus 0.5492
	              " 0.2388
	           </S> 0.0736

       Ortolans   469931   1 (11)
	          women 0.5492
	       Swallows 0.5492
	              , 0.5492
	         online 0.5492
	      therefore 0.5492
	           </S> 0.5492
	              a 0.5492
	        drepper 0.5492
	       Ortolans 0.5492
	              s 0.5492
	            the 0.0736

            and   469941   1 (4)
	            and 0.5492
	            arz 0.5492
	          while 0.1687
	            the 0.0736

         Quails   469945   1 (9)
	         dubius 0.7789
	         Quails 0.7789
	       children 0.5492
	          Email 0.5178
	              , 0.1687
	           they 0.1687
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

              "   469984   2 (8)
	             us 0.7789
	              " 0.5017
	            the 0.2388
	           </S> 0.2388
	           time 0.1687
	              , 0.1687
	       distance 0.1687
	              - 0.0736

         almost   470050   1 (8)
	            and 0.5492
	         almost 0.5492
	              I 0.5492
	           also 0.5492
	           </S> 0.5492
	              " 0.5492
	           such 0.1687
	            the 0.0736

       bullocks   470087   1 (8)
	       bullocks 0.7789
	          close 0.5017
	              , 0.2388
	        defined 0.2388
	             if 0.1687
	           well 0.1687
	           </S> 0.1687
	              a 0.0736

        jerking   470119   1 (8)
	        jerking 0.7789
	          doors 0.5492
	          major 0.5492
	        Perkins 0.5178
	        working 0.5017
	              - 0.1687
	          first 0.1687
	           </S> 0.0736

           open   470127   1 (11)
	           open 0.7789
	            one 0.7789
	           part 0.5492
	         number 0.5492
	             us 0.5324
	             of 0.5178
	      movements 0.5178
	           </S> 0.5178
	              a 0.5178
	              , 0.1687
	            off 0.0736

       smashing   470184   1 (8)
	              a 0.5492
	             of 0.5492
	         system 0.5492
	       smashing 0.5492
	              , 0.1687
	             or 0.1687
	           </S> 0.0736
	              - 0.0497

       liberate   470242   1 (8)
	       liberate 0.7789
	           like 0.5492
	             be 0.5492
	              , 0.1687
	           </S> 0.1687
	              . 0.1687
	          again 0.0736
	              a 0.0497

         enough   470251   1 (7)
	         enough 0.7789
	        through 0.5492
	           </S> 0.5178
	              a 0.5017
	              , 0.5017
	             us 0.2236
	            the 0.0736

          flock   470292   2 (10)
	           from 0.7789
	          basis 0.5492
	          flock 0.5492
	              a 0.5178
	           time 0.5178
	             of 0.5178
	           </S> 0.2388
	         family 0.2388
	              , 0.0736
	            and 0.0497

             No   470299   1 (6)
	             No 0.7789
	              , 0.7789
	              a 0.5492
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

   importations   470347   1 (13)
	   importations 0.7789
	            use 0.5492
	      thousands 0.5492
	    information 0.3804
	           that 0.2388
	             us 0.2388
	            one 0.2388
	            any 0.2388
	              , 0.2388
	           your 0.1687
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

          birds   470363   2 (10)
	          Parus 0.7789
	          first 0.5178
	          birds 0.5178
	             it 0.2388
	           time 0.2388
	              , 0.2388
	           them 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

         Family   470436   1 (7)
	         Family 0.7789
	              , 0.7789
	              a 0.5492
	           mail 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

   ALAl'DID.-Ji   470444 inf (13)
	              a 0.7789
	            All 0.7789
	              D 0.7789
	           side 0.5492
	             L. 0.5492
	              © 0.5492
	              s 0.5492
	       Atlantis 0.5492
	              , 0.5492
	              p 0.5492
	            Vol 0.5492
	             to 0.5178
	           </S> 0.0736

              .   470456   1 (7)
	              , 0.5492
	             us 0.5492
	            And 0.5492
	              . 0.5492
	            the 0.5492
	              - 0.5492
	           </S> 0.5492

  Ciila)idixlla   470481   3 (9)
	              , 0.7789
	          Click 0.7789
	              a 0.5492
	        Comella 0.5492
	    Calandrella 0.5492
	              / 0.5178
	              ) 0.5017
	              " 0.2388
	           </S> 0.0736

   bnuhydaityla   470495 inf (9)
	       addition 0.5492
	      configure 0.5492
	              a 0.5492
	              , 0.5492
	              n 0.5492
	        Tuesday 0.5492
	          build 0.5492
	          atlas 0.5492
	           </S> 0.5492

              ,   470507 inf (3)
	             of 0.5492
	             us 0.5492
	            the 0.5492

          LEISL   470509 inf (5)
	          LEISD 0.5492
	           LEIS 0.5492
	              i 0.2388
	             pp 0.2388
	            the 0.0736

              .   470514   1 (5)
	           </S> 0.5492
	              , 0.5492
	             us 0.5492
	              . 0.5492
	            the 0.5492

         HOWARD   470517 inf (7)
	              I 0.7789
	              , 0.7789
	          HOARD 0.5492
	         HAZARD 0.5492
	           WARD 0.5492
	              " 0.2388
	           </S> 0.0736

       SAUNDERS   470524 inf (8)
	          SUNDS 0.5492
	         FUNDER 0.5492
	        SINGERS 0.5492
	         UANDES 0.5492
	              a 0.5492
	             A. 0.5178
	           </S> 0.1687
	              , 0.0736

         admits   470533   2 (5)
	              I 0.7789
	          admit 0.5492
	         admits 0.5492
	           </S> 0.1687
	              , 0.0736

    justifiably   470568   1 (8)
	    justifiably 0.7789
	           just 0.5492
	          major 0.5492
	             is 0.2388
	             to 0.2388
	              a 0.2388
	              , 0.1687
	           </S> 0.0736

          geuus   470594   6 (10)
	          rufus 0.7789
	         genuus 0.5492
	            geu 0.5492
	              , 0.5492
	           geus 0.5492
	            get 0.5178
	          genus 0.5178
	          world 0.1687
	           same 0.1687
	           </S> 0.0736

    Calandrclla   470600   1 (7)
	              a 0.5492
	             of 0.5492
	              , 0.5492
	           </S> 0.5492
	       Calandra 0.5492
	    Calandrella 0.5492
	          place 0.5492

              ,   470611 inf (3)
	             of 0.5492
	             us 0.5492
	            the 0.5492

  characterized   470613   1 (6)
	        written 0.5492
	  characterized 0.5492
	          their 0.2388
	              i 0.2388
	             or 0.1687
	            the 0.0736

          crest   470645   1 (9)
	          crest 0.7789
	           best 0.5178
	             it 0.2388
	              , 0.2388
	             us 0.2388
	              a 0.1687
	           this 0.1687
	           </S> 0.1687
	            the 0.0736

        conical   470660   1 (7)
	        conical 0.7789
	        control 0.5492
	         dollar 0.5492
	             of 0.5178
	              a 0.5178
	           </S> 0.2388
	              , 0.0736

           hind   470693   1 (11)
	          minor 0.7789
	           hind 0.7789
	       informed 0.5492
	            non 0.5178
	           half 0.5178
	            his 0.5178
	              a 0.5017
	           </S> 0.1687
	              , 0.1687
	              . 0.1687
	              - 0.0736

  infinitesimal   470707   1 (7)
	  infinitesimal 0.7789
	              . 0.5492
	    information 0.2388
	              a 0.1687
	           </S> 0.1687
	              , 0.1687
	            the 0.0736

        bastard   470721   2 (10)
	        numbers 0.7789
	        bastard 0.5492
	             us 0.5492
	            the 0.5492
	          based 0.5492
	              a 0.5492
	              . 0.1687
	           </S> 0.1687
	              , 0.1687
	       compared 0.0736

        primary   470729   1 (9)
	        private 0.5492
	          since 0.5492
	        primary 0.5492
	              ' 0.5178
	              a 0.5178
	              " 0.2388
	           </S> 0.2388
	              , 0.1687
	              . 0.0736

        Alaiida   470795   1 (15)
	           Alai 0.5492
	        Algaida 0.5492
	           said 0.5492
	          Alaid 0.5492
	         Alauda 0.5492
	        Alaimia 0.5492
	        Adalida 0.5492
	        maiidae 0.5492
	           that 0.2388
	            out 0.1687
	              a 0.1687
	           </S> 0.1687
	              , 0.1687
	              . 0.1687
	             is 0.0736

              .   470802   1 (5)
	            the 0.5492
	           </S> 0.5492
	              . 0.5492
	              , 0.5492
	             us 0.5492

       Inhabits   470805 inf (6)
	              A 0.7789
	              , 0.7789
	    Inhabitants 0.5492
	        Inhabit 0.5492
	              " 0.2388
	           </S> 0.0736

       Southern   470814   2 (5)
	           </S> 0.7789
	       Southern 0.5492
	              , 0.5492
	              a 0.5017
	        shallow 0.0736

             in   470927   1 (6)
	             iu 0.5492
	              a 0.5492
	             in 0.5492
	              , 0.5492
	              } 0.2236
	           </S> 0.0736

     xAbyssinia   470992   1 (8)
	      Abyssinia 0.7789
	          using 0.5492
	              , 0.2388
	            the 0.1687
	       possible 0.1687
	           </S> 0.1687
	              I 0.1687
	              a 0.0736

              ;   471003   1 (8)
	             as 0.5492
	            the 0.5492
	              ; 0.5492
	           know 0.5492
	            can 0.5492
	              , 0.5492
	             us 0.5492
	           </S> 0.5492

       eastward   471005   1 (5)
	        eastern 0.5492
	       eastward 0.5492
	              ) 0.5178
	              } 0.2236
	           </S> 0.0736

             To   471069   1 (7)
	             To 0.7789
	              ( 0.7789
	              , 0.7789
	             us 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

      straggler   471116   1 (9)
	      straggler 0.7789
	              a 0.5492
	             of 0.5492
	          state 0.5492
	            one 0.5178
	          event 0.2388
	    opportunity 0.1687
	           </S> 0.1687
	              , 0.0736

          about   471127   1 (7)
	           </S> 0.5492
	          about 0.5492
	           used 0.5492
	              I 0.5492
	              " 0.5492
	            and 0.5492
	            the 0.0736

  authenticated   471138   4 (11)
	          major 0.7789
	       students 0.7789
	          miles 0.7114
	  authenticated 0.5492
	              I 0.5492
	           </S> 0.5178
	              . 0.2388
	              , 0.2388
	          years 0.1687
	         months 0.0736
	              - 0.0736

           si.x   471213   7 (12)
	              a 0.5492
	            and 0.5492
	           </S> 0.5492
	           siex 0.5492
	              ( 0.5492
	           sala 0.5324
	           site 0.5178
	            six 0.5178
	             si 0.5178
	             on 0.1687
	            one 0.1687
	            the 0.0736

             of   471218   1 (6)
	            put 0.5492
	              , 0.5492
	            the 0.5492
	           </S> 0.5492
	             us 0.5492
	             of 0.5492

            one   471401   1 (5)
	            one 0.7789
	              s 0.5178
	              a 0.5178
	              , 0.1687
	           </S> 0.0736

         caught   471405   2 (9)
	        caudata 0.5492
	         caught 0.5178
	           case 0.5017
	              a 0.5017
	           </S> 0.2388
	            can 0.2388
	              , 0.1687
	             is 0.1687
	             of 0.0736

            was   471428   3 (5)
	             us 0.5492
	              a 0.5492
	            was 0.5178
	           </S> 0.1687
	              , 0.0736

             In   471465   1 (7)
	             In 0.7789
	              , 0.7789
	             us 0.5492
	              a 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

   sand3'-browu   471627 inf (10)
	           send 0.7789
	        implied 0.5492
	          brown 0.5492
	       password 0.5492
	             an 0.5178
	              , 0.5178
	            not 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

            the   471683   1 (5)
	              , 0.5492
	            the 0.5492
	             us 0.5492
	              } 0.2236
	           </S> 0.0736

              -   471699   3 (6)
	             us 0.7789
	            the 0.5178
	              - 0.1687
	           </S> 0.1687
	              . 0.0736
	              , 0.0497

       blackish   471740   3 (8)
	              a 0.7789
	        thereof 0.7789
	           back 0.5492
	       blackish 0.5492
	              ) 0.5178
	              , 0.5178
	           </S> 0.5178
	             of 0.0736

            but   471750   1 (9)
	            but 0.5492
	              a 0.5492
	           </S> 0.5492
	              , 0.5492
	             us 0.5178
	              e 0.2388
	          while 0.1687
	           with 0.1687
	            the 0.0736

        huffish   471787 inf (10)
	           this 0.5492
	             us 0.5492
	        huffish 0.5492
	              a 0.5178
	             to 0.5178
	           </S> 0.5017
	           skin 0.2388
	            and 0.1687
	           blue 0.1687
	              , 0.0736

        patches   471795   2 (6)
	           </S> 0.7789
	        patches 0.5492
	          grief 0.5492
	        Watches 0.5492
	              a 0.5492
	              , 0.0736

              a   471863   1 (6)
	              , 0.5492
	             us 0.5492
	            the 0.5492
	              a 0.5492
	              } 0.2236
	           </S> 0.0736

   superciliary   471871   1 (8)
	        support 0.5492
	              a 0.5492
	    crystalline 0.5492
	   superciliary 0.5492
	             of 0.5178
	            man 0.2388
	           </S> 0.1687
	              , 0.0736

         streak   471884   2 (9)
	              , 0.7789
	         streak 0.5492
	              . 0.5492
	         stream 0.5492
	           sore 0.5492
	              a 0.5492
	           </S> 0.5178
	         stripe 0.1687
	         ridges 0.0736

          under   471892   1 (5)
	              , 0.5492
	              a 0.5492
	          under 0.5492
	              } 0.2236
	           </S> 0.0736

              a   471962   1 (7)
	             us 0.5492
	              , 0.5492
	            the 0.5492
	            and 0.5492
	              a 0.5492
	              } 0.2236
	           </S> 0.0736

           tlie   471997   9 (9)
	           alba 0.7789
	           trie 0.7789
	          tliet 0.5492
	           tile 0.5178
	              , 0.2388
	           </S> 0.1687
	              a 0.1687
	           this 0.1687
	            the 0.0736

           neck   472002   5 (10)
	            new 0.7789
	              , 0.7789
	              . 0.7789
	            Act 0.7114
	       Atlantic 0.5492
	           Pica 0.5492
	           neck 0.5492
	              a 0.5492
	           </S> 0.1687
	          <UNK> 0.0736

           bill   472009   1 (8)
	           will 0.5492
	              , 0.5492
	           bill 0.5492
	            and 0.5492
	              a 0.5492
	            cia 0.5492
	              } 0.2236
	           </S> 0.0736

           dark   472014   1 (9)
	            day 0.7789
	           dark 0.7789
	            arz 0.5492
	              a 0.5178
	           </S> 0.1687
	             of 0.1687
	            and 0.1687
	              , 0.0942
	              . 0.0736

           feet   472040   1 (7)
	           free 0.5492
	              a 0.5492
	              , 0.5492
	           feet 0.5492
	              ) 0.5178
	              } 0.2236
	           </S> 0.0736

     j^ellowish   472045   1 (7)
	      yellowish 0.7789
	          below 0.2236
	              a 0.2236
	              , 0.0497
	           </S> 0.0497
	              . 0.0497
	             of 0.0497

           horn   472056   1 (7)
	           here 0.5492
	              a 0.5492
	              , 0.5492
	           </S> 0.5492
	       Tide2006 0.5492
	           horn 0.5492
	          corax 0.5492

           iris   472069   1 (7)
	              a 0.5492
	             is 0.5492
	              , 0.5492
	           iris 0.5492
	             iu 0.5492
	              } 0.2236
	           </S> 0.0736

          hazel   472074   1 (7)
	           have 0.7789
	          hazel 0.7789
	           here 0.7789
	          Pales 0.5492
	              ) 0.2388
	           </S> 0.1687
	              , 0.0736

              .   472079   3 (6)
	            the 0.7789
	             us 0.5492
	           </S> 0.2388
	              . 0.2388
	              , 0.1687
	           eyes 0.0736

         tipped   472244   2 (7)
	          times 0.7789
	         tipped 0.5492
	              a 0.5178
	              . 0.1687
	              , 0.1687
	           </S> 0.1687
	             of 0.0736

           buff   472269   1 (11)
	           buff 0.7789
	          rufus 0.7789
	          black 0.5492
	            but 0.5178
	             us 0.2388
	           them 0.2388
	              , 0.2388
	           </S> 0.1687
	           your 0.1687
	              a 0.1687
	            the 0.0736

          moult   472292   1 (8)
	          moult 0.7789
	          maura 0.5492
	          would 0.5324
	              a 0.5178
	           </S> 0.1687
	              , 0.0736
	              . 0.0736
	             of 0.0497

        Colonel   472322   2 (7)
	              , 0.7789
	              a 0.5492
	        Colonel 0.5492
	         corone 0.5492
	          <UNK> 0.5178
	              " 0.2388
	           </S> 0.0736

           Irby   472330   2 (8)
	             In 0.7789
	              a 0.5492
	           Irby 0.5492
	           alba 0.5492
	          Blimp 0.2388
	          <UNK> 0.1687
	           </S> 0.1687
	              , 0.0736

    Ornithology   472337   1 (8)
	    Ornithology 0.7789
	        Journal 0.5492
	            One 0.5492
	           with 0.2388
	              a 0.2388
	              , 0.1687
	              ) 0.1687
	           </S> 0.0736

         says:-   472379   3 (9)
	          sayst 0.5492
	              s 0.5492
	             == 0.5178
	           says 0.5178
	              " 0.2388
	              a 0.2236
	              , 0.1687
	              ; 0.1687
	           </S> 0.0736

              "   472386   1 (6)
	              : 0.5492
	            the 0.5492
	           </S> 0.5492
	              " 0.5492
	              , 0.5492
	             us 0.5492

     Andalucian   472394   1 (7)
	      Andalucia 0.7789
	     Andalucian 0.7789
	              , 0.5492
	       American 0.1687
	          other 0.1687
	           same 0.1687
	           </S> 0.0736

      commences   472445   1 (7)
	         summer 0.5492
	       comments 0.5492
	      commences 0.5492
	              a 0.5178
	           </S> 0.1687
	              , 0.1687
	             of 0.0736

          nests   472541   1 (8)
	          nests 0.7789
	             us 0.5492
	            new 0.5178
	              a 0.2388
	            the 0.1687
	           </S> 0.1687
	              , 0.0942
	              . 0.0736

    Excessively   472586 inf (9)
	              , 0.7789
	    exclusively 0.5492
	      Excessive 0.5492
	    excessively 0.5492
	    Exclusively 0.5492
	              a 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

       abundant   472598   2 (8)
	              , 0.7789
	         Monday 0.5492
	      configure 0.5492
	              I 0.5492
	       abundant 0.5492
	        Drained 0.5324
	           </S> 0.1687
	      Injurious 0.0736

       Cahuidra   472655 inf (13)
	        Cahuita 0.7789
	       Cahuilla 0.7789
	       Cathedra 0.7789
	              , 0.5492
	         Cahuil 0.5492
	             as 0.5492
	          major 0.5492
	        Chhidru 0.5492
	              " 0.1687
	          other 0.1687
	       original 0.1687
	           City 0.1687
	           </S> 0.0736

              ;   472664   1 (7)
	             of 0.5492
	              , 0.5492
	           </S> 0.5492
	            the 0.5492
	              ; 0.5492
	             us 0.5492
	           that 0.5492

           they   472666   1 (5)
	           they 0.5492
	            the 0.5492
	              ) 0.5178
	              } 0.2236
	           </S> 0.0736

         falhnv   472678 inf (10)
	           find 0.5492
	          falha 0.5492
	         falhas 0.5492
	        falhava 0.5492
	             us 0.5178
	           </S> 0.5017
	            not 0.1687
	              , 0.1687
	              a 0.1687
	             to 0.0736

        i^round   472685 inf (10)
	             us 0.5492
	              a 0.5492
	             to 0.5492
	        inbound 0.5492
	       inground 0.5492
	              , 0.5492
	          round 0.5492
	         around 0.5492
	           </S> 0.5492
	            use 0.5492

              ,   472692 inf (3)
	             of 0.5492
	             us 0.5492
	            the 0.5492

           clod   472724   1 (10)
	           clod 0.7789
	            cia 0.7789
	              a 0.5492
	     References 0.5492
	         excuse 0.5492
	            can 0.5178
	              . 0.2388
	              , 0.2388
	           </S> 0.1687
	             of 0.0736

           au}'   472735 inf (11)
	           alba 0.7789
	             au 0.7789
	            aua 0.5492
	              I 0.5492
	           auto 0.5178
	            and 0.2388
	              , 0.2388
	           part 0.2388
	           some 0.2388
	           </S> 0.1687
	            the 0.0736

        sliglit   472740   1 (11)
	        seligit 0.5492
	         slight 0.5492
	          light 0.5492
	         Piglit 0.5492
	         stigli 0.5492
	           </S> 0.5492
	          sigli 0.5492
	              , 0.5492
	              a 0.5492
	        stiglio 0.5492
	          major 0.5492

     depression   472748   1 (3)
	     expression 0.5492
	     depressior 0.5492
	     depression 0.5492

              I   472774   1 (6)
	              I 0.7789
	              , 0.7789
	            the 0.7789
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

          l)ird   472829 inf (11)
	           Bird 0.7789
	          laird 0.7789
	             of 0.5492
	              a 0.5492
	           dirl 0.5492
	           like 0.5178
	            one 0.1687
	              - 0.1687
	            man 0.1687
	           </S> 0.1687
	              , 0.0736

            off   472835   1 (8)
	              , 0.5492
	           said 0.5492
	             us 0.5492
	            off 0.5492
	             of 0.5492
	           </S> 0.5492
	              a 0.5492
	            new 0.5492

              "   472839   5 (6)
	            the 0.7789
	              , 0.7789
	             us 0.5492
	            all 0.5492
	              " 0.2388
	           </S> 0.0736

       Saunders   472849   1 (9)
	       Saunders 0.7789
	          under 0.7789
	              a 0.5492
	             he 0.5492
	              " 0.3804
	             A. 0.2388
	           Dean 0.1687
	           </S> 0.0942
	              , 0.0736

          liird   472898 inf (10)
	         beauty 0.5492
	          liira 0.5492
	        weather 0.5492
	              , 0.5492
	           team 0.5492
	           liir 0.5492
	           dirl 0.5492
	           like 0.2388
	           same 0.1687
	           </S> 0.0736

      frequents   472904   1 (7)
	              a 0.5492
	             is 0.5492
	        request 0.5492
	             of 0.5492
	              , 0.5492
	      frequents 0.5492
	           </S> 0.5492

            dry   472914   1 (7)
	            day 0.5492
	            dry 0.5492
	            arz 0.5492
	           </S> 0.5178
	              a 0.5178
	              , 0.5017
	            the 0.0736

          while   472984   1 (5)
	              , 0.5492
	              a 0.5492
	          while 0.5492
	              } 0.2236
	           </S> 0.0736

       tameuess   472994   1 (14)
	       tameness 0.7789
	          meues 0.5492
	        ameutes 0.5492
	          tames 0.5492
	          major 0.5492
	              , 0.5492
	         effect 0.2388
	          value 0.2388
	           head 0.2388
	           time 0.2388
	              a 0.1687
	        content 0.1687
	           </S> 0.1687
	            own 0.0736

             is   473003   1 (6)
	           </S> 0.5492
	              . 0.5492
	             is 0.5492
	              a 0.5492
	             iu 0.5492
	              , 0.5492

    difficult}'   473029   1 (11)
	     difficulty 0.7789
	      difficult 0.5492
	          found 0.5492
	             us 0.5178
	      different 0.5178
	             it 0.2388
	           </S> 0.2388
	              a 0.1687
	              , 0.1687
	            the 0.1687
	             of 0.0736

             in   473041   1 (6)
	              , 0.5492
	            the 0.5492
	              s 0.5492
	             in 0.5492
	           </S> 0.5492
	              a 0.5492

       shooting   473044   3 (9)
	          using 0.5492
	             us 0.5492
	       shooting 0.5178
	          which 0.2388
	              , 0.2388
	           such 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

       withoiit   473083   4 (9)
	         Pithoi 0.5492
	       Githoito 0.5492
	              a 0.5492
	        without 0.5324
	       purposes 0.2388
	              , 0.1687
	              . 0.1687
	           </S> 0.1687
	             of 0.0736

        blowing   473092   1 (6)
	           </S> 0.5492
	              a 0.5492
	          being 0.5492
	           only 0.5492
	              , 0.5492
	        blowing 0.5492

            cut   473137   1 (10)
	            cut 0.7789
	            cia 0.5492
	           like 0.5492
	              a 0.5178
	            can 0.5178
	             of 0.2388
	           </S> 0.1687
	             's 0.1687
	              , 0.1687
	            flu 0.0736

         utters   473180   1 (9)
	           uses 0.7789
	         utters 0.7789
	              I 0.5492
	          under 0.5178
	             in 0.2388
	             of 0.2388
	           </S> 0.1687
	              , 0.1687
	            and 0.0736

           song   473208   1 (7)
	           song 0.7789
	           some 0.5492
	           sala 0.5492
	              a 0.5178
	           </S> 0.5178
	              . 0.1687
	              , 0.0736

           clod   473235   1 (9)
	           clod 0.7789
	            cia 0.7789
	              a 0.5492
	           high 0.5492
	            can 0.5178
	          level 0.5017
	              , 0.2388
	           </S> 0.1687
	             of 0.0736

         jerk}'   473297 inf (11)
	             us 0.5492
	           jerk 0.5492
	           were 0.5492
	          jerks 0.5492
	         jerker 0.5492
	              a 0.3804
	           </S> 0.1687
	              . 0.1687
	              , 0.1687
	           less 0.1687
	           more 0.0736

         flight   473304   1 (7)
	              , 0.5492
	           </S> 0.5492
	              . 0.5492
	              a 0.5492
	          light 0.5492
	   ostentatious 0.5492
	         flight 0.5492

             In   473312   1 (6)
	             In 0.7789
	              , 0.7789
	              a 0.5492
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

   nidification   473374   1 (10)
	   nidification 0.7789
	         Advent 0.5492
	              , 0.2388
	             it 0.2388
	      Education 0.2388
	             us 0.2388
	           them 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

             as   473388   1 (7)
	             as 0.5492
	           </S> 0.5492
	              ( 0.5492
	              I 0.5492
	            and 0.5492
	             us 0.5178
	            the 0.0736

        Seebohm   473391   1 (8)
	           need 0.5492
	        Seebohm 0.5492
	          <UNK> 0.2388
	              , 0.2388
	             it 0.1687
	           well 0.1687
	           </S> 0.1687
	              a 0.0736

         varies   473439   1 (7)
	        various 0.5492
	              D 0.5492
	         varies 0.5492
	          Parus 0.5492
	          Books 0.1687
	              , 0.1687
	           </S> 0.0736

     commencing   473447   1 (6)
	         online 0.5492
	              a 0.5492
	            but 0.5492
	     commencing 0.5492
	             or 0.1687
	            the 0.0736

             in   473550   1 (6)
	              , 0.5492
	              a 0.5492
	             in 0.5492
	             iu 0.5492
	              } 0.2236
	           </S> 0.0736

        nesting   473628   1 (8)
	        nesting 0.5492
	        Listing 0.5492
	              a 0.5178
	           than 0.5178
	             of 0.1687
	              , 0.1687
	           </S> 0.1687
	              . 0.0736

     operations   473636   1 (8)
	        options 0.7789
	     operations 0.7789
	             it 0.5492
	           they 0.5492
	              a 0.5178
	          birds 0.1687
	              , 0.0736
	           </S> 0.0497

      sheltered   473772   1 (10)
	      sheltered 0.7789
	             to 0.5492
	         caused 0.5492
	       affected 0.5492
	        getting 0.5017
	           </S> 0.2388
	          there 0.2388
	              , 0.2388
	              a 0.1687
	          legal 0.0736

          Larks   473842   1 (11)
	          Larks 0.7789
	              I 0.5492
	          Parus 0.5492
	          Links 0.5324
	           hand 0.1687
	           </S> 0.1687
	         things 0.1687
	              , 0.1687
	         people 0.1687
	      countries 0.1687
	           than 0.0736

          grass   473864   1 (8)
	          great 0.7789
	          grass 0.7789
	      probation 0.5492
	              , 0.5178
	              a 0.2388
	             us 0.2388
	           </S> 0.2388
	            the 0.0736

       feathers   473988   1 (9)
	       feathers 0.7789
	          other 0.5492
	             us 0.5492
	           </S> 0.1687
	             it 0.1687
	              a 0.1687
	              . 0.1687
	           even 0.1687
	              , 0.0736

           bird   474178   2 (10)
	            cia 0.7789
	           bird 0.5178
	             by 0.2388
	              . 0.1687
	             is 0.1687
	              , 0.1687
	              a 0.1687
	          there 0.1687
	           </S> 0.1687
	            the 0.0736

            but   474239   1 (6)
	            but 0.5492
	              a 0.5492
	             us 0.5492
	              , 0.5492
	              } 0.2236
	           </S> 0.0736

            Sky   474362   5 (11)
	            Pyi 0.7789
	          Black 0.5492
	           self 0.5492
	          three 0.5492
	            Sky 0.5178
	            non 0.2388
	             by 0.2388
	              a 0.1687
	              , 0.1687
	           </S> 0.1687
	            the 0.0736

              -   474365   4 (6)
	             us 0.5492
	            the 0.5178
	              . 0.2388
	              , 0.1687
	              - 0.1687
	           </S> 0.0736

          Larks   474366   1 (10)
	          Larks 0.7789
	           side 0.5492
	         namely 0.5492
	              s 0.5492
	          Links 0.5017
	              . 0.2388
	              a 0.1687
	             up 0.1687
	             to 0.1687
	           </S> 0.0736

             In   474463   1 (6)
	              , 0.7789
	             In 0.7789
	              a 0.5492
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

      colouring   474466   1 (7)
	      colouring 0.7789
	          using 0.5492
	              , 0.3804
	              a 0.1687
	           </S> 0.1687
	       addition 0.1687
	            the 0.0736

        whitish   474496   1 (8)
	        whitish 0.7789
	              s 0.5492
	          white 0.5017
	              . 0.2388
	          which 0.2388
	              a 0.1687
	             to 0.1687
	           </S> 0.0736

         freely   474504   1 (7)
	              a 0.5492
	           free 0.5492
	         freely 0.5492
	            and 0.2388
	           </S> 0.2388
	              - 0.1687
	              , 0.0736

      sprinkled   474511   1 (7)
	      sprinkled 0.7789
	       Sprinkle 0.5492
	        printed 0.5178
	         shared 0.5017
	           </S> 0.2388
	              , 0.1687
	      available 0.0736

          smoky   474531   1 (9)
	          smoky 0.7789
	           some 0.7789
	            non 0.5492
	              a 0.5178
	           </S> 0.2388
	           gray 0.2388
	         yellow 0.1687
	              . 0.1687
	              , 0.0736

         greyer   474558   1 (8)
	         greyer 0.7789
	              , 0.2388
	          great 0.2388
	             us 0.2388
	              . 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

          shell   474565   1 (9)
	            non 0.5492
	              a 0.5492
	          shall 0.5492
	           Back 0.5492
	          shell 0.5492
	           sala 0.5492
	           </S> 0.5178
	              . 0.1687
	              , 0.0736

          these   474579   1 (5)
	              , 0.5492
	          these 0.5492
	              a 0.5492
	              } 0.2236
	           </S> 0.0736

        marking   474719   2 (8)
	        working 0.7789
	        marking 0.5492
	              a 0.5492
	       elements 0.3804
	           </S> 0.2388
	              . 0.1687
	              , 0.1687
	           than 0.0736

            but   474749   1 (6)
	            but 0.5492
	             us 0.5492
	              , 0.5492
	              a 0.5492
	              } 0.2236
	           </S> 0.0736

          Larks   474792   1 (8)
	          Parus 0.7789
	          Larks 0.7789
	              , 0.5492
	          Links 0.5178
	          Large 0.5178
	           time 0.1687
	           same 0.1687
	           </S> 0.0736

         Jerdon   474838   2 (8)
	              , 0.7789
	           were 0.5492
	            the 0.5492
	          Aedon 0.5492
	         Jerdon 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

             cf   474846   3 (10)
	              \ 0.5492
	     Restricted 0.5492
	             cf 0.5178
	             of 0.2388
	              - 0.2388
	           </S> 0.1687
	            The 0.1687
	              s 0.1687
	              a 0.1687
	          <UNK> 0.0736

            Cat   474849   2 (10)
	              a 0.7789
	            Cat 0.5492
	            cia 0.5492
	             at 0.5178
	              ) 0.5017
	          v2.9s 0.5017
	              , 0.2388
	           </S> 0.2388
	              - 0.2388
	              . 0.0736

          Birds   474854   3 (8)
	              , 0.7789
	          first 0.7789
	              s 0.5492
	           Bird 0.5492
	          Birds 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

             E.   474861 inf (9)
	             EE 0.5492
	              ( 0.5492
	           Cats 0.5492
	              a 0.5492
	             El 0.5492
	           </S> 0.5492
	             us 0.5178
	             of 0.1687
	            the 0.0736

             I.   474864   1 (7)
	             J. 0.5492
	              a 0.5492
	              I 0.5492
	             In 0.5178
	              . 0.2388
	              , 0.0736
	           </S> 0.0736

             II   474879   1 (8)
	             In 0.7789
	              , 0.7789
	             II 0.7789
	             us 0.5492
	              a 0.5492
	              " 0.2388
	              ) 0.2388
	           </S> 0.0736

             It   474970   1 (7)
	             It 0.7789
	              . 0.7789
	              , 0.7789
	              a 0.5492
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

     associates   474973   1 (5)
	     associated 0.7789
	     associates 0.7789
	              , 0.3804
	           </S> 0.1687
	             is 0.0736

    frequenting   475000   1 (8)
	    frequenting 0.7789
	          rufus 0.5492
	              a 0.5492
	            and 0.5492
	           </S> 0.5492
	           free 0.2388
	           with 0.1687
	            the 0.0736

           bare   475016   3 (9)
	           sons 0.5492
	            arz 0.5492
	           tall 0.5178
	           bare 0.5178
	           back 0.2388
	           same 0.1687
	            two 0.1687
	              - 0.1687
	           </S> 0.0736

              -   475026   3 (6)
	             us 0.7789
	            the 0.5178
	           </S> 0.1687
	              . 0.1687
	              - 0.1687
	              , 0.0736

          downs   475027   2 (9)
	              s 0.5492
	          downs 0.5178
	           down 0.2388
	              . 0.2388
	              a 0.1687
	           mail 0.1687
	             to 0.1687
	             up 0.1687
	           </S> 0.0736

             it   475093   1 (7)
	              a 0.5492
	              , 0.5492
	            can 0.5492
	             it 0.5492
	             iu 0.5492
	              } 0.2236
	           </S> 0.0736

          grain   475111   1 (9)
	             co 0.5492
	          great 0.5492
	             us 0.5492
	          Multi 0.5492
	          grain 0.5492
	              a 0.5178
	           </S> 0.5178
	              , 0.5017
	            the 0.0736

        retires   475143   1 (9)
	        retires 0.7789
	           turn 0.5492
	       required 0.5178
	           </S> 0.1687
	         wanted 0.1687
	              , 0.1687
	           have 0.1687
	              a 0.1687
	           been 0.0736

           from   475200   1 (5)
	           from 0.5492
	              a 0.5492
	              s 0.5492
	              , 0.5492
	           </S> 0.0736

             II   475298   1 (7)
	              , 0.7789
	             In 0.7789
	             II 0.7789
	             us 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

           both   475378   1 (5)
	              a 0.5492
	              , 0.5492
	           both 0.5492
	              } 0.2236
	           </S> 0.0736

           Lark   475454   1 (10)
	              a 0.5492
	             of 0.5492
	           Lark 0.5492
	            arz 0.5492
	            are 0.5324
	              , 0.2388
	           </S> 0.2388
	              . 0.2388
	          world 0.1687
	         estate 0.0736

             's   475458   5 (9)
	             us 0.5492
	           time 0.5492
	              a 0.5492
	             is 0.5178
	              . 0.2388
	             's 0.2388
	          Books 0.1687
	              , 0.1687
	           </S> 0.0736

        Towards   475462 inf (8)
	              , 0.7789
	          There 0.7789
	         Toward 0.5492
	              a 0.5492
	             at 0.5492
	       Tawadros 0.5492
	              " 0.2388
	           </S> 0.0736

          April   475501   1 (6)
	              , 0.7789
	          April 0.7789
	              a 0.5492
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

         flocks   475540   1 (7)
	         flocks 0.7789
	              a 0.5492
	    motivations 0.5492
	            and 0.1687
	              , 0.1687
	           </S> 0.1687
	           from 0.0736

          nnite   475553 inf (9)
	           site 0.7789
	        divided 0.5492
	           nite 0.5492
	         nanite 0.5492
	         annite 0.5492
	           </S> 0.1687
	           more 0.1687
	              a 0.1687
	              , 0.0736

           into   475559   1 (6)
	              , 0.5492
	             to 0.5492
	           </S> 0.5492
	           into 0.5492
	              a 0.5492
	          minor 0.5492

         troops   475569   1 (9)
	         troops 0.7789
	     dimensions 0.5492
	          Books 0.5492
	           room 0.5178
	              a 0.5178
	              . 0.5017
	           </S> 0.2388
	              , 0.1687
	       majority 0.0736

     containing   475577   1 (7)
	              a 0.5492
	           </S> 0.5492
	            and 0.5492
	     containing 0.5492
	          rufus 0.5492
	         online 0.5492
	            the 0.0736

          man}'   475588   4 (8)
	            man 0.7789
	          major 0.7114
	           mana 0.5492
	           many 0.5017
	              , 0.3804
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

      tliousand   475594   1 (5)
	           </S> 0.5492
	         tousan 0.5492
	              , 0.5492
	              a 0.5492
	       thousand 0.5492

          birds   475604   1 (4)
	           bird 0.5492
	             is 0.5492
	          birds 0.5492
	          Parus 0.5492

          qnite   475615   4 (10)
	           nite 0.7789
	         quinte 0.5492
	        mammals 0.5492
	          quite 0.5178
	           site 0.5178
	             to 0.1687
	              , 0.1687
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

      darkening   475621   1 (8)
	              , 0.5492
	           </S> 0.5492
	             of 0.5492
	             us 0.5492
	              a 0.5492
	           does 0.5492
	              . 0.5492
	      darkening 0.5492

        flj'ing   475682   5 (13)
	             us 0.5492
	           fing 0.5492
	            wet 0.5492
	          fling 0.5492
	         flying 0.5178
	         filing 0.5178
	        looking 0.5017
	              , 0.2388
	              a 0.1687
	           they 0.1687
	           </S> 0.1687
	             it 0.1687
	            the 0.0736

              .   475689   1 (7)
	            are 0.5492
	           </S> 0.5492
	             us 0.5492
	              , 0.5492
	            the 0.5492
	            was 0.5492
	              . 0.5492

          Great   475691   1 (6)
	              , 0.7789
	              I 0.7789
	          Great 0.7789
	              " 0.2388
	              ) 0.2388
	           </S> 0.0736

       nnnibers   475697   1 (9)
	        numbers 0.5492
	         things 0.5492
	       einibers 0.5492
	        nimbers 0.5492
	       Enniberg 0.5492
	       innitens 0.5492
	              , 0.5017
	           </S> 0.2388
	        Britain 0.0736

            are   475706   1 (5)
	              , 0.5492
	            arz 0.5492
	            are 0.5492
	              I 0.5492
	           </S> 0.5492

       conntr}-   475738 inf (11)
	        conners 0.7789
	         conner 0.7789
	         contro 0.7789
	              . 0.5492
	              a 0.5492
	              , 0.5492
	          major 0.5492
	         contra 0.5324
	        control 0.2388
	          world 0.1687
	           </S> 0.0736

            for   475781   1 (6)
	              , 0.5492
	            for 0.5492
	              a 0.5492
	            arz 0.5492
	              } 0.2236
	           </S> 0.0736

             On   475830   1 (8)
	              , 0.7789
	            the 0.7789
	             in 0.7789
	             On 0.7789
	             us 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

         parade   475862   1 (7)
	         parade 0.7789
	              a 0.5492
	           part 0.5492
	          parva 0.5492
	             of 0.2388
	           </S> 0.2388
	              , 0.0736

        groiind   475869 inf (11)
	        growing 0.5492
	          groin 0.5492
	        gridino 0.5492
	        heroiin 0.5492
	        groined 0.5492
	              a 0.5178
	           will 0.5017
	          route 0.2388
	              , 0.1687
	           </S> 0.1687
	              . 0.0736

              ,   475876   1 (5)
	            the 0.5492
	              , 0.5492
	             us 0.5492
	           </S> 0.5492
	          begin 0.5492

             at   475878   1 (8)
	           </S> 0.5492
	             at 0.5492
	            and 0.5492
	              | 0.5492
	              I 0.5492
	            arz 0.5492
	            you 0.1687
	            the 0.0736

        Kamptee   475881   1 (9)
	           know 0.5492
	           have 0.5492
	              a 0.5492
	              , 0.5492
	           </S> 0.5492
	            all 0.5492
	        Kamptee 0.5492
	             us 0.2388
	           your 0.0736

              I   475890   1 (8)
	              a 0.5492
	            and 0.5492
	              I 0.5492
	           </S> 0.5492
	             us 0.5178
	             of 0.1687
	            who 0.1687
	            the 0.0736

         bagged   475892   1 (7)
	         bagged 0.7789
	              a 0.5492
	          based 0.5178
	            was 0.1687
	           </S> 0.1687
	              , 0.1687
	             'm 0.0736

         twelve   475899   1 (8)
	          there 0.5492
	            not 0.5492
	         twelve 0.5492
	              a 0.1687
	           </S> 0.1687
	              , 0.1687
	            the 0.0942
	            and 0.0736

          birds   475912   3 (9)
	              a 0.5492
	          Parus 0.5492
	          first 0.5178
	          birds 0.5178
	              . 0.1687
	           </S> 0.1687
	          years 0.1687
	              , 0.1687
	             or 0.0736

    discharging   475924   1 (8)
	    discharging 0.7789
	             us 0.5492
	        hearing 0.5178
	              , 0.2388
	           they 0.2388
	           </S> 0.2388
	              a 0.1687
	            the 0.0736

           both   475936   1 (8)
	           both 0.7789
	            but 0.7789
	              . 0.2388
	          their 0.1687
	           </S> 0.1687
	              , 0.1687
	              a 0.1687
	            the 0.0736

        wonnded   475959  10 (17)
	           wonn 0.5492
	         wonden 0.5492
	        Sonndeg 0.5492
	            the 0.5492
	           guns 0.5492
	        wondend 0.5492
	         wonned 0.5492
	          wonde 0.5492
	             us 0.5492
	        wounded 0.5178
	          would 0.5017
	              a 0.2388
	              . 0.2388
	              , 0.1687
	           </S> 0.1687
	          other 0.1687
	             of 0.0736

          birds   475967   1 (7)
	              , 0.5492
	           </S> 0.5492
	              a 0.5492
	           them 0.5492
	          first 0.5492
	          birds 0.5492
	          Parus 0.5492

        escaped   475973   1 (7)
	        escaped 0.7789
	         estate 0.5492
	              a 0.5178
	              ) 0.2388
	           </S> 0.1687
	              , 0.0736
	              . 0.0497

           They   475982   1 (7)
	           They 0.7789
	              , 0.7789
	            The 0.7114
	          minor 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

        alwa3'S   476069   2 (7)
	          alway 0.7789
	          often 0.2388
	         always 0.2388
	              , 0.1687
	              a 0.1687
	           </S> 0.1687
	            not 0.0736

         called   476077   1 (7)
	           </S> 0.5492
	              a 0.5492
	              , 0.5492
	             to 0.5492
	           call 0.5492
	         called 0.5492
	        cablets 0.5492

        Ortolan   476084   1 (9)
	     Hottentots 0.5492
	        Ortolan 0.5492
	        Oriolus 0.5492
	          today 0.5178
	           </S> 0.1687
	            for 0.1687
	              a 0.1687
	              , 0.1687
	              " 0.0736

             by   476092   1 (7)
	             us 0.5492
	              a 0.5492
	            the 0.5492
	             by 0.5492
	              , 0.2388
	           </S> 0.2388
	        Bunting 0.0736

           They   476115   1 (7)
	           They 0.7789
	              , 0.7789
	            The 0.7114
	              a 0.5492
	         Return 0.5492
	              " 0.2388
	           </S> 0.0736

          the}'   476194 inf (8)
	             M. 0.5492
	         sister 0.5492
	           thee 0.5178
	           </S> 0.1687
	              a 0.1687
	          their 0.1687
	              , 0.1687
	            the 0.0736

          breed   476200   1 (8)
	              . 0.5492
	          breed 0.5492
	           been 0.5492
	              a 0.5492
	             it 0.5492
	              , 0.5492
	           </S> 0.5492
	             us 0.5492

         laying   476352   4 (8)
	           last 0.5492
	             J. 0.5492
	         within 0.5492
	         laying 0.5178
	           </S> 0.1687
	              , 0.1687
	              a 0.1687
	            the 0.0736

         rufous   476406   1 (9)
	         rufous 0.7789
	          rufus 0.7789
	          white 0.5492
	          radio 0.5492
	           your 0.2388
	           </S> 0.1687
	              a 0.1687
	              , 0.1687
	            the 0.0736

          spots   476413   1 (10)
	              a 0.5492
	          spots 0.5492
	         spinas 0.5492
	           site 0.5492
	              ) 0.5324
	             on 0.5178
	           </S> 0.5178
	              . 0.5178
	              , 0.5017
	              - 0.0736

      unspotted   476447   1 (8)
	      unspotted 0.7789
	              a 0.5492
	              " 0.5492
	              , 0.5492
	           used 0.5492
	            and 0.5492
	           </S> 0.5492
	            the 0.0736

         yellow   476457   2 (8)
	            the 0.7789
	              I 0.5492
	         yellow 0.5492
	              a 0.5492
	           well 0.5492
	           </S> 0.5324
	              , 0.2388
	           from 0.0736

          Larks   476511   1 (9)
	          Parus 0.7789
	          Larks 0.7789
	              , 0.5492
	          Links 0.5178
	          Large 0.5178
	           same 0.1687
	           time 0.1687
	          other 0.1687
	           </S> 0.0736

        insects   476518   5 (8)
	              ( 0.5492
	           </S> 0.5492
	              a 0.5492
	            and 0.5492
	        insects 0.5178
	            its 0.2388
	            who 0.1687
	            the 0.0736

           Herr   476601   3 (7)
	              , 0.7789
	           Help 0.7789
	              a 0.5492
	           Herr 0.5492
	            arz 0.5492
	              " 0.2388
	           </S> 0.0736

          Gatke   476606 inf (9)
	          Games 0.5492
	          Gatka 0.5492
	           Gate 0.5492
	        Gataket 0.5492
	              a 0.5492
	         Doctor 0.5178
	             M. 0.5178
	           </S> 0.1687
	              , 0.0736

           says   476612   2 (8)
	           </S> 0.7789
	              a 0.5492
	           sala 0.5492
	          Ringe 0.5492
	            say 0.5492
	         Kaefer 0.5492
	           says 0.5492
	              , 0.0736

     Heligoland   476633   1 (10)
	     Heligoland 0.7789
	              , 0.2388
	             it 0.2388
	           them 0.2388
	         Health 0.2388
	             us 0.2388
	        America 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

              "   476644   1 (8)
	              ( 0.5492
	           </S> 0.5492
	              " 0.5492
	            and 0.5492
	              = 0.5492
	             us 0.5178
	             of 0.1687
	            the 0.0736

            pp.   476646   4 (11)
	            ppp 0.7789
	            ppm 0.7789
	              s 0.5492
	             pp 0.5178
	             up 0.5178
	              a 0.2388
	          <UNK> 0.1687
	              , 0.1687
	           said 0.1687
	              . 0.1687
	           </S> 0.0736

       359-360)   476650 inf (9)
	          29-30 0.7789
	             35 0.7789
	              , 0.5492
	              s 0.5492
	              " 0.5492
	              a 0.5492
	            the 0.5492
	           </S> 0.1687
	          <UNK> 0.0736

              :   476659 inf (6)
	             us 0.5492
	           </S> 0.5492
	              ) 0.5492
	            the 0.5492
	          <UNK> 0.5492
	              , 0.5492

              "   476663   6 (8)
	              , 0.5492
	              : 0.5492
	          party 0.5492
	           open 0.5492
	             us 0.5178
	              " 0.3430
	            the 0.1687
	           </S> 0.0736

           Lark   476723   1 (10)
	           Lark 0.7789
	           Last 0.7789
	          vased 0.5492
	              a 0.5492
	            arz 0.5492
	           girl 0.1687
	              . 0.1687
	           </S> 0.1687
	              , 0.1687
	            bit 0.0736

          being   476728   1 (7)
	          being 0.7789
	        bouquet 0.5492
	              a 0.5492
	    Calandrella 0.5324
	              . 0.2388
	              , 0.1687
	           </S> 0.0736

          ver}-   476795   4 (8)
	          verve 0.7789
	            ver 0.7789
	             us 0.5492
	           very 0.5178
	              , 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

      solitar}'   476801   1 (8)
	       solitary 0.5492
	              a 0.5492
	      solitario 0.5492
	           site 0.5492
	              / 0.5492
	           rare 0.5492
	              , 0.5492
	           </S> 0.5492

      instances   476811   1 (3)
	        instans 0.5492
	      insurance 0.5492
	      instances 0.5492

              .   476820   4 (6)
	             us 0.5492
	            the 0.2388
	           </S> 0.2388
	              , 0.1687
	              . 0.1687
	             of 0.0736

             In   476823   1 (6)
	             In 0.7789
	              , 0.7789
	             us 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

            and   477069   1 (5)
	              , 0.5492
	            and 0.5492
	            arz 0.5492
	              } 0.2236
	           </S> 0.0736

        besides   477073   2 (8)
	          found 0.5492
	        besides 0.5178
	           with 0.2388
	       business 0.2388
	              a 0.1687
	           </S> 0.1687
	              , 0.1687
	            the 0.0736

              I   477171   1 (6)
	              , 0.7789
	              I 0.7789
	            the 0.7789
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

             it   477235   1 (7)
	          which 0.5492
	              a 0.5492
	             it 0.5492
	             iu 0.5492
	              , 0.5492
	              } 0.2236
	           </S> 0.0736

   momeutaril}-   477247   1 (6)
	    momentarily 0.5492
	             so 0.2388
	              , 0.2388
	           more 0.2388
	           </S> 0.1687
	              a 0.0736

        stunned   477260   1 (7)
	              , 0.5492
	          major 0.5492
	        stunned 0.5492
	           </S> 0.5492
	             to 0.5492
	              a 0.5492
	          since 0.5492

          ver\'   477342   4 (11)
	             's 0.5492
	            ver 0.5492
	          verve 0.5492
	           very 0.5178
	           will 0.5178
	             to 0.2388
	            the 0.2388
	           </S> 0.2388
	              a 0.2388
	              , 0.1687
	           from 0.0736

           soon   477348   1 (8)
	              , 0.5492
	           soon 0.5492
	           </S> 0.5492
	           some 0.5492
	            the 0.5492
	              a 0.5492
	        however 0.5492
	           sala 0.5492

extraordinarilj''   477365   1 (9)
	    information 0.5492
	           will 0.5492
	extraordinarily 0.5492
	             us 0.5492
	          quite 0.5178
	              , 0.5178
	              . 0.5178
	           </S> 0.5017
	              a 0.0736

           tame   477383   1 (8)
	              , 0.5492
	        friends 0.5492
	             of 0.5492
	              a 0.5492
	           time 0.5492
	           tame 0.5492
	           </S> 0.5492
	           lava 0.5492

             It   477389   1 (6)
	              , 0.7789
	             It 0.7789
	             us 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

            but   477514   1 (6)
	              , 0.5492
	              a 0.5492
	            but 0.5492
	             us 0.5492
	              } 0.2236
	           </S> 0.0736

            Its   477575   1 (7)
	            Its 0.7789
	             It 0.7789
	              , 0.7789
	              a 0.5492
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

        Bunting   477613   1 (10)
	        Bunting 0.7789
	         during 0.7789
	              . 0.5492
	              a 0.5492
	           less 0.5492
	              , 0.5492
	          major 0.1687
	            man 0.1687
	         result 0.1687
	           </S> 0.0736

           than   477621   1 (7)
	           than 0.7789
	              a 0.5492
	          torax 0.5492
	             of 0.5178
	              . 0.2388
	              , 0.0942
	           </S> 0.0736

          Sk}--   477628 inf (10)
	             Sk 0.7789
	           Skip 0.7114
	              , 0.5492
	            the 0.5492
	           Skin 0.5178
	          major 0.1687
	         single 0.1687
	           year 0.1687
	           </S> 0.0736
	            new 0.0736

           Lark   477634   1 (8)
	           </S> 0.5492
	           part 0.5492
	            ago 0.5492
	              , 0.5492
	             of 0.5492
	           Lark 0.5492
	              a 0.5492
	            arz 0.5492

              .   477638   3 (6)
	            the 0.7789
	             us 0.5492
	              . 0.2388
	          Books 0.1687
	              , 0.1687
	           </S> 0.0736

              I   477640   1 (7)
	              I 0.7789
	              , 0.7789
	            the 0.7789
	             us 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

         Canary   477652   1 (8)
	         Canary 0.7789
	         Canada 0.5178
	            top 0.2388
	              1 0.2388
	              , 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

              -   477658   4 (7)
	            the 0.7789
	           your 0.5492
	             us 0.5492
	              - 0.5178
	              , 0.5017
	           </S> 0.2388
	        Islands 0.0736

              a   477762   1 (6)
	              , 0.5492
	              a 0.5492
	             us 0.5492
	            the 0.5492
	              } 0.2236
	           </S> 0.0736

       Familx-A   477857   2 (6)
	      FamiliaDA 0.5492
	         Family 0.5178
	              a 0.2388
	              ) 0.1687
	              , 0.1687
	           </S> 0.0736

             LA   477866   1 (7)
	              " 0.5492
	              a 0.5492
	              , 0.5492
	             LA 0.5492
	             us 0.5492
	             of 0.5492
	           </S> 0.5492

              E   477876 inf (9)
	              , 0.7789
	             El 0.7789
	            the 0.7789
	             RE 0.5492
	             us 0.5492
	             EE 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

           Lark   477891   1 (10)
	           Lark 0.7789
	              s 0.5492
	           side 0.5492
	             St 0.5492
	            Vol 0.5492
	            are 0.5017
	              . 0.2388
	              a 0.1687
	             to 0.1687
	           </S> 0.0736

              .   477895   5 (8)
	            the 0.7789
	           Bilk 0.5492
	         Island 0.5492
	             us 0.5492
	              - 0.2388
	              . 0.2388
	              , 0.1687
	           </S> 0.0736

       Olocurvs   477898 inf (9)
	              , 0.7789
	        locuras 0.5492
	         locura 0.5492
	       closures 0.5492
	          Olous 0.5492
	         Olorus 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

      alpcstris   477907   1 (8)
	      alpestris 0.5492
	      palustris 0.5492
	         astris 0.5492
	              I 0.5492
	              , 0.5492
	       addition 0.5492
	           </S> 0.5492
	      configure 0.5492

              ,   477916 inf (3)
	             of 0.5492
	             us 0.5492
	            the 0.5492

           LiNX   477918 inf (8)
	            LNX 0.5492
	           LiNK 0.5492
	           List 0.5492
	           LiXi 0.5492
	            cia 0.5492
	             pp 0.2388
	              i 0.2388
	            the 0.0736

              .   477922   1 (5)
	              , 0.5492
	             us 0.5492
	              . 0.5492
	            the 0.5492
	           </S> 0.0736

         BREEDS   477925 inf (11)
	              I 0.7789
	              , 0.7789
	         BRENDA 0.5492
	           BRES 0.5492
	          BREEF 0.5492
	          BREAK 0.5492
	         BREEAM 0.5492
	        FREEBSD 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

         within   477932   1 (5)
	              a 0.5492
	         within 0.5492
	              , 0.5178
	             of 0.5178
	           </S> 0.0736

        bej'ond   477957   1 (10)
	         bedone 0.5492
	           bond 0.5492
	          bjond 0.5492
	         beyond 0.5492
	             to 0.5178
	              A 0.5017
	              . 0.1687
	              , 0.1687
	           </S> 0.0942
	             of 0.0736

            the   477965   1 (4)
	           </S> 0.5492
	            the 0.5492
	             us 0.5492
	              , 0.5492

             on   478047   1 (6)
	              a 0.5492
	             us 0.5492
	             on 0.5492
	              , 0.5492
	              } 0.2236
	           </S> 0.0736

       eastward   478164   1 (7)
	              , 0.5492
	            the 0.5492
	              a 0.5492
	       Password 0.5492
	       eastward 0.5492
	              } 0.2236
	           </S> 0.0736

      Turkestan   478191   1 (9)
	      Turkestan 0.7789
	          great 0.5492
	             us 0.5492
	           turn 0.3804
	           fact 0.2388
	              , 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

             S.   478202 inf (10)
	            and 0.5492
	             US 0.5492
	          China 0.5492
	              a 0.5492
	           </S> 0.5492
	             SS 0.5492
	              s 0.5492
	             So 0.5492
	           your 0.2388
	            the 0.0736

             To   478229   1 (7)
	              , 0.7789
	             To 0.7789
	              s 0.5492
	           Asia 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

           when   478331   1 (6)
	              a 0.5492
	           when 0.5492
	              , 0.1687
	              . 0.1687
	           </S> 0.1687
	            New 0.0736

      according   478451   1 (5)
	              I 0.5492
	      according 0.5492
	              , 0.5492
	              } 0.2236
	           </S> 0.0736

          Aplin   478468   1 (11)
	          Aplin 0.7789
	            All 0.7789
	              1 0.5492
	            the 0.5492
	        changes 0.5492
	              a 0.5492
	          Aedon 0.5492
	              , 0.2388
	           </S> 0.1687
	          <UNK> 0.1687
	       Chairman 0.0736

             In   478643   1 (6)
	              , 0.7789
	             In 0.7789
	             us 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

           Fair   478665   1 (8)
	           Fair 0.7789
	            For 0.7789
	           lava 0.5492
	              . 0.1687
	           </S> 0.1687
	              , 0.1687
	              a 0.1687
	            the 0.0736

         partly   478775   2 (7)
	           part 0.7789
	         partly 0.5492
	          parva 0.5492
	              a 0.5178
	             of 0.2388
	           </S> 0.1687
	              , 0.0736

         creamy   478912   1 (9)
	         creamy 0.5492
	         credit 0.5492
	          <UNK> 0.5178
	              a 0.5178
	           </S> 0.2388
	           jobs 0.2388
	              - 0.2388
	              , 0.0942
	              . 0.0736

            the   478927   1 (6)
	              , 0.5492
	            the 0.5492
	             us 0.5492
	             in 0.5492
	              } 0.2236
	           </S> 0.0736

       erectile   478957   2 (10)
	        receive 0.7789
	       erectile 0.7114
	     adjustable 0.5492
	              , 0.5492
	              a 0.5492
	        adverse 0.5492
	         apical 0.5492
	              . 0.5492
	   introduction 0.5492
	           </S> 0.0736

           tuft   478966   3 (10)
	             of 0.7789
	           that 0.7789
	           tuft 0.5492
	              I 0.5492
	          based 0.5492
	          rufus 0.5492
	              , 0.5324
	           </S> 0.5178
	         tissue 0.5178
	    dysfunction 0.0736

         cheeks   479009   1 (10)
	      therefore 0.5492
	            and 0.5492
	              ( 0.5492
	         cheeks 0.5492
	           </S> 0.5492
	              a 0.5492
	      workshops 0.5492
	          there 0.1687
	        however 0.1687
	            the 0.0736

            ear   479072   1 (8)
	            ear 0.5492
	              a 0.5492
	            and 0.5492
	           year 0.5492
	              , 0.5492
	            arz 0.5492
	              } 0.2236
	           </S> 0.0736

         creamy   479084   2 (10)
	              - 0.7789
	          great 0.5492
	         creamy 0.5492
	        sources 0.5492
	           fife 0.5492
	          white 0.5178
	              a 0.5178
	           </S> 0.2388
	              , 0.0736
	              . 0.0736

           nape   479112   1 (7)
	              , 0.5492
	           nape 0.5492
	              a 0.5492
	           name 0.5492
	           lava 0.5492
	              } 0.2236
	           </S> 0.0736

              ,   479124   3 (5)
	             us 0.7789
	            the 0.5178
	              , 0.1687
	           </S> 0.1687
	             of 0.0736

      vinaceous   479170   4 (10)
	       brownish 0.7789
	              - 0.7789
	          <UNK> 0.7789
	        process 0.5492
	           Eyes 0.5492
	      vinaceous 0.5492
	              a 0.5178
	           </S> 0.2388
	              . 0.0736
	              , 0.0736

           wing   479188   1 (7)
	           with 0.5492
	              , 0.5492
	          minor 0.5492
	              a 0.5492
	           wing 0.5492
	              } 0.2236
	           </S> 0.0736

              -   479192   3 (5)
	             us 0.7789
	            the 0.5178
	           </S> 0.1687
	              - 0.1687
	              , 0.0736

         quills   479221   1 (7)
	          quite 0.5492
	              , 0.5492
	              a 0.5492
	         quills 0.5492
	         quelea 0.5492
	              } 0.2236
	           </S> 0.0736

          smoky   479228   2 (5)
	              a 0.7789
	          smoky 0.5492
	          story 0.5492
	           </S> 0.2388
	              , 0.0736

          white   479259   1 (8)
	          white 0.7789
	          while 0.7789
	      partition 0.5492
	             of 0.5492
	              a 0.5492
	              , 0.1687
	           </S> 0.1687
	           care 0.0736

           ashy   479293   1 (11)
	           ashy 0.7789
	           alba 0.7789
	              I 0.5492
	            non 0.5492
	           well 0.5492
	          trade 0.5492
	             as 0.5178
	              , 0.2388
	           your 0.1687
	           </S> 0.1687
	            the 0.0736

              -   479297   6 (6)
	            the 0.5492
	             us 0.5492
	           </S> 0.2388
	              . 0.2388
	              , 0.1687
	              - 0.0736

        margins   479298   1 (9)
	        margins 0.7789
	          serif 0.5492
	              s 0.5492
	           offs 0.5492
	              . 0.2388
	             to 0.1687
	              a 0.1687
	           mail 0.1687
	           </S> 0.0736

       feathers   479308   1 (7)
	           some 0.5492
	              , 0.5492
	       features 0.5492
	              a 0.5492
	       feathers 0.5492
	              } 0.2236
	           </S> 0.0736

        greyish   479329   1 (10)
	           Free 0.5492
	            non 0.5492
	        greyish 0.5492
	           side 0.5178
	              a 0.2388
	              . 0.1687
	             of 0.1687
	           </S> 0.1687
	              , 0.1687
	             to 0.0736

        centres   479354   1 (12)
	        centres 0.7789
	        control 0.7789
	           wire 0.5492
	           Back 0.5492
	      reference 0.5492
	        cinerea 0.5492
	              a 0.5492
	         pepper 0.2388
	              , 0.1687
	           </S> 0.1687
	              . 0.1687
	            and 0.0736

            two   479380   1 (6)
	              , 0.5492
	              a 0.5492
	            two 0.5492
	             us 0.5492
	              } 0.2236
	           </S> 0.0736

       coloured   479406   2 (6)
	           come 0.7789
	       coloured 0.5492
	              a 0.5178
	              - 0.5178
	           </S> 0.1687
	              , 0.0736

      remainder   479515   1 (7)
	              a 0.5492
	        reviews 0.5492
	              , 0.5492
	       notified 0.5492
	      remainder 0.5492
	              } 0.2236
	           </S> 0.0736

          under   479528   1 (7)
	          under 0.5178
	             us 0.2388
	              , 0.2388
	            two 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

         creamy   479540   2 (9)
	          great 0.7789
	         creamy 0.5492
	            off 0.5492
	            the 0.5178
	              a 0.5178
	              : 0.2388
	              , 0.1687
	           </S> 0.1687
	             of 0.0736

         vinous   479564   2 (8)
	          minor 0.7789
	         vinous 0.5492
	      dependent 0.5492
	          Links 0.5492
	       emphasis 0.5492
	              , 0.5017
	           </S> 0.2388
	              a 0.0736

             on   479571   1 (7)
	             of 0.5492
	             on 0.5492
	              a 0.5492
	             us 0.5492
	              . 0.5178
	           </S> 0.5178
	              , 0.0736

         flanks   479606   1 (6)
	              , 0.5492
	              a 0.5492
	         flanks 0.5492
	         Thanks 0.5492
	              } 0.2236
	           </S> 0.0736

           bill   479635   1 (7)
	              a 0.5492
	           will 0.5492
	              , 0.5492
	           bill 0.5492
	            cia 0.5492
	              } 0.2236
	           </S> 0.0736

           iris   479657   1 (7)
	              a 0.5492
	              , 0.5492
	           iris 0.5492
	             is 0.5492
	             iu 0.5492
	              } 0.2236
	           </S> 0.0736

           deep   479662   3 (5)
	           does 0.7789
	           dark 0.7789
	           deep 0.5492
	           </S> 0.1687
	              , 0.0736

       erectile   479728   1 (10)
	       erectile 0.7789
	          major 0.5492
	        service 0.5492
	              a 0.5492
	            ear 0.5492
	           </S> 0.1687
	              , 0.1687
	              . 0.1687
	            one 0.1687
	         longer 0.0736

          tufts   479737   2 (10)
	           that 0.7789
	              a 0.5492
	         effect 0.5492
	          tufts 0.5492
	          rufus 0.5492
	              , 0.5324
	              . 0.5178
	           </S> 0.5178
	         tissue 0.5178
	    dysfunction 0.0736

        centres   479770   1 (10)
	        centres 0.7789
	        control 0.7114
	              a 0.5492
	           Back 0.5492
	         access 0.5492
	        cinerea 0.5492
	              . 0.1687
	           </S> 0.1687
	          brown 0.1687
	              , 0.0736

          Young   479818   1 (7)
	              , 0.7789
	           Your 0.7789
	          Young 0.7789
	              a 0.5492
	            the 0.5492
	              " 0.2388
	           </S> 0.0736

          moult   479990   1 (9)
	          moult 0.7789
	        trellis 0.5492
	          maura 0.5492
	          would 0.5324
	              a 0.5178
	           </S> 0.1687
	              , 0.0736
	              . 0.0736
	             of 0.0497

          adult   479996   2 (6)
	          about 0.7789
	          adult 0.5492
	              I 0.5492
	           </S> 0.1687
	              . 0.0736
	              , 0.0736

             In   480066   1 (6)
	             In 0.7789
	              , 0.7789
	             us 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

         vShore   480080   6 (11)
	         Shrove 0.7789
	           park 0.5492
	              i 0.5492
	            non 0.5492
	         griots 0.5492
	          Shore 0.5178
	            two 0.1687
	           same 0.1687
	           more 0.1687
	              - 0.1687
	           </S> 0.0736

              -   480086   1 (7)
	           </S> 0.5492
	             of 0.5492
	              , 0.5492
	             us 0.5492
	              - 0.5492
	            the 0.5492
	             is 0.5492

       inhabits   480092   2 (9)
	             of 0.7789
	             us 0.5492
	              a 0.5492
	           into 0.5492
	       inhabits 0.5492
	              - 0.5178
	             in 0.2388
	              , 0.1687
	           </S> 0.0736

         liills   480132 inf (11)
	          lills 0.5492
	             us 0.5492
	              a 0.5492
	           ills 0.5492
	         little 0.5324
	          coves 0.5017
	       outcrops 0.1687
	              . 0.1687
	           </S> 0.1687
	       mountain 0.0736
	              , 0.0736

             nf   480139   1 (7)
	           </S> 0.5492
	             of 0.5492
	              a 0.5492
	             us 0.5492
	             no 0.5492
	              , 0.5492
	             nf 0.5492

        Seebohm   480193   3 (6)
	            See 0.7789
	              , 0.7789
	              a 0.5492
	        Seebohm 0.5492
	              " 0.2388
	           </S> 0.0736

           says   480201   1 (6)
	            say 0.5492
	           sala 0.5492
	              a 0.5492
	           says 0.5492
	           </S> 0.0736
	              , 0.0736

              '   480234   2 (10)
	             us 0.7789
	       composed 0.5492
	              ' 0.5492
	             as 0.3804
	            the 0.2388
	         within 0.2388
	           </S> 0.1687
	              , 0.1687
	             to 0.1687
	             on 0.0736

          Inish   480293 inf (15)
	          Index 0.7789
	         tenant 0.5492
	              , 0.5492
	       Inisheer 0.5492
	          Inisa 0.5492
	              a 0.5492
	              . 0.5492
	        Ienishi 0.5492
	         sunset 0.5492
	           Inis 0.5492
	          minor 0.5492
	              ) 0.1687
	           year 0.1687
	          woman 0.1687
	           </S> 0.0736

       Everyone   480301   3 (5)
	              I 0.7789
	              , 0.7789
	       Everyone 0.5492
	              " 0.2388
	           </S> 0.0736

        melod3^   480412   1 (7)
	         melody 0.5178
	           more 0.5017
	              , 0.2388
	             us 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

             It   480420   1 (7)
	             us 0.5492
	              a 0.5492
	             It 0.5492
	            and 0.5492
	           </S> 0.5492
	              , 0.5492
	              . 0.5492

             At   480557   1 (7)
	             to 0.7789
	             At 0.7789
	              , 0.7789
	              a 0.5492
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

         .Uauda   480682   1 (10)
	          Usuda 0.5492
	           auda 0.5492
	           Paul 0.5492
	          Lauda 0.5492
	         Alauda 0.5492
	              , 0.2388
	           </S> 0.2388
	              a 0.1687
	            the 0.1687
	            you 0.0736

    arz'i-fis/s   480689 inf (12)
	           hook 0.5492
	   organization 0.5492
	           </S> 0.5492
	    application 0.5492
	              , 0.5492
	            and 0.5492
	            are 0.5492
	             is 0.5492
	              i 0.5492
	            the 0.5492
	       business 0.5492
	              I 0.5492

           does   480701   1 (4)
	           down 0.5492
	            the 0.5492
	           does 0.5492
	             us 0.5492

           3'OU   480709   9 (9)
	             On 0.7789
	             OU 0.7789
	            UOU 0.5492
	            YOU 0.5178
	              ' 0.5178
	              , 0.2388
	           </S> 0.2388
	              a 0.1687
	            you 0.0736

           take   480714   1 (8)
	           take 0.5492
	           lava 0.5492
	           make 0.5492
	             of 0.5492
	             is 0.5492
	              a 0.5492
	              , 0.5492
	           </S> 0.5492

             As   480808   1 (9)
	            the 0.7789
	              , 0.7789
	             is 0.7789
	           This 0.7789
	             As 0.7789
	              a 0.5492
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

          Larks   480836   1 (10)
	              a 0.5492
	          Larks 0.5492
	          sites 0.5492
	              , 0.5492
	          Parus 0.5492
	          Links 0.5178
	           time 0.1687
	           </S> 0.1687
	      knowledge 0.1687
	           site 0.0736

         stones   480916   1 (11)
	         stones 0.7789
	              . 0.5492
	   underwriters 0.5492
	              ) 0.5492
	         spinas 0.5492
	          state 0.5178
	              , 0.5178
	              a 0.2388
	           </S> 0.2388
	           them 0.1687
	            the 0.0736

      sometimes   480925   1 (5)
	              a 0.5492
	              , 0.5492
	      sometimes 0.5492
	              } 0.2236
	           </S> 0.0736

      naturally   481061   6 (7)
	              ( 0.5492
	           </S> 0.5492
	              a 0.5492
	        January 0.5492
	            and 0.5492
	      naturally 0.5178
	            the 0.0736

        differs   481071   1 (7)
	        differs 0.7789
	           does 0.5492
	            the 0.2388
	              a 0.2388
	           </S> 0.1687
	      occurring 0.0736
	              , 0.0736

     externally   481169   1 (7)
	              , 0.5492
	              a 0.5492
	        Germany 0.5492
	            and 0.5492
	     externally 0.5492
	              } 0.2236
	           </S> 0.0736

           dead   481211   2 (7)
	            cia 0.7789
	           dead 0.5178
	              , 0.2388
	           data 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

          bents   481225   1 (10)
	        worship 0.5492
	            and 0.5492
	           work 0.5492
	      therefore 0.5492
	           </S> 0.5492
	              a 0.5492
	         sedges 0.5492
	          bents 0.5492
	           best 0.5492
	            the 0.0736

            but   481239   1 (7)
	             us 0.5492
	            but 0.5492
	              , 0.5492
	              a 0.5492
	              ) 0.5178
	              } 0.2236
	           </S> 0.0736

       reindeer   481287   4 (8)
	       thinning 0.5492
	          under 0.5492
	           shut 0.5492
	       reindeer 0.5324
	           </S> 0.1687
	              a 0.1687
	              , 0.1687
	            the 0.0736

         number   481311   1 (7)
	         number 0.7789
	          price 0.5492
	              a 0.5178
	             of 0.2388
	            are 0.1687
	           </S> 0.1687
	              , 0.0736

         tlieir   481453   7 (11)
	         telier 0.5492
	           tiei 0.5492
	          tliet 0.5492
	             us 0.5492
	        Entropy 0.5492
	           ieir 0.5492
	          their 0.2388
	              , 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

      generally   481460   2 (7)
	           </S> 0.7789
	             or 0.5492
	      generally 0.5492
	              a 0.5492
	              , 0.5492
	        General 0.5492
	          <UNK> 0.0736

             To   481488   1 (6)
	              , 0.7789
	             To 0.7789
	             us 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

    conspicuous   481523   1 (9)
	          minor 0.5492
	    conspicuous 0.5492
	          could 0.5178
	             be 0.2388
	             is 0.1687
	              . 0.1687
	           </S> 0.1687
	              a 0.1687
	              , 0.0736

            Mr.   481562   1 (9)
	             My 0.5492
	              a 0.5492
	            but 0.5492
	            Mrs 0.5492
	             Mr 0.5492
	            and 0.5492
	           </S> 0.5492
	            arz 0.5492
	            the 0.0736

           Hole   481574   2 (9)
	           Home 0.7789
	           Hole 0.5492
	              I 0.5492
	       Capralos 0.5492
	           sala 0.5492
	          <UNK> 0.5178
	           </S> 0.1687
	         Island 0.0942
	              , 0.0736

            Sky   481733   2 (9)
	            See 0.7789
	              a 0.5492
	            Sky 0.5492
	            Pyi 0.5492
	             in 0.1687
	              , 0.1687
	           </S> 0.1687
	             to 0.1687
	       basename 0.0736

          Larks   481737   1 (11)
	          Larks 0.7789
	           side 0.5492
	      Tours.com 0.5492
	              s 0.5492
	            rev 0.5492
	          files 0.5492
	          Links 0.5017
	              . 0.2388
	             to 0.1687
	              a 0.1687
	           </S> 0.0736

             He   481744   1 (8)
	              , 0.7789
	             He 0.7789
	             be 0.5492
	             us 0.5492
	              a 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

            you   481867   1 (6)
	             us 0.5492
	              a 0.5492
	              , 0.5492
	            you 0.5492
	              } 0.2236
	           </S> 0.0736

        firstly   481979   1 (10)
	        firstly 0.7114
	            but 0.5492
	              s 0.5492
	          first 0.5017
	              . 0.2388
	           mail 0.1687
	              a 0.1687
	             up 0.1687
	             to 0.1687
	           </S> 0.0736

       chancing   481988   1 (10)
	            and 0.5492
	              - 0.5492
	           </S> 0.5492
	              a 0.5492
	          minor 0.5492
	       chancing 0.5492
	         online 0.5492
	            how 0.2388
	             or 0.1687
	            the 0.0736

            and   482026   1 (5)
	            and 0.5492
	              , 0.5492
	            arz 0.5492
	              } 0.2236
	           </S> 0.0736

     speciniens   482081   6 (13)
	      spiciness 0.5492
	       socinien 0.5492
	              a 0.5492
	       specient 0.5492
	        section 0.5492
	      specimens 0.5324
	        species 0.5178
	          major 0.2388
	          years 0.1687
	              . 0.1687
	           </S> 0.1687
	              , 0.1687
	              - 0.0736

           shot   482092   1 (8)
	              a 0.5492
	           shot 0.5492
	              . 0.5492
	           </S> 0.5492
	              , 0.5492
	           four 0.5492
	            she 0.5492
	           sala 0.5492

    Polygonacea   482260   1 (9)
	   Polygonaceae 0.7789
	          local 0.5017
	           time 0.2388
	             us 0.2388
	           life 0.2388
	              , 0.2236
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

            and   482272   1 (6)
	           </S> 0.5492
	            and 0.5492
	              . 0.5492
	             in 0.5492
	              , 0.5492
	            arz 0.5492

           Lark   482331   1 (11)
	           Lark 0.7789
	            arz 0.5492
	           part 0.2388
	              a 0.2388
	           kind 0.2388
	              , 0.1687
	           </S> 0.1687
	            Web 0.1687
	              . 0.1687
	           site 0.0736
	             is 0.0736

       consists   482336   2 (8)
	    Calandrella 0.7789
	       consists 0.5492
	              a 0.5492
	              I 0.5492
	          could 0.5492
	              . 0.5178
	              , 0.1687
	           </S> 0.0736

             it   482468   1 (6)
	             iu 0.5492
	             it 0.5492
	              , 0.5492
	              a 0.5492
	              } 0.2236
	           </S> 0.0736

        devours   482476   1 (9)
	        devours 0.7789
	              s 0.5492
	           your 0.5492
	         accept 0.2388
	            has 0.1687
	              , 0.1687
	              a 0.1687
	           </S> 0.1687
	             be 0.0736

          small   482484   1 (7)
	           sala 0.5492
	          small 0.5492
	          shall 0.5492
	           </S> 0.5178
	              , 0.5017
	              a 0.2388
	            the 0.0736

       mollusca   482490   1 (5)
	       mollusca 0.7789
	          house 0.5492
	              a 0.2236
	           </S> 0.1687
	              , 0.0736

      Crustacea   482503   1 (9)
	      Crustacea 0.7789
	          shall 0.5492
	              , 0.1687
	        Privacy 0.1687
	           then 0.1687
	              a 0.1687
	             to 0.1687
	           </S> 0.1687
	            the 0.0736

           cast   482513   1 (8)
	           cast 0.5492
	            can 0.5492
	            cia 0.5492
	             it 0.5492
	              a 0.5492
	              . 0.2388
	           </S> 0.1687
	              , 0.0736

          Being   482540   1 (7)
	              , 0.7789
	          Being 0.7789
	              a 0.5492
	            and 0.5492
	          being 0.5492
	              " 0.2388
	           </S> 0.0736

           both   482546   1 (4)
	           both 0.5178
	              , 0.2388
	           </S> 0.1687
	              a 0.0736

           tame   482551   1 (9)
	           tame 0.7789
	           lava 0.7789
	       intimate 0.5492
	           time 0.5017
	              , 0.2388
	          cases 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

      beautiful   482557   1 (10)
	              - 0.5492
	      beautiful 0.5492
	        because 0.5492
	          women 0.5492
	      therefore 0.5492
	           work 0.5492
	              a 0.5492
	           </S> 0.5492
	        chasten 0.5492
	            the 0.0736

          caged   482606   1 (9)
	          caged 0.7789
	          Pales 0.5492
	            can 0.2388
	           used 0.1687
	             to 0.1687
	           </S> 0.1687
	              a 0.1687
	            the 0.0942
	              , 0.0736

            and   482614   1 (5)
	              , 0.5492
	            and 0.5492
	            arz 0.5492
	              } 0.2236
	           </S> 0.0736

    frequentl}^   482640   3 (9)
	           free 0.5492
	              s 0.5492
	     frequently 0.5178
	              , 0.2388
	           </S> 0.2388
	           also 0.2388
	              a 0.1687
	            not 0.1687
	           been 0.0736

           bird   482670   1 (8)
	           bird 0.5492
	            the 0.5492
	              a 0.5492
	            cia 0.5492
	           </S> 0.5492
	              , 0.5492
	             by 0.5492
	           your 0.0736

           Herr   482683   3 (7)
	           Help 0.7789
	              , 0.7789
	              a 0.5492
	           Herr 0.5492
	            arz 0.5492
	              " 0.2388
	           </S> 0.0736

          Gatke   482688 inf (8)
	          Games 0.5492
	          Gatka 0.5492
	           Gate 0.5492
	        Gataket 0.5492
	              a 0.5492
	             M. 0.5178
	           </S> 0.1687
	              , 0.0736

       observes   482694   2 (6)
	           </S> 0.7789
	             J. 0.5492
	              a 0.5492
	          Ringe 0.5492
	       observes 0.5492
	              , 0.0736

      agreeably   482850   1 (7)
	      agreeably 0.5492
	      available 0.5492
	             to 0.5178
	              I 0.5017
	           </S> 0.2388
	              a 0.2388
	              , 0.0736

           Lark   482860   3 (9)
	              a 0.7789
	            old 0.7789
	            are 0.5492
	           well 0.5492
	           Lark 0.5492
	            arz 0.5492
	           </S> 0.5324
	              , 0.2388
	             to 0.0736

            its   482872   1 (7)
	            its 0.5492
	              a 0.5492
	         enable 0.5492
	              , 0.5492
	             iu 0.5492
	              } 0.2236
	           </S> 0.0736

        peevish   483014   1 (10)
	        peevish 0.7789
	           dead 0.5492
	          found 0.2388
	      appearing 0.2388
	     interested 0.1687
	           </S> 0.1687
	              , 0.1687
	       provided 0.1687
	              a 0.1687
	            not 0.0736

     captivit}'   483025   3 (11)
	      captivait 0.5492
	             us 0.5492
	      captivity 0.5178
	           turn 0.3804
	        general 0.2388
	           fact 0.2388
	              , 0.2388
	           case 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

            and   483037   1 (4)
	            and 0.5492
	           </S> 0.5492
	            arz 0.5492
	            the 0.0736

    impetuously   483060   1 (6)
	    impetuously 0.5492
	         people 0.3804
	              , 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

     fluttering   483072   3 (7)
	           </S> 0.7789
	            the 0.7789
	     fluttering 0.5492
	              a 0.5492
	        Company 0.5492
	      following 0.5492
	              , 0.0736

           this   483128   1 (6)
	              a 0.5492
	           this 0.5492
	              , 0.5492
	              s 0.5492
	              } 0.2236
	           </S> 0.0736

       prettily   483208   1 (9)
	       prettily 0.7789
	            non 0.5492
	              A 0.5492
	           well 0.5492
	            two 0.1687
	           same 0.1687
	              - 0.1687
	         people 0.1687
	           </S> 0.0736

           cage   483238   1 (10)
	           cage 0.7789
	            cia 0.7789
	          early 0.5492
	           self 0.5492
	            can 0.5178
	            non 0.2388
	              , 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

             My   483251   1 (7)
	             My 0.7789
	              , 0.7789
	            for 0.7789
	              a 0.5492
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

          flies   483348   1 (9)
	          flies 0.7789
	          Pales 0.5492
	           free 0.5178
	              , 0.2388
	          place 0.1687
	           </S> 0.1687
	            you 0.1687
	              a 0.0736
	            the 0.0497

        earwigs   483509   1 (9)
	        service 0.5492
	        earwigs 0.5492
	              - 0.5017
	             us 0.5017
	           </S> 0.1687
	          <UNK> 0.1687
	              a 0.1687
	              , 0.1687
	              " 0.0736

        rejects   483547   1 (8)
	        rejects 0.5324
	           were 0.2388
	            may 0.2388
	            not 0.1687
	           </S> 0.1687
	              , 0.1687
	              a 0.1687
	              I 0.0736

          Small   483596   1 (8)
	          State 0.7789
	              , 0.7789
	          Small 0.7789
	       teaching 0.5492
	              a 0.5492
	           sala 0.5492
	              " 0.2388
	           </S> 0.0736

          moths   483623   1 (8)
	          mouth 0.7789
	          moths 0.7789
	         months 0.5492
	         Anthus 0.5492
	              , 0.1687
	       business 0.1687
	           </S> 0.1687
	     businesses 0.0736

              -   483724   5 (7)
	             us 0.7789
	            the 0.5178
	             of 0.5178
	              . 0.5178
	              - 0.2388
	              , 0.1687
	           </S> 0.0736

            ear   483725   4 (10)
	              s 0.5492
	           side 0.5492
	        student 0.5492
	            ear 0.5178
	             th 0.5178
	              . 0.2388
	             to 0.1687
	           year 0.1687
	              a 0.1687
	           </S> 0.0736

            Its   483730   1 (8)
	            Its 0.7789
	             It 0.7789
	              , 0.7789
	              a 0.5492
	             us 0.5492
	              " 0.2388
	              ) 0.2388
	           </S> 0.0736

         staple   483734   1 (7)
	         staple 0.7789
	              , 0.5492
	           sala 0.5492
	          state 0.5178
	           main 0.1687
	           </S> 0.1687
	              a 0.0736

         Canary   483759   1 (8)
	         Canary 0.7789
	            non 0.5492
	        January 0.5178
	            the 0.1687
	              , 0.1687
	           that 0.1687
	           </S> 0.1687
	              a 0.0736

              -   483765   4 (8)
	            the 0.7789
	             us 0.5492
	             to 0.5324
	              - 0.5178
	              , 0.5017
	           </S> 0.2388
	          Wharf 0.1687
	        Islands 0.0736

     procurable   483801   1 (9)
	     procurable 0.7789
	         people 0.5492
	          whole 0.5492
	         reward 0.5492
	       required 0.2388
	              " 0.2388
	           </S> 0.1687
	              , 0.1687
	              a 0.0736

      Sustained   483813   3 (6)
	              , 0.7789
	              I 0.7789
	      Sustained 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

          keeps   483848   1 (8)
	           been 0.7789
	          keeps 0.7789
	       provided 0.5492
	              a 0.5178
	             of 0.2388
	              , 0.1687
	           </S> 0.1687
	            flu 0.0736

          every   483899   2 (6)
	              a 0.7789
	          every 0.5492
	             to 0.5178
	           </S> 0.2388
	              . 0.0736
	              , 0.0736

          Larks   484087   1 (8)
	          Larks 0.7789
	          Parus 0.7789
	            non 0.5492
	          Links 0.5178
	              , 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

              -   484093   3 (8)
	            the 0.5492
	             us 0.5492
	              - 0.5017
	            and 0.2388
	              . 0.2388
	           </S> 0.1687
	              , 0.1687
	              ' 0.0736

        Canar3^   484202   1 (10)
	         Canara 0.7789
	         Canary 0.7789
	          Canar 0.7789
	             us 0.5492
	         Canada 0.5178
	              , 0.2388
	              e 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

              -   484209   1 (5)
	              - 0.5492
	            the 0.5492
	             us 0.5492
	           </S> 0.5492
	              , 0.5492

        Canar}'   484267   1 (11)
	         Canary 0.5492
	         Canara 0.5492
	         Canada 0.5492
	          Canar 0.5492
	             us 0.5178
	         PayPal 0.5178
	           </S> 0.5178
	             it 0.5017
	              , 0.2388
	              a 0.1687
	             to 0.0736

             iu   484329   4 (10)
	             iu 0.5492
	              a 0.5178
	             as 0.5017
	              , 0.2388
	             in 0.2388
	           </S> 0.2388
	              . 0.2388
	            the 0.2236
	             by 0.1687
	       argument 0.0736

            one   484332   1 (7)
	              s 0.7789
	            one 0.7789
	             is 0.7789
	              a 0.5324
	            the 0.5178
	              , 0.2388
	           </S> 0.0736

           Lark   484433   1 (9)
	           Lark 0.7789
	              , 0.5492
	              a 0.5492
	            arz 0.5492
	           Last 0.5178
	            way 0.1687
	         chance 0.1687
	           </S> 0.0736
	            new 0.0736

           husk   484441   1 (9)
	           husk 0.7789
	           </S> 0.5492
	              : 0.5492
	              H 0.5492
	            has 0.5178
	             us 0.2388
	             be 0.1687
	              a 0.1687
	            the 0.0736

         ever}'   484446   4 (10)
	           corn 0.7789
	            the 0.7789
	              a 0.7789
	             us 0.5492
	          every 0.5492
	         everre 0.5492
	           even 0.5492
	           ever 0.5492
	           </S> 0.2388
	              , 0.0736

           seed   484453   1 (6)
	              , 0.5492
	              a 0.5492
	           seed 0.5492
	            see 0.5492
	           </S> 0.5492
	           sala 0.5492

           this   484481   1 (6)
	           this 0.5492
	              a 0.5492
	              , 0.5492
	             it 0.5492
	            cia 0.5492
	           </S> 0.0736

            but   484640   1 (6)
	              , 0.5492
	              a 0.5492
	            but 0.5492
	             us 0.5492
	              } 0.2236
	           </S> 0.0736

           Lark   484653   2 (10)
	           part 0.7789
	              a 0.5492
	           Lark 0.5492
	            arz 0.5492
	             of 0.5178
	            man 0.5017
	           </S> 0.2388
	            and 0.1687
	              . 0.0736
	              , 0.0736

       swallows   484658   2 (7)
	    Calandrella 0.7789
	         allows 0.5492
	       swallows 0.5492
	              a 0.5492
	            and 0.5017
	              , 0.1687
	           </S> 0.0736

         ejects   484701   1 (9)
	         ejects 0.5492
	             us 0.5492
	            use 0.2388
	           </S> 0.2388
	              . 0.2388
	              , 0.2388
	           been 0.2388
	              a 0.1687
	            the 0.0736

          later   484723   1 (10)
	          later 0.5492
	              a 0.5492
	           lava 0.5492
	          after 0.5178
	             of 0.2388
	              , 0.1687
	              . 0.1687
	           </S> 0.1687
	            gun 0.0942
	            was 0.0736

  insectivorous   484738   1 (8)
	  insectivorous 0.5492
	              a 0.5492
	    information 0.5492
	             as 0.5492
	          major 0.5017
	              , 0.2388
	           </S> 0.1687
	             of 0.0736

           When   484763   1 (6)
	           When 0.7789
	              , 0.7789
	           when 0.7789
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

          Larks   484807   3 (8)
	              , 0.7789
	              . 0.7789
	              a 0.5492
	           part 0.5492
	          Larks 0.5492
	          Parus 0.5492
	              " 0.2388
	           </S> 0.0736

          would   484813   1 (6)
	          would 0.5492
	          wolfi 0.5492
	              a 0.5492
	              , 0.1687
	           </S> 0.1687
	              ' 0.0736

        insects   484875   1 (9)
	         incest 0.7789
	        insects 0.7789
	              , 0.2388
	            him 0.2388
	             it 0.2388
	             us 0.2388
	           </S> 0.2388
	              a 0.1687
	            the 0.0736

            and   484885   1 (5)
	              , 0.5492
	            and 0.5492
	            arz 0.5492
	              } 0.2236
	           </S> 0.0736

        subsist   484917   1 (10)
	        subsist 0.7789
	            not 0.5492
	             us 0.5492
	        subject 0.5178
	             do 0.2388
	           have 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736
	              , 0.0736

          seeds   484946   1 (8)
	          needs 0.7789
	          seeds 0.7789
	              , 0.2388
	        receipt 0.2388
	           </S> 0.2388
	             us 0.2388
	              a 0.1687
	            the 0.0736

             it   484972   1 (6)
	              , 0.5492
	             iu 0.5492
	              a 0.5492
	             it 0.5492
	              } 0.2236
	           </S> 0.0736

         solely   485024   3 (8)
	           some 0.7789
	              a 0.7114
	         solely 0.5492
	           time 0.5492
	           turn 0.5492
	           </S> 0.2388
	              , 0.0942
	              . 0.0736

         soaked   485034   1 (7)
	         soaked 0.7789
	           Wall 0.5492
	              , 0.2388
	           some 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

           ants   485041   1 (10)
	           alba 0.5492
	           ants 0.5492
	       material 0.5492
	     Newspapers 0.5492
	       Watchers 0.5492
	              I 0.5492
	           </S> 0.5178
	            and 0.2388
	              , 0.1687
	             in 0.0736

              '   485045   3 (5)
	             us 0.7789
	            the 0.5178
	              ' 0.5017
	           </S> 0.1687
	              , 0.0736

        cocoons   485047   1 (10)
	        cocoons 0.7789
	           nest 0.5492
	           bees 0.5492
	        Library 0.5492
	         common 0.5178
	              a 0.2388
	              s 0.1687
	              ) 0.1687
	              , 0.0736
	           </S> 0.0736

      unnatural   485109   1 (8)
	       possible 0.5492
	          under 0.5492
	      unnatural 0.5492
	              a 0.5178
	         online 0.2388
	              , 0.1687
	           </S> 0.1687
	             of 0.0736

          Larks   485158   1 (10)
	          Larks 0.7789
	          Parus 0.7789
	              , 0.5492
	              . 0.5492
	              a 0.5492
	          Links 0.5178
	           most 0.1687
	      following 0.1687
	    information 0.1687
	           </S> 0.0736

            you   485164   2 (8)
	             of 0.7789
	              a 0.5492
	            you 0.5492
	             us 0.5492
	              . 0.2388
	           </S> 0.1687
	              , 0.1687
	              ' 0.0736

       recently   485214   1 (7)
	       recently 0.7789
	       required 0.5017
	              , 0.2388
	           </S> 0.1687
	              a 0.1687
	           they 0.1687
	            the 0.0736

      branchers   485244   1 (7)
	      branchers 0.7789
	              s 0.5492
	          There 0.2388
	              a 0.2388
	          <UNK> 0.1687
	              , 0.1687
	           </S> 0.0736

          Larks   485290   1 (10)
	          Links 0.7789
	          Larks 0.7789
	              a 0.5492
	          users 0.5492
	         errors 0.5492
	          Parus 0.5492
	           </S> 0.1687
	              . 0.1687
	              , 0.1687
	         people 0.0736

             it   485330   1 (6)
	             it 0.5492
	             iu 0.5492
	              , 0.5492
	              a 0.5492
	              } 0.2236
	           </S> 0.0736

      branchers   485381   1 (9)
	        animals 0.5492
	      branchers 0.5492
	          there 0.2388
	              , 0.1687
	              a 0.1687
	             we 0.1687
	           </S> 0.1687
	            you 0.1687
	            the 0.0736

          tamer   485399   1 (10)
	          tamer 0.7789
	      difficult 0.5492
	         manual 0.5492
	          Pales 0.5492
	           time 0.5017
	           held 0.1687
	           </S> 0.1687
	          found 0.1687
	              , 0.1687
	              a 0.0736

      perfectly   485454   1 (7)
	      perfectly 0.7789
	         people 0.5492
	          major 0.5492
	              , 0.2388
	           </S> 0.2388
	      available 0.2388
	              a 0.0736

           tame   485464   1 (11)
	           tame 0.7789
	           time 0.7789
	              a 0.5492
	       involved 0.5492
	       arranged 0.5492
	           lava 0.5492
	           free 0.5017
	           </S> 0.2388
	        located 0.2388
	              , 0.1687
	              . 0.0736

       Appendix   485574   3 (7)
	            And 0.7789
	              , 0.7789
	           prey 0.5492
	       Appendix 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

              .   485582   3 (6)
	            the 0.7789
	             us 0.5492
	              . 0.2388
	              , 0.2388
	           </S> 0.1687
	              A 0.0736

           WHEN   485585   3 (7)
	              , 0.7789
	             We 0.7789
	              a 0.5492
	           WHEN 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

             It   485854   1 (7)
	              , 0.7789
	             It 0.7789
	             us 0.5492
	              a 0.5492
	              ) 0.2388
	              " 0.2388
	           </S> 0.0736

           need   485857   2 (5)
	            new 0.7789
	           need 0.5178
	              , 0.2236
	           </S> 0.1687
	             is 0.0736

    particulars   485967   1 (8)
	    particulars 0.7789
	        reviews 0.5492
	       pictures 0.5492
	           </S> 0.1687
	              , 0.1687
	              a 0.1687
	            the 0.1687
	             of 0.0736

     respecting   485979   1 (9)
	     respecting 0.7789
	          being 0.7789
	             it 0.7789
	              a 0.5492
	             us 0.5492
	            the 0.5324
	           </S> 0.2388
	              , 0.1687
	             of 0.0736

        alreadj   486147   4 (10)
	        alejada 0.5492
	              I 0.5492
	            red 0.5492
	        already 0.5178
	              . 0.1687
	            and 0.1687
	            are 0.1687
	              , 0.1687
	           </S> 0.1687
	             to 0.0736

              '   486154 inf (5)
	            the 0.5492
	             us 0.5492
	           this 0.5492
	              , 0.5492
	           </S> 0.5492

            Had   486188   1 (8)
	             in 0.7789
	              , 0.7789
	            Had 0.7789
	            had 0.5492
	              a 0.5492
	            cia 0.5492
	              " 0.2388
	           </S> 0.0736

       articles   486206   1 (9)
	       articles 0.7789
	    masterpiece 0.5492
	           used 0.5492
	              I 0.5492
	         prices 0.5492
	      restraint 0.5178
	             of 0.5178
	           </S> 0.5178
	              , 0.0736

        Messrs.   486251   4 (9)
	        William 0.5492
	             us 0.5492
	              ] 0.5492
	         Messrs 0.5324
	        Message 0.5178
	              , 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

       Witherby   486265   1 (6)
	         either 0.5492
	       Witherby 0.5492
	             J. 0.5492
	              A 0.5017
	              , 0.0736
	           </S> 0.0736

             F.   486281 inf (8)
	              a 0.5492
	             us 0.5492
	       Spyratos 0.5492
	             FL 0.5324
	            For 0.5178
	              . 0.2388
	           </S> 0.1687
	              , 0.0736

      Ticehurst   486284   1 (7)
	            has 0.5492
	      Tilehurst 0.5492
	      Ticehurst 0.5492
	             C. 0.5178
	              A 0.5017
	              , 0.0736
	           </S> 0.0736

           been   486294   1 (5)
	           been 0.5492
	              a 0.5492
	          Aedon 0.5492
	           </S> 0.1687
	              , 0.0736

       inclttde   486357   5 (10)
	       includet 0.5492
	           </S> 0.5492
	          incle 0.5492
	              , 0.5492
	             us 0.2388
	        include 0.2388
	           have 0.1687
	            see 0.1687
	              a 0.1687
	            the 0.0736

            all   486366   1 (7)
	           </S> 0.5492
	              I 0.5492
	              , 0.5492
	           alba 0.5492
	             of 0.5492
	            the 0.5492
	            all 0.5492

       vagrants   486376   1 (10)
	       vagrants 0.7789
	        reviews 0.5492
	             us 0.5492
	              a 0.5492
	          great 0.2388
	          years 0.2388
	              , 0.1687
	         things 0.1687
	           </S> 0.0942
	            are 0.0736

      gentlemen   486665   1 (12)
	      gentlemen 0.7789
	             us 0.5492
	       Internet 0.5492
	       websites 0.5492
	    impairments 0.5492
	              - 0.5178
	              ) 0.5178
	              a 0.2388
	           </S> 0.2388
	          above 0.1687
	              , 0.1687
	             in 0.0736

             As   486677   1 (7)
	             is 0.7789
	              , 0.7789
	             As 0.7789
	             us 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

     considered   486712   1 (6)
	     considered 0.7789
	              a 0.5492
	        control 0.2388
	              , 0.1687
	           </S> 0.1687
	             of 0.0736

       visitors   486773   1 (11)
	       visitors 0.7789
	           most 0.5492
	           site 0.5492
	     viscivorus 0.5492
	              a 0.5178
	           came 0.5178
	           </S> 0.2388
	            and 0.2388
	              , 0.2388
	              . 0.1687
	             to 0.0736

         remedv   486843   4 (12)
	      remediava 0.5492
	           </S> 0.5492
	        vermede 0.5492
	         remedy 0.5178
	         recent 0.5178
	             us 0.2388
	         reduce 0.2388
	              a 0.1687
	            use 0.1687
	             be 0.1687
	           take 0.1687
	            the 0.0736

    deficienc}'   486854   3 (10)
	     deficience 0.7789
	        details 0.5492
	     deficiency 0.5178
	      deficient 0.5178
	           work 0.1687
	              - 0.1687
	           same 0.1687
	         people 0.1687
	      following 0.1687
	           </S> 0.0736

           here   486866   1 (6)
	           </S> 0.5492
	           here 0.5492
	              , 0.5492
	             of 0.5492
	            arz 0.5492
	              a 0.5492

      published   486948   1 (7)
	      published 0.7789
	              a 0.5492
	         people 0.5492
	             of 0.5492
	           </S> 0.1687
	              , 0.1687
	       changing 0.0736

         Family   486983   1 (7)
	         Family 0.7789
	              , 0.7789
	              s 0.5492
	              a 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

        TURDID^   486991 inf (12)
	            rev 0.5492
	           TURI 0.5492
	         TURYID 0.5492
	           side 0.5492
	              s 0.5492
	              p 0.5492
	            Vol 0.5492
	              , 0.5492
	              a 0.2388
	            The 0.1687
	             to 0.1687
	           </S> 0.0736

              .   486998   1 (6)
	              , 0.5492
	              . 0.5492
	           </S> 0.5492
	              - 0.5492
	             us 0.5492
	            the 0.5492

      Subfamih-   487001   3 (6)
	              I 0.7789
	              , 0.7789
	         Sufami 0.5492
	      Subfamily 0.5492
	              " 0.2388
	           </S> 0.0736

       TURDINyF   487011 inf (8)
	           </S> 0.5492
	          <UNK> 0.5492
	           TODO 0.5492
	              , 0.5492
	              a 0.5492
	         THANKS 0.5492
	        COPYING 0.5492
	    MAINTAINERS 0.5492

              .   487019 inf (3)
	             of 0.5492
	             us 0.5492
	            the 0.5492

          Dusky   487026 inf (10)
	           Dusk 0.7789
	         Duisky 0.5492
	              / 0.5492
	     Associated 0.5492
	          Dusko 0.5492
	             us 0.5178
	           just 0.5178
	           Duke 0.5017
	              - 0.1687
	           </S> 0.0736

        Turdiis   487041   2 (12)
	              , 0.7789
	              a 0.5492
	        Taurids 0.5492
	        Turkish 0.5492
	          urdis 0.5492
	           Turd 0.5492
	          Turds 0.5492
	        Turdiev 0.5492
	         Turdus 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

        dubiiis   487049   1 (8)
	           </S> 0.5492
	         dubius 0.5492
	          dubii 0.5492
	         duties 0.5492
	              a 0.5492
	         dubiis 0.5492
	              , 0.5492
	      configure 0.5492

              ,   487056 inf (3)
	             of 0.5492
	             us 0.5492
	            the 0.5492

         BechsT   487058 inf (7)
	           Bech 0.5492
	        Beeches 0.5492
	         Becher 0.5492
	              i 0.2388
	           each 0.2388
	             pp 0.2388
	            the 0.0736

              .   487064   1 (5)
	           </S> 0.5492
	              , 0.5492
	             us 0.5492
	              . 0.5492
	            the 0.5492

             NE   487067 inf (8)
	              , 0.7789
	             No 0.7789
	              I 0.7789
	             us 0.5492
	             NE 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

       specimen   487070   1 (7)
	              a 0.5492
	        species 0.5492
	          round 0.5492
	       specimen 0.5492
	              , 0.1687
	              ) 0.1687
	           </S> 0.0736

      Gunthorpe   487110   1 (9)
	        another 0.5492
	      Gunthorpe 0.5492
	             us 0.5178
	           </S> 0.2388
	              a 0.2388
	              , 0.2388
	         future 0.1687
	            you 0.1687
	            the 0.0736

          Notts   487121   3 (8)
	              , 0.7789
	              I 0.7789
	          North 0.5492
	          Notts 0.5492
	          Sitta 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

              .   487126   4 (7)
	            the 0.7789
	             us 0.5492
	      configure 0.5492
	              . 0.1687
	           </S> 0.1687
	              , 0.1687
	         County 0.0736

           1905   487146 inf (8)
	             pp 0.7789
	              a 0.5492
	           1990 0.5492
	           1995 0.5492
	           2005 0.5492
	           1950 0.5492
	           </S> 0.5492
	            the 0.0736

     Stornowa}-   487198   1 (9)
	             us 0.5492
	      Stornoway 0.5492
	        Windows 0.5178
	        average 0.5178
	         Monday 0.2388
	              , 0.2388
	           </S> 0.2388
	              a 0.1687
	            the 0.0736

          Outer   487210   1 (7)
	          Outer 0.5492
	          Other 0.5492
	              a 0.5492
	            and 0.5492
	           </S> 0.5492
	            you 0.1687
	            the 0.0736

          White   487284   3 (6)
	              , 0.7789
	           What 0.7789
	          White 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

             's   487289   3 (5)
	             us 0.7789
	             is 0.3804
	             's 0.2388
	              , 0.1687
	           </S> 0.0736

           i8th   487352 inf (11)
	           into 0.7789
	             iu 0.5492
	           iath 0.5492
	              a 0.5492
	            ith 0.5492
	            8th 0.5017
	           </S> 0.1687
	              , 0.1687
	             31 0.1687
	              1 0.1687
	           2005 0.0736

           1902   487358 inf (8)
	             pp 0.7789
	              a 0.5492
	           1990 0.5492
	              ( 0.5492
	           2005 0.5492
	           1903 0.5492
	           </S> 0.5492
	            the 0.0736

            now   487379   1 (9)
	            now 0.7789
	             of 0.7114
	             us 0.5492
	             DT 0.5492
	            dog 0.5492
	              I 0.5492
	         Papers 0.5178
	              , 0.1687
	           </S> 0.0736

          Ouzel   487432   1 (10)
	          Ouzel 0.7789
	       wrapping 0.5492
	       Extended 0.5492
	              s 0.5492
	          Other 0.2388
	             it 0.2388
	              . 0.2388
	             to 0.1687
	              a 0.1687
	           </S> 0.0736

         Family   487500   1 (5)
	              , 0.7789
	         Family 0.7789
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

             Ti   487508 inf (11)
	       Friendly 0.5492
	              v 0.5492
	         lovers 0.5492
	              s 0.5492
	              , 0.5492
	             Ti 0.5178
	             To 0.2388
	             to 0.1687
	             up 0.1687
	              a 0.1687
	           </S> 0.0736

              '   487511   3 (6)
	            the 0.7789
	             us 0.5492
	              ' 0.5178
	              , 0.1687
	              - 0.0736
	           </S> 0.0497

           RDID   487512 inf (8)
	            RDI 0.7789
	           RDIS 0.5492
	             Re 0.5178
	              a 0.2388
	              s 0.1687
	              ) 0.1687
	           </S> 0.0736
	              , 0.0736

              .   487516   3 (7)
	              , 0.7789
	           </S> 0.7789
	              ' 0.5492
	              . 0.5492
	            the 0.5492
	             us 0.5492
	              | 0.0736

             E.   487518 inf (8)
	             of 0.7789
	             El 0.7789
	              , 0.7789
	              I 0.7789
	              . 0.7789
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

    Subfaniily-   487522   3 (6)
	              A 0.7789
	              ' 0.7789
	      Subfamily 0.5492
	        Stanley 0.5492
	           </S> 0.0736
	              , 0.0736

             TL   487534 inf (6)
	           </S> 0.5492
	              a 0.5492
	             TL 0.5492
	             us 0.5492
	             To 0.5492
	              , 0.5492

              '   487537   3 (6)
	             us 0.7789
	            the 0.7789
	              ' 0.5178
	              - 0.0736
	              , 0.0736
	           </S> 0.0736

           RUIN   487538 inf (11)
	            RUI 0.7789
	           RUIM 0.5492
	             al 0.5492
	           IRUN 0.5492
	             Re 0.5178
	              a 0.2388
	            the 0.1687
	              ) 0.1687
	              s 0.1687
	              , 0.0736
	           </S> 0.0736

              .   487542   4 (8)
	              ' 0.7789
	          other 0.5492
	             us 0.5492
	              . 0.5178
	            the 0.5178
	              , 0.3804
	           THIS 0.1687
	           </S> 0.0736

              E   487544 inf (9)
	            the 0.7789
	             El 0.7789
	              , 0.7789
	             us 0.5492
	             RE 0.5492
	             EE 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

       Saxicola   487575   3 (6)
	              , 0.7789
	              I 0.7789
	       Saxicola 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

      shipazina   487584 inf (12)
	       shikazan 0.5492
	         hazina 0.5492
	              a 0.5492
	      configure 0.5492
	      quipazine 0.5492
	       simazina 0.5492
	       shipping 0.5492
	           </S> 0.5324
	              , 0.5178
	          maura 0.2388
	       torquata 0.0736
	        rubetra 0.0736

              ,   487593   1 (4)
	             us 0.5492
	            the 0.5492
	              , 0.5492
	           </S> 0.5492

           LiNN   487595 inf (8)
	            LNN 0.5492
	           List 0.5492
	           LiNK 0.5492
	            NiL 0.5492
	            cia 0.5492
	             pp 0.2388
	              i 0.2388
	            the 0.0736

              .   487599   1 (5)
	           </S> 0.5492
	              , 0.5492
	             us 0.5492
	              . 0.5492
	            the 0.5492

              A   487602   1 (7)
	           This 0.7789
	              , 0.7789
	            the 0.7789
	              A 0.7789
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

           1902   487654 inf (8)
	           1992 0.5492
	              a 0.5492
	           </S> 0.5492
	           2005 0.5492
	           1990 0.5492
	      therefore 0.5492
	           1920 0.5492
	            the 0.0736

           1905   487676 inf (8)
	           2002 0.7789
	            the 0.7789
	              a 0.5492
	           1995 0.5492
	           1990 0.5492
	           2005 0.5178
	           </S> 0.2388
	              , 0.0736

        another   487682   1 (11)
	              , 0.5492
	              s 0.5492
	        another 0.5492
	              I 0.5492
	           2005 0.5492
	           </S> 0.5492
	          other 0.2388
	          which 0.1687
	             he 0.1687
	            who 0.1687
	            the 0.0736

            Hoo   487704   1 (9)
	            Hoo 0.7789
	           Home 0.7789
	          times 0.5492
	             us 0.5178
	           </S> 0.2388
	              , 0.2388
	              a 0.2388
	         future 0.1687
	            the 0.0736

         Sussex   487709   1 (9)
	            and 0.5492
	   respectively 0.5492
	         Sussex 0.5492
	              a 0.5492
	              s 0.5492
	           </S> 0.5492
	           used 0.2388
	            who 0.1687
	            the 0.0736

             on   487717   1 (6)
	             us 0.5492
	              a 0.5492
	              , 0.5492
	             on 0.5492
	              } 0.2236
	           </S> 0.0736

          3'ear   487750   6 (11)
	           rear 0.7789
	            ear 0.7789
	         States 0.5492
	             of 0.5492
	              a 0.5492
	           year 0.2388
	              . 0.1687
	           name 0.1687
	           </S> 0.1687
	              , 0.1687
	           time 0.0736

              a   487757   1 (5)
	           </S> 0.5492
	              a 0.5492
	             us 0.5178
	             of 0.1687
	            the 0.0736

           Pett   487779   2 (9)
	           Post 0.7789
	          times 0.5492
	           Pett 0.5492
	           Pica 0.5492
	              , 0.2388
	           </S> 0.2388
	              a 0.2388
	         future 0.1687
	            the 0.0736

              a   487794   1 (6)
	            the 0.5492
	             us 0.5492
	              , 0.5492
	              a 0.5492
	              } 0.2236
	           </S> 0.0736

     Winchelsea   487813   1 (10)
	          least 0.5492
	              a 0.5492
	     Winchelsea 0.5492
	            the 0.5492
	          these 0.5492
	         killed 0.5492
	              , 0.5492
	           </S> 0.5492
	             us 0.5178
	           your 0.0736

           1907   487836 inf (8)
	             pp 0.7789
	              ) 0.5492
	           1900 0.5492
	           </S> 0.5492
	              a 0.5492
	           2005 0.5492
	           1970 0.5492
	            the 0.0736

      stapazina   487851 inf (13)
	         change 0.7789
	        Atazina 0.5492
	       stanzina 0.5492
	      stanarina 0.5492
	           said 0.5492
	     Mabinogion 0.5492
	        stapati 0.5492
	       Capazine 0.5492
	           that 0.5324
	              a 0.5178
	           </S> 0.1687
	              , 0.0942
	             of 0.0736

             by   487881   1 (10)
	              ( 0.5492
	            and 0.5492
	            but 0.5492
	           </S> 0.5492
	             by 0.5492
	              a 0.5492
	             us 0.5178
	           that 0.1687
	         please 0.1687
	            the 0.0736

        species   487927   1 (11)
	              - 0.5492
	        sources 0.5492
	     statements 0.5492
	        species 0.5492
	              a 0.5492
	        suecica 0.5492
	        special 0.5492
	           </S> 0.5178
	              , 0.5017
	          Green 0.1687
	        Sparrow 0.0736

       Saxicola   487962   1 (6)
	       Saxicola 0.5492
	              , 0.2388
	           your 0.2388
	         little 0.2388
	           </S> 0.1687
	              a 0.0736

   occidoitalis   487971   2 (12)
	       Saxicola 0.7789
	             as 0.5492
	   occidentalis 0.5492
	    occipitalis 0.5492
	             is 0.5492
	      occiditis 0.5492
	     individual 0.5492
	          whole 0.5492
	              a 0.5492
	           </S> 0.5324
	              , 0.5178
	       torquata 0.0736

              .   487983   1 (5)
	             us 0.5492
	              , 0.5492
	              . 0.5492
	            the 0.5492
	           </S> 0.5492

       Saxicola   488016   1 (6)
	        Special 0.5492
	              a 0.5492
	       Saxicola 0.5492
	       Oenanthe 0.5017
	              , 0.2388
	           </S> 0.0736

         daerti   488025   1 (12)
	        deserti 0.5492
	          darti 0.5492
	         dzerti 0.5492
	         derati 0.5492
	              a 0.5492
	          death 0.5492
	         Haerti 0.5492
	           </S> 0.5324
	              , 0.5178
	          maura 0.2388
	       torquata 0.0736
	        rubetra 0.0736

            was   488032   1 (5)
	             us 0.5492
	              , 0.5492
	            was 0.5492
	             we 0.5492
	           </S> 0.5492

       Pentland   488064   1 (9)
	       Pentland 0.7789
	             2K 0.5492
	        section 0.5492
	              . 0.5492
	            Now 0.5492
	              s 0.1687
	              a 0.1687
	           </S> 0.1687
	          <UNK> 0.0736

       Skerries   488073   1 (8)
	       Skerries 0.7789
	             A. 0.7789
	              ) 0.7789
	      Filtering 0.5492
	              a 0.5492
	         Series 0.5492
	           </S> 0.2388
	              , 0.0736

           1906   488097 inf (8)
	             pp 0.7789
	           1960 0.5492
	           1900 0.5492
	              a 0.5492
	           </S> 0.5492
	           2005 0.5492
	              ) 0.5492
	            the 0.0736

         Family   488104   1 (6)
	              , 0.7789
	         Family 0.7789
	              a 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

           TURD   488112 inf (12)
	          DUART 0.7789
	            TUR 0.7789
	       friendly 0.5492
	              , 0.5492
	              s 0.5492
	       Friendly 0.5492
	           TURN 0.5178
	           mail 0.1687
	             to 0.1687
	              a 0.1687
	            The 0.1687
	           </S> 0.0736

             ID   488117   2 (9)
	              ) 0.7789
	             us 0.5492
	              a 0.5492
	             In 0.5492
	             ID 0.5492
	          Sites 0.5492
	              - 0.5178
	              , 0.5178
	           </S> 0.0736

              .   488119   3 (7)
	             us 0.7789
	            the 0.5178
	              . 0.2388
	          <UNK> 0.2388
	           </S> 0.1687
	              , 0.1687
	              : 0.0736

             E.   488121 inf (8)
	              , 0.7789
	              . 0.7789
	             El 0.7789
	             of 0.7789
	              s 0.5492
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

     Subfamily-   488125   2 (6)
	              A 0.7789
	      Subfamily 0.5492
	             J. 0.5492
	          Smith 0.5324
	           </S> 0.0736
	              , 0.0736

       TURDIN.E   488136 inf (11)
	            Ave 0.5492
	    PROTECTIONE 0.5492
	           </S> 0.5492
	             E. 0.5492
	              a 0.5492
	             RD 0.5492
	          <UNK> 0.5492
	              , 0.5492
	      INTERSECT 0.5492
	            The 0.5492
	             N. 0.5492

              .   488144 inf (3)
	             of 0.5492
	             us 0.5492
	            the 0.5492

              .   488169   3 (5)
	             us 0.5492
	            the 0.5492
	              . 0.5178
	              , 0.1687
	           </S> 0.0736

     Pratincola   488172   3 (6)
	              , 0.7789
	              I 0.7789
	     Pratincola 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

          maura   488183   1 (6)
	              a 0.5492
	          major 0.5492
	      configure 0.5492
	           </S> 0.5492
	          maura 0.5492
	              , 0.0736

           Paix   488190 inf (9)
	           Pica 0.5492
	           Page 0.5492
	              ) 0.5492
	          <UNK> 0.5492
	   philadelphia 0.5492
	           Paix 0.5492
	              i 0.2388
	             pp 0.2388
	            the 0.0736

              .   488194   4 (6)
	            the 0.7789
	           will 0.5492
	             us 0.5492
	              . 0.2388
	              , 0.0736
	           </S> 0.0497

           male   488197 inf (8)
	              , 0.7789
	              I 0.7789
	           This 0.7789
	           make 0.7789
	           male 0.5492
	           sala 0.5492
	              " 0.2388
	           </S> 0.0736

           Cley   488216   1 (10)
	           Cley 0.7789
	           alba 0.7789
	        Norwich 0.5492
	           City 0.5178
	         Disney 0.5178
	              a 0.2388
	           </S> 0.2388
	              , 0.2388
	         future 0.1687
	            the 0.0736

           1904   488249 inf (8)
	             pp 0.7789
	           2005 0.5492
	           1900 0.5492
	           1940 0.5492
	              ) 0.5492
	           </S> 0.5492
	              a 0.5492
	            the 0.0736

              A   488255   1 (7)
	              A 0.7789
	              , 0.7789
	            the 0.7789
	             us 0.5492
	              " 0.2388
	              ) 0.2388
	           </S> 0.0736

      Redstarts   488265 inf (9)
	       Redstart 0.7789
	       research 0.5492
	       kayakers 0.5492
	          <UNK> 0.2388
	             us 0.2388
	              , 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

          built   488275   2 (7)
	              - 0.7789
	            but 0.5492
	              a 0.5492
	          built 0.5492
	           </S> 0.5178
	              . 0.2388
	              , 0.0736

        Spiggie   488284 inf (10)
	        Spigiel 0.5492
	              a 0.5492
	              , 0.5492
	         piggie 0.5492
	          <UNK> 0.5492
	            the 0.5492
	           </S> 0.5492
	           high 0.5492
	             us 0.2388
	           your 0.0736

     vShetlands   488293   1 (8)
	      Shetlands 0.7789
	           view 0.5492
	       Compiled 0.5492
	              - 0.2388
	           </S> 0.1687
	              a 0.1687
	              s 0.1687
	          <UNK> 0.0736

              )   488303   1 (5)
	              , 0.5492
	            the 0.5492
	              ) 0.5492
	           </S> 0.5492
	             us 0.5492

            Maj   488309 inf (8)
	            cia 0.7789
	            Maj 0.7789
	             My 0.3804
	              , 0.2388
	          stock 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

              '   488312   1 (8)
	              ' 0.7789
	            the 0.7789
	          world 0.5492
	             us 0.5492
	              , 0.2388
	           </S> 0.1687
	            Gen 0.1687
	              - 0.0736

           1901   488315 inf (10)
	              ' 0.5492
	              , 0.5492
	              s 0.5492
	           </S> 0.5492
	              ) 0.5492
	             10 0.5492
	           1964 0.5492
	    Transcripts 0.5492
	              a 0.5492
	            the 0.0736

            two   488322   1 (7)
	             us 0.5492
	              , 0.5492
	            two 0.5492
	          there 0.5492
	              a 0.5492
	              } 0.2236
	           </S> 0.0736

         Skerry   488393   1 (9)
	         Skerry 0.7789
	            age 0.5492
	              , 0.5492
	          Speed 0.5492
	         Sierra 0.5178
	            end 0.1687
	           same 0.1687
	           very 0.1687
	           </S> 0.0736

           Vore   488400   2 (7)
	             of 0.7789
	           more 0.5492
	              a 0.5492
	           Vore 0.5492
	          corax 0.5492
	           </S> 0.1687
	              , 0.0736

          Light   488405   3 (7)
	    definitions 0.7789
	             M. 0.7789
	          Stack 0.5492
	          Light 0.5492
	              a 0.5492
	              , 0.0736
	           </S> 0.0736

        Messrs.   488436   2 (6)
	              , 0.7789
	        Message 0.5492
	              a 0.5492
	         Messrs 0.5492
	              / 0.5178
	           </S> 0.0736

       Witherby   488444   2 (8)
	              , 0.7789
	         either 0.5492
	      configure 0.5492
	              a 0.5492
	       Witherby 0.5492
	             A. 0.5324
	          <UNK> 0.1687
	           </S> 0.0736

      Ticehurst   488457   1 (9)
	      Ticehurst 0.7789
	          major 0.5492
	     superseded 0.5492
	            The 0.2388
	              a 0.1687
	             to 0.1687
	              , 0.1687
	           </S> 0.1687
	            the 0.0736

         record   488467   1 (9)
	             of 0.5492
	             by 0.5492
	             us 0.5492
	         record 0.5492
	         before 0.5492
	              a 0.5492
	              . 0.5178
	           </S> 0.1687
	              , 0.0736

         Solway   488537   1 (12)
	         Solway 0.7789
	          state 0.5492
	            one 0.5492
	              , 0.5492
	          party 0.5492
	      sectional 0.5492
	              : 0.5492
	             us 0.5492
	        kitchen 0.5492
	         Policy 0.5178
	              a 0.1687
	           </S> 0.0736

       Aberdeen   488575   1 (6)
	              a 0.5492
	           1900 0.5492
	              , 0.5492
	       Aberdeen 0.5492
	              } 0.2236
	           </S> 0.0736

        ]\Iarch   488589 inf (9)
	         Search 0.7789
	           arch 0.7789
	          harch 0.5492
	        Isearch 0.5492
	          major 0.5492
	              a 0.5178
	           </S> 0.2388
	              , 0.1687
	             of 0.0736

           20th   488597 inf (9)
	             us 0.5492
	              , 0.5492
	           them 0.5492
	             th 0.5492
	           </S> 0.5492
	            the 0.5492
	              a 0.5492
	            sth 0.5492
	           with 0.5492

           1900   488603 inf (7)
	              s 0.5492
	          <UNK> 0.5492
	              ) 0.5492
	           1990 0.5492
	              a 0.5492
	           2005 0.5492
	            the 0.0736

          Moray   488609   1 (8)
	             ie 0.5492
	           More 0.5492
	              , 0.5492
	              a 0.5492
	          Moray 0.5492
	          corax 0.5492
	              } 0.2236
	           </S> 0.0736

        Flannan   488640   1 (6)
	              , 0.5492
	        Flannel 0.5492
	              a 0.5492
	        Flannan 0.5492
	              } 0.2236
	           </S> 0.0736

           June   488665   1 (7)
	            Jan 0.7789
	           June 0.7789
	              a 0.5492
	          Munia 0.5492
	             of 0.2388
	           </S> 0.1687
	              , 0.0736

         Orkney   488724   1 (7)
	              a 0.5492
	              , 0.5492
	       Regiment 0.5492
	         Orkney 0.5492
	         Orange 0.5492
	              } 0.2236
	           </S> 0.0736

           male   488734   7 (10)
	           sala 0.7789
	              a 0.5492
	              , 0.5492
	         Mother 0.5492
	           make 0.5178
	            was 0.5178
	           male 0.2388
	          woman 0.1687
	           </S> 0.0736
	            new 0.0736

       November   488751   1 (8)
	           over 0.5492
	       November 0.5492
	              , 0.5492
	           </S> 0.5492
	              a 0.5492
	            and 0.5492
	      including 0.1687
	            the 0.0736

           1905   488766 inf (7)
	           1990 0.5492
	           1995 0.5492
	           </S> 0.5492
	           2005 0.5492
	              a 0.5492
	      therefore 0.5492
	            the 0.0736

         Family   488800   1 (6)
	         Family 0.7789
	              , 0.7789
	              a 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

       TURDID.^   488808 inf (11)
	              a 0.7789
	            rev 0.5492
	              s 0.5492
	              , 0.5492
	         TURYID 0.5492
	           side 0.5492
	              p 0.5492
	            Vol 0.5492
	             to 0.5178
	            The 0.5178
	           </S> 0.0736

              .   488816   1 (6)
	              , 0.5492
	              . 0.5492
	           </S> 0.5492
	              - 0.5492
	             us 0.5492
	            the 0.5492

     Subfamily-   488819   3 (5)
	              , 0.7789
	              I 0.7789
	      Subfamily 0.5492
	              " 0.2388
	           </S> 0.0736

       TURDIN/E   488830 inf (10)
	              a 0.5492
	        COPYING 0.5492
	          <UNK> 0.5492
	           </S> 0.5492
	              / 0.5492
	           TODO 0.5492
	              , 0.5492
	         THANKS 0.5492
	         README 0.5492
	    MAINTAINERS 0.5492

              .   488838 inf (3)
	             of 0.5492
	             us 0.5492
	            the 0.5492

       Spottf:d   488851 inf (11)
	        Spoofed 0.7789
	          Spott 0.7789
	              , 0.5492
	         tailed 0.5492
	              s 0.5492
	       Spottify 0.5492
	          point 0.5492
	              a 0.2388
	           mail 0.1687
	             to 0.1687
	           </S> 0.0736

     Bluethroat   488860   1 (9)
	           that 0.5492
	              ) 0.5492
	           Deer 0.5492
	           </S> 0.5492
	              a 0.5492
	     Bluethroat 0.5492
	             us 0.5492
	              - 0.5492
	              , 0.5492

              .   488870   3 (6)
	             us 0.5492
	            the 0.5492
	              . 0.5178
	           Boat 0.5178
	              , 0.2388
	           </S> 0.0736

    Cxa)icciila   488873 inf (8)
	          Click 0.7789
	              I 0.7789
	              , 0.7789
	        Comella 0.5492
	              / 0.5178
	              ) 0.5017
	              " 0.2388
	           </S> 0.0736

        u'i>l/l   488885 inf (7)
	      configure 0.5492
	              a 0.5492
	          uaill 0.5492
	           uill 0.5492
	              , 0.5492
	           </S> 0.5492
	          build 0.5492

              ,   488892 inf (3)
	             of 0.5492
	             us 0.5492
	            the 0.5492

          BrEHM   488894 inf (6)
	             pp 0.7789
	           from 0.7789
	              i 0.7789
	           BEHS 0.5492
	            BrE 0.5492
	            the 0.0736

              .   488899   1 (5)
	           </S> 0.5492
	              , 0.5492
	             us 0.5492
	              . 0.5492
	            the 0.5492

              A   488902   1 (7)
	           This 0.7789
	              , 0.7789
	            the 0.7789
	              A 0.7789
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

      Dungeness   488932   1 (7)
	              , 0.5492
	           </S> 0.5492
	       business 0.5492
	      Dungeness 0.5492
	             us 0.2388
	              a 0.1687
	            the 0.0736

              a   488976   1 (6)
	             us 0.5492
	            the 0.5492
	              a 0.5492
	              , 0.5492
	              } 0.2236
	           </S> 0.0736

            ist   489026 inf (10)
	            ist 0.7789
	            its 0.7789
	             iu 0.5492
	              a 0.5492
	              , 0.1687
	             11 0.1687
	              1 0.1687
	           </S> 0.1687
	             30 0.1687
	           2005 0.0736

           1905   489031 inf (11)
	             pp 0.7789
	           </S> 0.5492
	          <UNK> 0.5492
	           1995 0.5492
	              ( 0.5492
	           1990 0.5492
	           2005 0.5492
	           1950 0.5492
	          19105 0.5492
	              a 0.5492
	            the 0.0736

             it   489129   1 (6)
	             iu 0.5492
	              , 0.5492
	             it 0.5492
	              a 0.5492
	              } 0.2236
	           </S> 0.0736

        visited   489132   1 (7)
	          visit 0.7789
	        visited 0.7789
	              a 0.1687
	            was 0.1687
	              , 0.1687
	           </S> 0.1687
	             is 0.0736

   Lincolnshire   489140   3 (10)
	          sites 0.7789
	          other 0.7789
	             be 0.5492
	   Lincolnshire 0.5492
	             us 0.5324
	            him 0.5324
	           </S> 0.5178
	              a 0.5017
	              , 0.2388
	            the 0.0736

         Sussex   489180   1 (8)
	              , 0.5492
	           1905 0.5492
	          based 0.5492
	              a 0.5492
	         Sussex 0.5492
	         Passer 0.5492
	              } 0.2236
	           </S> 0.0736

           1903   489190 inf (8)
	        writing 0.7789
	              , 0.7789
	             it 0.7789
	             us 0.5492
	           1603 0.5492
	           </S> 0.5178
	              a 0.2388
	            the 0.0736

         Surrey   489196   1 (6)
	         Survey 0.5492
	              , 0.5492
	              a 0.5492
	         Surrey 0.5492
	              } 0.2236
	           </S> 0.0736

           1904   489203 inf (8)
	            CR0 0.7789
	           GU21 0.7789
	            TW9 0.7789
	              A 0.7114
	              ) 0.5178
	            and 0.5178
	           </S> 0.1687
	              , 0.0736

      Yorkshire   489209   1 (5)
	              a 0.5492
	              , 0.5492
	      Yorkshire 0.5492
	              } 0.2236
	           </S> 0.0736

           1903   489219 inf (6)
	           YO17 0.7789
	           BD20 0.7789
	              ) 0.5178
	            and 0.2388
	              , 0.0942
	           </S> 0.0736

      Shetlands   489225   1 (5)
	              , 0.5492
	              a 0.5492
	      Shetlands 0.5492
	              } 0.2236
	           </S> 0.0736

           1905   489235 inf (6)
	             95 0.7789
	             01 0.7789
	            the 0.7789
	        Islands 0.5178
	           </S> 0.2388
	              , 0.0736

         Family   489248   1 (7)
	              , 0.7789
	         Family 0.7789
	           1907 0.5492
	              a 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

        TURDID^   489256 inf (12)
	            rev 0.5492
	           TURI 0.5492
	         TURYID 0.5492
	           side 0.5492
	              s 0.5492
	              p 0.5492
	            Vol 0.5492
	              , 0.5492
	              a 0.2388
	            The 0.1687
	             to 0.1687
	           </S> 0.0736

              .   489263   1 (6)
	              , 0.5492
	              . 0.5492
	           </S> 0.5492
	              - 0.5492
	             us 0.5492
	            the 0.5492

     Subfamily-   489266   3 (5)
	              , 0.7789
	              I 0.7789
	      Subfamily 0.5492
	              " 0.2388
	           </S> 0.0736

        TURDIN^   489277 inf (7)
	              a 0.5492
	         TURYID 0.5492
	              , 0.5492
	         TARDIS 0.5492
	           </S> 0.5492
	           TURN 0.5492
	          <UNK> 0.5492

              .   489284 inf (3)
	             of 0.5492
	             us 0.5492
	            the 0.5492

    Nightingale   489299   2 (10)
	           Good 0.7789
	              I 0.5492
	    Nightingale 0.5492
	          Press 0.5492
	             P. 0.5492
	              , 0.5492
	             of 0.5492
	           </S> 0.5178
	     Washington 0.5178
	         London 0.0736

        Daulias   489313 inf (9)
	              , 0.7789
	        Daulian 0.5492
	         Daulia 0.5492
	         Dallas 0.5492
	         Daulis 0.5492
	              a 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

     fliilomcla   489321 inf (6)
	              a 0.5492
	      configure 0.5492
	        million 0.5492
	              , 0.5492
	           film 0.5492
	           </S> 0.5492

              ,   489331 inf (3)
	             of 0.5492
	             us 0.5492
	            the 0.5492

         Bechst   489333 inf (8)
	      Bechstein 0.5492
	         Bechet 0.5492
	         zechst 0.5492
	        Bechets 0.5492
	              i 0.2388
	           each 0.2388
	             pp 0.2388
	            the 0.0736

              A   489342   1 (7)
	           This 0.7789
	              , 0.7789
	            the 0.7789
	              A 0.7789
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

         Smeeth   489365   1 (10)
	              , 0.5492
	            all 0.5492
	           </S> 0.5492
	           home 0.5492
	            the 0.5492
	          South 0.5492
	              a 0.5492
	         Smeeth 0.5492
	             us 0.2388
	           your 0.0736

       believed   489406   1 (6)
	              a 0.5492
	          moved 0.5492
	              , 0.5492
	       believed 0.5492
	              } 0.2236
	           </S> 0.0736

    Nightingale   489442   1 (9)
	          shall 0.5492
	    Nightingale 0.5492
	              I 0.5492
	             of 0.5017
	            use 0.2388
	            law 0.1687
	           </S> 0.1687
	              , 0.1687
	       basename 0.0736

         nested   489454   1 (8)
	           need 0.5492
	           rule 0.5492
	              a 0.5492
	         nested 0.5492
	             of 0.5178
	           Sang 0.2388
	              , 0.0942
	           </S> 0.0736

              A   489492   1 (6)
	              , 0.7789
	              A 0.7789
	            the 0.7789
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

        Orphean   489501   1 (8)
	              a 0.5492
	           Open 0.5492
	         police 0.5492
	        Orphean 0.5492
	             of 0.5017
	        student 0.5017
	           </S> 0.1687
	              , 0.0736

           1903   489570 inf (7)
	           2005 0.5492
	              a 0.5492
	           1990 0.5492
	           </S> 0.5492
	      therefore 0.5492
	           1993 0.5492
	            the 0.0736

            6th   489646 inf (10)
	            sth 0.7789
	             us 0.7789
	             th 0.7789
	              a 0.5492
	            the 0.5178
	             st 0.5017
	              6 0.2236
	              ) 0.1687
	              , 0.1687
	           </S> 0.0736

           1905   489651 inf (8)
	             pp 0.7789
	           </S> 0.5492
	              a 0.5492
	           2005 0.5492
	              , 0.5492
	              " 0.5492
	           1900 0.5492
	            the 0.0736

     vSeptember   489712   3 (8)
	        October 0.5492
	             us 0.5492
	      September 0.5017
	          other 0.2388
	              , 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

           1904   489723 inf (7)
	              a 0.5492
	            the 0.5492
	          world 0.5492
	              1 0.5492
	           </S> 0.5492
	              , 0.5492
	           2004 0.5492

        secured   489856   2 (10)
	         second 0.7789
	        secured 0.5492
	            old 0.5492
	             us 0.5492
	              a 0.5178
	             of 0.2388
	              , 0.1687
	           </S> 0.1687
	              . 0.0942
	            and 0.0736

     Woodchurch   489867   1 (10)
	            all 0.5492
	              0 0.5492
	     Canterbury 0.5492
	     Woodchurch 0.5492
	            the 0.5492
	              a 0.5492
	              , 0.5492
	             us 0.5178
	          which 0.1687
	           your 0.0736

          24t]i   489894   1 (7)
	           24th 0.5492
	              a 0.5492
	          Patti 0.5492
	              , 0.1687
	              1 0.1687
	           </S> 0.1687
	           2005 0.0736

           1907   489901 inf (8)
	   respectively 0.5492
	           1970 0.5492
	              s 0.5492
	           </S> 0.5492
	           2005 0.5492
	              a 0.5492
	           1906 0.5492
	            the 0.0736

            one   489908   1 (7)
	             us 0.5492
	            one 0.5492
	              a 0.5492
	              , 0.5492
	     specialize 0.5492
	              } 0.2236
	           </S> 0.0736

      September   489924   1 (8)
	             VA 0.5492
	           </S> 0.5492
	      September 0.5492
	              , 0.5492
	            and 0.5492
	              a 0.5492
	          other 0.2388
	            the 0.0736

           1902   489940 inf (8)
	           2005 0.5492
	           1904 0.5492
	           1990 0.5492
	              ( 0.5492
	              s 0.5492
	           </S> 0.5492
	              a 0.5492
	            the 0.0736

            one   489946   1 (6)
	              a 0.5492
	            one 0.5492
	              , 0.5492
	              s 0.5492
	              } 0.2236
	           </S> 0.0736

              a   490000   1 (6)
	              a 0.5492
	             us 0.5492
	            the 0.5492
	              , 0.5492
	              } 0.2236
	           </S> 0.0736

         3'oung   490002   4 (11)
	          goung 0.5492
	         senior 0.5492
	          Young 0.5178
	          young 0.2388
	            oun 0.2174
	              - 0.1687
	         single 0.1687
	        similar 0.1687
	          major 0.1687
	            new 0.0736
	           </S> 0.0736

         female   490009   1 (8)
	             of 0.5492
	              , 0.5492
	         family 0.5492
	      professor 0.5492
	           look 0.5492
	              a 0.5492
	         female 0.5492
	           </S> 0.5492

          North   490019   1 (8)
	            the 0.5492
	           </S> 0.5492
	              , 0.5492
	          North 0.5492
	              a 0.5492
	           Long 0.5492
	          corax 0.5492
	           your 0.0736

   Lincolnshire   490032   1 (9)
	   Lincolnshire 0.5492
	          South 0.5492
	              a 0.5492
	          North 0.5492
	           Ohio 0.5492
	         online 0.5492
	      therefore 0.5492
	           </S> 0.5492
	            the 0.0736

           1899   490063 inf (7)
	           1890 0.5492
	           1989 0.5492
	              a 0.5492
	           </S> 0.5492
	           2005 0.5492
	      therefore 0.5492
	            the 0.0736

              a   490140   1 (6)
	              a 0.5492
	            the 0.5492
	             us 0.5492
	              , 0.5492
	              } 0.2236
	           </S> 0.0736

        October   490179   1 (8)
	           </S> 0.5492
	              a 0.5492
	              , 0.5492
	        October 0.5492
	              - 0.5492
	          Other 0.5492
	       Scotland 0.5492
	            the 0.0736

           1900   490193 inf (6)
	             pp 0.7789
	              a 0.5492
	           2005 0.5492
	           1990 0.5492
	           </S> 0.5492
	            the 0.0736

           1905   490274 inf (10)
	           1995 0.5492
	             19 0.5492
	           2005 0.5492
	              s 0.5492
	           2400 0.5492
	              , 0.5492
	              " 0.5492
	           </S> 0.5492
	              a 0.5492
	            the 0.0736

            two   490281   1 (6)
	              , 0.5492
	            two 0.5492
	             us 0.5492
	              a 0.5492
	              } 0.2236
	           </S> 0.0736

        Li^dlow   490303   1 (12)
	         Ludlow 0.7789
	           Lilo 0.5492
	     Shrewsbury 0.5492
	          Lidol 0.5492
	         Disney 0.5178
	             us 0.5178
	         London 0.5178
	              , 0.2388
	           </S> 0.2388
	              a 0.2388
	         future 0.1687
	            the 0.0736

     Shropshire   490312   1 (8)
	            and 0.5492
	           </S> 0.5492
	              a 0.5492
	      therefore 0.5492
	     Shropshire 0.5492
	        through 0.5178
	            who 0.2388
	            the 0.0736

           1903   490327 inf (9)
	              1 0.7789
	           2003 0.7789
	              , 0.7789
	        writing 0.7789
	           1880 0.5492
	             us 0.5492
	           </S> 0.5178
	              a 0.2388
	            the 0.0736

            and   490334   1 (5)
	            and 0.5492
	              , 0.5492
	            arz 0.5492
	              } 0.2236
	           </S> 0.0736

        Fawilx-   490416   2 (9)
	              , 0.7789
	           Fail 0.5492
	        Fawsley 0.5492
	         Flawil 0.5492
	          Tawil 0.5492
	              a 0.5492
	         Family 0.5492
	              " 0.2388
	           </S> 0.0736

           TURD   490424 inf (7)
	           TURN 0.5492
	            The 0.5492
	            TUR 0.5492
	              a 0.5492
	              , 0.5492
	           </S> 0.5492
	          DUART 0.5492

             ID   490429   1 (6)
	             us 0.5492
	             In 0.5492
	             ID 0.5492
	              , 0.5178
	              ! 0.2388
	           </S> 0.0736

              .   490431   3 (7)
	             us 0.7789
	            the 0.5178
	              . 0.2388
	            and 0.2388
	              , 0.1687
	           </S> 0.1687
	              : 0.0736

             -E   490433 inf (9)
	             -- 0.7789
	              , 0.7789
	              - 0.7789
	             of 0.7789
	              s 0.5492
	              a 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

              .   490435   1 (5)
	             us 0.5492
	              , 0.5492
	              . 0.5492
	            the 0.5492
	           </S> 0.5492

    5«//rtw//r-   490438 inf (8)
	              - 0.7789
	              , 0.7789
	              I 0.7789
	      Therefore 0.5492
	          First 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

              5   490450 inf (4)
	              , 0.5492
	             us 0.5492
	            the 0.5492
	           </S> 0.5492

           ILY^   490458   1 (9)
	              K 0.5492
	            ILY 0.5492
	           ILYA 0.5492
	             In 0.5178
	              ) 0.2388
	          think 0.1687
	              , 0.1687
	           </S> 0.1687
	             'm 0.0736

              .   490462   1 (7)
	            not 0.5492
	              , 0.5492
	            the 0.5492
	              . 0.5492
	              L 0.5492
	             us 0.5492
	           </S> 0.5492

      Sardinian   490469   1 (8)
	      Sardinian 0.7789
	       Sardinia 0.7789
	              / 0.5492
	      Passerine 0.5492
	     Associated 0.5492
	              - 0.1687
	       National 0.1687
	           </S> 0.0736

        Svlviii   490489   2 (11)
	              , 0.7789
	              a 0.5492
	        Svilici 0.5492
	          Silvi 0.5492
	           Siii 0.5492
	         Sylvia 0.5492
	          Elvii 0.5492
	           viii 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

viclanoccpliaUx   490497 inf (9)
	         Llopis 0.5492
	     particular 0.5492
	              , 0.5492
	        Atlanta 0.5492
	      configure 0.5492
	   Applications 0.5492
	           </S> 0.5492
	              a 0.5492
	      client.pl 0.5492

              ,   490512 inf (3)
	             of 0.5492
	             us 0.5492
	            the 0.5492

           GmEL   490514 inf (8)
	            GEL 0.5492
	             Gm 0.5492
	          BimEL 0.5492
	            Get 0.5492
	           GTEL 0.5492
	              i 0.2388
	             pp 0.2388
	            the 0.0736

              .   490518   1 (5)
	           </S> 0.5492
	              , 0.5492
	             us 0.5492
	              . 0.5492
	            the 0.5492

              A   490521   1 (7)
	           This 0.7789
	              , 0.7789
	            the 0.7789
	              A 0.7789
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

           1907   490565 inf (8)
	           1970 0.5492
	           2005 0.5492
	      therefore 0.5492
	           1900 0.5492
	           </S> 0.5492
	              a 0.5492
	              ) 0.5492
	            the 0.0736

         Parkin   490600   1 (10)
	         Parkin 0.7789
	        carrier 0.5492
	              a 0.5492
	    Kirkpatrick 0.5492
	         unique 0.5492
	          Parus 0.5492
	           Park 0.5324
	      Jefferson 0.1687
	              , 0.0736
	           </S> 0.0736

            Esq   490608   1 (11)
	              a 0.5492
	           Phys 0.5492
	              , 0.5492
	             E. 0.5492
	            Esq 0.5492
	           </S> 0.5492
	            and 0.5492
	             ed 0.5017
	            use 0.2388
	             pp 0.2388
	            the 0.0736

          F.Z.S   490614 inf (9)
	             pp 0.7789
	              i 0.7789
	              . 0.5492
	           FZNS 0.5492
	            FZS 0.5492
	          <UNK> 0.5492
	           </S> 0.5492
	             FZ 0.5492
	            the 0.0736

              .   490619   1 (6)
	           </S> 0.5492
	              / 0.5492
	              . 0.5492
	             us 0.5492
	              , 0.5492
	            the 0.5492

           Wren   490639   1 (10)
	           Wren 0.7789
	           free 0.7789
	        Burgers 0.5492
	            arz 0.5492
	              - 0.5178
	              ) 0.5178
	              a 0.2236
	           </S> 0.1687
	              , 0.1687
	      Cormorant 0.0736

    Breconshire   490675   1 (9)
	    Breconshire 0.7789
	             us 0.5492
	       December 0.5492
	           turn 0.5017
	         Canada 0.2388
	              , 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

           1899   490706 inf (7)
	             pp 0.7789
	              a 0.5492
	           1898 0.5492
	           </S> 0.5492
	           1989 0.5492
	           2005 0.5492
	            the 0.0736

              A   490713   1 (6)
	            the 0.7789
	              A 0.7789
	              , 0.7789
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

           1905   490784 inf (8)
	           1950 0.5492
	              a 0.5492
	              ( 0.5492
	           1909 0.5492
	      therefore 0.5492
	           2005 0.5492
	           </S> 0.5492
	            the 0.0736

            one   490844   1 (6)
	              , 0.5492
	            one 0.5492
	              a 0.5492
	             us 0.5492
	              } 0.2236
	           </S> 0.0736

           1906   490903 inf (9)
	              a 0.5492
	           </S> 0.5492
	           1996 0.5492
	           1990 0.5492
	           1960 0.5492
	      therefore 0.5492
	           2005 0.5492
	              ( 0.5492
	            the 0.0736

         Tresco   490953   1 (10)
	              . 0.5492
	              , 0.5492
	          These 0.5492
	          <UNK> 0.5492
	         Tresco 0.5492
	           </S> 0.5492
	            the 0.5492
	              a 0.5492
	             us 0.2388
	           your 0.0736

         Scilly   490961   1 (10)
	         Scilly 0.7789
	           PRES 0.5492
	            TSO 0.5492
	       Compiled 0.5492
	         Social 0.5178
	              - 0.2388
	              s 0.1687
	           </S> 0.1687
	              a 0.1687
	          <UNK> 0.0736

            ist   490981 inf (9)
	            its 0.7789
	             iu 0.5492
	            ist 0.5492
	              a 0.5492
	              4 0.2388
	              , 0.1687
	              1 0.1687
	           </S> 0.1687
	           2005 0.0736

           1905   490986 inf (9)
	             pp 0.7789
	              a 0.5492
	          <UNK> 0.5492
	           1995 0.5492
	           2005 0.5492
	           1950 0.5492
	           1990 0.5492
	           </S> 0.5492
	            the 0.0736

        Family^   490992   2 (6)
	              , 0.7789
	              a 0.5492
	         Family 0.5492
	              " 0.2388
	              ) 0.2388
	           </S> 0.0736

             Ti   491000 inf (6)
	             To 0.5492
	              , 0.5492
	             iu 0.5492
	              a 0.5492
	           </S> 0.5492
	             Ti 0.5492

             7^   491003 inf (5)
	             us 0.5492
	             of 0.5178
	              , 0.1687
	              - 0.0736
	           </S> 0.0497

           DILL   491006 inf (7)
	            DIL 0.5492
	            DSL 0.5492
	              , 0.5492
	           DILG 0.5492
	         DILLIC 0.5492
	           </S> 0.5492
	              a 0.5492

             -E   491011 inf (7)
	             -- 0.7789
	             of 0.7789
	              M 0.7789
	             us 0.5492
	              - 0.2388
	           </S> 0.1687
	              , 0.0736

              .   491013 inf (5)
	             J. 0.5492
	              , 0.5492
	             us 0.5492
	            the 0.5492
	           </S> 0.5492

 SuhJaniiiy-SYL   491016 inf (9)
	      Searching 0.7789
	              , 0.7789
	              - 0.7789
	          Thank 0.7789
	      ChangeLog 0.7789
	              I 0.7789
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

              J   491031 inf (7)
	             us 0.5492
	            the 0.5492
	           </S> 0.5492
	              , 0.5492
	             NJ 0.5492
	             JR 0.5492
	             JJ 0.5492

           7IA\   491033 inf (9)
	             IA 0.7789
	            FAQ 0.7789
	           RIAA 0.5492
	          Gallo 0.5492
	           AIAA 0.5492
	              A 0.5178
	              , 0.1687
	              K 0.0736
	           </S> 0.0736

             E.   491038   1 (8)
	             of 0.5492
	             us 0.5492
	              a 0.5492
	           </S> 0.5492
	              . 0.5492
	              , 0.5492
	              E 0.5492
	              L 0.5492

        PallAvS   491042 inf (9)
	        Pallavi 0.5492
	          Miers 0.5492
	              I 0.5492
	           Pall 0.5492
	        Pallava 0.5492
	         Pallav 0.5492
	           Hall 0.5178
	              , 0.0736
	           </S> 0.0736

              '   491049 inf (5)
	           </S> 0.5492
	             's 0.5492
	            the 0.5492
	             us 0.5492
	              , 0.5492

              .   491066   4 (6)
	            the 0.7789
	             us 0.5492
	              - 0.5017
	              . 0.2388
	              , 0.1687
	           </S> 0.0736

   Phy/Iosiopus   491069   2 (6)
	              , 0.7789
	              a 0.5492
	   Phylloscopus 0.5492
	    Phyprosopus 0.5492
	              " 0.2388
	           </S> 0.0736

  f^ivrcgit/iis   491082 inf (9)
	        drivers 0.5492
	        scripts 0.5492
	           </S> 0.5492
	              , 0.5492
	              a 0.5492
	          <UNK> 0.5492
	             is 0.5492
	            src 0.5492
	vareSelskap.cgi 0.5492

              .   491095 inf (3)
	             of 0.5492
	             us 0.5492
	            the 0.5492

         single   491098 inf (6)
	              , 0.7789
	              I 0.7789
	         single 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

    Chiffchaffs   491185   2 (6)
	              a 0.7789
	    Chiffchaffs 0.5492
	           </S> 0.5178
	      different 0.5178
	              , 0.5178
	             of 0.0736

        visited   491197   3 (8)
	           </S> 0.7789
	             in 0.7789
	            the 0.5492
	         United 0.5492
	              a 0.5492
	        visited 0.5492
	             us 0.5492
	              , 0.0736

        between   491219   2 (6)
	             of 0.7789
	              a 0.5492
	        between 0.5492
	             in 0.5178
	           </S> 0.2388
	              , 0.0736

          i5tli   491233 inf (10)
	           into 0.7789
	           itil 0.5492
	              a 0.5492
	          ixtli 0.5492
	           Atli 0.5492
	            and 0.2388
	              , 0.1687
	           </S> 0.1687
	              1 0.1687
	           2005 0.0736

           1904   491249 inf (9)
	           2005 0.5492
	            and 0.5492
	           </S> 0.5492
	              a 0.5492
	              ( 0.5492
	              s 0.5492
	           1999 0.5492
	          which 0.2388
	            the 0.0736

             in   491255   1 (7)
	             in 0.5492
	              a 0.5492
	             iu 0.5492
	              , 0.5492
	             d. 0.5492
	              } 0.2236
	           </S> 0.0736

          3'ear   491274   5 (10)
	            ear 0.7789
	           rear 0.7789
	              a 0.5492
	             of 0.5492
	           year 0.2388
	           </S> 0.1687
	              , 0.1687
	           name 0.1687
	              . 0.1687
	           time 0.0736

            one   491280   1 (7)
	             us 0.5492
	             it 0.5492
	              . 0.5492
	              , 0.5492
	              a 0.5492
	           </S> 0.5492
	            one 0.5492

        Tnlloch   491308   1 (9)
	        Tulloch 0.7789
	       Benlloch 0.7789
	       Kavulich 0.5492
	              a 0.5492
	         Taylor 0.5178
	             C. 0.5017
	            and 0.1687
	           </S> 0.1687
	              , 0.0736

             at   491316   1 (6)
	             at 0.5492
	              A 0.5492
	           </S> 0.5492
	             II 0.5492
	              , 0.5492
	            arz 0.5492

           Ma}^   491335   4 (9)
	             Ma 0.7789
	           lava 0.7789
	            Maa 0.7789
	        January 0.2388
	              , 0.2388
	            May 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

           27th   491340 inf (7)
	           </S> 0.5492
	             27 0.5492
	              a 0.5492
	           with 0.5492
	           site 0.5492
	              , 0.5492
	          piece 0.5492

         Family   491378   1 (7)
	         Family 0.7789
	              , 0.7789
	              a 0.5492
	              s 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

       TURDID.F   491386 inf (12)
	              a 0.7789
	            rev 0.5492
	           side 0.5492
	              s 0.5492
	         TURYID 0.5492
	          TDIDF 0.5492
	            Vol 0.5492
	              , 0.5492
	              p 0.5492
	             to 0.5178
	            The 0.5178
	           </S> 0.0736

              .   491394   1 (6)
	              , 0.5492
	              . 0.5492
	           </S> 0.5492
	              - 0.5492
	             us 0.5492
	            the 0.5492

      Subjaimly   491397   3 (5)
	              , 0.7789
	              I 0.7789
	      Subfamily 0.5492
	              " 0.2388
	           </S> 0.0736

           -SYL   491407 inf (7)
	           WSYL 0.5492
	              , 0.5492
	            USA 0.5492
	            SYL 0.5492
	      configure 0.5492
	              a 0.5492
	           </S> 0.5492

              I   491412 inf (6)
	             of 0.5492
	             In 0.5492
	             us 0.5492
	            the 0.5492
	             MI 0.5492
	             II 0.5492

          IIN.E   491414   1 (10)
	           IINS 0.5492
	           INEE 0.5492
	            IIN 0.5492
	            III 0.5324
	          think 0.1687
	           </S> 0.1687
	              J 0.1687
	           said 0.1687
	              , 0.1687
	             'm 0.0736

              .   491419   1 (7)
	           </S> 0.5492
	              . 0.5492
	            the 0.5492
	            not 0.5492
	              , 0.5492
	             us 0.5492
	              " 0.5492

  Phy//oscop!is   491448   3 (6)
	              I 0.7789
	              , 0.7789
	   Phylloscopus 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

        tristis   491462   1 (6)
	              , 0.5492
	        trusted 0.5492
	      configure 0.5492
	              a 0.5492
	           </S> 0.5492
	        tristis 0.5492

          BlyTH   491471 inf (8)
	          Blyth 0.5492
	            Buy 0.5492
	        PolyTHF 0.5492
	            Bly 0.5492
	           Baya 0.5492
	             pp 0.2388
	              i 0.2388
	            the 0.0736

              .   491476   1 (5)
	           </S> 0.5492
	              , 0.5492
	             us 0.5492
	              . 0.5492
	            the 0.5492

              N   491479 inf (10)
	           This 0.7789
	             IN 0.7789
	            the 0.7789
	             No 0.7789
	              , 0.7789
	             us 0.5492
	             NN 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

        example   491481   1 (6)
	        example 0.7789
	              I 0.5492
	              ) 0.1687
	              , 0.1687
	              / 0.0736
	           </S> 0.0736

     lighthonse   491507   5 (9)
	              , 0.5492
	       discount 0.5492
	           shot 0.5492
	     lightcones 0.5492
	     lighthouse 0.5178
	         little 0.1687
	           time 0.1687
	          major 0.1687
	           </S> 0.0736

            off   491518   1 (6)
	             us 0.5492
	           </S> 0.5492
	             of 0.5492
	            off 0.5492
	              a 0.5492
	              , 0.5492

         Family   491544   1 (6)
	         Family 0.7789
	              , 0.7789
	              a 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

       TURDIL)^   491552 inf (12)
	              D 0.7789
	              a 0.7789
	              ) 0.7789
	            rev 0.5492
	              , 0.5492
	              s 0.5492
	           side 0.5492
	              p 0.5492
	            Vol 0.5492
	             to 0.5178
	            The 0.5178
	           </S> 0.0736

              .   491560   1 (6)
	              , 0.5492
	              . 0.5492
	           </S> 0.5492
	              - 0.5492
	             us 0.5492
	            the 0.5492

     Subfamily-   491563   3 (5)
	              , 0.7789
	              I 0.7789
	      Subfamily 0.5492
	              " 0.2388
	           </S> 0.0736

            SYL   491574 inf (7)
	              , 0.5492
	            See 0.5492
	      configure 0.5492
	             us 0.5492
	              a 0.5492
	           </S> 0.5492
	            SYL 0.5492

              I   491578   1 (7)
	              I 0.7789
	             us 0.5492
	            the 0.5492
	              , 0.2388
	           </S> 0.1687
	          canal 0.1687
	              - 0.0736

         'IIN.E   491580 inf (10)
	         PRINCE 0.7789
	           EINE 0.5492
	            IIN 0.5492
	           said 0.2388
	            and 0.2388
	              J 0.1687
	           </S> 0.1687
	              , 0.1687
	          think 0.1687
	             'm 0.0736

              .   491586   1 (7)
	           </S> 0.5492
	              . 0.5492
	            the 0.5492
	            not 0.5492
	              , 0.5492
	             us 0.5492
	              " 0.5492

       Greenish   491593   1 (8)
	       Greenish 0.7789
	              X 0.5492
	       Whomping 0.5492
	              / 0.5492
	      Territory 0.5492
	          Great 0.1687
	              - 0.1687
	           </S> 0.0736

         Willow   491602   1 (9)
	          Ahead 0.5492
	        Windows 0.5492
	              I 0.5492
	             of 0.5492
	         Willow 0.5492
	              , 0.5017
	         Yellow 0.5017
	           </S> 0.2388
	            Rec 0.0736

              .   491617   4 (6)
	            the 0.7789
	             us 0.5492
	              - 0.5017
	              . 0.2388
	              , 0.1687
	           </S> 0.0736

  Phylloscopiis   491620   2 (6)
	              , 0.7789
	   Phylloscopus 0.5492
	              a 0.5492
	 Phylloscopidae 0.5492
	              " 0.2388
	           </S> 0.0736

     viridaiius   491634 inf (10)
	     viridariis 0.5492
	              , 0.5492
	              a 0.5492
	     viridarium 0.5492
	      configure 0.5492
	        viridas 0.5492
	      viridamus 0.5492
	         Friday 0.5492
	           </S> 0.5492
	      viridarii 0.5492

              ,   491644 inf (3)
	             of 0.5492
	             us 0.5492
	            the 0.5492

          Blvth   491646 inf (6)
	            But 0.5492
	          Blyth 0.5492
	            Blv 0.5492
	             pp 0.2388
	              i 0.2388
	            the 0.0736

              .   491651   1 (5)
	           </S> 0.5492
	              , 0.5492
	             us 0.5492
	              . 0.5492
	            the 0.5492

              a   491718   1 (6)
	              a 0.5492
	              , 0.5492
	            the 0.5492
	             us 0.5492
	              } 0.2236
	           </S> 0.0736

           Sule   491734   1 (10)
	             of 0.5492
	              s 0.5492
	           Site 0.5492
	           Sule 0.5492
	           </S> 0.3804
	              , 0.2388
	            the 0.1687
	              . 0.1687
	              a 0.1687
	            out 0.0736

     Lighthouse   491746   1 (6)
	     Lighthouse 0.7789
	             C. 0.5492
	              a 0.5492
	       Sumburgh 0.5178
	           </S> 0.1687
	              , 0.0736

Siitherlandshire   491758   4 (9)
	           </S> 0.7789
	            The 0.7789
	              - 0.7789
	      Australia 0.5492
	           PRES 0.5492
	Sutherlandshire 0.5492
	              a 0.5178
	              s 0.5017
	          <UNK> 0.0736

           1902   491795 inf (7)
	             pp 0.7789
	              a 0.5492
	              ) 0.5492
	           1901 0.5492
	           </S> 0.5492
	           2005 0.5492
	            the 0.0736

            Two   491801   1 (8)
	              , 0.7789
	            Top 0.7789
	            Two 0.7789
	             us 0.5492
	              a 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

       couiinou   491818 inf (13)
	              a 0.5492
	       coutiaou 0.5492
	       Whomping 0.5492
	              . 0.5492
	         couina 0.5492
	        cominou 0.5492
	       couinons 0.5492
	              , 0.5492
	        counion 0.5492
	          major 0.5492
	           most 0.1687
	        company 0.1687
	           </S> 0.0736

         Willow   491827   1 (8)
	              a 0.5492
	              , 0.5492
	              . 0.5492
	            non 0.5492
	           </S> 0.5492
	        Windows 0.5492
	         Willow 0.5492
	             of 0.5492

          fouud   491847   4 (8)
	           foud 0.7789
	            fou 0.7789
	         killed 0.2388
	              , 0.1687
	          found 0.1687
	              a 0.1687
	           </S> 0.1687
	            not 0.0736

      Shetlauds   491890   1 (10)
	      Shetlands 0.7789
	              , 0.5492
	            war 0.5492
	    Netherlands 0.5492
	       Shetland 0.5178
	           same 0.1687
	             US 0.1687
	          world 0.1687
	          State 0.1687
	           </S> 0.0736

             in   491900   1 (6)
	             iu 0.5492
	              , 0.5492
	              a 0.5492
	             in 0.5492
	             of 0.5492
	           </S> 0.5492

              -   491923   5 (7)
	             DT 0.5492
	             us 0.5492
	            the 0.5178
	             of 0.5017
	              - 0.1687
	              , 0.0736
	           </S> 0.0736

         Fnmtlx   491986   2 (8)
	              , 0.7789
	         Family 0.5492
	         Ccnmtl 0.5492
	              a 0.5492
	            Fnm 0.5492
	         Fantax 0.5492
	              " 0.2388
	           </S> 0.0736

              -   491993   1 (5)
	              , 0.5492
	              - 0.5492
	             us 0.5492
	            the 0.5492
	           </S> 0.5492

             TL   491995 inf (8)
	              s 0.5492
	             TL 0.5178
	              . 0.2388
	             To 0.2388
	              a 0.1687
	           mail 0.1687
	             to 0.1687
	           </S> 0.0736

          ^RDID   491998 inf (10)
	            DVD 0.7789
	              a 0.5492
	          ARDIS 0.5492
	            DID 0.5492
	             us 0.5492
	            RDI 0.5492
	              ) 0.1687
	              - 0.0736
	              , 0.0736
	           </S> 0.0736

              .   492003   1 (5)
	              , 0.5492
	            the 0.5492
	              . 0.5492
	             us 0.5492
	           </S> 0.5492

             E.   492005 inf (8)
	             of 0.7789
	             El 0.7789
	              , 0.7789
	              I 0.7789
	              . 0.7789
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

 Sii/^/,u>n/\-S   492009 inf (6)
	           Side 0.7789
	              A 0.7789
	             Am 0.5492
	          Smith 0.5324
	           </S> 0.0736
	              , 0.0736

              J   492024   1 (7)
	           </S> 0.5492
	             NJ 0.5492
	             J. 0.5492
	             JJ 0.5492
	            the 0.5492
	             us 0.5492
	              , 0.5492

              Z   492026 inf (9)
	             us 0.7789
	             AZ 0.7789
	             ZZ 0.7789
	             ZA 0.5492
	            the 0.5178
	              & 0.1687
	              , 0.1687
	              K 0.0736
	           </S> 0.0736

            VLV   492030   3 (9)
	             us 0.7789
	            DVD 0.7114
	              a 0.5492
	      Financial 0.5492
	            VLV 0.5492
	            Med 0.2388
	              , 0.1687
	              K 0.0736
	           </S> 0.0736

              E   492035 inf (9)
	             El 0.7789
	            the 0.7789
	              , 0.7789
	             us 0.5492
	             RE 0.5492
	             EE 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

         Rufous   492043   1 (8)
	         Rufous 0.7789
	          rufus 0.7789
	              / 0.5492
	     Associated 0.5492
	         Rudolf 0.5324
	           four 0.2388
	              - 0.1687
	           </S> 0.0736

              .   492057   3 (5)
	            the 0.7789
	             us 0.5492
	              . 0.2388
	              , 0.1687
	           </S> 0.0736

          Aidon   492060   2 (11)
	              , 0.7789
	          Aedon 0.5492
	              a 0.5492
	          Aidoo 0.5492
	           Aido 0.5492
	         Aidone 0.5492
	          Adino 0.5492
	          Audio 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

     (^alcnimAs   492066 inf (9)
	      configure 0.5492
	   Applications 0.5492
	        general 0.5492
	           libs 0.5492
	  mkinstalldirs 0.5492
	        scripts 0.5492
	              a 0.5492
	              , 0.1687
	           </S> 0.0736

              ,   492076 inf (5)
	             us 0.5492
	             of 0.5492
	            the 0.5492
	           </S> 0.5492
	            Big 0.5492

           Temm   492078 inf (8)
	          Temmu 0.5492
	            The 0.5492
	           Temp 0.5492
	           Teme 0.5492
	            Tem 0.5492
	             pp 0.2388
	              i 0.2388
	            the 0.0736

           THIS   492085   1 (5)
	              , 0.7789
	              I 0.7789
	           THIS 0.7789
	              " 0.2388
	           </S> 0.0736

           rare   492090   1 (8)
	           rare 0.7789
	            are 0.7789
	            arz 0.5492
	              A 0.5017
	              , 0.2388
	             is 0.2388
	           </S> 0.1687
	             IS 0.0736

         Family   492152   1 (5)
	              , 0.7789
	         Family 0.7789
	              a 0.5492
	              " 0.2388
	           </S> 0.0736

       TURDID.E   492160 inf (11)
	              a 0.7789
	            rev 0.5492
	              s 0.5492
	              , 0.5492
	         TURYID 0.5492
	           side 0.5492
	              p 0.5492
	            Vol 0.5492
	             to 0.5178
	            The 0.5178
	           </S> 0.0736

              .   492168   1 (6)
	              , 0.5492
	              . 0.5492
	           </S> 0.5492
	              - 0.5492
	             us 0.5492
	            the 0.5492

 Siih/auiilySYL   492171 inf (9)
	              I 0.7789
	          While 0.7789
	          Since 0.7789
	           Only 0.7789
	      Searching 0.7789
	              , 0.7789
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

              I   492186 inf (7)
	             us 0.5492
	             II 0.5492
	            the 0.5492
	           </S> 0.5492
	              , 0.5492
	             MI 0.5492
	             In 0.5492

          IIN^E   492188   1 (10)
	           IINS 0.5492
	           INEE 0.5492
	            IIN 0.5492
	            III 0.5324
	              , 0.1687
	          think 0.1687
	              J 0.1687
	           said 0.1687
	           </S> 0.1687
	             'm 0.0736

              .   492193   1 (7)
	           </S> 0.5492
	              . 0.5492
	            the 0.5492
	            not 0.5492
	              , 0.5492
	             us 0.5492
	              " 0.5492

        Warbler   492212   1 (11)
	        Warbler 0.7789
	              a 0.5492
	        problem 0.5492
	             us 0.5492
	          Sound 0.5492
	              , 0.5178
	              - 0.5178
	              ) 0.5178
	           </S> 0.2236
	     Securities 0.1687
	             by 0.0736

              .   492219   3 (5)
	            the 0.7789
	             us 0.5492
	              . 0.2388
	              , 0.1687
	           </S> 0.0736

         Acdoii   492222   2 (12)
	              , 0.7789
	         Ardoin 0.5492
	           Acii 0.5492
	         Acodia 0.5492
	         Acilii 0.5492
	              a 0.5492
	            Acd 0.5492
	          Audio 0.5492
	          Aedon 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

     fnmiliaris   492229   1 (7)
	        miliari 0.5492
	          <UNK> 0.5492
	              a 0.5492
	              , 0.5492
	       miliaria 0.5492
	     familiaris 0.5492
	           </S> 0.5492

              .   492239 inf (3)
	             of 0.5492
	             us 0.5492
	            the 0.5492

              A   492242   1 (7)
	           This 0.7789
	              , 0.7789
	            the 0.7789
	              A 0.7789
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

           1907   492288 inf (8)
	             pp 0.7789
	           1997 0.5492
	           1970 0.5492
	              a 0.5492
	           1990 0.5492
	           </S> 0.5492
	           2005 0.5492
	            the 0.0736

         Family   492295   1 (6)
	         Family 0.7789
	              , 0.7789
	              a 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

           TURD   492304 inf (12)
	          DUART 0.7789
	            TUR 0.7789
	              s 0.5492
	       friendly 0.5492
	              v 0.5492
	              , 0.5492
	           TURN 0.5178
	            The 0.1687
	              > 0.1687
	              a 0.1687
	             to 0.1687
	           </S> 0.0736

             ID   492309   1 (9)
	              ' 0.5492
	             ID 0.5492
	             us 0.5492
	             In 0.5492
	              a 0.5492
	         domain 0.5492
	              , 0.5178
	              - 0.5178
	           </S> 0.0736

              ^   492312 inf (7)
	             us 0.7789
	             by 0.5178
	          83701 0.5178
	            the 0.5178
	              , 0.1687
	           </S> 0.1687
	              : 0.0736

              .   492313   4 (7)
	             us 0.7789
	           7ego 0.5492
	            the 0.5178
	              , 0.2388
	              . 0.2388
	          <UNK> 0.0736
	           </S> 0.0497

     Subfamily-   492316   2 (7)
	              , 0.7789
	      Subfamily 0.5492
	              a 0.5492
	              s 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

            SYL   492327 inf (7)
	           </S> 0.5492
	            See 0.5492
	              , 0.5492
	             us 0.5492
	              a 0.5492
	            org 0.5492
	            SYL 0.5492

              I   492331   1 (7)
	              I 0.7789
	             us 0.5492
	            the 0.5492
	              , 0.2388
	           </S> 0.1687
	          canal 0.1687
	              - 0.0736

           IIN^   492333   1 (9)
	           IINS 0.5492
	            IIN 0.5492
	             IN 0.5324
	           said 0.1687
	              , 0.1687
	              J 0.1687
	           </S> 0.1687
	          think 0.1687
	             'm 0.0736

              .   492337   1 (6)
	           </S> 0.5492
	            the 0.5492
	             us 0.5492
	              . 0.5492
	            not 0.5492
	              , 0.5492

          Radde   492340   4 (7)
	             It 0.7789
	              I 0.7789
	              , 0.7789
	           Rate 0.5492
	          Radde 0.5492
	              " 0.2388
	           </S> 0.0736

             's   492345   6 (6)
	             is 0.5492
	             us 0.5492
	              a 0.5492
	           </S> 0.2388
	              , 0.1687
	             's 0.0736

     Lusciniola   492363 inf (7)
	         Listen 0.7789
	              , 0.7789
	              a 0.5492
	       luscinia 0.5492
	       Luscinia 0.5492
	              " 0.2388
	           </S> 0.0736

       sckwarzi   492374   1 (7)
	              , 0.5492
	       schwarzi 0.5492
	           </S> 0.5492
	          swarz 0.5492
	        Schwarz 0.5492
	              a 0.5492
	      configure 0.5492

              ,   492382 inf (3)
	             of 0.5492
	             us 0.5492
	            the 0.5492

          Radde   492384   1 (5)
	          Radde 0.5492
	              i 0.2388
	           made 0.2388
	             pp 0.2388
	            the 0.0736

              A   492392   1 (7)
	           This 0.7789
	              , 0.7789
	            the 0.7789
	              A 0.7789
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

            Mr.   492477   4 (7)
	            arz 0.7789
	             My 0.5178
	              , 0.2388
	            Mr. 0.2236
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

         Haigli   492481 inf (15)
	           Haig 0.7789
	        Haigler 0.7789
	          Haili 0.5492
	      merchants 0.5492
	     Bertenshaw 0.5492
	              a 0.5492
	         Hagali 0.5492
	         Haigui 0.5492
	         Haugli 0.5492
	           High 0.5178
	              , 0.2388
	             J. 0.2388
	           </S> 0.1687
	        Speaker 0.0942
	       Chairman 0.0736

              .   492487   1 (6)
	             us 0.5492
	              . 0.5492
	            the 0.5492
	              , 0.5492
	           </S> 0.5492
	          Happy 0.5492

         Family   492489   1 (6)
	         Family 0.7789
	              , 0.7789
	              I 0.7789
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

             --   492496   2 (6)
	             us 0.5492
	             of 0.1687
	              - 0.1687
	            Guy 0.1687
	              , 0.1687
	           </S> 0.0736

             Tl   492499 inf (9)
	             Tl 0.7789
	          World 0.5492
	              L 0.5492
	             us 0.5178
	              , 0.2388
	             To 0.2388
	          <UNK> 0.1687
	              a 0.1687
	           </S> 0.0736

              '   492502   4 (7)
	            the 0.7789
	             -- 0.7789
	             us 0.5492
	              ' 0.5324
	              - 0.1687
	              , 0.1687
	           </S> 0.0736

           KDID   492503 inf (10)
	            KDI 0.7789
	           KDDI 0.7789
	           KDIC 0.5492
	       Estrange 0.5492
	            DVD 0.5178
	              a 0.2388
	              s 0.1687
	              ) 0.1687
	              , 0.0736
	           </S> 0.0736

              .   492507   1 (7)
	           </S> 0.5492
	              . 0.5492
	            the 0.5492
	              ' 0.5492
	              , 0.5492
	             us 0.5492
	           2004 0.0736

             E.   492509 inf (9)
	              , 0.7789
	             of 0.7789
	             El 0.7789
	              I 0.7789
	              . 0.7789
	             us 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

 Su/ifaniuy-SVL   492513 inf (10)
	              ' 0.7789
	              A 0.7789
	    Publication 0.7789
	              / 0.7789
	  config.status 0.5492
	        Stanley 0.5492
	              - 0.5324
	            and 0.5178
	           </S> 0.0736
	              , 0.0736

              I   492528 inf (7)
	           </S> 0.5492
	             MI 0.5492
	            the 0.5492
	              , 0.5492
	             us 0.5492
	             II 0.5492
	             In 0.5492

              '   492530 inf (5)
	             us 0.7789
	            the 0.5178
	           </S> 0.1687
	              , 0.1687
	             'm 0.0736

           ILWF   492531 inf (11)
	            ILW 0.7789
	           IWFL 0.5492
	           ILWU 0.5492
	              a 0.2388
	            not 0.2388
	             it 0.2388
	             In 0.2388
	              ) 0.1687
	              s 0.1687
	           </S> 0.0736
	              , 0.0736

              .   492535   1 (6)
	           </S> 0.5492
	              . 0.5492
	             us 0.5492
	              ' 0.5492
	            the 0.5492
	              , 0.5492

       Cetti'vS   492538 inf (8)
	              I 0.7789
	              , 0.7789
	          Cetti 0.5492
	        Settiva 0.5492
	         Cettia 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

        Warrlkr   492547 inf (8)
	           Warr 0.5492
	           </S> 0.5492
	        Warrior 0.5492
	              , 0.5492
	          <UNK> 0.5492
	         Warral 0.5492
	              a 0.5492
	       Warkalki 0.5492

              .   492554 inf (3)
	             of 0.5492
	             us 0.5492
	            the 0.5492

         Cetfin   492557   3 (11)
	              , 0.7789
	              I 0.7789
	        Jetfins 0.5492
	         Ceftin 0.5492
	         Cetlin 0.5492
	         Cettia 0.5492
	         Celtic 0.5492
	          Cetin 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

         ccttii   492564 inf (12)
	            tii 0.5492
	              , 0.5492
	      accattivi 0.5492
	         cuttie 0.5492
	          citii 0.5492
	              a 0.5492
	        cutting 0.5492
	      configure 0.5492
	         Vettii 0.5492
	           </S> 0.5492
	            cti 0.5492
	         Cettia 0.5492

              ,   492570 inf (3)
	             of 0.5492
	             us 0.5492
	            the 0.5492

           Marm   492572   1 (6)
	           More 0.5492
	           Marm 0.5492
	            arz 0.5492
	              i 0.2388
	             pp 0.2388
	            the 0.0736

              .   492576   3 (6)
	             us 0.5492
	            the 0.5492
	              . 0.2388
	           </S> 0.1687
	              , 0.1687
	             .. 0.0736

              A   492579   1 (7)
	           This 0.7789
	            the 0.7789
	              A 0.7789
	              , 0.7789
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

           Ma}'   492617   4 (9)
	             Ma 0.7789
	           lava 0.7789
	            Maa 0.7789
	              , 0.2388
	            May 0.2388
	        January 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

           12th   492622 inf (8)
	           16th 0.5492
	              , 0.5492
	           with 0.5492
	              1 0.5492
	              a 0.5492
	           site 0.5492
	             12 0.5492
	           </S> 0.5492

           1904   492628 inf (7)
	             pp 0.7789
	           2005 0.5492
	           </S> 0.5492
	              ) 0.5492
	              a 0.5492
	           1900 0.5492
	            the 0.0736

            One   492635   1 (8)
	            One 0.7789
	              , 0.7789
	            one 0.5492
	              a 0.5492
	             us 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

       Icterine   492654   1 (11)
	       Icterine 0.7789
	              , 0.5492
	        present 0.5492
	              a 0.5492
	          major 0.5492
	         latter 0.5492
	              . 0.5492
	       Internet 0.1687
	           most 0.1687
	            use 0.1687
	           </S> 0.0736

         Cromer   492683   1 (11)
	           home 0.5492
	          night 0.5492
	              , 0.5492
	            the 0.5492
	         Center 0.5492
	            all 0.5492
	              a 0.5492
	         Cromer 0.5492
	           </S> 0.5492
	             us 0.2388
	           your 0.0736

            one   492715   1 (7)
	            one 0.5492
	              , 0.5492
	            and 0.5492
	              a 0.5492
	             us 0.5492
	              } 0.2236
	           </S> 0.0736

            one   492752   1 (6)
	            one 0.5492
	              a 0.5492
	              , 0.5492
	             us 0.5492
	              } 0.2236
	           </S> 0.0736

      September   492783   1 (10)
	       December 0.7789
	      September 0.7789
	          major 0.5492
	         before 0.2388
	           </S> 0.2388
	             it 0.1687
	              , 0.1687
	              a 0.1687
	             to 0.1687
	             in 0.0736

            one   492801   1 (6)
	              , 0.5492
	             us 0.5492
	              a 0.5492
	            one 0.5492
	              } 0.2236
	           </S> 0.0736

           Cley   492813   1 (11)
	            the 0.5492
	              a 0.5492
	           City 0.5492
	           alba 0.5492
	           </S> 0.5492
	           home 0.5492
	           this 0.5492
	              , 0.5492
	           Cley 0.5492
	            all 0.5492
	           your 0.0736

        Holkham   492855   1 (11)
	           </S> 0.5492
	           home 0.5492
	              , 0.5492
	            the 0.5492
	           Home 0.5492
	        Holkham 0.5492
	      Annapolis 0.5492
	            all 0.5492
	              a 0.5492
	             us 0.2388
	           your 0.0736

            one   492884   1 (6)
	            one 0.5492
	              , 0.5492
	              a 0.5492
	             us 0.5492
	              } 0.2236
	           </S> 0.0736

          Knock   492905   1 (8)
	              . 0.7789
	          Knock 0.7789
	           know 0.5492
	             of 0.5492
	              a 0.5492
	           </S> 0.5178
	              , 0.5178
	           Town 0.0736

      Lightship   492911   4 (8)
	         Lights 0.7789
	           Road 0.7789
	              a 0.7114
	      Lightship 0.5492
	           </S> 0.2388
	              , 0.1687
	          Knock 0.1687
	              - 0.0736

      September   492922   1 (5)
	              " 0.5492
	              a 0.5492
	              , 0.5492
	      September 0.5492
	            the 0.0736

            one   492939   1 (6)
	            one 0.5492
	              a 0.5492
	              , 0.5492
	             us 0.5492
	              } 0.2236
	           </S> 0.0736

           June   492961   3 (7)
	          Munia 0.5492
	            Jan 0.5178
	           June 0.5017
	              , 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

            one   492973   1 (6)
	              , 0.5492
	              a 0.5492
	             us 0.5492
	            one 0.5492
	              } 0.2236
	           </S> 0.0736

         Family   493049   1 (6)
	         Family 0.7789
	              , 0.7789
	              a 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

        TURDID^   493057 inf (12)
	            rev 0.5492
	           TURI 0.5492
	         TURYID 0.5492
	           side 0.5492
	              s 0.5492
	              p 0.5492
	            Vol 0.5492
	              , 0.5492
	              a 0.2388
	            The 0.1687
	             to 0.1687
	           </S> 0.0736

              .   493064   1 (6)
	              , 0.5492
	              . 0.5492
	           </S> 0.5492
	              - 0.5492
	             us 0.5492
	            the 0.5492

     Subfamily-   493067   3 (5)
	              , 0.7789
	              I 0.7789
	      Subfamily 0.5492
	              " 0.2388
	           </S> 0.0736

            SYL   493078 inf (6)
	            See 0.5492
	             us 0.5492
	              a 0.5492
	              , 0.5492
	           </S> 0.5492
	            SYL 0.5492

          VIIN^   493082 inf (8)
	              I 0.7789
	            VII 0.5492
	           VIII 0.5492
	            VIN 0.5492
	              , 0.2388
	           </S> 0.1687
	          canal 0.1687
	              - 0.0736

              .   493087   1 (5)
	              . 0.5492
	             us 0.5492
	            the 0.5492
	              , 0.5492
	           </S> 0.5492

      Melodious   493094 inf (8)
	      melodious 0.7789
	              / 0.5492
	      Melodinus 0.5492
	          Music 0.5492
	      Passerine 0.5492
	     Associated 0.5492
	              - 0.1687
	           </S> 0.0736

       Hypolais   493114   2 (7)
	              , 0.7789
	              a 0.5492
	       Hypnosis 0.5492
	       Hypolais 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

     polyglolla   493123 inf (8)
	    polygonella 0.5492
	           </S> 0.5492
	              , 0.5492
	      configure 0.5492
	       polyglot 0.5492
	           pool 0.5492
	       polygala 0.5492
	              a 0.5492

              ,   493133 inf (3)
	             of 0.5492
	             us 0.5492
	            the 0.5492

         ViEILL   493135 inf (7)
	             pp 0.7789
	              i 0.7789
	           VEIL 0.5492
	            ILL 0.5492
	         ViEWER 0.5492
	           with 0.5178
	            the 0.0736

              .   493141   1 (5)
	           </S> 0.5492
	              , 0.5492
	             us 0.5492
	              . 0.5492
	            the 0.5492

             AN   493144   4 (9)
	           This 0.7789
	              , 0.7789
	              I 0.7789
	             us 0.5492
	             AM 0.5492
	             AN 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

        example   493147   1 (7)
	        example 0.7789
	       document 0.5492
	              E 0.2388
	      EMERGENCY 0.2388
	              , 0.1687
	           </S> 0.0736
	            ACT 0.0736

        Burwash   493171   1 (11)
	              , 0.5492
	           </S> 0.5492
	            the 0.5492
	              0 0.5492
	         Bosham 0.5492
	              a 0.5492
	            all 0.5492
	        Burwash 0.5492
	            was 0.5178
	             us 0.2388
	           your 0.0736

              a   493198   1 (6)
	             us 0.5492
	              a 0.5492
	              , 0.5492
	            the 0.5492
	              } 0.2236
	           </S> 0.0736

       Ninfield   493219   2 (10)
	           well 0.7789
	           </S> 0.5492
	              , 0.5492
	            all 0.5492
	           home 0.5492
	            the 0.5492
	              a 0.5492
	       Ninfield 0.5492
	             us 0.5178
	           your 0.0736

            May   493241   2 (9)
	              a 0.7789
	           hand 0.5492
	            may 0.5492
	            cia 0.5492
	            May 0.5492
	             of 0.5178
	           </S> 0.5178
	              , 0.2388
	             to 0.0736

            one   493252   1 (7)
	             us 0.5492
	              , 0.5492
	             it 0.5492
	            one 0.5492
	              a 0.5492
	              } 0.2236
	           </S> 0.0736

    Lighthoi:se   493281 inf (8)
	           Road 0.5492
	              M 0.5178
	          Light 0.5178
	     Lighthouse 0.5178
	         Island 0.2388
	              , 0.1687
	           </S> 0.1687
	             of 0.0736

              ,   493294   1 (5)
	              , 0.5492
	           </S> 0.5492
	             us 0.5492
	            the 0.5492
	        Kinsale 0.5492

            co.   493296   1 (10)
	             co 0.5492
	            can 0.5492
	              a 0.5492
	           </S> 0.5492
	            com 0.5492
	            coo 0.5492
	              ( 0.5492
	             SC 0.5492
	            cia 0.5492
	            the 0.0736

           Cork   493300   3 (8)
	        Wicklow 0.7789
	           </S> 0.7789
	           Cork 0.5492
	           work 0.5492
	              a 0.5492
	         Corvus 0.5492
	              , 0.2388
	            mar 0.0736

            the   493335   1 (5)
	              , 0.5492
	            the 0.5492
	             us 0.5492
	              } 0.2236
	           </S> 0.0736

           Rev.   493339   4 (10)
	           Reve 0.7789
	         letter 0.5492
	           Revo 0.5324
	           Read 0.5178
	           lava 0.5178
	            Rev 0.5178
	           same 0.1687
	          first 0.1687
	              - 0.1687
	           </S> 0.0736

         Mathew   493350   1 (7)
	         rather 0.7789
	         Mathew 0.7789
	             M. 0.5492
	          There 0.5017
	              I 0.1687
	              , 0.0736
	           </S> 0.0736

          heard   493357   2 (7)
	            are 0.7789
	          heard 0.5492
	           hard 0.5492
	              a 0.5492
	            arz 0.5492
	              , 0.1687
	           </S> 0.0736

       Warblers   493367   2 (8)
	       Wireless 0.7789
	              a 0.5492
	       Warblers 0.5492
	        cablets 0.5492
	              , 0.1687
	             of 0.1687
	           </S> 0.1687
	              - 0.0736

           near   493376   1 (8)
	           near 0.7789
	              a 0.5492
	            new 0.5492
	          three 0.5492
	            arz 0.5492
	              . 0.1687
	           </S> 0.1687
	              , 0.0736

             he   493444   1 (6)
	              , 0.5492
	             us 0.5492
	              a 0.5492
	             he 0.5492
	              } 0.2236
	           </S> 0.0736

      Melodious   493467 inf (9)
	      melodious 0.7789
	      Melodinus 0.5492
	       products 0.5492
	             us 0.5492
	            the 0.1687
	              , 0.1687
	           </S> 0.1687
	              . 0.1687
	              a 0.0736

       Warblers   493477   5 (8)
	        problem 0.5492
	              a 0.5492
	             to 0.5492
	        cablets 0.5492
	       Warblers 0.5324
	           </S> 0.5017
	              , 0.2388
	        Warbler 0.0736

         nested   493500   1 (6)
	         nested 0.7789
	              a 0.5492
	              , 0.2236
	           need 0.1687
	           </S> 0.1687
	            are 0.0736

      Shetlands   493556   1 (10)
	             SC 0.5492
	           </S> 0.5492
	      therefore 0.5492
	      Shetlands 0.5492
	              a 0.5492
	            Man 0.5492
	       Shetland 0.5492
	          these 0.2388
	            who 0.1687
	            the 0.0736

           1906   493586 inf (8)
	           </S> 0.5492
	      therefore 0.5492
	              ( 0.5492
	           2005 0.5492
	           1960 0.5492
	           1909 0.5492
	              a 0.5492
	            the 0.0736

        Warbler   493657   4 (9)
	       wrapping 0.5492
	              s 0.5492
	          water 0.5492
	        Warbler 0.5178
	              . 0.2388
	             to 0.1687
	              a 0.1687
	             up 0.1687
	           </S> 0.0736

             Au   493737 inf (8)
	              , 0.7789
	              a 0.5492
	             us 0.5492
	             AM 0.5492
	             Au 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

        example   493740   1 (6)
	              a 0.5492
	        example 0.5492
	        content 0.5492
	           </S> 0.1687
	              , 0.1687
	           Pair 0.0736

              a   493823   1 (6)
	              a 0.5492
	              , 0.5492
	            the 0.5492
	             us 0.5492
	              } 0.2236
	           </S> 0.0736

        Bexhill   493833   1 (10)
	        Bexhill 0.5492
	           </S> 0.5492
	           home 0.5492
	              a 0.5492
	            all 0.5492
	            the 0.5492
	              , 0.5492
	             us 0.2388
	           will 0.2388
	           your 0.0736

            one   493856   1 (7)
	              , 0.5492
	            and 0.5492
	             us 0.5492
	              a 0.5492
	            one 0.5492
	              } 0.2236
	           </S> 0.0736

  Christclinrch   493863   2 (11)
	        version 0.7789
	              0 0.5492
	              , 0.5492
	              a 0.5492
	           that 0.5492
	            all 0.5492
	           </S> 0.5492
	            the 0.5492
	   Christchurch 0.5492
	             us 0.5178
	           your 0.0736

          Hants   493878   1 (9)
	          Hants 0.5492
	              a 0.5492
	            and 0.5492
	           </S> 0.5492
	      therefore 0.5492
	          Parus 0.5492
	           into 0.5017
	            who 0.1687
	            the 0.0736

            one   493899   1 (6)
	              , 0.5492
	             us 0.5492
	            one 0.5492
	              a 0.5492
	              } 0.2236
	           </S> 0.0736

        Horning   493911   1 (12)
	              a 0.5492
	              , 0.5492
	              0 0.5492
	      Braintree 0.5492
	           </S> 0.5492
	            all 0.5492
	          <UNK> 0.5492
	        Horning 0.5492
	            the 0.5492
	        working 0.5178
	             us 0.2388
	           your 0.0736

          there   493943   1 (6)
	              , 0.5492
	              a 0.5492
	          there 0.5492
	         Member 0.5492
	              } 0.2236
	           </S> 0.0736

   Charterhonse   493975   1 (10)
	   Charterhouse 0.7789
	    Netherlands 0.5492
	              , 0.5492
	           data 0.1687
	         number 0.1687
	           same 0.1687
	          world 0.1687
	           next 0.1687
	       Internet 0.1687
	           </S> 0.0736

     collection   493988   1 (6)
	     collection 0.5492
	              , 0.5492
	              a 0.5492
	             of 0.5492
	        section 0.5492
	           </S> 0.5492

           shot   493999   1 (8)
	            she 0.7789
	           shot 0.7789
	           sala 0.5492
	              a 0.5178
	              , 0.1687
	           </S> 0.1687
	              . 0.1687
	             of 0.0736

      Godalming   494007   1 (10)
	          <UNK> 0.5492
	           </S> 0.5492
	      Godalming 0.5492
	             it 0.5492
	              a 0.5492
	              , 0.5492
	            the 0.5492
	        working 0.5178
	             us 0.2388
	           your 0.0736

 Ornithologists   494065   1 (10)
	          trade 0.5492
	         market 0.5492
	 Ornithologists 0.5492
	             us 0.5492
	              , 0.2388
	          those 0.2236
	              a 0.1687
	           </S> 0.1687
	          <UNK> 0.1687
	            the 0.0736

       believed   494096   1 (9)
	       believed 0.5492
	            way 0.5492
	        between 0.5492
	              a 0.5492
	             is 0.1687
	           </S> 0.1687
	              , 0.1687
	             of 0.0942
	              . 0.0736

         Tresco   494136   1 (9)
	          These 0.5492
	            the 0.5492
	          <UNK> 0.5492
	              , 0.5492
	         Tresco 0.5492
	           </S> 0.5492
	              a 0.5492
	             us 0.2388
	           your 0.0736

         Scilly   494144   1 (9)
	         Scilly 0.7789
	            TSO 0.5492
	       Compiled 0.5492
	         Social 0.5178
	              - 0.2388
	              a 0.1687
	           </S> 0.1687
	              s 0.1687
	          <UNK> 0.0736

      Specimens   494167   2 (8)
	              , 0.7789
	          minor 0.5492
	         second 0.5492
	              a 0.5492
	      Specimens 0.5492
	          <UNK> 0.5178
	              " 0.2388
	           </S> 0.0736

        Ireland   494260   3 (8)
	    destination 0.5492
	            and 0.5492
	        Ireland 0.5178
	              a 0.1687
	           </S> 0.1687
	           that 0.1687
	              , 0.1687
	            the 0.0736

     Additional   494298   2 (6)
	              , 0.7789
	              a 0.5492
	           with 0.5492
	     Additional 0.5492
	              " 0.2388
	           </S> 0.0736

       Accentor   494367   6 (11)
	             of 0.5492
	              a 0.5492
	           into 0.5492
	       Wellness 0.5492
	     Convention 0.5492
	              . 0.5178
	       Accentor 0.5178
	            CDA 0.2388
	              , 0.1687
	           </S> 0.0942
	         Skiing 0.0736

            has   494443   2 (5)
	              , 0.7789
	              T 0.5492
	            has 0.5492
	             us 0.5492
	           </S> 0.0736

       Januar}'   494473   1 (11)
	        January 0.5492
	           </S> 0.5492
	              a 0.5492
	              , 0.5492
	            and 0.5492
	             A. 0.5492
	              x 0.5492
	         Januar 0.5492
	        Vermont 0.5492
	      therefore 0.5492
	            the 0.0736

           1905   494483 inf (6)
	              i 0.7789
	      therefore 0.5492
	          <UNK> 0.5492
	             y1 0.5492
	              , 0.5492
	            the 0.0736

      Godalming   494513   1 (9)
	      Godalming 0.7789
	         having 0.5492
	       infrared 0.5178
	             us 0.5178
	              , 0.2388
	           </S> 0.2388
	              a 0.2388
	         future 0.1687
	            the 0.0736

            one   494543   1 (6)
	              , 0.5492
	            one 0.5492
	              a 0.5492
	              s 0.5492
	              } 0.2236
	           </S> 0.0736

        January   494568   3 (9)
	        October 0.5492
	             us 0.5492
	        January 0.3804
	           turn 0.3804
	              , 0.2388
	           fact 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

             it   494641   1 (6)
	              a 0.5492
	             iu 0.5492
	             it 0.5492
	              , 0.5492
	              } 0.2236
	           </S> 0.0736

        Scill}'   494665   1 (10)
	         Scicli 0.7789
	         Scilly 0.7789
	             us 0.5492
	          stock 0.2388
	              , 0.2388
	            all 0.2388
	           2004 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

              .   494672   1 (6)
	            the 0.5492
	              . 0.5492
	           </S> 0.5492
	              : 0.5492
	              , 0.5492
	             us 0.5492

              A   494675   1 (6)
	              , 0.7789
	              A 0.7789
	            the 0.7789
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

        Crested   494858   1 (9)
	        Crested 0.7789
	              / 0.5492
	          major 0.5492
	        Chester 0.5178
	         Center 0.2388
	              - 0.1687
	           same 0.1687
	          first 0.1687
	           </S> 0.0736

            Tit   494866   7 (10)
	            The 0.7789
	              I 0.5492
	             of 0.5492
	         effect 0.5492
	       returned 0.5492
	            cia 0.5492
	            Tit 0.5178
	              , 0.5178
	           </S> 0.2236
	          Butte 0.0736

       Yarmouth   494884   1 (10)
	       Yarmouth 0.7789
	       increase 0.5492
	             us 0.5178
	          South 0.5178
	             or 0.3804
	           </S> 0.2388
	              a 0.2388
	              , 0.2388
	            you 0.1687
	            the 0.0736

              a   494975   1 (6)
	             us 0.5492
	              , 0.5492
	              a 0.5492
	            the 0.5492
	              } 0.2236
	           </S> 0.0736

        Creeper   494982   1 (11)
	        Creeper 0.7789
	              s 0.5492
	        Wstrict 0.5492
	         Center 0.5178
	             it 0.2388
	              . 0.2388
	            old 0.2388
	              a 0.1687
	           year 0.1687
	             to 0.1687
	           </S> 0.0736

       Alderney   495044   1 (8)
	       Alderney 0.7789
	           five 0.5492
	             us 0.5492
	          order 0.2388
	              , 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

         Family   495092   1 (7)
	         Family 0.7789
	              , 0.7789
	              a 0.5492
	              / 0.5178
	              " 0.2388
	              ) 0.2388
	           </S> 0.0736

             TA   495103   1 (7)
	             TA 0.7789
	             To 0.7789
	             us 0.5492
	              a 0.5492
	              - 0.1687
	              , 0.1687
	           </S> 0.0736

         CILLID   495106 inf (10)
	         CIALIS 0.5492
	         DILLIC 0.5492
	            USA 0.5492
	           CILL 0.5492
	           City 0.5492
	              A 0.5178
	          Dewey 0.2236
	           </S> 0.1687
	              , 0.0942
	              - 0.0736

              .   495112   1 (5)
	            the 0.5492
	              . 0.5492
	              , 0.5492
	             us 0.5492
	           </S> 0.5492

             -E   495114 inf (9)
	              , 0.7789
	             of 0.7789
	             -- 0.7789
	              - 0.7789
	              I 0.7789
	             us 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

              .   495116   1 (5)
	             us 0.5492
	              , 0.5492
	              . 0.5492
	            the 0.5492
	           </S> 0.5492

        Wagtail   495135   1 (12)
	             us 0.5492
	          again 0.5492
	        Wagtail 0.5492
	         Flying 0.5492
	              a 0.5492
	              ) 0.5324
	              , 0.5178
	              - 0.5178
	         League 0.5178
	       Stranger 0.3804
	           </S> 0.2388
	             by 0.0736

              .   495142   3 (5)
	             us 0.5492
	            the 0.5492
	              . 0.5178
	              , 0.1687
	           </S> 0.0736

             j]   495145 inf (8)
	             of 0.7789
	              , 0.7789
	              I 0.7789
	             us 0.5492
	             ja 0.5492
	              ] 0.5017
	              " 0.2388
	           </S> 0.0736

            lot   495148   1 (6)
	            not 0.5492
	            lot 0.5492
	              a 0.5492
	              , 0.5492
	           </S> 0.5492
	           lava 0.5492

             ac   495152   1 (7)
	             ac 0.7789
	            arz 0.5492
	             at 0.5178
	              I 0.5178
	           </S> 0.2388
	              , 0.2388
	             of 0.0736

           ilia   495155   1 (8)
	           ilia 0.5492
	           alba 0.5492
	             in 0.5178
	              a 0.5178
	              , 0.2388
	           </S> 0.1687
	             dc 0.1687
	              - 0.0736

       60/ra/is   495160 inf (8)
	             is 0.7789
	              a 0.5492
	          oasis 0.5492
	         travis 0.5492
	  thunderstruck 0.5492
	          kulik 0.5178
	              , 0.2388
	           </S> 0.0736

              ,   495168   1 (4)
	             us 0.5492
	            the 0.5492
	           </S> 0.5492
	              , 0.5492

           SuND   495170 inf (12)
	           SEND 0.5492
	             Su 0.5492
	           SSND 0.5492
	            SND 0.5492
	         SuNava 0.5492
	           Site 0.5492
	      ekaterina 0.5492
	          <UNK> 0.5492
	             us 0.5178
	             pp 0.2388
	              i 0.2388
	            the 0.0736

              .   495174   1 (5)
	           </S> 0.5492
	              , 0.5492
	             us 0.5492
	              . 0.5492
	            the 0.5492

           THIS   495177   1 (7)
	              , 0.7789
	            THE 0.7789
	              I 0.7789
	           THIS 0.7789
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

           race   495182   1 (11)
	           side 0.7789
	           race 0.7789
	           each 0.5492
	           kind 0.5492
	        version 0.5492
	           lava 0.5492
	              A 0.5017
	              , 0.2388
	             is 0.2388
	           </S> 0.1687
	             IS 0.0736

           near   495238   1 (9)
	           near 0.7789
	            new 0.7789
	            arz 0.5492
	            the 0.1687
	              , 0.1687
	              a 0.1687
	           </S> 0.1687
	           from 0.0736
	      published 0.0736

             In   495253   1 (6)
	              , 0.7789
	             In 0.7789
	              A 0.7789
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

            two   495304   1 (7)
	           they 0.7789
	            two 0.7789
	             us 0.5492
	          there 0.5492
	              a 0.5178
	              , 0.1687
	           </S> 0.0736

          .shot   495313   3 (8)
	           show 0.7789
	          Ashot 0.5492
	           shot 0.5017
	         killed 0.2388
	              , 0.1687
	              a 0.1687
	           </S> 0.1687
	            not 0.0736

           near   495319   1 (7)
	            new 0.5492
	           near 0.5492
	              a 0.5492
	              , 0.5492
	             to 0.5492
	           </S> 0.5492
	            arz 0.5492

     Willingdon   495324   1 (10)
	     Willingdon 0.7789
	        Phoenix 0.5492
	     Chichester 0.5492
	             us 0.5178
	     Washington 0.5178
	              , 0.2388
	              a 0.2388
	           </S> 0.2388
	         future 0.1687
	            the 0.0736

              A   495344   1 (7)
	              A 0.7789
	            the 0.7789
	              , 0.7789
	             us 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

           Lydd   495426   1 (10)
	           Lydd 0.7789
	            Pyi 0.7789
	           2000 0.5492
	        Derwent 0.5492
	            Add 0.5178
	              , 0.1687
	              a 0.1687
	           more 0.1687
	           </S> 0.1687
	            the 0.0736

              A   495432   1 (6)
	              , 0.7789
	              A 0.7789
	            the 0.7789
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

     Winchelsea   495451   1 (11)
	              a 0.5492
	              , 0.5492
	          these 0.5492
	           home 0.5492
	           </S> 0.5492
	            the 0.5492
	            all 0.5492
	     Winchelsea 0.5492
	          night 0.5492
	             us 0.5178
	           your 0.0736

         Family   495477   1 (6)
	         Family 0.7789
	              , 0.7789
	              a 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

             TA   495488   1 (7)
	             TA 0.7789
	             To 0.7789
	             us 0.5492
	              a 0.5492
	              , 0.1687
	              - 0.1687
	           </S> 0.0736

            CIL   495491   2 (8)
	             In 0.7789
	             us 0.5492
	            CIL 0.5492
	              A 0.5178
	              ' 0.5178
	           </S> 0.1687
	              , 0.0942
	              - 0.0736

              L   495495 inf (8)
	            the 0.7789
	             La 0.5492
	             LL 0.5492
	             FL 0.5492
	             us 0.5492
	  International 0.2388
	              , 0.1687
	           </S> 0.0736

            ID^   495497   4 (11)
	            IDE 0.7789
	            IDD 0.7789
	             In 0.7789
	             ID 0.5178
	           Word 0.5178
	              A 0.5178
	              s 0.2388
	              , 0.1687
	              ) 0.1687
	              M 0.1687
	           </S> 0.0736

              .   495500   1 (7)
	           </S> 0.5492
	              . 0.5492
	              , 0.5492
	              N 0.5492
	            the 0.5492
	             us 0.5492
	              : 0.5492

        Wagtail   495520   1 (12)
	          model 0.5492
	              a 0.5492
	          again 0.5492
	             us 0.5492
	        Wagtail 0.5492
	              ) 0.5324
	              , 0.5178
	           Gull 0.5178
	              - 0.5178
	       Stranger 0.3804
	           </S> 0.2388
	             by 0.0736

      Motacilla   495530   3 (6)
	              I 0.7789
	              , 0.7789
	      Motacilla 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

  vulauoccphala   495540 inf (9)
	      Motacilla 0.7789
	  Aulacocephala 0.5492
	     particular 0.5492
	      configure 0.5492
	              a 0.5492
	              , 0.5178
	           </S> 0.5178
	           alba 0.0736
	          flava 0.0736

              ,   495553   1 (4)
	             us 0.5492
	            the 0.5492
	              , 0.5492
	           </S> 0.5492

          LiCHT   495555 inf (9)
	            LiH 0.5492
	            LCH 0.5492
	           LTCH 0.5492
	           List 0.5492
	           LiCl 0.5492
	            CHT 0.5492
	              i 0.2388
	             pp 0.2388
	            the 0.0736

              .   495560   1 (5)
	           </S> 0.5492
	              , 0.5492
	             us 0.5492
	              . 0.5492
	            the 0.5492

              A   495563   1 (7)
	           This 0.7789
	              , 0.7789
	            the 0.7789
	              A 0.7789
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

     Willingdon   495584   1 (10)
	     Willingdon 0.7789
	          times 0.5492
	     Washington 0.5178
	             us 0.5178
	           </S> 0.2388
	              a 0.2388
	              , 0.2388
	          <UNK> 0.2388
	         future 0.1687
	            the 0.0736

           Ma}-   495599   4 (8)
	            Maa 0.7789
	           lava 0.7789
	             Ma 0.7789
	            May 0.2388
	              , 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

          ijtli   495604 inf (11)
	             18 0.5492
	          ixtli 0.5492
	           Atli 0.5492
	           site 0.5492
	           ijlt 0.5492
	              a 0.5492
	              , 0.5492
	           into 0.5492
	           </S> 0.5492
	            ijl 0.5492
	        Cejtlin 0.5492

              ,   495609 inf (3)
	             of 0.5492
	             us 0.5492
	            the 0.5492

           1906   495611 inf (8)
	              i 0.7789
	   respectively 0.5492
	              s 0.5492
	              | 0.5492
	             r0 0.5492
	             r1 0.5492
	          which 0.2388
	            the 0.0736

             it   495617   1 (7)
	             it 0.5492
	             iu 0.5492
	              , 0.5492
	              a 0.5492
	         Member 0.5492
	              } 0.2236
	           </S> 0.0736

         flaz'a   495641   1 (13)
	          flava 0.7789
	    information 0.5492
	         Alauda 0.5492
	           faza 0.5492
	         family 0.5492
	            Act 0.5492
	          fazla 0.5492
	              a 0.5492
	            fla 0.5492
	              . 0.2388
	          <UNK> 0.1687
	           </S> 0.1687
	              , 0.0736

             as   495649   1 (9)
	              ( 0.5492
	            and 0.5492
	             as 0.5492
	           </S> 0.5492
	             us 0.5178
	          there 0.1687
	            you 0.1687
	            who 0.1687
	            the 0.0736

      followiug   495664   5 (13)
	              a 0.5492
	    unfollowing 0.5492
	        matches 0.5492
	       extremes 0.5492
	      following 0.5178
	         follow 0.5178
	          major 0.2388
	      countries 0.2388
	              , 0.1687
	           </S> 0.1687
	             of 0.1687
	          years 0.1687
	              - 0.0736

              .   495673   1 (6)
	              , 0.5492
	              . 0.5492
	           </S> 0.5492
	             of 0.5492
	            the 0.5492
	             us 0.5492

             Fa   495676 inf (7)
	             at 0.7789
	              , 0.7789
	              I 0.7789
	             Fa 0.5492
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

            ly-   495682   3 (9)
	             by 0.7789
	            lyx 0.5492
	             ly 0.5324
	              s 0.5178
	              a 0.5178
	              / 0.2388
	              , 0.2388
	           </S> 0.1687
	            Map 0.0736

             MO   495686 inf (7)
	              | 0.5492
	             My 0.5492
	              , 0.5492
	           </S> 0.5492
	             us 0.5492
	             MO 0.5492
	              a 0.5492

             TA   495689   1 (7)
	             TA 0.7789
	             To 0.7789
	             us 0.5492
	    Grangeville 0.5492
	              - 0.1687
	              , 0.1687
	           </S> 0.0736

           CILL   495692   1 (8)
	             J. 0.5492
	           City 0.5492
	        Listing 0.5492
	           CILL 0.5492
	              A 0.5178
	           </S> 0.1687
	              , 0.0942
	              - 0.0736

             ID   495697   1 (9)
	             In 0.5492
	             us 0.5492
	              a 0.5492
	             ID 0.5492
	             al 0.5492
	              , 0.5178
	           site 0.5178
	           </S> 0.1687
	          <UNK> 0.0736

              .   495699   3 (6)
	             us 0.7789
	            the 0.5178
	              . 0.2388
	           </S> 0.1687
	              , 0.1687
	              : 0.0736

             F.   495701 inf (9)
	              , 0.7789
	              . 0.7789
	            For 0.7789
	              s 0.5492
	              a 0.5492
	             FL 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

         SykEvS   495705 inf (9)
	          Sykes 0.7789
	            Syk 0.5492
	      configure 0.5492
	             C. 0.5178
	              A 0.5017
	          Smith 0.2388
	        Kennedy 0.1687
	              , 0.0736
	           </S> 0.0736

              '   495711   1 (5)
	              ' 0.5492
	              , 0.5492
	             us 0.5492
	           </S> 0.5492
	            the 0.5492

        Wagtail   495713   1 (8)
	        Wagtail 0.7789
	            Ask 0.5492
	              a 0.2388
	           What 0.2388
	              ) 0.1687
	              s 0.1687
	           </S> 0.0736
	              , 0.0736

              .   495720   4 (7)
	              ' 0.7789
	            the 0.5492
	             us 0.5492
	              . 0.5178
	              ( 0.2388
	              , 0.1687
	           </S> 0.0736

      Motacilla   495723   3 (6)
	              I 0.7789
	              , 0.7789
	      Motacilla 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

          beema   495733 inf (10)
	              a 0.5492
	         beeman 0.5492
	           bema 0.5492
	      configure 0.5492
	           beem 0.5492
	           been 0.5492
	              , 0.5178
	           </S> 0.5178
	          flava 0.0736
	           alba 0.0736

          SykeS   495740 inf (6)
	           Site 0.5492
	          Sykes 0.5492
	           Syke 0.5492
	              i 0.2388
	             pp 0.2388
	            the 0.0736

              .   495745   1 (5)
	           </S> 0.5492
	              , 0.5492
	             us 0.5492
	              . 0.5492
	            the 0.5492

              A   495748   1 (7)
	           This 0.7789
	              , 0.7789
	            the 0.7789
	              A 0.7789
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

    Rottingdean   495771   2 (11)
	        working 0.7789
	              0 0.5492
	           </S> 0.5492
	              a 0.5492
	    Rottingdean 0.5492
	            the 0.5492
	         Bosham 0.5492
	              , 0.5492
	            all 0.5492
	             us 0.5178
	           your 0.0736

          2otli   495801 inf (10)
	          Hotel 0.7789
	          Kotli 0.5492
	           otli 0.5492
	              a 0.5492
	          wolfi 0.5492
	             25 0.1687
	              1 0.1687
	           </S> 0.1687
	              , 0.1687
	           2005 0.0736

           1898   495808 inf (8)
	             pp 0.7789
	           </S> 0.5492
	           1989 0.5492
	           1988 0.5492
	           1998 0.5492
	              a 0.5492
	           2005 0.5492
	            the 0.0736

         Family   495815   1 (6)
	         Family 0.7789
	              , 0.7789
	              a 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

             TA   495826   1 (7)
	             TA 0.7789
	             To 0.7789
	             us 0.5492
	              a 0.5492
	              - 0.1687
	              , 0.1687
	           </S> 0.0736

       CILLlDzE   495829 inf (9)
	              A 0.7789
	           IDEX 0.7789
	            USA 0.5492
	             IL 0.5492
	        College 0.5492
	          Dewey 0.5324
	              , 0.1687
	           </S> 0.1687
	              - 0.0736

              .   495837   1 (5)
	            the 0.5492
	              . 0.5492
	              , 0.5492
	             us 0.5492
	           </S> 0.5492

          AvShy   495844 inf (11)
	           Avvy 0.7789
	             Av 0.7789
	          Avahi 0.7789
	            Avy 0.7789
	              C 0.5492
	              e 0.5492
	            All 0.5492
	            Red 0.5492
	            Shy 0.5178
	              - 0.1687
	           </S> 0.0736

              -   495849   1 (6)
	           </S> 0.5492
	            the 0.5492
	              , 0.5492
	             us 0.5492
	             of 0.5492
	              - 0.5492

        Wagtail   495857   1 (11)
	        Wagtail 0.5492
	             us 0.5492
	              a 0.5492
	          again 0.5492
	              ) 0.5324
	         League 0.5178
	              , 0.5178
	              - 0.5178
	       Stranger 0.3804
	           </S> 0.2388
	             by 0.0736

              .   495864   3 (6)
	             us 0.5492
	            the 0.5492
	              . 0.5178
	              ( 0.2388
	              , 0.1687
	           </S> 0.0736

      Motacilla   495867   3 (6)
	              I 0.7789
	              , 0.7789
	      Motacilla 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

 cinereocapilla   495877 inf (9)
	              a 0.5492
	        compile 0.5492
	      configure 0.5492
	              , 0.5178
	           </S> 0.5178
	        cinerea 0.1687
	       citreola 0.1687
	           alba 0.0736
	          flava 0.0736

              ,   495891   1 (4)
	             us 0.5492
	            the 0.5492
	              , 0.5492
	           </S> 0.0736

          Sa\'I   495893 inf (6)
	             pp 0.7789
	              i 0.7789
	           have 0.7789
	           SaPI 0.5492
	             Sa 0.5492
	            the 0.0736

              .   495898   1 (5)
	           </S> 0.5492
	              , 0.5492
	             us 0.5492
	              . 0.5492
	            the 0.5492

            THE   495901   1 (8)
	            THE 0.7789
	              I 0.7789
	              , 0.7789
	            The 0.7114
	             us 0.5492
	              / 0.5178
	              " 0.2388
	           </S> 0.0736

          /lava   496106 inf (10)
	           have 0.7789
	              a 0.5492
	        sources 0.5492
	          alava 0.5492
	           lava 0.5492
	          Slava 0.5492
	        parties 0.5492
	          <UNK> 0.1687
	           </S> 0.1687
	              , 0.0736

            but   496113   1 (8)
	            but 0.5492
	            and 0.5492
	              a 0.5492
	              ( 0.5492
	           </S> 0.5492
	             us 0.5178
	           with 0.1687
	            the 0.0736

 Ornithologists   496138   1 (8)
	             to 0.5492
	 Ornithologists 0.5492
	              , 0.5178
	              a 0.2388
	           </S> 0.2388
	             us 0.2388
	          those 0.2388
	            the 0.0736

      nowadaj'S   496153   1 (8)
	              a 0.5492
	       nowadays 0.5492
	        nowaday 0.5492
	            new 0.5492
	              . 0.5178
	              , 0.5178
	           </S> 0.2388
	              ' 0.0736

             is   496163   1 (6)
	           </S> 0.5492
	             iu 0.5492
	              , 0.5492
	             in 0.5492
	             is 0.5492
	          Union 0.5492

             if   496182   1 (7)
	             iu 0.5492
	              a 0.5492
	            but 0.5492
	             if 0.5492
	              , 0.5492
	              } 0.2236
	           </S> 0.0736

         occurs   496232   2 (9)
	              a 0.7789
	             us 0.5492
	       obscurus 0.5492
	         occurs 0.5492
	           Part 0.5492
	          hours 0.5492
	              - 0.5178
	              , 0.1687
	           </S> 0.0736

      Shetlands   496253   1 (9)
	           </S> 0.5492
	              a 0.5492
	            Man 0.5492
	      therefore 0.5492
	      Shetlands 0.5492
	             SC 0.5492
	          these 0.2388
	            who 0.1687
	            the 0.0736

             as   496264   1 (6)
	             as 0.5492
	          <UNK> 0.5492
	           Skye 0.5492
	             us 0.5178
	           with 0.1687
	            the 0.0736

             it   496332   1 (7)
	              , 0.5492
	             it 0.5492
	            who 0.5492
	             iu 0.5492
	              a 0.5492
	              } 0.2236
	           </S> 0.0736

         Scilly   496356   1 (11)
	         Scilly 0.7789
	         hotels 0.5492
	             us 0.5492
	           file 0.5492
	           will 0.5178
	              , 0.2388
	         behalf 0.2388
	           sale 0.2236
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

              A   496379   1 (6)
	              , 0.7789
	              A 0.7789
	            the 0.7789
	             us 0.5492
	              " 0.2388
	           </S> 0.0736

         Achill   496424   1 (9)
	         Achill 0.7789
	             us 0.5492
	          while 0.5178
	           turn 0.3804
	              , 0.2388
	         Canada 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

            co.   496432   1 (12)
	            com 0.5492
	            Co. 0.5492
	              , 0.5492
	            and 0.5492
	              a 0.5492
	             co 0.5492
	            can 0.5492
	           </S> 0.5492
	            coo 0.5492
	            cia 0.5492
	           with 0.1687
	            the 0.0736

              a   496462   1 (6)
	              , 0.5492
	             us 0.5492
	            the 0.5492
	              a 0.5492
	              } 0.2236
	           </S> 0.0736

            co.   496474   3 (9)
	            cia 0.7789
	            coo 0.7789
	             co 0.5178
	            com 0.5178
	            can 0.5178
	              , 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

        Donegal   496478   3 (9)
	        Wicklow 0.7789
	           </S> 0.7789
	              a 0.5492
	        General 0.5492
	          world 0.5492
	        Donegal 0.5492
	        England 0.5492
	              , 0.2388
	            mar 0.0736

           1898   496502 inf (9)
	      therefore 0.5492
	              a 0.5492
	           1988 0.5492
	           </S> 0.5492
	           2005 0.5492
	            yes 0.5492
	           1998 0.5492
	           1989 0.5492
	            the 0.0736

              a   496549   1 (6)
	              a 0.5492
	              , 0.5492
	             us 0.5492
	            the 0.5492
	              } 0.2236
	           </S> 0.0736

       Ninfield   496580   2 (9)
	           well 0.7789
	           </S> 0.5492
	              a 0.5492
	            the 0.5492
	          <UNK> 0.5492
	              , 0.5492
	       Ninfield 0.5492
	             us 0.5178
	           your 0.0736

           1901   496617 inf (7)
	             pp 0.7789
	           </S> 0.5492
	           1990 0.5492
	           2005 0.5492
	              a 0.5492
	           1903 0.5492
	            the 0.0736

             In   496624   1 (7)
	              , 0.7789
	             In 0.7789
	              a 0.5492
	             us 0.5492
	              " 0.2388
	              ) 0.2388
	           </S> 0.0736

           1903   496627 inf (6)
	           1999 0.7789
	              , 0.7789
	           1993 0.5492
	              a 0.5017
	           </S> 0.2388
	            the 0.0736

           four   496632   1 (6)
	           four 0.7789
	             us 0.5492
	            for 0.5178
	              a 0.5178
	              , 0.1687
	           </S> 0.0736

          Tawny   496637   1 (9)
	          Tawny 0.7789
	          Table 0.7789
	              a 0.5492
	          young 0.5492
	          major 0.2388
	           </S> 0.1687
	              , 0.1687
	             of 0.1687
	              - 0.0736

        another   496736   1 (5)
	              I 0.5492
	              , 0.5492
	        another 0.5492
	              } 0.2236
	           </S> 0.0736

        Bexhill   496780   1 (11)
	           </S> 0.5492
	              , 0.5492
	        Bexhill 0.5492
	            the 0.5492
	              a 0.5492
	            all 0.5492
	          least 0.5492
	            1pm 0.5492
	             us 0.2388
	           will 0.2388
	           your 0.0736

              a   496790   1 (6)
	              , 0.5492
	              a 0.5492
	             us 0.5492
	            the 0.5492
	              } 0.2236
	           </S> 0.0736

         Bodmin   496854   1 (9)
	          comix 0.5492
	          <UNK> 0.5492
	          Login 0.5492
	              , 0.5492
	            the 0.5492
	           </S> 0.5492
	              a 0.5492
	         Bodmin 0.5492
	           your 0.0736

        Richard   496892   2 (5)
	              , 0.7789
	              a 0.5492
	        Richard 0.5492
	              " 0.2388
	           </S> 0.0736

         Scilly   496957   1 (11)
	         Europe 0.5492
	              a 0.5492
	         photos 0.5492
	              , 0.5492
	           </S> 0.5492
	       Cheshire 0.5492
	       Scotland 0.5492
	          South 0.5492
	         Scilly 0.5492
	           will 0.2388
	            the 0.0736

        Kentish   496968   1 (7)
	        Kentish 0.7789
	       Northern 0.5492
	           this 0.2388
	              , 0.1687
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

          Pipit   497022   1 (10)
	          Pipit 0.7789
	             we 0.5492
	         Sewage 0.5492
	              , 0.5492
	              s 0.5492
	          there 0.5492
	           Post 0.5017
	              a 0.1687
	             to 0.1687
	           </S> 0.0736

            one   497108   1 (6)
	            one 0.5492
	              , 0.5492
	             us 0.5492
	              a 0.5492
	              } 0.2236
	           </S> 0.0736

        Scill3%   497115   1 (10)
	         Scilly 0.7789
	         Scicli 0.7789
	           late 0.5492
	             us 0.5492
	          early 0.5492
	           will 0.5492
	              , 0.2388
	           </S> 0.1687
	              a 0.1687
	            the 0.0736

            May   497123   1 (7)
	           </S> 0.5492
	              , 0.5492
	            cia 0.5492
	            May 0.5492
	            may 0.5492
	              a 0.5492
	              . 0.5492

            one   497134   1 (6)
	            one 0.5492
	              a 0.5492
	              , 0.5492
	             us 0.5492
	              } 0.2236
	           </S> 0.0736

        Milcomb   497141 inf (11)
	              , 0.5492
	              a 0.5492
	          <UNK> 0.5492
	         Milcom 0.5492
	           that 0.5492
	            the 0.5492
	       Milcombe 0.5492
	           </S> 0.5492
	             us 0.2388
	           will 0.2388
	           your 0.0736

              (   497149   1 (6)
	              ( 0.7114
	              , 0.2236
	           time 0.2236
	           </S> 0.2236
	            the 0.2236
	             us 0.2236

            one   497172   1 (6)
	            one 0.5492
	             us 0.5492
	              , 0.5492
	              a 0.5492
	              } 0.2236
	           </S> 0.0736

            one   497203   1 (6)
	              a 0.5492
	              , 0.5492
	             us 0.5492
	            one 0.5492
	              } 0.2236
	           </S> 0.0736

    Littlestone   497210   1 (10)
	            the 0.5492
	          <UNK> 0.5492
	    Littlestone 0.5492
	              a 0.5492
	           that 0.5492
	              , 0.5492
	           </S> 0.5492
	      different 0.5492
	             us 0.5178
	           your 0.0736

     altogether   497240   4 (10)
	        reviews 0.5492
	       shoulder 0.5492
	       children 0.5492
	     altogether 0.5178
	          there 0.2388
	           </S> 0.1687
	          other 0.1687
	              I 0.1687
	              , 0.1687
	            the 0.0736

         Sussex   497267   4 (10)
	         Passer 0.7789
	         defeat 0.5492
	       progress 0.5492
	         Sussex 0.5178
	           used 0.5178
	          stock 0.2388
	              , 0.2388
	              a 0.1687
	           </S> 0.1687
	            the 0.0736

In [181]:
report(AB_MODELS, 'AB-top1.t100.balanced')
    possibility   407374   1 (8)
	    possibility 0.7555
	         policy 0.5413
	            the 0.1229
	              a 0.1229
	          <UNK> 0.1218
	              , 0.0955
	           </S> 0.0857
	    application 0.0000

           niaj   407429 inf (9)
	          began 0.5413
	              a 0.5413
	              \ 0.5413
	           niaj 0.5413
	            cia 0.5413
	           name 0.5244
	           </S> 0.1825
	              , 0.1825
	             'm 0.0857

              '   407433 inf (7)
	           </S> 0.5413
	              a 0.5413
	            not 0.5413
	              , 0.5413
	            the 0.5413
	             us 0.5413
	              ± 0.0857

             bv   407472   3 (8)
	             bv 0.5413
	             us 0.5244
	             by 0.2816
	            the 0.1825
	              a 0.1825
	           </S> 0.1825
	              , 0.1218
	              . 0.0857

            Mr.   407475   1 (7)
	            Mr. 0.7555
	             My 0.5413
	         Andrew 0.5413
	            arz 0.5413
	              a 0.5244
	              , 0.1825
	           </S> 0.0857

       llarting   407485 inf (9)
	      latrating 0.5413
	       clarting 0.5413
	       learning 0.5413
	          llarg 0.5413
	              s 0.5413
	              : 0.2816
	              A 0.2816
	           </S> 0.0857
	              , 0.0857

            for   407494   1 (5)
	           </S> 0.5413
	            for 0.5413
	              a 0.5413
	              , 0.5413
	            arz 0.5413

         Oologj   407522   1 (11)
	        Beatles 0.5413
	         Objlog 0.5413
	     Chronology 0.5413
	         Oology 0.5413
	         Online 0.5413
	        Bankers 0.5413
	              a 0.5413
	              , 0.2816
	           </S> 0.2816
	              . 0.2816
	       Columbia 0.0857

              '   407528   1 (7)
	            the 0.5413
	              . 0.5413
	              ( 0.5413
	              ' 0.5413
	              , 0.5413
	             us 0.5413
	           </S> 0.5413

           1S64   407547   1 (10)
	             US 0.5413
	      therefore 0.5413
	              a 0.5413
	          April 0.5413
	           1864 0.5413
	              , 0.5413
	           2004 0.5413
	           </S> 0.5413
	        however 0.2253
	            the 0.0857

              a   407553   1 (7)
	              a 0.5413
	           </S> 0.5413
	            May 0.5413
	              ( 0.5413
	             us 0.5097
	             of 0.2253
	            the 0.0857

         Ravens   407568   2 (9)
	           have 0.7555
	          Pales 0.5413
	         Ravens 0.5413
	              a 0.2816
	           </S> 0.2816
	              . 0.1825
	            and 0.1825
	            the 0.0857
	              , 0.0655

          which   407575   1 (8)
	          which 0.7555
	              a 0.5413
	           Pica 0.5413
	           have 0.5097
	              ' 0.2816
	              , 0.2253
	           </S> 0.0857
	        Buffalo 0.0857

          built   407651   1 (8)
	            and 0.5413
	              a 0.5413
	              ( 0.5413
	           </S> 0.5413
	            but 0.5413
	          built 0.5413
	           with 0.1825
	            the 0.0857

           fern   407749   1 (7)
	           fern 0.7555
	              a 0.5413
	            3.2 0.5413
	            arz 0.5413
	           free 0.5097
	           </S> 0.1825
	              , 0.0857

           dead   407780   2 (7)
	            cia 0.7555
	           dead 0.5244
	              , 0.2816
	           data 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

             On   407850   1 (8)
	              , 0.7555
	             On 0.7555
	            and 0.7555
	             in 0.7555
	              a 0.5413
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

            two   407863   1 (5)
	            two 0.7555
	             us 0.7555
	              a 0.5413
	           </S> 0.1825
	              , 0.0857

           tlie   407886   9 (9)
	           alba 0.7555
	           trie 0.7555
	          tliet 0.5413
	           tile 0.5244
	              , 0.2816
	           </S> 0.1825
	           this 0.1825
	              a 0.1825
	            the 0.0857

           nest   407891   3 (9)
	              , 0.7555
	            new 0.7555
	              a 0.5413
	           nest 0.5413
	           Code 0.5413
	             us 0.5413
	          world 0.5244
	           </S> 0.1825
	          <UNK> 0.0857

           l)ut   407938 inf (10)
	           lout 0.5413
	              , 0.5413
	             ut 0.5413
	           last 0.5413
	           lutu 0.5413
	            lut 0.5413
	           lava 0.5413
	              a 0.5413
	              } 0.1229
	           </S> 0.0857

            the   407943   1 (3)
	            the 0.5413
	             us 0.5413
	           </S> 0.5413

            l)y   408009   7 (9)
	            may 0.7555
	            lay 0.7555
	           lava 0.5413
	             ly 0.5413
	              a 0.5097
	           </S> 0.2816
	             by 0.1825
	              . 0.1218
	              , 0.0857

       visitors   408013   1 (7)
	           </S> 0.5413
	       visitors 0.5413
	              , 0.5413
	              a 0.5413
	          fists 0.5413
	             it 0.5413
	     viscivorus 0.5413

       hatclied   408045   1 (14)
	        hatched 0.7555
	        latched 0.7555
	      disclosed 0.5413
	      hatchlike 0.5413
	          there 0.5413
	          clied 0.5413
	            for 0.2656
	             to 0.1825
	           have 0.1825
	           know 0.1825
	              a 0.1825
	              , 0.1825
	           </S> 0.1825
	             be 0.0857

        wliieli   408093 inf (14)
	          wlite 0.7555
	           </S> 0.5413
	      therefore 0.5413
	              x 0.5413
	          lieli 0.5413
	            and 0.5413
	              a 0.5413
	           ieli 0.5413
	              ( 0.5413
	            DEF 0.5413
	         glieli 0.5413
	          wiele 0.5244
	           will 0.2816
	            the 0.0857

       liowever   408102 inf (9)
	         liever 0.7555
	        lowlier 0.7555
	      therefore 0.5413
	          <UNK> 0.5413
	        However 0.5413
	              , 0.5413
	           like 0.2816
	              i 0.2816
	            the 0.0857

   considerable   408116   2 (9)
	        contact 0.5413
	   considerable 0.5244
	             he 0.4011
	             my 0.2816
	              , 0.2816
	           </S> 0.2656
	            the 0.1825
	           been 0.0857
	              a 0.0857

           1894   408190 inf (9)
	              , 0.7555
	          stock 0.7555
	           1984 0.5413
	           1994 0.5413
	        poverty 0.5413
	             us 0.5413
	           </S> 0.5244
	              a 0.2816
	            the 0.0857

             In   408196   1 (6)
	             In 0.7555
	              , 0.7555
	             us 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

         Ravens   408222   1 (8)
	          Pales 0.7555
	         Ravens 0.7555
	         Family 0.5413
	         Rating 0.2816
	              , 0.1825
	            Day 0.1825
	              a 0.0857
	           </S> 0.0655

        hatched   408229   2 (7)
	        Watches 0.7555
	              a 0.5413
	        hatched 0.5413
	        History 0.5413
	              , 0.2253
	        Buffalo 0.0857
	           </S> 0.0857

           five   408241   3 (8)
	           lava 0.7555
	           find 0.7555
	           five 0.5244
	             to 0.1825
	              , 0.1825
	           </S> 0.1825
	              a 0.1825
	             of 0.0857

            Mr.   408266   3 (8)
	              , 0.7555
	             My 0.7555
	            Mrs 0.5413
	              a 0.5413
	             Mr 0.5413
	            arz 0.5413
	              " 0.2816
	           </S> 0.0857

        Coniyus   408276 inf (12)
	        Congius 0.5413
	       Cydonius 0.5413
	           Coni 0.5413
	         Conics 0.5413
	         Corvus 0.5413
	             22 0.5413
	        Conifur 0.5413
	         Comics 0.5413
	              A 0.5097
	           </S> 0.1825
	          <UNK> 0.1825
	              , 0.0857

       Lyveudeu   408288 inf (13)
	           need 0.5413
	          Rhode 0.5413
	       Lieudieu 0.5413
	      precursor 0.5413
	          Lyude 0.5413
	       Lavender 0.5244
	              , 0.2816
	             us 0.2816
	         course 0.2816
	           them 0.2816
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

             S.   408298 inf (9)
	           </S> 0.5413
	             US 0.5413
	            and 0.5413
	             SS 0.5413
	              ( 0.5413
	             So 0.5413
	              a 0.5413
	             us 0.5097
	            the 0.0857

        Buzzard   408354   1 (8)
	        Buzzard 0.7555
	        support 0.2816
	            has 0.2656
	            was 0.2656
	              a 0.1825
	              , 0.1825
	           </S> 0.1825
	            the 0.0857

          taken   408362   2 (9)
	      submitted 0.7555
	           take 0.5413
	          taken 0.5413
	          Pales 0.5413
	              a 0.5413
	         Father 0.5413
	              . 0.2816
	              , 0.0857
	           </S> 0.0857

   aggressively   408442   1 (9)
	   aggressively 0.7555
	             us 0.5413
	             be 0.5413
	      available 0.5413
	             so 0.2816
	           </S> 0.2656
	              I 0.1825
	           that 0.0857
	              , 0.0655

           tame   408456   4 (9)
	              a 0.5413
	            but 0.5413
	           </S> 0.5413
	           tame 0.5244
	           lava 0.5244
	           time 0.2816
	             or 0.1825
	            who 0.1825
	            the 0.0857

        Buzzard   408484   1 (10)
	        Buzzard 0.7555
	           auto 0.5413
	              , 0.5413
	           with 0.5413
	              a 0.5413
	            are 0.5413
	           most 0.1825
	           same 0.1825
	           fact 0.1825
	           </S> 0.0857

       remained   408492   2 (6)
	             of 0.7555
	       remained 0.5413
	       required 0.5413
	              a 0.5413
	              , 0.0857
	           </S> 0.0655

       obdurate   408501   1 (8)
	       obdurate 0.7555
	        operate 0.5413
	           that 0.5097
	          there 0.2816
	              , 0.2816
	           </S> 0.2656
	              a 0.1825
	             in 0.0857

         full}'   408514   3 (9)
	         credit 0.5413
	             as 0.5413
	          fully 0.5244
	           full 0.2816
	              , 0.2816
	             us 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

      instantly   408819   1 (7)
	      instantly 0.7555
	        instant 0.5244
	              N 0.2816
	              a 0.2816
	              s 0.1825
	           </S> 0.0857
	              , 0.0655

         dashed   408829   1 (9)
	         dashed 0.7555
	          based 0.7555
	              s 0.5413
	              ' 0.5413
	              a 0.5244
	         online 0.2816
	           </S> 0.2816
	              , 0.1825
	              . 0.0857

          after   408928   1 (8)
	            The 0.5413
	              I 0.5413
	          after 0.5413
	           </S> 0.5413
	              ( 0.5413
	         Passer 0.5413
	           with 0.1825
	            the 0.0857

         flying   408934   2 (8)
	           find 0.7555
	         flying 0.5244
	           only 0.5097
	              , 0.2816
	           </S> 0.2656
	              a 0.1825
	            all 0.1825
	            the 0.0857

          hotly   408978   1 (7)
	          hotly 0.7555
	            and 0.5413
	           </S> 0.5413
	              a 0.5413
	              - 0.5413
	            how 0.2816
	            the 0.0857

            b}'   408992   6 (6)
	             bb 0.5413
	             us 0.5244
	           </S> 0.2816
	              a 0.1825
	              , 0.1825
	             by 0.0857

              '   408996 inf (4)
	             us 0.5413
	              , 0.5413
	           </S> 0.5413
	            the 0.5413

              '   409003 inf (8)
	           Grin 0.5413
	           </S> 0.5413
	              ( 0.5413
	             Th 0.5413
	             us 0.5097
	             of 0.2253
	           when 0.2253
	            the 0.0857

       alighted   409014   1 (9)
	       alighted 0.7555
	              ' 0.5413
	              s 0.5413
	         dawned 0.5413
	           </S> 0.2816
	       appeared 0.2816
	              I 0.1825
	          after 0.1294
	              , 0.0857

      bristling   409074   1 (9)
	          years 0.5413
	        Listing 0.5413
	      bristling 0.5413
	              a 0.5244
	             of 0.2816
	            bed 0.1825
	           </S> 0.1825
	              . 0.1825
	              , 0.0857

           bird   409109   2 (10)
	             by 0.7555
	            cia 0.5413
	      draperies 0.5413
	           bird 0.5413
	    Association 0.5413
	             of 0.5244
	              a 0.5097
	              . 0.1825
	           </S> 0.1825
	              , 0.0857

            was   409122   4 (8)
	              a 0.5413
	             us 0.5413
	           same 0.5413
	            was 0.5097
	              . 0.1825
	             's 0.0857
	           </S> 0.0857
	              , 0.0857

       tempered   409136   1 (8)
	       tempered 0.5413
	     experience 0.5413
	        pleased 0.5244
	          there 0.5097
	             to 0.2816
	           </S> 0.2816
	              a 0.1825
	              , 0.0857

        caution   409162   1 (7)
	        caution 0.7555
	             of 0.5413
	       Location 0.5413
	              a 0.5413
	     discretion 0.5244
	           </S> 0.5097
	              , 0.0857

             he   409172   1 (6)
	             he 0.5413
	              a 0.5413
	              , 0.5413
	             us 0.5413
	              } 0.1229
	           </S> 0.0857

        Buzzard   409271   1 (10)
	        buzzard 0.7555
	        Buzzard 0.7555
	        ability 0.5413
	          Board 0.2253
	              - 0.2253
	           time 0.1825
	            way 0.1825
	          right 0.1825
	           same 0.1825
	           </S> 0.0857

  consternation   409303   1 (9)
	  consternation 0.7555
	        delight 0.5413
	            she 0.2816
	    information 0.2816
	             he 0.2253
	              , 0.2253
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

         sprang   409317   2 (10)
	              a 0.7555
	         sprang 0.5413
	         looked 0.5413
	             us 0.5413
	          items 0.5413
	           </S> 0.5244
	              , 0.1825
	            and 0.1825
	              . 0.1825
	             of 0.0857

             He   409332   1 (7)
	             He 0.7555
	              , 0.7555
	             be 0.5413
	             us 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

           liis   409453 inf (12)
	            lis 0.7555
	           lava 0.7555
	          liisi 0.5413
	           liin 0.5413
	           lisi 0.5413
	            lii 0.5413
	           list 0.5244
	            its 0.2816
	              , 0.2816
	           </S> 0.2253
	              a 0.1825
	            the 0.0857

        laurels   409458   2 (8)
	              , 0.7555
	           site 0.5413
	        laurels 0.5413
	              a 0.5413
	         levels 0.5413
	        aureola 0.5413
	        seventh 0.5413
	           </S> 0.0857

          would   409640   1 (8)
	             of 0.7555
	          would 0.7555
	          wolfi 0.5413
	              I 0.5413
	             DT 0.5413
	           Song 0.5244
	           </S> 0.0857
	              , 0.0857

           beak   409695   1 (10)
	           been 0.7555
	           beak 0.7555
	              . 0.5413
	              a 0.5413
	            cia 0.5413
	           </S> 0.1825
	              , 0.1825
	      important 0.1825
	           well 0.1825
	           good 0.0857

              '   409753   1 (6)
	            the 0.7555
	              ' 0.7555
	              , 0.7555
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

      furtively   409822   1 (9)
	      furtively 0.7555
	              . 0.5413
	       Services 0.2816
	              a 0.1825
	              , 0.1825
	           then 0.1825
	             to 0.1825
	           </S> 0.1825
	            the 0.0857

       tweaking   409832   1 (10)
	          their 0.5413
	             of 0.5413
	              a 0.5413
	       tweaking 0.5413
	             us 0.5413
	           </S> 0.5244
	             to 0.4011
	              . 0.1825
	             at 0.1825
	              , 0.0857

        Buzzard   409845   1 (9)
	        buzzard 0.7555
	        Buzzard 0.7555
	        swallow 0.5413
	        student 0.5413
	          Board 0.2253
	              - 0.2253
	          world 0.1825
	           same 0.1825
	           </S> 0.0857

             's   409852   5 (7)
	             of 0.7555
	              s 0.5413
	              a 0.5413
	             is 0.5244
	             's 0.2253
	              , 0.0857
	           </S> 0.0857

        attacks   409930   3 (8)
	           </S> 0.7555
	              . 0.7555
	              I 0.5413
	        attacks 0.5413
	         States 0.5413
	             us 0.5244
	              , 0.5244
	           post 0.0857

        Buzzard   409968   1 (9)
	        buzzard 0.7555
	        Buzzard 0.7555
	           team 0.5413
	          Board 0.2253
	              - 0.2253
	          world 0.1825
	           same 0.1825
	        country 0.1825
	           </S> 0.0857

             's   409975   5 (7)
	             of 0.7555
	              a 0.5413
	             us 0.5413
	             is 0.5244
	             's 0.2253
	              , 0.0857
	           </S> 0.0857

         wretch   410108   2 (9)
	           face 0.7555
	         wretch 0.5413
	              a 0.5413
	          which 0.5413
	        sources 0.5413
	           </S> 0.5244
	              - 0.5244
	              , 0.2816
	    elsewhither 0.0857

        denuded   410116   1 (8)
	              a 0.5413
	          Grace 0.5413
	         winner 0.5413
	          under 0.5413
	        denuded 0.5413
	            one 0.2253
	           they 0.1825
	            the 0.0857

       Hitherto   410161 inf (6)
	              , 0.7555
	              a 0.5413
	        Hittero 0.5413
	       hitherto 0.5413
	              " 0.2816
	           </S> 0.0857

          might   410230   2 (8)
	             of 0.7555
	           will 0.5413
	          minor 0.5413
	              a 0.5413
	          might 0.5413
	          right 0.5413
	              , 0.0857
	           </S> 0.0857

          being   410334   1 (7)
	          being 0.7555
	             of 0.7555
	            bad 0.5413
	              a 0.5413
	              . 0.2816
	              , 0.0857
	           </S> 0.0857

         Comyns   410383   1 (10)
	         Comyns 0.7555
	        Company 0.7555
	              . 0.5413
	         Corvus 0.5413
	          paper 0.5413
	              a 0.5413
	              , 0.2816
	         Rogers 0.2816
	           </S> 0.1825
	       Chairman 0.0857

              '   410389   4 (6)
	             's 0.7555
	             us 0.5413
	            the 0.5413
	              ' 0.5244
	           </S> 0.2816
	              , 0.0857

            Mr.   410481   3 (8)
	              , 0.7555
	             My 0.7555
	            Mrs 0.5413
	              a 0.5413
	             Mr 0.5413
	            arz 0.5413
	              " 0.2816
	           </S> 0.0857

        Frohawk   410485   2 (8)
	         Mohawk 0.7555
	        Frohawk 0.5413
	              B 0.5097
	              , 0.2816
	             J. 0.2816
	          <UNK> 0.1825
	           </S> 0.1825
	       Chairman 0.0857

            saw   410493   1 (7)
	             so 0.5413
	              I 0.5413
	            saw 0.5413
	           sala 0.5413
	           </S> 0.5244
	              , 0.5097
	           1898 0.0857

           tlie   410531   2 (10)
	           trie 0.7555
	           </S> 0.5413
	              a 0.5413
	              , 0.5413
	           this 0.5413
	           tile 0.5413
	          tliet 0.5413
	            the 0.5413
	           alba 0.5413
	           your 0.0857

          mouth   410536   4 (8)
	              , 0.7555
	          South 0.7555
	            end 0.7555
	          mouth 0.5413
	              a 0.5413
	          maura 0.5413
	           </S> 0.1825
	          <UNK> 0.0857

          Devon   410558   2 (8)
	              , 0.7555
	            Dec 0.5413
	              s 0.5413
	              a 0.5413
	              T 0.5413
	          Devon 0.5413
	              " 0.2816
	           </S> 0.0857

           they   410597   1 (5)
	           they 0.5413
	              a 0.5413
	              , 0.5413
	              } 0.1229
	           </S> 0.0857

Fa>,iilv-C0RJ7D.-E   410685 inf (11)
	              , 0.7555
	             -- 0.7555
	           will 0.5413
	          alive 0.5413
	      available 0.5413
	        friends 0.5413
	              a 0.5413
	       FileName 0.5413
	              / 0.5244
	              " 0.2816
	           </S> 0.0857

              .   410703   1 (5)
	             us 0.5413
	              . 0.5413
	              , 0.5413
	            the 0.5413
	           </S> 0.5413

        Corviis   410725 inf (8)
	              , 0.7555
	         Comics 0.5413
	        Corvida 0.5413
	          Corvi 0.5413
	              a 0.5413
	        Corvids 0.5413
	              " 0.2816
	           </S> 0.0857

        iOfoiic   410733 inf (9)
	         infonc 0.5413
	           </S> 0.5413
	        infoibi 0.5413
	          folic 0.5413
	          Ofori 0.5413
	      configure 0.5413
	              a 0.5413
	         ironic 0.5413
	              , 0.5413

              ,   410740 inf (3)
	             of 0.5413
	             us 0.5413
	            the 0.5413

           Linn   410742   1 (6)
	           List 0.5413
	           Linn 0.5413
	          minor 0.5097
	              i 0.2816
	             pp 0.2816
	            the 0.0857

             IN   410749   1 (8)
	              , 0.7555
	             In 0.7555
	             IN 0.7555
	             us 0.5413
	              a 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

        Siberia   410752   1 (9)
	        Liberia 0.5413
	        service 0.5413
	        Siberia 0.5413
	        cinerea 0.5413
	              , 0.2816
	              ) 0.2656
	              A 0.1825
	           </S> 0.1825
	            THE 0.0857

        Seebohm   410774   1 (9)
	        Seebohm 0.7555
	           </S> 0.5413
	           need 0.5413
	           plan 0.5413
	           cars 0.2816
	             us 0.2816
	            say 0.2656
	              a 0.1825
	            the 0.0857

          Ijdng   410824 inf (8)
	          Index 0.7555
	          Ijdan 0.5413
	representatives 0.5413
	             Ij 0.5413
	              a 0.5097
	              , 0.1825
	           </S> 0.1825
	              . 0.0857

        between   410830   1 (5)
	              , 0.5413
	            the 0.5413
	              a 0.5413
	           </S> 0.5413
	        between 0.5413

        Yenesay   410838 inf (12)
	          Yenya 0.5413
	        Yenesis 0.5413
	         Benesa 0.5413
	         Yenets 0.5413
	           Asia 0.5413
	        General 0.5244
	              , 0.4979
	             us 0.2816
	            you 0.2816
	              a 0.2253
	           </S> 0.1825
	            the 0.0857

      Westwards   410968 inf (7)
	              , 0.7555
	              a 0.5413
	          where 0.5413
	       Westward 0.5413
	      Australia 0.5413
	              " 0.2816
	           </S> 0.0857

             he   410978   1 (5)
	             us 0.5413
	             he 0.5413
	              a 0.5413
	           </S> 0.5097
	              , 0.0857

        Caspian   411082   3 (10)
	         cassia 0.7555
	           line 0.5413
	        Caspian 0.5244
	        Capital 0.5097
	           City 0.2253
	              - 0.2253
	          world 0.1825
	           same 0.1825
	           time 0.1825
	           </S> 0.0857

         Hooded   411133   1 (8)
	         Hooded 0.7555
	            sea 0.5413
	          Hotel 0.5244
	              , 0.2816
	             us 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

         spread   411273   1 (9)
	         Flying 0.5413
	          great 0.5413
	         spread 0.5413
	         spinas 0.5413
	              a 0.5413
	             of 0.5097
	              . 0.1825
	           </S> 0.0857
	              , 0.0857

    interbreeds   411392   1 (8)
	              a 0.5413
	             us 0.5413
	    interbreeds 0.5413
	           into 0.5097
	             is 0.1825
	              , 0.1825
	           </S> 0.1825
	              . 0.0857

         Hooded   411413   2 (8)
	            Jim 0.5413
	         Hooded 0.5244
	          Hotel 0.5097
	              - 0.2253
	            top 0.1825
	          first 0.1825
	           same 0.1825
	           </S> 0.0857

        Yenesay   411456 inf (11)
	        Yenesis 0.5413
	         Yenets 0.5413
	          Yenya 0.5413
	     procedures 0.5413
	         Benesa 0.5413
	           best 0.5413
	         others 0.2816
	              a 0.1825
	           </S> 0.1825
	              , 0.1825
	            the 0.0857

              (   411464   1 (6)
	             us 0.5413
	              ( 0.5413
	           </S> 0.5413
	              . 0.5413
	              , 0.5413
	            the 0.5413

    intergrades   411514   1 (10)
	      offspring 0.5413
	   similarities 0.5413
	    differences 0.5413
	    intergrades 0.5413
	    interesting 0.5097
	              a 0.2816
	           </S> 0.1825
	         people 0.1825
	              , 0.1825
	             of 0.0857

          these   411622   1 (6)
	          these 0.5413
	            Art 0.5413
	              , 0.5413
	              a 0.5413
	              } 0.1229
	           </S> 0.0857

       Histor}'   411751   7 (9)
	             of 0.5413
	          Hotel 0.5413
	       Historis 0.5413
	              a 0.5413
	              . 0.5097
	              , 0.2816
	        History 0.1825
	           </S> 0.1825
	      Resources 0.0857

         branch   411760   1 (6)
	         branch 0.5413
	              A 0.5413
	           </S> 0.5413
	         France 0.5413
	              , 0.5413
	         Museum 0.5413

         Museum   411775   1 (7)
	          Music 0.7555
	         Museum 0.7555
	              . 0.1825
	              a 0.1825
	           </S> 0.1825
	              , 0.1825
	            the 0.0857

             In   411803   1 (7)
	              , 0.7555
	            and 0.7555
	             In 0.7555
	              a 0.5413
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

       disliked   411843   1 (8)
	       disliked 0.5413
	         online 0.5413
	          major 0.5413
	           </S> 0.5097
	              a 0.5097
	             to 0.2816
	         famous 0.1825
	              , 0.0857

           both   411868   1 (8)
	            but 0.5413
	           </S> 0.5413
	              ( 0.5413
	           both 0.5413
	              a 0.5413
	            and 0.5413
	             or 0.1825
	            the 0.0857

            yet   411905   1 (7)
	              , 0.5413
	              a 0.5413
	            you 0.5413
	            yet 0.5413
	            Pyi 0.5413
	              } 0.1229
	           </S> 0.0857

       becoming   411990   1 (10)
	       becoming 0.5413
	              a 0.5413
	    Aberystwyth 0.5413
	            and 0.5413
	              x 0.5413
	      therefore 0.5413
	           </S> 0.5413
	              , 0.5413
	        because 0.5413
	            the 0.0857

      decidedly   412009   1 (6)
	           does 0.5413
	      decidedly 0.5413
	              a 0.5413
	           </S> 0.5413
	            who 0.1825
	            the 0.0857

       commoner   412019   1 (10)
	            was 0.5413
	         corone 0.5413
	       commoner 0.5413
	        lacking 0.5244
	              a 0.2816
	           </S> 0.2816
	            the 0.2816
	              , 0.2253
	            not 0.1218
	           more 0.0857

             in   412090   1 (6)
	             in 0.5413
	              , 0.5413
	              a 0.5413
	             iu 0.5413
	              } 0.1229
	           </S> 0.0857

      Shetlands   412212   1 (8)
	      Shetlands 0.7555
	         Canada 0.5413
	           some 0.2253
	              a 0.1825
	            not 0.1825
	              , 0.1825
	            the 0.0857
	           </S> 0.0655

             In   412223   1 (6)
	             In 0.7555
	              , 0.7555
	              A 0.7555
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

        Carrion   412270   1 (10)
	      Education 0.5413
	              I 0.5413
	        Carrion 0.5413
	         secret 0.5413
	          Ahead 0.5413
	        version 0.5097
	             of 0.2816
	              , 0.1825
	           </S> 0.1825
	            and 0.0857

       purplish   412301   1 (6)
	       purplish 0.5413
	        publish 0.5413
	              , 0.5413
	              a 0.5413
	              } 0.1229
	           </S> 0.0857

          above   412310   1 (7)
	          above 0.7555
	        arborea 0.5413
	          alone 0.5413
	           </S> 0.5097
	              , 0.2656
	            red 0.1825
	              - 0.0857

            the   412361   1 (6)
	            the 0.5413
	              , 0.5413
	              . 0.5413
	             us 0.5413
	              } 0.1229
	           </S> 0.0857

      similarly   412371   1 (6)
	           site 0.5413
	      similarly 0.5413
	              a 0.5244
	           </S> 0.2253
	             of 0.1825
	              , 0.0857

         tinted   412381   1 (9)
	         tinted 0.7555
	         United 0.5413
	   grasshoppers 0.5413
	              a 0.5097
	            the 0.2816
	              , 0.1825
	       situated 0.1825
	           </S> 0.1825
	             to 0.0857

           bill   412390   1 (7)
	           will 0.5413
	              a 0.5413
	              , 0.5413
	           bill 0.5413
	            cia 0.5413
	              } 0.1229
	           </S> 0.0857

           iris   412412   1 (8)
	              a 0.5413
	           iris 0.5413
	             is 0.5413
	              , 0.5413
	           dark 0.5413
	             iu 0.5413
	              } 0.1229
	           </S> 0.0857

            her   412525   1 (6)
	              a 0.5413
	              , 0.5413
	            her 0.5413
	            arz 0.5413
	              } 0.1229
	           </S> 0.0857

       ajipears   412534   6 (11)
	             us 0.5413
	          ajars 0.5413
	         piears 0.5413
	          pears 0.5413
	          years 0.5413
	        appears 0.5244
	              I 0.5097
	           </S> 0.1825
	              , 0.1825
	             is 0.1825
	              . 0.0857

             to   412543   1 (5)
	            not 0.5413
	             to 0.5413
	              , 0.5413
	             us 0.5413
	           </S> 0.5413

          Young   412627   1 (6)
	          Young 0.7555
	           Your 0.7555
	              , 0.7555
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

          gloss   412651   1 (10)
	          gloss 0.7555
	          merit 0.5413
	             to 0.5413
	             us 0.5413
	           good 0.5097
	              , 0.2816
	           </S> 0.1825
	         notice 0.1825
	              a 0.1825
	            the 0.0857

             As   412713   1 (7)
	             As 0.7555
	              , 0.7555
	             us 0.5413
	              a 0.5413
	             AM 0.5413
	              " 0.2816
	           </S> 0.0857

     h3-bridize   412784   1 (10)
	      hybridize 0.7555
	           </S> 0.5413
	              , 0.5413
	          trade 0.5413
	      hibridize 0.5413
	             us 0.2816
	        provide 0.2253
	              a 0.1825
	             be 0.1825
	            the 0.0857

         freely   412795   1 (8)
	              , 0.5413
	            the 0.5413
	            you 0.5413
	              a 0.5413
	             us 0.5413
	           free 0.5413
	         freely 0.5413
	           </S> 0.5413

         Hooded   412811   2 (8)
	            Jim 0.5413
	         Holder 0.5244
	         Hooded 0.5244
	          Hotel 0.5097
	              - 0.2253
	          first 0.1825
	           same 0.1825
	           </S> 0.0857

           Herr   412887   1 (8)
	           </S> 0.5413
	            and 0.5413
	           Help 0.5413
	              a 0.5413
	              ( 0.5413
	           Herr 0.5413
	            arz 0.5413
	            the 0.0857

          Gatke   412892 inf (9)
	            the 0.7555
	          Gatka 0.5413
	              a 0.5413
	           take 0.5413
	        Gataket 0.5413
	           Gate 0.5413
	             M. 0.5244
	           </S> 0.1825
	              , 0.0857

       shrewdly   412898   2 (6)
	           </S> 0.7555
	             J. 0.5413
	              a 0.5413
	          Ringe 0.5413
	       shrewdly 0.5413
	              , 0.0857

        pairing   412967   1 (8)
	             us 0.5413
	          first 0.5413
	        pairing 0.5413
	              , 0.5244
	            not 0.5097
	           </S> 0.2816
	              a 0.1825
	            the 0.0857

         having   412975   1 (8)
	           have 0.7555
	         having 0.7555
	          items 0.5413
	           fact 0.5413
	              a 0.5097
	           </S> 0.2253
	              , 0.1825
	             of 0.0857

         3'ears   413019   3 (11)
	          sears 0.7555
	           ears 0.5244
	          years 0.5097
	           them 0.2816
	              , 0.2816
	             us 0.2816
	             it 0.2816
	           </S> 0.1825
	              a 0.1825
	           this 0.1825
	            the 0.0857

            for   413174   1 (6)
	              a 0.5413
	              , 0.5413
	            for 0.5413
	            arz 0.5413
	              } 0.1229
	           </S> 0.0857

          the}'   413182 inf (10)
	           thee 0.7555
	             us 0.5413
	           </S> 0.2816
	              , 0.2816
	          their 0.2816
	              I 0.1825
	             he 0.1825
	              a 0.1825
	            the 0.1825
	            you 0.0857

       reverted   413274   1 (7)
	       reserved 0.5413
	       reverted 0.5413
	              a 0.5244
	            mp3 0.5097
	           </S> 0.2816
	              , 0.1825
	              . 0.0857

    colouration   413429   1 (7)
	       colorati 0.5413
	    colouration 0.5413
	       solution 0.2816
	         enough 0.2816
	           plan 0.2253
	           </S> 0.1825
	              , 0.0857

    gradational   413478   1 (10)
	          early 0.5413
	    information 0.5413
	              a 0.5413
	             of 0.5413
	    gradational 0.5413
	           free 0.2656
	           </S> 0.1825
	              , 0.1825
	              . 0.1825
	         access 0.0857

         stages   413490   1 (10)
	          state 0.5413
	              a 0.5413
	         levels 0.5413
	             of 0.5413
	         stages 0.5413
	          Pales 0.5413
	           </S> 0.2816
	              , 0.2253
	              . 0.1825
	       contacts 0.0857

          gre}'   413512 inf (11)
	            gre 0.7555
	           greg 0.7555
	          white 0.5413
	        medical 0.5413
	          great 0.5097
	             us 0.2816
	              , 0.2816
	           time 0.2816
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

            and   413518   1 (5)
	            and 0.5413
	              , 0.5413
	              . 0.5413
	           </S> 0.5413
	            arz 0.5413

      Pheasants   413618   1 (9)
	            non 0.5413
	              a 0.5413
	      Pheasants 0.5413
	          major 0.2816
	              , 0.2253
	             of 0.1825
	           </S> 0.1825
	          years 0.1825
	              - 0.0857

              -   413628   5 (8)
	            the 0.5413
	             us 0.5413
	              . 0.5244
	             of 0.5244
	              - 0.5097
	           </S> 0.1825
	              , 0.1825
	        Forever 0.0857

      cuIchicKs   413633 inf (9)
	       services 0.5413
	              a 0.5413
	       culchies 0.5413
	        sources 0.5413
	       vulgaris 0.5413
	              - 0.5244
	          <UNK> 0.2816
	           </S> 0.1825
	              , 0.0857

             P.   413644   1 (7)
	           </S> 0.5413
	             PM 0.5413
	            and 0.5413
	             P. 0.5413
	              a 0.5413
	           your 0.2816
	            the 0.0857

     /oi-qna/us   413647 inf (13)
	     aeruginosa 0.7555
	        Journal 0.7555
	             J. 0.7555
	           Moin 0.5413
	            use 0.5413
	           know 0.5413
	             in 0.5413
	       Domingos 0.5413
	        contact 0.5413
	              a 0.5413
	          <UNK> 0.2816
	           </S> 0.1825
	              , 0.0857

    vtrsicoloi-   413666   1 (11)
	     versicolor 0.5413
	             us 0.5413
	    versicolori 0.5413
	        service 0.5413
	              a 0.5413
	             on 0.5413
	              ) 0.5097
	              . 0.2656
	          <UNK> 0.2253
	           </S> 0.1825
	              , 0.0857

     interbreed   413690   1 (9)
	     interbreed 0.7555
	           into 0.5413
	             us 0.5413
	            the 0.1825
	              a 0.1825
	              , 0.1825
	           </S> 0.1825
	       includes 0.1825
	             be 0.0857

         freely   413701   6 (9)
	            the 0.7555
	              a 0.7555
	           free 0.5413
	             us 0.5413
	     abundantly 0.5413
	         freely 0.5244
	           </S> 0.5097
	              , 0.1825
	           with 0.0857

    intergrades   413728   2 (8)
	    information 0.7555
	           that 0.5413
	              a 0.5413
	    intergrades 0.5413
	           </S> 0.5244
	            and 0.5097
	              , 0.2816
	              . 0.0857

            are   413740   1 (8)
	            are 0.7555
	             of 0.7555
	            arz 0.5413
	        torture 0.5413
	              I 0.5413
	              , 0.5244
	           </S> 0.5244
	           with 0.0857

       distinct   413760   2 (9)
	         within 0.5413
	       distinct 0.5244
	            the 0.1825
	           </S> 0.1825
	              a 0.1825
	           only 0.1825
	            yet 0.1825
	              , 0.1825
	             be 0.0857

         sports   413840   1 (10)
	         review 0.5413
	         should 0.5413
	         sports 0.5413
	         spinas 0.5413
	        receipt 0.5097
	              a 0.5097
	           </S> 0.2816
	              , 0.1825
	            the 0.1825
	           that 0.0857

    intergrades   413895   1 (10)
	             us 0.5413
	         copies 0.5413
	    intergrades 0.5413
	    information 0.5244
	             it 0.4011
	             to 0.2816
	            any 0.2816
	           </S> 0.2656
	              , 0.2253
	              a 0.0857

      reproduce   413936   1 (8)
	          major 0.5413
	        product 0.5413
	      reproduce 0.5413
	           best 0.5413
	              a 0.5097
	              . 0.1825
	           </S> 0.1825
	              , 0.0857

        Barbaiy   414010 inf (10)
	      Barbarity 0.7555
	        Barbair 0.5413
	              . 0.5413
	              , 0.5413
	          major 0.5413
	              a 0.5413
	           page 0.2253
	         public 0.1825
	           most 0.1825
	           </S> 0.0857

         Turtle   414018   1 (9)
	              , 0.5413
	             of 0.5413
	            non 0.5413
	           </S> 0.5413
	              . 0.5413
	         Turdus 0.5413
	         Turtle 0.5413
	              a 0.5413
	         little 0.5413

        fertile   414068   3 (8)
	        service 0.7555
	             of 0.7555
	        fertile 0.5413
	              a 0.5244
	              " 0.5097
	           </S> 0.5097
	              , 0.5097
	             to 0.0857

       Bengalee   414096   1 (9)
	       Bengalee 0.7555
	             as 0.5413
	              , 0.5413
	         Bengal 0.5244
	          <UNK> 0.1825
	              " 0.1825
	          world 0.1825
	         people 0.1825
	           </S> 0.0857

        Carrion   414128   1 (11)
	        Carrion 0.7555
	            non 0.5413
	            the 0.5413
	          major 0.5413
	              a 0.5413
	           City 0.2253
	              - 0.2253
	           most 0.1825
	           same 0.1825
	            two 0.1825
	           </S> 0.0857

      resembles   414141   1 (9)
	             us 0.5413
	              a 0.5413
	        between 0.5413
	      resembles 0.5413
	             of 0.5244
	            and 0.2656
	              - 0.1825
	           </S> 0.0857
	              , 0.0655

     inhabiting   414162   6 (10)
	            and 0.5413
	             J. 0.5413
	              a 0.5413
	              ( 0.5413
	           </S> 0.5413
	     inhabiting 0.5244
	      including 0.1825
	             or 0.1825
	           with 0.1825
	            the 0.0857

        similar   414173   2 (7)
	           some 0.7555
	          corax 0.5413
	        similar 0.5413
	           </S> 0.5244
	              , 0.5244
	              a 0.2816
	            the 0.0857

         haunts   414181   1 (9)
	         haunts 0.7555
	         County 0.7555
	         Counts 0.5413
	       articles 0.5097
	          means 0.5097
	              , 0.2816
	        results 0.2816
	           </S> 0.1825
	             to 0.0857

             In   414252   1 (6)
	              , 0.7555
	             In 0.7555
	              a 0.5413
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

      predatory   414259   1 (7)
	      predatory 0.7555
	              , 0.5413
	       products 0.2816
	           </S> 0.1825
	          first 0.1825
	              a 0.1825
	            own 0.0857

         cpiite   414297   8 (13)
	        kopiite 0.5413
	           pite 0.5413
	           piit 0.5413
	         cepiti 0.5413
	         chiite 0.5413
	           cite 0.5244
	           city 0.5244
	          quite 0.2816
	           </S> 0.1825
	              a 0.1825
	           have 0.1825
	              , 0.1825
	             be 0.0857

           both   414321   1 (9)
	            and 0.5413
	              ( 0.5413
	           both 0.5413
	            but 0.5413
	           </S> 0.5413
	              a 0.5413
	     especially 0.2816
	             or 0.1825
	            the 0.0857

       shepherd   414329   1 (10)
	       shepherd 0.7555
	             us 0.5413
	          small 0.5413
	            day 0.5413
	        members 0.5413
	              , 0.2816
	           </S> 0.1825
	              a 0.1825
	          <UNK> 0.1825
	            the 0.0857

           Ever   414355   2 (6)
	              , 0.7555
	              a 0.5413
	           over 0.5413
	           Ever 0.5413
	              " 0.2816
	           </S> 0.0857

            b}'   414416   3 (9)
	             us 0.5244
	              ' 0.5097
	             in 0.1825
	           </S> 0.1825
	              a 0.1825
	           with 0.1825
	              , 0.1825
	             by 0.1825
	              . 0.0857

          Tliat   414480 inf (9)
	              , 0.7555
	           This 0.7555
	          Triat 0.5413
	           Tlia 0.5413
	              a 0.5413
	          Talit 0.5413
	           alba 0.5413
	              " 0.2816
	           </S> 0.0857

           this   414486   1 (5)
	              , 0.5413
	           this 0.5413
	              a 0.5413
	           </S> 0.5413
	            cia 0.5413

          seems   414513   1 (8)
	            see 0.7555
	          seems 0.7555
	             us 0.5413
	              a 0.5244
	            the 0.5097
	           </S> 0.2816
	              , 0.1825
	             to 0.0857

        dispute   414565   1 (10)
	        dispute 0.7555
	             us 0.5413
	     associated 0.5413
	           does 0.2816
	             be 0.1825
	            the 0.1825
	           </S> 0.1825
	            you 0.1825
	              a 0.1825
	              , 0.0857

           Gull   414580   1 (10)
	           sala 0.7555
	           Gull 0.7555
	              , 0.5413
	          video 0.5413
	           Full 0.5097
	         friend 0.1825
	           week 0.1825
	           full 0.1825
	           </S> 0.0857
	            new 0.0655

           Hawk   414601   1 (11)
	            How 0.7555
	           Hawk 0.7555
	          thing 0.5413
	           time 0.5413
	             of 0.5413
	           lava 0.5244
	         number 0.1825
	           </S> 0.1825
	              a 0.1294
	       business 0.0857
	              , 0.0857

       combiued   414651   6 (12)
	     uncombined 0.5413
	      terrorist 0.5413
	        cymbium 0.5413
	          heart 0.5413
	          combi 0.5244
	       combined 0.2816
	              - 0.1825
	       complete 0.1825
	          major 0.1825
	         single 0.1825
	           </S> 0.0857
	            new 0.0655

         attack   414660   1 (8)
	           back 0.5413
	         attack 0.5413
	          basis 0.5413
	              , 0.5413
	             of 0.5413
	        account 0.5413
	              I 0.5413
	           </S> 0.5413

           fare   414736   1 (8)
	           fare 0.7555
	            arz 0.5413
	           free 0.5244
	           </S> 0.2816
	             to 0.2816
	             be 0.2656
	              a 0.1825
	              , 0.0857

         badl3^   414741   3 (7)
	           back 0.5413
	         badala 0.5413
	              a 0.5244
	          badly 0.5244
	           </S> 0.1825
	              , 0.1825
	              . 0.0857

           Lord   414748   1 (6)
	              a 0.5413
	           more 0.5413
	              , 0.5413
	           </S> 0.5413
	           Lord 0.5413
	          Loxia 0.5413

        Lilford   414753 inf (8)
	        Lifford 0.7555
	        Milford 0.7555
	        Linford 0.5413
	              I 0.5097
	           </S> 0.2656
	             Of 0.2253
	              , 0.1825
	             of 0.0857

       observes   414761   2 (11)
	              - 0.7555
	             us 0.5413
	       reserved 0.5413
	            the 0.5413
	            War 0.5413
	              a 0.5413
	       observes 0.5413
	             's 0.5244
	           </S> 0.2656
	              , 0.1825
	              V 0.0857

           saj^   414798   8 (11)
	            saj 0.7555
	           sala 0.7555
	           </S> 0.5413
	              , 0.5413
	           saja 0.5413
	           said 0.5097
	           play 0.2816
	            say 0.2656
	              a 0.1825
	             be 0.1825
	            the 0.0857

             in   414803   1 (8)
	            the 0.5413
	              a 0.5413
	             in 0.5413
	              . 0.5413
	              , 0.5413
	             iu 0.5413
	           </S> 0.5413
	              : 0.5413

            His   414835   1 (7)
	            His 0.7555
	              , 0.7555
	            his 0.5413
	              a 0.5413
	            cia 0.5413
	              " 0.2816
	           </S> 0.0857

        noxious   414872   1 (11)
	      dispensed 0.5413
	        noxious 0.5413
	            not 0.5413
	        nubicus 0.5413
	              , 0.5097
	      voluntary 0.2816
	   coincidental 0.2253
	           </S> 0.1825
	             to 0.1825
	              a 0.1825
	            for 0.0857

      captivity   414939   3 (7)
	             us 0.5413
	        private 0.5413
	      captivity 0.5244
	              , 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

         offers   414949   1 (6)
	         offers 0.5413
	          other 0.5413
	              a 0.5244
	           </S> 0.2816
	              , 0.1825
	              . 0.0857

       natixral   414987 inf (14)
	        conduct 0.5413
	         natira 0.5413
	          natia 0.5413
	       naitural 0.5413
	              a 0.5413
	            and 0.5413
	       National 0.5244
	       rational 0.5244
	       national 0.5097
	              . 0.2816
	              , 0.2816
	           </S> 0.1825
	             or 0.1825
	            own 0.0857

           evil   414996   1 (7)
	              , 0.5413
	              a 0.5413
	           </S> 0.5413
	           even 0.5413
	              . 0.5413
	           evil 0.5413
	            cia 0.5413

        Carriou   415035   1 (12)
	        Carrion 0.7555
	         Carrio 0.7555
	            non 0.5413
	         Cariou 0.5413
	              , 0.5413
	              . 0.5413
	              X 0.5413
	              a 0.5413
	          major 0.5413
	           City 0.2253
	           most 0.1825
	           </S> 0.0857

              -   415042   1 (7)
	            the 0.5413
	             us 0.5413
	           </S> 0.5413
	              . 0.5413
	              - 0.5413
	             of 0.5413
	              , 0.5413

           Crow   415043   4 (9)
	       wrapping 0.5413
	              s 0.5413
	           this 0.5413
	           Crow 0.5244
	              . 0.2816
	           from 0.2816
	              a 0.2253
	             to 0.1825
	           </S> 0.0857

          wings   415102   6 (10)
	              , 0.5413
	           loan 0.5413
	        absence 0.5413
	           with 0.5244
	          minor 0.5244
	          wings 0.5097
	           next 0.2816
	              a 0.1825
	           </S> 0.1825
	            own 0.0857

      regularly   415108   1 (7)
	      regularly 0.5413
	         report 0.5413
	          banks 0.5413
	              a 0.5244
	           </S> 0.1825
	              , 0.0857
	              . 0.0655

           when   415136   1 (5)
	              , 0.5413
	           when 0.5413
	              a 0.5413
	              } 0.1229
	           </S> 0.0857

         wheels   415174   1 (9)
	             us 0.5413
	         wheels 0.5413
	          where 0.5244
	          takes 0.2816
	              , 0.2816
	           </S> 0.2253
	              a 0.1825
	             be 0.1825
	     dispatched 0.0857

          walks   415222   1 (11)
	          walks 0.7555
	         minors 0.5413
	             me 0.5413
	         broken 0.5413
	          Pales 0.5413
	            was 0.5244
	           case 0.2253
	              , 0.1825
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

          leaps   415248   5 (9)
	              a 0.5413
	            and 0.5413
	           </S> 0.5413
	       straight 0.5413
	           lava 0.5244
	          years 0.5244
	          leaps 0.5244
	         please 0.1825
	            the 0.0857

          wings   415279   1 (10)
	          wings 0.7555
	           hour 0.5413
	          minor 0.5413
	          until 0.5097
	           </S> 0.2816
	             up 0.1825
	              a 0.1825
	           with 0.1825
	              , 0.1825
	            the 0.0857

   nidification   415329   1 (10)
	   nidification 0.7555
	     submission 0.5413
	           some 0.2816
	             us 0.2816
	            one 0.2816
	      Education 0.2816
	              , 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

          Iwade   415539   1 (9)
	              a 0.5413
	              , 0.5413
	           </S> 0.5413
	            the 0.5413
	             or 0.5413
	          Iwade 0.5413
	           made 0.5413
	             us 0.2816
	           your 0.0857

           near   415545   1 (8)
	           near 0.5413
	              3 0.5413
	            new 0.5413
	              a 0.5413
	            arz 0.5413
	              . 0.5244
	           </S> 0.1825
	              , 0.0857

         Sheppy   415550 inf (10)
	           Shop 0.7555
	         Cheppy 0.7555
	        Sheppey 0.5413
	         Sheepy 0.5413
	             us 0.5097
	              , 0.2816
	           </S> 0.2816
	              a 0.2656
	         future 0.1825
	            the 0.0857

      consisted   415558   1 (8)
	           </S> 0.5413
	              a 0.5413
	            and 0.5413
	          north 0.5413
	      consisted 0.5413
	         system 0.5413
	            one 0.2253
	            the 0.0857

         tliree   415571  11 (12)
	          Tiree 0.7555
	          tiler 0.7555
	           lire 0.7555
	         twires 0.5413
	       filliree 0.5413
	           tree 0.5244
	              , 0.2816
	             us 0.2816
	           </S> 0.1825
	              a 0.1825
	          three 0.1294
	            the 0.0857

           full   415578   1 (8)
	              , 0.5413
	           sala 0.5413
	              a 0.5413
	              . 0.5413
	            non 0.5413
	           </S> 0.5413
	           full 0.5413
	         medium 0.5413

       yolkless   415608   1 (8)
	            the 0.5413
	           this 0.5413
	            you 0.5413
	             us 0.5413
	       yolkless 0.5413
	              a 0.4011
	           </S> 0.1825
	              , 0.0857

            one   415617   1 (9)
	         breeds 0.5413
	              a 0.5413
	             us 0.5413
	             of 0.5413
	           </S> 0.5413
	              , 0.5413
	            one 0.5413
	        hunting 0.5413
	           eggs 0.0857

             it   415761   1 (5)
	              a 0.5413
	              s 0.5413
	             it 0.5413
	              , 0.5413
	           </S> 0.0857

              -   415835 inf (6)
	           </S> 0.5413
	              ( 0.5413
	            and 0.5413
	             us 0.5097
	             of 0.2253
	            the 0.0857

            but   415857   1 (6)
	              , 0.5413
	              a 0.5413
	            but 0.5413
	             us 0.5413
	              } 0.1229
	           </S> 0.0857

             J.   415912 inf (8)
	            Jan 0.7555
	              . 0.7555
	              , 0.7555
	              a 0.5413
	             JR 0.5413
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

         Pilley   415918   1 (8)
	             22 0.5413
	         Pilley 0.5413
	          Pales 0.5413
	         Miller 0.5097
	              I 0.5097
	          <UNK> 0.1825
	              , 0.1825
	           </S> 0.0857

      Zoologist   415940   1 (8)
	      Zoologist 0.7555
	              s 0.5413
	          could 0.5413
	              a 0.2816
	              , 0.1825
	          <UNK> 0.1825
	              ) 0.1825
	           </S> 0.0857

              "   415950   1 (6)
	           </S> 0.5413
	              , 0.5413
	              § 0.5413
	              " 0.5413
	             us 0.5097
	            the 0.0857

        meadows   416056   1 (11)
	        meadows 0.7555
	      locations 0.5413
	              a 0.5413
	        Windows 0.5244
	          major 0.5097
	          parts 0.2816
	              , 0.2816
	          cases 0.2253
	           </S> 0.2253
	           time 0.1825
	             of 0.0857

           dead   416119   3 (8)
	            cia 0.7555
	      unsecured 0.5413
	           dead 0.5244
	           data 0.2816
	              , 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

              -   416144   3 (5)
	             us 0.7555
	            the 0.5244
	           </S> 0.1825
	              - 0.1825
	              , 0.0857

       tussocks   416145   1 (10)
	       tussocks 0.7555
	        through 0.5413
	          roots 0.5413
	              , 0.5413
	    medications 0.5413
	              s 0.5413
	              a 0.2253
	             to 0.1825
	             up 0.1825
	           </S> 0.0857

         neatly   416226   1 (7)
	         neatly 0.7555
	         really 0.7555
	              a 0.5413
	           </S> 0.1825
	           that 0.1825
	              , 0.0857
	              . 0.0857

       smoothed   416233   1 (9)
	       smoothed 0.7555
	         broken 0.5413
	          other 0.5413
	          twice 0.5413
	              a 0.5097
	           </S> 0.2816
	              , 0.1825
	            and 0.1825
	           into 0.0857

         number   416257   1 (7)
	         number 0.7555
	          price 0.5413
	              a 0.5097
	             of 0.2816
	            are 0.1825
	           </S> 0.1825
	              , 0.0857

         clutch   416304   1 (11)
	         clutch 0.7555
	             of 0.5413
	           time 0.5413
	          click 0.5413
	              a 0.5097
	         change 0.4979
	      travelers 0.2816
	              , 0.1825
	           </S> 0.1825
	    contributor 0.1825
	            and 0.0857

            the   416412   1 (5)
	              , 0.5413
	             us 0.5413
	            the 0.5413
	              } 0.1229
	           </S> 0.0857

        consist   416499   2 (10)
	        contact 0.7555
	        consist 0.5413
	           form 0.5413
	              a 0.5413
	      gradients 0.5244
	       function 0.2816
	            and 0.1825
	              , 0.1825
	           </S> 0.1825
	             of 0.0857

           some   416578   1 (6)
	              , 0.5413
	           some 0.5413
	              a 0.5413
	           sala 0.5413
	              } 0.1229
	           </S> 0.0857

           Crow   416676   1 (8)
	           Crow 0.7555
	            arz 0.5413
	           from 0.2816
	              a 0.2656
	           </S> 0.1825
	            was 0.1825
	              , 0.1825
	             is 0.0857

          pairs   416681   2 (8)
	           part 0.7555
	              a 0.5413
	          pairs 0.5413
	          parva 0.5413
	             is 0.4979
	              . 0.2253
	           </S> 0.0857
	              , 0.0655

        figured   416726   1 (8)
	        figured 0.7555
	              a 0.5413
	            are 0.1825
	             is 0.1825
	              , 0.1825
	           </S> 0.1825
	          found 0.1294
	              . 0.0857

          figs.   416748   5 (7)
	              a 0.5413
	           </S> 0.5413
	              ( 0.5413
	            and 0.5413
	           figs 0.5244
	          first 0.2816
	            the 0.0857

            233   416754 inf (8)
	              , 0.7555
	             23 0.7555
	          plate 0.5413
	            the 0.5413
	              a 0.5413
	             us 0.5413
	           </S> 0.1825
	              1 0.0857

           Farn   416784   2 (9)
	            For 0.7555
	         seller 0.5413
	              a 0.5413
	           Farn 0.5413
	            arz 0.5413
	              , 0.2816
	           Bush 0.1825
	           </S> 0.1825
	       Chairman 0.0857

             's   416788   1 (5)
	             's 0.7555
	             is 0.7555
	             us 0.5413
	              , 0.1825
	           </S> 0.0857

            236   416807 inf (7)
	       shipping 0.5413
	             us 0.5097
	              2 0.2816
	              , 0.1825
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

        Frohawk   416828   1 (12)
	          other 0.5413
	        program 0.5413
	             A. 0.5413
	              . 0.5413
	          world 0.5413
	              a 0.5413
	       Basefsky 0.5413
	        Frohawk 0.5413
	              , 0.2816
	           Bush 0.1825
	           </S> 0.1825
	       Chairman 0.0857

             my   416840   1 (5)
	             my 0.5413
	              , 0.5413
	             us 0.5413
	              a 0.5413
	           </S> 0.0857

 characteristic   416876   4 (11)
	          lucky 0.5413
	        warrant 0.5413
	          large 0.5413
	 characteristic 0.5244
	        contact 0.2253
	              , 0.1825
	             is 0.1825
	            not 0.1825
	              a 0.1825
	            the 0.0857
	           </S> 0.0655

   representing   416910   1 (10)
	   representing 0.7555
	             us 0.5413
	           here 0.5413
	      different 0.5413
	             to 0.2816
	           </S> 0.2816
	              , 0.1825
	              a 0.1825
	             it 0.1218
	            the 0.0857

            but   417255   1 (6)
	              a 0.5413
	              , 0.5413
	            but 0.5413
	             us 0.5413
	              } 0.1229
	           </S> 0.0857

       mollusca   417327   1 (9)
	       mollusca 0.7555
	          music 0.5413
	             us 0.5413
	              , 0.2816
	             it 0.2816
	         Monday 0.2816
	           </S> 0.2656
	              a 0.1825
	            the 0.0857

       Sheppard   417411   1 (8)
	       Sheppard 0.5413
	              a 0.5413
	       Software 0.5413
	       national 0.5413
	              , 0.5244
	             A. 0.5097
	          <UNK> 0.1825
	           </S> 0.0857

        Whitear   417424 inf (13)
	         Whiter 0.7555
	        vMentor 0.5413
	      Whitetara 0.5413
	        Whitean 0.5413
	           pans 0.5413
	          woman 0.5413
	             us 0.5413
	           year 0.5413
	            was 0.2656
	              , 0.1825
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

              )   417431   2 (8)
	              . 0.7555
	              ) 0.5413
	            the 0.5413
	      submitted 0.5413
	             us 0.5413
	              , 0.1825
	            and 0.0857
	           </S> 0.0857

          stale   417511   1 (7)
	              a 0.5413
	              s 0.5413
	          state 0.5413
	              , 0.5413
	          stale 0.5413
	              } 0.1229
	           </S> 0.0857

           fish   417517   3 (6)
	           find 0.5413
	            cia 0.5413
	           fish 0.5244
	           </S> 0.2816
	              , 0.1825
	              . 0.0857

        carrion   417548   1 (8)
	        carrion 0.7555
	           most 0.2816
	            one 0.2656
	            can 0.2656
	              , 0.1825
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

       devoured   417573   1 (8)
	       devoured 0.7555
	          items 0.5413
	      available 0.1825
	       required 0.1825
	              a 0.1825
	              , 0.1825
	           </S> 0.1825
	            not 0.0857

      greedil}'   417582   3 (10)
	             us 0.7555
	             to 0.7555
	       greedily 0.5413
	          great 0.5413
	      available 0.5413
	         winner 0.5413
	           </S> 0.5244
	              a 0.5097
	              , 0.2816
	             by 0.0857

              ,   417591   1 (4)
	           </S> 0.5413
	            the 0.5413
	             us 0.5413
	              , 0.5413

             as   417593   1 (8)
	            and 0.5413
	              I 0.5413
	             as 0.5413
	           very 0.5413
	          works 0.5413
	              " 0.5413
	             us 0.5097
	            the 0.0857

            lie   417652 inf (10)
	            lie 0.7555
	            cia 0.5413
	              a 0.5413
	           like 0.5244
	          there 0.5097
	             it 0.5097
	             of 0.1825
	           </S> 0.1825
	              . 0.0857
	              , 0.0655

         weakly   417729   1 (10)
	         weakly 0.7555
	              - 0.5413
	             us 0.5413
	          short 0.5413
	           well 0.5244
	              . 0.2816
	              , 0.2816
	           </S> 0.2816
	              a 0.1825
	             as 0.0857

           half   417736   2 (11)
	           have 0.7555
	           hill 0.5413
	           half 0.5413
	          shall 0.5413
	              s 0.5413
	            non 0.5244
	              a 0.5097
	            the 0.4979
	              , 0.1825
	           </S> 0.1825
	        similar 0.0857

              -   417740   3 (6)
	             us 0.7555
	           </S> 0.2816
	              - 0.1825
	              , 0.1825
	            the 0.1825
	             of 0.0857

            Mr.   417792   3 (8)
	             My 0.7555
	              , 0.7555
	             Mr 0.5413
	            Mrs 0.5413
	              a 0.5413
	            arz 0.5413
	              " 0.2816
	           </S> 0.0857

             V.   417799 inf (9)
	             A. 0.5413
	             VA 0.5413
	       Flanagan 0.5413
	             of 0.5244
	              I 0.5097
	              . 0.2656
	             .. 0.1825
	              , 0.0857
	           </S> 0.0655

          Aplin   417802   2 (8)
	          April 0.7555
	        ROBERTS 0.5413
	          Aplin 0.5413
	          Aedon 0.5413
	              I 0.5097
	          <UNK> 0.1825
	           </S> 0.0857
	              , 0.0655

      Zoologist   417810   1 (8)
	      Zoologist 0.7555
	              s 0.5413
	          could 0.5413
	              a 0.2816
	              , 0.1825
	              ) 0.1825
	          <UNK> 0.1825
	           </S> 0.0857

              "   417820   1 (7)
	              , 0.5413
	           </S> 0.5413
	              § 0.5413
	              " 0.5413
	          <UNK> 0.5413
	             us 0.5097
	            the 0.0857

         bridle   417914   1 (9)
	            ... 0.5413
	             of 0.5413
	          Price 0.5413
	         bridle 0.5413
	              a 0.5413
	           fish 0.5244
	           </S> 0.2816
	              , 0.2253
	        railway 0.0857

      .standing   417926   1 (6)
	       standing 0.7555
	       training 0.5413
	              a 0.5244
	           </S> 0.1825
	              - 0.1825
	              , 0.0857

           near   417936   1 (7)
	             of 0.5413
	            new 0.5413
	              , 0.5413
	           near 0.5413
	              a 0.5413
	           </S> 0.5413
	            arz 0.5413

    Clattercutt   417955 inf (8)
	              , 0.7555
	          water 0.7555
	             us 0.7555
	     Clattercot 0.5413
	    Clattercote 0.5413
	           </S> 0.5244
	              a 0.5097
	            the 0.0857

      Reservoir   417967   1 (8)
	      Reservoir 0.5413
	           </S> 0.5413
	           room 0.5413
	              , 0.5413
	       research 0.5413
	              . 0.5413
	            and 0.5413
	              a 0.5413

            has   417977   2 (7)
	             us 0.5413
	            has 0.5244
	              A 0.5097
	           Dogs 0.1825
	              , 0.1825
	              . 0.1825
	           </S> 0.0857

        Carrion   418032   1 (10)
	        Carrion 0.7555
	            non 0.5413
	          minor 0.5413
	              3 0.2816
	        service 0.2816
	            two 0.2816
	              , 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

              -   418039   4 (6)
	            the 0.7555
	             us 0.5413
	              . 0.5244
	              - 0.5097
	              , 0.1825
	           </S> 0.0857

          Crows   418040   1 (8)
	          Crows 0.7555
	              s 0.5413
	              . 0.2816
	           from 0.2816
	              a 0.2253
	             up 0.1825
	             to 0.1825
	           </S> 0.0857

            One   418111   1 (7)
	              , 0.7555
	            One 0.7555
	             us 0.5413
	              a 0.5413
	            one 0.5413
	              " 0.2816
	           </S> 0.0857

          toads   418205   1 (10)
	          toads 0.7555
	              a 0.5413
	          torax 0.5413
	           that 0.5097
	              . 0.2816
	              , 0.2816
	          books 0.2816
	        reasons 0.1825
	           </S> 0.1825
	          years 0.0857

         partly   418233   1 (9)
	         partly 0.7555
	          parva 0.5413
	              a 0.5097
	           part 0.5097
	           </S> 0.2656
	             's 0.2253
	              , 0.1825
	              . 0.1825
	             of 0.0857

        fledged   418240   1 (8)
	              s 0.5413
	        fledged 0.5413
	           free 0.5244
	              , 0.2816
	              a 0.2816
	            the 0.2816
	           </S> 0.2656
	        because 0.0857

       nestling   418248   1 (7)
	            the 0.5413
	              a 0.5413
	       nestling 0.5413
	        Listing 0.5413
	           Unix 0.5097
	           </S> 0.1825
	              , 0.0857

          finch   418257   2 (9)
	              a 0.7555
	         kernel 0.5413
	          finch 0.5413
	          minor 0.5413
	           find 0.5413
	              , 0.5097
	           </S> 0.4011
	         period 0.2816
	             in 0.0857

           also   418264   1 (7)
	           </S> 0.5413
	           also 0.5413
	           alba 0.5413
	              , 0.5413
	           from 0.2253
	           with 0.1825
	            the 0.0857

      Partridge   418328   1 (9)
	      Partridge 0.7555
	          Flora 0.5413
	          Cover 0.5413
	       Services 0.2816
	              , 0.2253
	           </S> 0.1825
	              a 0.1825
	           more 0.1825
	            the 0.0857

         showed   418365   1 (8)
	         showed 0.7555
	         should 0.5244
	           mind 0.2816
	              , 0.2816
	        writing 0.2816
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

          perch   418402   2 (10)
	           part 0.7555
	       possible 0.5413
	        kitchen 0.5413
	          perch 0.5413
	          parva 0.5413
	           </S> 0.5244
	              a 0.5244
	              , 0.5097
	              . 0.5097
	             by 0.0857

           wing   418425   1 (11)
	          minor 0.5413
	           wing 0.5413
	              a 0.5244
	           sign 0.5244
	          <UNK> 0.5244
	          signs 0.5097
	              - 0.5097
	           with 0.4979
	           </S> 0.2816
	              , 0.1825
	             of 0.0857

      hurriedly   418485   1 (8)
	      hurriedly 0.7555
	       provided 0.5413
	           </S> 0.1825
	           have 0.1825
	           been 0.1825
	              , 0.1825
	              a 0.1825
	             be 0.0857

         croaks   418547   1 (8)
	         croaks 0.7555
	          Books 0.5413
	             he 0.5413
	              a 0.5097
	          cries 0.2816
	           </S> 0.2656
	              . 0.1825
	              , 0.0857

      expressed   418554   2 (7)
	              a 0.7555
	       expected 0.5413
	      expressed 0.5413
	           </S> 0.2816
	            and 0.2816
	              , 0.1825
	              . 0.0857

     banqueting   418603   1 (7)
	     banqueting 0.7555
	        January 0.5413
	              a 0.5413
	      residence 0.5413
	              , 0.2816
	           </S> 0.1825
	            own 0.0857

          ample   418693   1 (8)
	          ample 0.7555
	              I 0.5413
	            are 0.5097
	              , 0.2816
	           </S> 0.2816
	          other 0.2816
	              a 0.1825
	             as 0.0857

           Only   418732   1 (8)
	              , 0.7555
	           Only 0.7555
	              a 0.5413
	           only 0.5413
	           sala 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

          Crows   418788   1 (8)
	          Crows 0.7555
	              a 0.5413
	         Corvus 0.5413
	           from 0.4011
	              , 0.1825
	           </S> 0.1825
	          years 0.1825
	              - 0.0857

    considering   418840   2 (9)
	         within 0.5413
	    considering 0.5244
	             by 0.2816
	              , 0.2253
	           </S> 0.1825
	              a 0.1825
	             in 0.1825
	           that 0.1825
	            the 0.0857

       wildfowl   418923   1 (8)
	       wildfowl 0.7555
	            DVD 0.5413
	           will 0.2816
	            you 0.1825
	              , 0.1825
	              a 0.1825
	            the 0.0857
	           </S> 0.0655

         j'oung   418947   6 (12)
	          Young 0.7555
	         jugong 0.5413
	         jagung 0.5413
	              , 0.5413
	           jung 0.5413
	          young 0.5097
	        posters 0.2816
	      customers 0.2816
	        website 0.2816
	           </S> 0.1825
	          lives 0.1825
	            own 0.0857

        Carrion   419033   1 (9)
	        Carrion 0.7555
	            sub 0.5413
	              , 0.5413
	              A 0.5413
	            non 0.5413
	           City 0.2253
	           same 0.1825
	            two 0.1825
	           </S> 0.0857

   considerable   419114   1 (7)
	   considerable 0.7555
	              , 0.5413
	        General 0.5413
	              . 0.2816
	              a 0.2816
	            The 0.1825
	           </S> 0.0857

        numbers   419129   6 (10)
	              a 0.5413
	           will 0.5413
	        further 0.5413
	            you 0.5413
	              : 0.5413
	        numbers 0.5097
	         number 0.1825
	           </S> 0.1825
	              , 0.1825
	         amount 0.0857

         arrive   419137   1 (9)
	         arrive 0.7555
	          based 0.5413
	          above 0.5097
	         listed 0.5097
	              I 0.5097
	           </S> 0.1825
	              , 0.1825
	            are 0.1825
	             of 0.0857

        Seebohm   419178   3 (6)
	              , 0.7555
	            See 0.7555
	        Seebohm 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

             's   419185   4 (6)
	             is 0.7555
	             us 0.5413
	              a 0.5413
	             's 0.5097
	           </S> 0.0857
	              , 0.0857

        Bonhote   419344 inf (14)
	       Bonhomme 0.7555
	           list 0.5413
	              a 0.5413
	            not 0.5413
	         nonhot 0.5413
	          world 0.5413
	             to 0.5413
	       nonhotel 0.5413
	        Benhote 0.5413
	              , 0.2816
	             J. 0.2816
	           </S> 0.1825
	           Bush 0.1825
	       Chairman 0.0857

             's   419351   1 (6)
	             's 0.7555
	             is 0.5413
	             us 0.5413
	              a 0.5413
	           </S> 0.2816
	              , 0.0857

   communicated   419366   1 (7)
	           </S> 0.5413
	              a 0.5413
	            and 0.5413
	            can 0.5413
	   communicated 0.5413
	             it 0.1825
	            the 0.0857

       November   419379   1 (6)
	       November 0.5413
	           over 0.5244
	              a 0.5244
	              , 0.5097
	           </S> 0.5097
	             to 0.0857

           1896   419393 inf (11)
	           said 0.7555
	         writes 0.5413
	           1986 0.5413
	              s 0.5413
	              , 0.5413
	           1996 0.5413
	          after 0.5413
	           2005 0.5413
	           </S> 0.5413
	              a 0.5413
	            the 0.0857

        Carrion   419418   1 (8)
	        Carrion 0.7555
	        service 0.5413
	          White 0.5413
	            non 0.2816
	              , 0.1825
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

              -   419425   5 (7)
	            the 0.7555
	             us 0.5413
	       Counting 0.5413
	              . 0.5244
	              - 0.5097
	              , 0.1825
	           </S> 0.0857

          Crows   419426   1 (10)
	          Crows 0.7555
	             is 0.5413
	           site 0.5413
	              s 0.5413
	           they 0.5413
	              . 0.2816
	           from 0.2816
	              a 0.2253
	             to 0.1825
	           </S> 0.0857

            the   419461   1 (5)
	             us 0.5413
	            the 0.5413
	              , 0.5413
	              } 0.1229
	           </S> 0.0857

           when   419477   1 (7)
	              a 0.5244
	           when 0.5244
	             in 0.2816
	           </S> 0.2253
	              - 0.1825
	              , 0.1825
	            flu 0.0857

        actions   419562   1 (7)
	        actions 0.7555
	              I 0.5413
	        against 0.5413
	            for 0.2816
	           </S> 0.2253
	              , 0.1825
	             to 0.0857

          moves   419593   1 (10)
	          moves 0.7555
	             of 0.5413
	              . 0.5413
	          Pales 0.5413
	              , 0.5097
	           </S> 0.2816
	            had 0.2816
	           more 0.1825
	             be 0.0857
	              a 0.0857

           bird   419625   1 (11)
	            cia 0.7555
	           bird 0.7555
	              I 0.5413
	             of 0.5413
	         attack 0.5413
	             by 0.5097
	              " 0.2656
	              , 0.1825
	             is 0.1825
	           </S> 0.1825
	         Soviet 0.0857

           Grey   419631   3 (10)
	         Sheryl 0.5413
	           ICTY 0.5413
	           Grey 0.5097
	              - 0.2816
	              a 0.1825
	           </S> 0.1825
	              s 0.1825
	             or 0.1825
	           free 0.1229
	          <UNK> 0.0857

           Crow   419636   1 (8)
	           Crow 0.7555
	              a 0.5413
	          Suede 0.5413
	            arz 0.5413
	           from 0.5244
	              ) 0.1825
	              , 0.1825
	           </S> 0.0857

         aviary   419722   1 (9)
	         aviary 0.7555
	            are 0.5413
	              I 0.5413
	             of 0.1825
	           </S> 0.1825
	          world 0.1825
	              , 0.1825
	             to 0.1294
	             or 0.0857

Familx-C0K]'I1K-E   419777 inf (8)
	           will 0.7555
	             -- 0.7555
	              a 0.7555
	         normal 0.5413
	              - 0.5244
	              ) 0.5097
	              , 0.2816
	           </S> 0.0857

              .   419794   1 (6)
	             us 0.5413
	            the 0.5413
	           </S> 0.5413
	              " 0.5413
	              , 0.5413
	              . 0.5413

        Collins   419815   2 (8)
	              , 0.7555
	              a 0.5413
	        College 0.5413
	         Corvus 0.5413
	        Collins 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

          comix   419823   2 (7)
	           come 0.7555
	              a 0.5413
	          comix 0.5413
	     Publishers 0.5097
	         Street 0.2816
	           </S> 0.1825
	              , 0.0857

           LiNN   419830 inf (13)
	           </S> 0.5413
	           List 0.5413
	            yes 0.5413
	              , 0.5413
	      Melbourne 0.5413
	            NiL 0.5413
	            cia 0.5413
	            LNN 0.5413
	              a 0.5413
	           LiNK 0.5413
	          beast 0.5413
	             pp 0.2816
	            the 0.0857

              .   419834   1 (6)
	            the 0.5413
	           </S> 0.5413
	              . 0.5413
	              , 0.5413
	             us 0.5413
	         stoich 0.5413

              "   419837 inf (6)
	              - 0.7555
	              , 0.7555
	            the 0.7555
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

          ^OUND   419841 inf (10)
	           YOUR 0.7555
	          COUNT 0.7555
	              a 0.5413
	            OUN 0.5413
	        popular 0.5413
	           UODN 0.5413
	            UND 0.5244
	              " 0.2816
	              , 0.1825
	           </S> 0.0857

     throughout   419847   1 (5)
	              , 0.5413
	           </S> 0.5413
	     throughout 0.5413
	              s 0.5413
	              a 0.5413

         Europe   419858   3 (6)
	         corone 0.5413
	              a 0.5097
	         Europe 0.2816
	           </S> 0.2816
	              , 0.2816
	            the 0.0857

           loug   419879 inf (14)
	           loud 0.7555
	           lava 0.7555
	            lou 0.7555
	           logu 0.5413
	          lough 0.5413
	          world 0.5413
	        country 0.5413
	              , 0.2816
	           your 0.2253
	           </S> 0.2253
	              . 0.2253
	             it 0.1825
	              a 0.1825
	            the 0.0857

              .   419883   1 (6)
	            the 0.5413
	              . 0.5413
	              , 0.5413
	             us 0.5413
	           </S> 0.5097
	          <UNK> 0.0857

            10°   419885 inf (8)
	            the 0.7555
	      ChangeLog 0.7555
	              , 0.7555
	              I 0.7555
	              1 0.5413
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

              ,   419888   1 (5)
	              , 0.5413
	      configure 0.5413
	             us 0.5413
	            the 0.5413
	           </S> 0.5413

            and   419890   2 (7)
	           tako 0.7555
	              s 0.5413
	            and 0.5413
	           </S> 0.5413
	              , 0.5413
	        drepper 0.5413
	            the 0.0857

             iu   419894   2 (6)
	             iu 0.7555
	              , 0.1825
	           </S> 0.1825
	             in 0.1825
	              a 0.1825
	            the 0.0857

           Asia   419897   3 (9)
	              s 0.7555
	             it 0.7555
	           Asia 0.5413
	             As 0.5413
	              a 0.5244
	              . 0.5097
	              , 0.2816
	              - 0.1825
	           </S> 0.0857

        extends   419902   1 (6)
	        extends 0.7555
	        extensa 0.5413
	         extent 0.5413
	              , 0.1825
	              - 0.1825
	           </S> 0.0857

              I   419910 inf (10)
	             us 0.7555
	             In 0.7555
	              : 0.5413
	             II 0.5413
	       students 0.5413
	             MI 0.5413
	              , 0.2816
	           </S> 0.2816
	             to 0.0857
	            the 0.0857

              '   419912 inf (7)
	             us 0.7555
	         headed 0.5413
	            the 0.5097
	           live 0.2816
	           </S> 0.1825
	              , 0.1825
	             'm 0.0857

      Turkestan   419923   1 (10)
	      Turkestan 0.7555
	        Baghdad 0.5413
	          great 0.5413
	             it 0.2816
	             us 0.2816
	              , 0.2816
	           them 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

      Palestine   419997   1 (10)
	      Palestine 0.7555
	         online 0.5413
	          Laden 0.5413
	             us 0.5097
	             it 0.2816
	              . 0.2816
	              , 0.2816
	           </S> 0.2656
	              a 0.1825
	            the 0.0857

       Examples   420019   1 (8)
	              , 0.7555
	       Examples 0.7555
	              a 0.5413
	             us 0.5413
	        example 0.5413
	      Treasures 0.5413
	              " 0.2816
	           </S> 0.0857

       replaced   420075   1 (9)
	             us 0.5413
	       replaced 0.5413
	              a 0.5413
	        related 0.5413
	       declined 0.5413
	           mare 0.5097
	              - 0.1825
	           </S> 0.1825
	              , 0.0857

     capcllauns   420125 inf (14)
	     cabillauds 0.5413
	        callans 0.5413
	      calculans 0.5413
	            the 0.5413
	        account 0.5413
	       capellas 0.5413
	       capelans 0.5413
	              a 0.5413
	     capillatus 0.5413
	             to 0.5097
	        elegans 0.2816
	          <UNK> 0.2253
	              , 0.1825
	           </S> 0.0857

              ;   420136   1 (5)
	           </S> 0.5413
	             us 0.5413
	            the 0.5413
	              ; 0.5413
	              , 0.5413

            but   420138   1 (6)
	            but 0.5413
	             by 0.5413
	             us 0.5413
	              ) 0.5097
	              } 0.1229
	           </S> 0.0857

       Siberian   420142   1 (7)
	       Siberian 0.7555
	          their 0.2816
	              a 0.1825
	              , 0.1825
	           </S> 0.1825
	            the 0.1218
	              I 0.0857

          birds   420151   1 (10)
	          birds 0.7555
	          first 0.7555
	              a 0.5413
	           they 0.5413
	            the 0.5413
	          Parus 0.5413
	              , 0.5097
	           </S> 0.2816
	        Huskies 0.2656
	          Husky 0.0857

          birds   420201   2 (10)
	          first 0.7555
	             of 0.5413
	            you 0.5413
	          Parus 0.5413
	          birds 0.5413
	              a 0.5413
	            rug 0.5097
	              , 0.2253
	           </S> 0.1825
	           Gulf 0.0857

              -   420249   4 (6)
	             us 0.5097
	             he 0.2656
	            the 0.2253
	              , 0.1825
	              - 0.1825
	           </S> 0.0857

     Sceboli??!   420251 inf (14)
	              a 0.7555
	          Click 0.7555
	              I 0.7555
	              " 0.7555
	            old 0.7555
	              , 0.5413
	        replied 0.5413
	  Subordination 0.5413
	             el 0.5413
	              s 0.5413
	           said 0.5413
	           side 0.5413
	          below 0.5413
	           </S> 0.0857

              .   420261   1 (7)
	              " 0.5413
	            the 0.5413
	              . 0.5413
	             us 0.5413
	           </S> 0.5413
	              , 0.5413
	              - 0.5413

             An   420264   1 (7)
	             An 0.7555
	              , 0.7555
	              I 0.7555
	             AM 0.5413
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

        England   420297   1 (7)
	        English 0.5413
	    programmers 0.5413
	        England 0.5413
	            try 0.2816
	             us 0.2816
	              a 0.1825
	            the 0.0857

         whilst   420379   1 (7)
	            dog 0.5413
	              , 0.5413
	              a 0.5413
	          while 0.5413
	         whilst 0.5413
	              } 0.1229
	           </S> 0.0857

     Throughout   420440 inf (8)
	              , 0.7555
	          There 0.7555
	     throughout 0.5413
	              a 0.5413
	     Throughput 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

  interbreeding   420529   1 (8)
	  interbreeding 0.7555
	              ( 0.5413
	              a 0.5413
	           </S> 0.5413
	            and 0.5413
	          there 0.1825
	            who 0.1825
	            the 0.0857

   occasionally   420543   2 (8)
	         freely 0.7555
	   occasionally 0.5413
	           only 0.5413
	              a 0.5413
	        closely 0.5413
	           </S> 0.2816
	              , 0.1825
	           with 0.0857

        Carrion   420565   1 (7)
	        Carrion 0.7555
	            non 0.5413
	              I 0.5413
	              - 0.2253
	           City 0.2253
	           same 0.1825
	           </S> 0.0857

       countr}^   420592   5 (8)
	              a 0.5413
	        countor 0.5413
	             of 0.5413
	          South 0.5413
	        country 0.5097
	              , 0.1825
	           </S> 0.1825
	         Soviet 0.0857

            and   420601   1 (6)
	              - 0.5413
	           </S> 0.5413
	              , 0.5413
	             of 0.5413
	            and 0.5413
	            arz 0.5413

         Hooded   420628   2 (8)
	          Hotel 0.7555
	              I 0.5413
	         Hooded 0.5413
	             DT 0.5413
	     homeowners 0.5413
	              , 0.2253
	           </S> 0.1825
	             of 0.0857

      remainder   420744   1 (5)
	              , 0.5413
	              a 0.5413
	      remainder 0.5413
	              } 0.1229
	           </S> 0.0857

        plumage   420757   1 (7)
	        plumage 0.7555
	         please 0.7555
	              , 0.2816
	             us 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

           ashy   420765   1 (9)
	            non 0.5413
	              I 0.5413
	           alba 0.5413
	           ashy 0.5413
	   professional 0.5413
	             as 0.5244
	           </S> 0.2656
	              , 0.0857
	              . 0.0655

       becoming   420855   1 (9)
	           </S> 0.5413
	              a 0.5413
	              ( 0.5413
	            and 0.5413
	       becoming 0.5413
	          being 0.5413
	            but 0.5413
	            was 0.2253
	            the 0.0857

           bill   420895   1 (7)
	           bill 0.5413
	              , 0.5413
	           will 0.5413
	            cia 0.5413
	              a 0.5413
	              } 0.1229
	           </S> 0.0857

           iris   420916   1 (8)
	             is 0.5413
	            and 0.5413
	              , 0.5413
	              a 0.5413
	           iris 0.5413
	             iu 0.5413
	              } 0.1229
	           </S> 0.0857

        browner   420971   1 (8)
	        browner 0.7555
	         before 0.2816
	              , 0.1825
	           also 0.1825
	           </S> 0.1825
	              a 0.1825
	            the 0.1218
	              I 0.0857

           bill   421015   4 (9)
	              , 0.5413
	              a 0.5413
	            cia 0.5244
	           bill 0.2816
	           user 0.2253
	          world 0.1825
	         system 0.1825
	           will 0.1294
	           </S> 0.0857

        broader   421035   1 (8)
	        broader 0.7555
	          order 0.5244
	           only 0.1825
	              a 0.1825
	              , 0.1825
	           </S> 0.1825
	            the 0.1218
	              I 0.0857

          lower   421082   1 (7)
	          lower 0.7555
	           long 0.7555
	              a 0.5413
	           </S> 0.2816
	              . 0.1825
	              , 0.1825
	           than 0.0857

        Hoodies   421174   2 (8)
	         Movies 0.7555
	              a 0.5413
	        Hoodies 0.5413
	         Donors 0.5413
	              . 0.5097
	              - 0.2816
	              , 0.2253
	           </S> 0.0857

     southwards   421182   1 (6)
	         design 0.5413
	          South 0.5413
	     southwards 0.5413
	              T 0.5244
	              , 0.2253
	           </S> 0.0857

     visitation   421254   1 (11)
	     visitation 0.7555
	     newsletter 0.5413
	     department 0.5413
	              a 0.5413
	        version 0.5413
	             to 0.5097
	          basis 0.2816
	              . 0.2656
	           </S> 0.1825
	              , 0.1825
	            and 0.0857

        Royston   421332   1 (8)
	        Royston 0.7555
	              , 0.5413
	              a 0.5413
	         Legend 0.5413
	            New 0.1825
	              " 0.1825
	         system 0.1825
	           </S> 0.0857

           Crow   421355   1 (13)
	    Camaroptera 0.5413
	           Crow 0.5413
	          Storm 0.5413
	            arz 0.5413
	             is 0.5413
	        sources 0.5413
	           from 0.5244
	              a 0.5097
	              , 0.4011
	           </S> 0.2816
	             up 0.1825
	              - 0.1294
	             by 0.0857

       arriving   421431   1 (10)
	       arriving 0.5413
	            and 0.5413
	    information 0.5413
	              I 0.5413
	            are 0.5413
	              " 0.5413
	           </S> 0.5413
	            who 0.1825
	             or 0.1825
	            the 0.0857

           They   421562   1 (6)
	              , 0.7555
	           They 0.7555
	              a 0.5413
	            The 0.5244
	              " 0.2816
	           </S> 0.0857

       frequent   421567   1 (6)
	       frequent 0.7555
	       frequens 0.5413
	        request 0.5244
	              , 0.5097
	           </S> 0.2816
	            are 0.0857

         broads   421598   1 (10)
	         broads 0.7555
	              , 0.5413
	          story 0.5413
	          major 0.5413
	            hip 0.5413
	          broad 0.5097
	           book 0.2253
	           same 0.1825
	           time 0.1825
	           </S> 0.0857

        Norfolk   421831   2 (9)
	       ensuring 0.5413
	        Norfolk 0.5244
	             us 0.2816
	              , 0.2816
	          those 0.2816
	           more 0.1825
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

         leaves   421869   1 (8)
	         leaves 0.7555
	         around 0.5413
	           lava 0.5413
	          level 0.5097
	           </S> 0.1825
	              , 0.1825
	              . 0.0857
	             of 0.0655

             iu   421892   3 (6)
	              a 0.5413
	             iu 0.5413
	           </S> 0.1825
	             in 0.1825
	              , 0.1825
	              . 0.0857

       probably   421955   1 (6)
	       probably 0.5413
	        program 0.5413
	              a 0.5244
	              - 0.4979
	           </S> 0.2253
	              , 0.0857

        pr\-ing   422066   1 (13)
	         prying 0.7555
	           ping 0.7555
	           prin 0.7555
	              , 0.5413
	         piring 0.5413
	          point 0.5413
	        enemies 0.5413
	        mailing 0.5413
	        pricing 0.5244
	        display 0.2253
	              a 0.1825
	           </S> 0.1825
	            own 0.0857

          e\'es   422074   1 (11)
	              . 0.5413
	           eses 0.5413
	           </S> 0.5413
	           eyes 0.5413
	           even 0.5413
	            ees 0.5413
	          esses 0.5413
	              a 0.5413
	              , 0.5413
	             es 0.5413
	          Pales 0.5413

            and   422080   1 (3)
	            and 0.5413
	            the 0.5413
	            arz 0.5413

    carnivorons   422084   1 (10)
	    carnivorous 0.7555
	    carnivorans 0.7555
	      carnivoro 0.5413
	     carnivoros 0.5413
	  materialistic 0.5413
	            can 0.2656
	              , 0.2253
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

   propensities   422096   1 (8)
	           </S> 0.5413
	              , 0.5413
	           more 0.5413
	             us 0.5413
	        process 0.5413
	   propensities 0.5413
	              a 0.5413
	              . 0.5413

       liowever   422121  10 (12)
	         liever 0.7555
	        lowlier 0.7555
	           </S> 0.5413
	        However 0.5413
	          major 0.5413
	      therefore 0.5413
	              , 0.5413
	              a 0.5413
	           like 0.2816
	        however 0.2253
	             of 0.2253
	            the 0.0857

              j   422232 inf (9)
	             us 0.7555
	           been 0.5413
	             ja 0.5413
	             dj 0.5413
	            the 0.5097
	           </S> 0.2816
	              . 0.1825
	              , 0.1825
	           fees 0.0857

              -   422233   5 (8)
	             us 0.7555
	       behaving 0.5413
	            the 0.5244
	              . 0.5097
	              - 0.2656
	              , 0.2253
	              = 0.1825
	           </S> 0.0857

           ears   422234   4 (10)
	           side 0.5413
	              s 0.5413
	        sending 0.5413
	           ears 0.5244
	          years 0.5097
	              . 0.2816
	              a 0.2253
	             up 0.1825
	             to 0.1825
	           </S> 0.0857

            vSt   422287   5 (14)
	            vat 0.7555
	             vt 0.7555
	           Svet 0.5603
	            Svt 0.5413
	             Eq 0.5244
	             St 0.5244
	             to 0.5097
	             me 0.2816
	              , 0.2816
	           CliC 0.2816
	             us 0.2816
	           </S> 0.2253
	              a 0.1825
	            the 0.0857

              .   422290   1 (7)
	             us 0.5413
	            the 0.5413
	           </S> 0.5413
	              . 0.5413
	              , 0.5413
	            St. 0.5413
	              - 0.0857

           John   422292   1 (6)
	           John 0.7555
	              I 0.7555
	              , 0.7555
	             It 0.7555
	              " 0.2816
	           </S> 0.0857

       Mora}',"   422329 inf (9)
	             or 0.7555
	              , 0.7555
	       Colorado 0.5413
	         Modern 0.5413
	          March 0.5413
	             us 0.5413
	           </S> 0.5244
	              a 0.2816
	            the 0.0857

             p.   422338 inf (7)
	             pm 0.5413
	             us 0.5413
	              a 0.5413
	             up 0.5413
	              , 0.5413
	              . 0.5413
	           </S> 0.5413

    newlj'-boru   422359 inf (12)
	             or 0.7555
	          about 0.7555
	            now 0.5413
	          never 0.5413
	             no 0.5413
	      wonderful 0.5413
	              s 0.5413
	            you 0.5244
	              a 0.2816
	             me 0.2816
	              , 0.1825
	           </S> 0.0857

          lambs   422371   1 (7)
	              a 0.5413
	           </S> 0.5413
	             to 0.5413
	           last 0.5413
	              , 0.5413
	          lambs 0.5413
	           lava 0.5413

             It   422450   1 (6)
	              , 0.7555
	             It 0.7555
	             us 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

         )-oung   422462   5 (9)
	          found 0.7555
	            oun 0.7555
	          goung 0.5413
	             us 0.5413
	          young 0.5244
	              , 0.2816
	           </S> 0.2253
	              a 0.1825
	            the 0.0857

         grouse   422469   1 (7)
	         grouse 0.5413
	              , 0.5413
	         groups 0.5413
	              a 0.5413
	           site 0.5413
	           </S> 0.5413
	        animals 0.5413

          vcr}'   422509   4 (9)
	             vc 0.7555
	            crv 0.5413
	            vcs 0.5413
	           very 0.2253
	            not 0.1825
	           </S> 0.1825
	            the 0.1825
	              , 0.1825
	              a 0.0857

    destructive   422515   1 (7)
	              , 0.5413
	          going 0.5413
	    destructive 0.5413
	       designed 0.5413
	             to 0.5413
	           </S> 0.5413
	              a 0.5413

             In   422549   1 (6)
	             In 0.7555
	              , 0.7555
	             us 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

        certain   422552   2 (7)
	        Certhia 0.5413
	        certain 0.5097
	              , 0.4011
	              / 0.2816
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

        feeding   422560   1 (8)
	        feeding 0.7555
	          being 0.7555
	        natural 0.5413
	              a 0.5413
	              , 0.1825
	           </S> 0.1825
	          cases 0.1825
	           that 0.0857

             No   422667   1 (7)
	             No 0.7555
	              , 0.7555
	              s 0.5413
	              a 0.5413
	              ) 0.2816
	              " 0.2816
	           </S> 0.0857

           au}'   422708 inf (12)
	           alba 0.7555
	              I 0.5413
	            aua 0.5413
	             au 0.5244
	           auto 0.5244
	            and 0.5097
	          other 0.1825
	              , 0.1825
	            you 0.1825
	              a 0.1825
	            the 0.0857
	           </S> 0.0655

           bird   422713   1 (8)
	              . 0.5413
	           </S> 0.5413
	              , 0.5413
	             to 0.5413
	            cia 0.5413
	           bird 0.5413
	              a 0.5413
	             by 0.5413

          leave   422718   1 (11)
	          level 0.7555
	          leave 0.7555
	         builds 0.5413
	          flaps 0.5413
	           lava 0.5413
	              a 0.5244
	             in 0.2816
	             to 0.2816
	           </S> 0.2253
	              , 0.1825
	            flu 0.0857

         Hooded   422743   3 (9)
	              . 0.5413
	       intended 0.5413
	         Hooded 0.5244
	         Holder 0.5244
	          Hotel 0.5097
	           same 0.1825
	          other 0.1825
	            way 0.1825
	           </S> 0.0857

          often   422814   1 (7)
	          other 0.7555
	          often 0.7555
	              a 0.5244
	              , 0.2816
	              . 0.2253
	           </S> 0.2253
	             of 0.0857

             iu   422847   4 (6)
	             iu 0.5413
	              a 0.5097
	             of 0.2816
	           </S> 0.1825
	             in 0.1825
	              , 0.0857

            All   422874   1 (6)
	            All 0.7555
	              , 0.7555
	             us 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

           seem   422884   4 (8)
	            see 0.7555
	       reserved 0.5413
	           sala 0.5413
	              a 0.5244
	           seem 0.5244
	            are 0.1825
	           </S> 0.1825
	              , 0.0857

        Peewits   422908   1 (8)
	    destination 0.5413
	        Peewits 0.5413
	           with 0.2816
	              , 0.1825
	              a 0.1825
	           </S> 0.1825
	              I 0.1825
	            the 0.0857

          Gulls   422917   2 (10)
	          rufus 0.7555
	              x 0.5413
	              ( 0.5413
	            and 0.5413
	           </S> 0.5413
	      therefore 0.5413
	              a 0.5413
	          Gulls 0.5413
	           will 0.2816
	            the 0.0857

      Redshanks   422924   1 (9)
	              x 0.5413
	      workshops 0.5413
	              a 0.5413
	          Terns 0.5413
	              , 0.5413
	      therefore 0.5413
	      Redshanks 0.5413
	           that 0.1825
	            the 0.0857

           etc.   422935   8 (9)
	          <UNK> 0.5413
	      therefore 0.5413
	              , 0.5413
	            Jen 0.5413
	           Pica 0.5413
	           each 0.2816
	              i 0.2816
	           etc. 0.2253
	            the 0.0857

         attack   422941   1 (8)
	            and 0.5413
	           back 0.5413
	           </S> 0.5413
	              , 0.5413
	         attack 0.5413
	              I 0.5413
	            but 0.5413
	            the 0.0857

      furiously   422953   1 (7)
	      furiously 0.7555
	              a 0.5413
	      seriously 0.5244
	          major 0.4011
	              , 0.2816
	           </S> 0.1825
	             of 0.0857

           an\'   422963 inf (9)
	              I 0.7555
	             an 0.5413
	           anna 0.5413
	           alba 0.5413
	           </S> 0.5244
	            the 0.5244
	            and 0.2816
	              , 0.1825
	              . 0.0857

           Crow   422968   1 (6)
	              , 0.5413
	           from 0.5413
	              a 0.5413
	           </S> 0.5413
	           Crow 0.5413
	            arz 0.5413

          which   422973   1 (6)
	          which 0.7555
	          white 0.7555
	           Pica 0.5413
	          South 0.5097
	           </S> 0.0857
	              , 0.0655

        hunting   422988   1 (9)
	        hunting 0.7555
	         during 0.5244
	             us 0.2816
	             as 0.2816
	           </S> 0.2253
	              . 0.1825
	              , 0.1825
	              a 0.1825
	            the 0.0857

      destro3-s   423066   5 (11)
	         destro 0.7555
	          minor 0.5413
	          geese 0.5413
	      destrosso 0.5413
	       destroys 0.5244
	           from 0.2816
	              , 0.2253
	           </S> 0.1825
	           more 0.1825
	              a 0.1825
	            the 0.0857

          great   423076   1 (8)
	           </S> 0.5413
	       security 0.5413
	              . 0.5413
	              , 0.5413
	             us 0.5413
	              a 0.5413
	          phone 0.5413
	          great 0.5413

        osprc}'   423187   1 (9)
	         osprey 0.7555
	           both 0.2816
	            not 0.1825
	              , 0.1825
	              a 0.1825
	      otherwise 0.1825
	          other 0.1825
	            the 0.0857
	           </S> 0.0655

         happen   423216   1 (9)
	         happen 0.7555
	       guardian 0.5413
	              s 0.5413
	              a 0.5244
	            not 0.5244
	           have 0.2816
	            are 0.1825
	           </S> 0.1825
	              , 0.0857

         Redcar   423276   1 (9)
	         Redcar 0.7555
	           Read 0.7555
	    Underground 0.5413
	              , 0.2816
	             us 0.2816
	           </S> 0.2253
	              a 0.1825
	              $ 0.1825
	            the 0.0857

      Zoologist   423286   1 (8)
	      Zoologist 0.7555
	          could 0.5413
	              s 0.5413
	              a 0.2816
	              ) 0.1825
	              , 0.1825
	          <UNK> 0.1825
	           </S> 0.0857

              "   423296   1 (7)
	           </S> 0.5413
	              , 0.5413
	              § 0.5413
	              " 0.5413
	            pub 0.5244
	             us 0.5097
	            the 0.0857

        Hoodies   423344   1 (10)
	        Hoodies 0.7555
	   publications 0.5413
	           Jews 0.5413
	         photos 0.5413
	           good 0.5413
	              , 0.2816
	             us 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

        Messrs.   423390   1 (8)
	         Messrs 0.5413
	              , 0.5413
	              a 0.5413
	           2005 0.5413
	            and 0.5413
	         search 0.5413
	           </S> 0.5413
	            the 0.0857

             T.   423398   3 (7)
	              a 0.5413
	             To 0.5413
	             T. 0.5244
	              , 0.5244
	             A. 0.5097
	         Robert 0.2816
	           </S> 0.0857

        Pilling   423419   1 (8)
	           will 0.5413
	              a 0.5413
	             P. 0.5413
	           Last 0.5413
	        Pilling 0.5413
	              . 0.2816
	              , 0.0857
	           </S> 0.0857

        observe   423427   1 (8)
	       observed 0.5413
	             A. 0.5413
	        Updated 0.5413
	        observe 0.5413
	              a 0.5244
	        Subject 0.5244
	           </S> 0.1825
	              , 0.0857

        Hoodies   423443   1 (10)
	        Hoodies 0.7555
	        changes 0.5413
	              a 0.5413
	         people 0.5413
	              , 0.5413
	         stakes 0.5413
	           book 0.1825
	      following 0.1825
	              " 0.1825
	           </S> 0.0857

        largest   423476   1 (7)
	        largest 0.7555
	             us 0.5413
	          large 0.5097
	              , 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

          thick   423499   1 (9)
	          thick 0.7555
	          think 0.7555
	         chilly 0.5413
	      inclement 0.5413
	           Pica 0.5413
	              , 0.5097
	           </S> 0.2816
	              a 0.1825
	            the 0.0857

        Seebohm   423552   1 (6)
	        Seebohm 0.7555
	           </S> 0.5413
	           both 0.5413
	             us 0.2816
	              a 0.1825
	            the 0.0857

           this   423560   1 (6)
	           this 0.5413
	            the 0.5413
	            cia 0.5413
	              a 0.5413
	           </S> 0.0857
	              , 0.0857

            b}'   423582   1 (8)
	             by 0.7555
	             bb 0.5413
	             us 0.5413
	              a 0.5244
	           </S> 0.5097
	              , 0.5097
	            the 0.4979
	             to 0.0857

           da\-   423586   1 (9)
	              , 0.5413
	             da 0.5413
	            day 0.5413
	              a 0.5413
	            the 0.5413
	           </S> 0.5413
	            dad 0.5413
	          blogs 0.5413
	           lava 0.5413

              ,   423590 inf (3)
	             of 0.5413
	             us 0.5413
	            the 0.5413

            and   423592   1 (4)
	            and 0.5413
	            arz 0.5413
	           your 0.2816
	            the 0.0857

          Gatke   423596 inf (11)
	          Gatka 0.7555
	        Gataket 0.5413
	     warranties 0.5413
	           Gate 0.5244
	            she 0.2816
	           make 0.2656
	             he 0.2253
	              , 0.1825
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

           says   423602   2 (9)
	           </S> 0.7555
	        include 0.5413
	              . 0.5413
	           said 0.5413
	           sala 0.5413
	           ASIN 0.5413
	           says 0.5413
	              a 0.5413
	              , 0.0857

      commences   423671   1 (6)
	      commences 0.7555
	              a 0.5413
	       comments 0.5413
	           </S> 0.1825
	              , 0.1825
	             of 0.0857

            the   423775   1 (5)
	            the 0.5413
	             us 0.5413
	              , 0.5413
	              } 0.1229
	           </S> 0.0857

     consisting   423825   1 (8)
	              ( 0.5413
	              a 0.5413
	            and 0.5413
	           </S> 0.5413
	     consisting 0.5413
	         online 0.5413
	            one 0.2253
	            the 0.0857

      continues   423893   2 (8)
	     trademarks 0.5413
	      continues 0.5097
	        contact 0.2816
	           </S> 0.1825
	              a 0.1825
	              , 0.1825
	           that 0.1825
	            the 0.0857

      scarcel}^   423988   1 (10)
	       scarcely 0.7555
	              a 0.5413
	           live 0.5413
	      scarselle 0.5413
	         result 0.5244
	           </S> 0.5097
	              , 0.5097
	            not 0.1825
	         search 0.1294
	             be 0.0857

         assume   424022   1 (9)
	       provided 0.5413
	         assume 0.5413
	              - 0.5413
	           </S> 0.5413
	              I 0.5413
	            and 0.5413
	           same 0.5097
	             so 0.1825
	            the 0.0857

     Heligoland   424113   1 (11)
	         people 0.5413
	        changes 0.5413
	             us 0.5413
	     Heligoland 0.5413
	           that 0.5097
	              a 0.5097
	        section 0.2816
	           </S> 0.2816
	              , 0.2816
	            the 0.2253
	              - 0.0857

     migrations   424255   1 (10)
	          think 0.5413
	           many 0.5413
	        options 0.5413
	     migrations 0.5413
	              ) 0.5413
	            was 0.5413
	              a 0.5097
	            set 0.5097
	           </S> 0.2656
	              , 0.0857

          eight   424346   2 (7)
	          right 0.7555
	          eight 0.5413
	       neighbor 0.5413
	              a 0.5244
	           </S> 0.1825
	              . 0.1825
	              , 0.0857

         extend   424442   1 (10)
	         extend 0.7555
	            Act 0.5413
	           city 0.5413
	           even 0.5244
	              ) 0.5097
	              a 0.5097
	           </S> 0.1825
	              . 0.1825
	              , 0.1825
	             of 0.0857

          while   424450   1 (6)
	              , 0.5413
	     moratorium 0.5413
	          while 0.5413
	              a 0.5413
	              } 0.1229
	           </S> 0.0857

simultaneous!}'   424481   1 (10)
	 simultaneously 0.7555
	         photos 0.5413
	            and 0.5413
	              " 0.5413
	   simultaneous 0.5413
	           </S> 0.5413
	              a 0.5413
	              , 0.5413
	         should 0.5413
	            the 0.0857

            and   424497   1 (6)
	              , 0.5413
	           </S> 0.5413
	             it 0.5413
	            the 0.5413
	            and 0.5413
	            arz 0.5413

    Bremerhaven   424554   1 (9)
	        America 0.5413
	    Bremerhaven 0.5413
	              , 0.2816
	       possible 0.1825
	            the 0.1825
	           </S> 0.1825
	           well 0.1825
	              I 0.1825
	              a 0.0857

             as   424567   1 (8)
	              ( 0.5413
	           </S> 0.5413
	             as 0.5413
	              I 0.5413
	            and 0.5413
	             us 0.5097
	          which 0.1825
	            the 0.0857

          plies   424618   1 (11)
	          plies 0.7555
	              a 0.5413
	       features 0.5413
	          Pales 0.5413
	          place 0.5244
	           like 0.5244
	            the 0.5097
	           </S> 0.1825
	              , 0.1825
	             to 0.1825
	              . 0.0857

             We   424666   1 (6)
	             We 0.7555
	              , 0.7555
	             us 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

      migration   424680   3 (11)
	              , 0.5413
	         screen 0.5413
	      migration 0.5244
	      migratory 0.5244
	        million 0.2253
	           free 0.1825
	           wide 0.1825
	          major 0.1825
	         single 0.1825
	           </S> 0.0857
	            new 0.0655

         column   424690   1 (9)
	          range 0.5413
	            res 0.5413
	         column 0.5413
	              a 0.5413
	          could 0.5244
	           path 0.2816
	              , 0.1825
	           </S> 0.1825
	             of 0.0857

           Herr   424753   2 (7)
	            arz 0.7555
	           Herr 0.5244
	           Help 0.5097
	              a 0.2816
	              ) 0.1825
	              , 0.1825
	           </S> 0.0857

          Gatke   424758 inf (10)
	          Gatka 0.5413
	           Gate 0.5413
	          Games 0.5413
	        Gataket 0.5413
	              a 0.5413
	           then 0.5413
	              " 0.5244
	             M. 0.5244
	           </S> 0.1825
	              , 0.0857

       proceeds   424764   2 (6)
	           </S> 0.7555
	             J. 0.5413
	       proceeds 0.5413
	          Ringe 0.5413
	              a 0.5413
	              , 0.0857

   nevertheless   424932   1 (6)
	              , 0.5413
	             us 0.5413
	   nevertheless 0.5413
	              a 0.5413
	          there 0.5413
	           </S> 0.0857

      important   424990   8 (10)
	            and 0.5413
	             as 0.5413
	              , 0.5413
	              a 0.5413
	           </S> 0.5413
	   respectively 0.5413
	              s 0.5413
	      important 0.5097
	           more 0.2816
	            the 0.0857

             as   425002   1 (6)
	             as 0.5413
	              , 0.5413
	             us 0.5413
	              I 0.5413
	              } 0.1229
	           </S> 0.0857

          Crows   425227   1 (11)
	          Crows 0.7555
	              a 0.5413
	         Corvus 0.5413
	       variable 0.5413
	           from 0.4011
	         people 0.1825
	           </S> 0.1825
	         issues 0.1825
	              . 0.1825
	              , 0.1825
	            are 0.0857

       econom_v   425240   5 (12)
	        econome 0.7555
	              , 0.5413
	         School 0.5413
	      oeconomus 0.5413
	       economic 0.2816
	        economy 0.2816
	            use 0.1825
	           case 0.1825
	            end 0.1825
	           same 0.1825
	          state 0.1825
	           </S> 0.0857

    Evcr\'where   425260   2 (8)
	              , 0.7555
	            and 0.5413
	          where 0.5413
	             us 0.5413
	     Everywhere 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

            the   425272   1 (4)
	             us 0.5413
	              , 0.5413
	            the 0.5413
	           </S> 0.5413

        creates   425296   1 (9)
	        creates 0.7555
	          after 0.5413
	              a 0.5244
	             of 0.1825
	           </S> 0.1825
	             in 0.1825
	              . 0.1825
	            and 0.1825
	              , 0.0857

      altliough   425421   3 (8)
	         though 0.7555
	        through 0.5603
	              I 0.5413
	           </S> 0.5413
	       although 0.5413
	              , 0.5413
	           with 0.5097
	            the 0.0857

          snuiU   425471 inf (11)
	       wildlife 0.5413
	          snuif 0.5413
	              a 0.5413
	          Unsui 0.5413
	           said 0.5244
	          major 0.2816
	           </S> 0.1825
	              , 0.1825
	        product 0.1825
	              . 0.1825
	           than 0.0857

        species   425477   1 (7)
	           </S> 0.5413
	        special 0.5413
	              , 0.5413
	              . 0.5413
	        species 0.5413
	              a 0.5413
	        suecica 0.5413

   nevertheless   425572   1 (7)
	             us 0.5413
	          these 0.5413
	              , 0.5413
	              a 0.5413
	   nevertheless 0.5413
	              } 0.1229
	           </S> 0.0857

            all   425585   2 (5)
	           alba 0.5413
	            all 0.5244
	           </S> 0.2816
	              I 0.2816
	              , 0.0857

         Ital}'   425654   5 (11)
	          Itala 0.7555
	           Ital 0.7555
	            use 0.5413
	             us 0.5413
	          Italy 0.5097
	           more 0.2816
	              , 0.2816
	           that 0.2816
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

         during   425661   1 (7)
	           than 0.5413
	             to 0.5413
	              a 0.5413
	           </S> 0.5413
	         during 0.5413
	              , 0.5413
	         dubius 0.5413

      migration   425681   4 (10)
	           year 0.5413
	             us 0.5413
	          cycle 0.5413
	      migration 0.5244
	    information 0.2656
	        package 0.2656
	           </S> 0.1825
	              , 0.1825
	              a 0.1825
	            the 0.0857

      scarcel}'   425705   1 (8)
	       scarcely 0.7555
	         should 0.5413
	      scarselle 0.5413
	              a 0.5244
	              , 0.5097
	           have 0.1825
	           </S> 0.1294
	             be 0.0857

          equal   425715   1 (9)
	           that 0.5413
	             to 0.5413
	          equal 0.5413
	              a 0.5413
	           </S> 0.5413
	              , 0.5413
	             in 0.5413
	           eBay 0.5413
	             us 0.5413

      destroyed   425756   2 (8)
	              a 0.7555
	             us 0.5413
	      destroyed 0.5413
	        through 0.5413
	           </S> 0.2816
	             of 0.2816
	              , 0.1825
	              . 0.0857

            b}-   425766   5 (7)
	             us 0.5244
	              - 0.5097
	              a 0.2816
	           </S> 0.2816
	             by 0.1825
	              , 0.1825
	              . 0.0857

            the   425770   1 (4)
	            the 0.5413
	             us 0.5413
	              , 0.5413
	           </S> 0.5413

         Hooded   425774   1 (7)
	         Hooded 0.5244
	          Hotel 0.5097
	              - 0.2253
	          world 0.1825
	           same 0.1825
	           time 0.1825
	           </S> 0.0857

         during   425787   1 (6)
	              a 0.7555
	         during 0.7555
	         dubius 0.5413
	            are 0.5097
	              , 0.1825
	           </S> 0.0857

         Hooded   425872   1 (8)
	         Hooded 0.7555
	          Hotel 0.5244
	           each 0.2816
	              , 0.2816
	             us 0.2816
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

        becomes   425885   2 (4)
	              a 0.7555
	        becomes 0.5413
	              , 0.1825
	           </S> 0.0857

        nowhere   425893   1 (6)
	          where 0.7555
	        nowhere 0.7555
	              , 0.2816
	           </S> 0.1825
	           more 0.1825
	              a 0.0857

   prepondering   425918 inf (10)
	      pondering 0.7555
	 preponderating 0.7555
	          major 0.5413
	    preordering 0.5413
	   preponderant 0.5413
	       property 0.5097
	              , 0.2816
	           </S> 0.2816
	              a 0.1825
	             as 0.0857

       quantity   425931   1 (7)
	              , 0.5413
	              a 0.5413
	           </S> 0.5413
	            the 0.5413
	       quantity 0.5413
	        quality 0.5413
	            way 0.5413

     Heligoland   425946   1 (10)
	     Heligoland 0.7555
	          Sinai 0.5413
	             us 0.5413
	         France 0.5413
	              , 0.2816
	           part 0.2816
	            and 0.2816
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

            but   426031   1 (6)
	             us 0.5413
	              a 0.5413
	            but 0.5413
	              , 0.5413
	              } 0.1229
	           </S> 0.0857

         during   426110   2 (8)
	         dubius 0.5413
	         during 0.5244
	              a 0.2816
	              : 0.2816
	         couple 0.2656
	            the 0.1825
	           </S> 0.1825
	              , 0.0857

        impedes   426243   1 (9)
	        impedes 0.7555
	            and 0.5413
	              ( 0.5413
	              a 0.5413
	           </S> 0.5413
	            its 0.2816
	           with 0.1825
	             or 0.1825
	            the 0.0857

            and   426262   1 (5)
	            and 0.5413
	              , 0.5413
	            arz 0.5413
	              } 0.1229
	           </S> 0.0857

       impudent   426324   1 (9)
	       impudent 0.7555
	          under 0.5413
	            and 0.5413
	           </S> 0.5413
	              a 0.5413
	              ( 0.5413
	           such 0.2253
	         please 0.1825
	            the 0.0857

          thej^   426336   5 (8)
	          thyej 0.5413
	          kthej 0.5413
	          their 0.2816
	              , 0.2816
	            the 0.1825
	           they 0.1825
	           </S> 0.1825
	              a 0.0857

            are   426342   1 (8)
	             as 0.5413
	            arz 0.5413
	            and 0.5413
	              I 0.5413
	             is 0.5413
	           </S> 0.5413
	              , 0.5413
	            are 0.5413

            da3   426394   7 (14)
	             da 0.7555
	            dad 0.7555
	              a 0.5413
	            cia 0.5413
	            BBQ 0.5244
	             do 0.5244
	            day 0.2816
	           term 0.2816
	           days 0.2816
	         months 0.1825
	           </S> 0.1825
	             of 0.1825
	              . 0.0857
	              , 0.0655

             's   426397   1 (9)
	             us 0.5413
	             is 0.5413
	            day 0.5413
	         winter 0.5413
	             's 0.5413
	              a 0.5413
	           </S> 0.5097
	              , 0.2816
	              : 0.0857

         earl}^   426406   4 (10)
	           earl 0.7555
	         before 0.5413
	          earle 0.5413
	          early 0.5097
	             us 0.2816
	              , 0.2816
	           each 0.2816
	           </S> 0.2253
	              a 0.1825
	            the 0.0857

           dawn   426413   1 (7)
	             am 0.5413
	              a 0.5413
	           lava 0.5413
	            day 0.5413
	           dawn 0.5413
	              , 0.5413
	           </S> 0.5413

        plunder   426433   1 (8)
	        plunder 0.7555
	          under 0.5097
	             in 0.1825
	              a 0.1825
	           </S> 0.1825
	              , 0.1825
	            the 0.1218
	              I 0.0857

           Lark   426476   4 (11)
	              , 0.5413
	      beginning 0.5413
	            arz 0.5413
	           Lark 0.5244
	           Last 0.5097
	           part 0.2816
	            way 0.1825
	            top 0.1825
	           same 0.1825
	          right 0.1825
	           </S> 0.0857

        Dresser   426495   1 (8)
	        Dresser 0.7555
	              . 0.5413
	          Press 0.5097
	           </S> 0.1825
	              s 0.1825
	              a 0.1825
	              3 0.1825
	          <UNK> 0.0857

         wonder   426522   1 (8)
	         wonder 0.7555
	        thought 0.5413
	             us 0.5413
	          under 0.5244
	             to 0.2816
	           </S> 0.2816
	              a 0.1825
	              , 0.0857

         Hooded   426572   1 (8)
	         Hooded 0.7555
	          Hotel 0.7555
	              . 0.5413
	             us 0.5413
	              , 0.2816
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

           left   426586   5 (10)
	              A 0.5413
	              , 0.5413
	            The 0.5413
	           lava 0.5244
	           left 0.5097
	            why 0.2816
	           like 0.2816
	          while 0.2253
	             or 0.1825
	            the 0.0857

             By   426605   1 (7)
	             by 0.7555
	              , 0.7555
	             By 0.7555
	              s 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

            bj^   426711   5 (10)
	         simply 0.5413
	             bj 0.5413
	            bja 0.5413
	             us 0.5244
	             by 0.2816
	              a 0.2816
	              , 0.2656
	           </S> 0.2253
	          those 0.1825
	             in 0.0857

     abstaining   426715   1 (7)
	              I 0.5413
	           </S> 0.5413
	             us 0.5413
	            the 0.5413
	        against 0.5413
	              , 0.5413
	     abstaining 0.5413

           an}-   426742 inf (9)
	           very 0.5413
	           alba 0.5413
	              I 0.5413
	           anna 0.5413
	           </S> 0.5097
	            and 0.5097
	             an 0.5097
	              , 0.2816
	            the 0.0857

          small   426747   1 (6)
	          small 0.5413
	           sala 0.5413
	              , 0.5413
	              . 0.5413
	              a 0.5413
	           </S> 0.5413

      shrubbery   426753   1 (7)
	      shrubbery 0.7555
	              a 0.5097
	        numbers 0.2816
	         groups 0.1825
	           </S> 0.1825
	              , 0.0857
	       business 0.0857

       songster   426838   1 (10)
	             us 0.5413
	             of 0.5413
	          after 0.5413
	            the 0.5413
	       songster 0.5413
	             as 0.2816
	            way 0.2816
	           </S> 0.1825
	              a 0.1294
	              , 0.0857

              a   426847   1 (6)
	             us 0.5413
	              a 0.5413
	            the 0.5413
	             of 0.5097
	           </S> 0.5097
	              , 0.0857

           nook   426856   1 (10)
	           nook 0.7555
	          known 0.7555
	          point 0.5413
	              a 0.5413
	             of 0.5244
	            not 0.5244
	           list 0.5097
	           </S> 0.1825
	              , 0.1825
	              . 0.0857

          above   426875   1 (6)
	              , 0.5413
	          above 0.5413
	              I 0.5413
	        arborea 0.5413
	              } 0.1229
	           </S> 0.0857

     compassing   426916   2 (10)
	          using 0.7555
	          least 0.5413
	           </S> 0.5413
	              , 0.5413
	      improving 0.5413
	            the 0.5413
	     compassing 0.5413
	              a 0.5413
	             us 0.5244
	           your 0.0857

         Hooded   426946   1 (8)
	         Hooded 0.7555
	            Two 0.5413
	          Hotel 0.5244
	             us 0.2816
	              , 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

   unsparingl}'   426959   2 (7)
	              a 0.7555
	    unsparingly 0.5413
	              s 0.5413
	         during 0.5413
	           Nest 0.1825
	              , 0.1825
	           </S> 0.0857

              ,   426971   1 (4)
	            the 0.5413
	              , 0.5413
	             us 0.5413
	           </S> 0.5413

          3'ear   426973   6 (9)
	           </S> 0.5413
	              a 0.5413
	            NSW 0.5413
	           zoom 0.5413
	            ear 0.5244
	           rear 0.5097
	           year 0.5097
	             or 0.1825
	            the 0.0857

             in   426979   1 (5)
	              a 0.5413
	              , 0.5413
	           </S> 0.5413
	             in 0.5413
	             iu 0.5413

            b}'   426992   1 (9)
	             by 0.5413
	           </S> 0.5413
	            and 0.5413
	              a 0.5413
	              , 0.5413
	              ' 0.5413
	             us 0.5097
	           with 0.1825
	            the 0.0857

            all   426996   1 (7)
	            the 0.5413
	              I 0.5413
	           alba 0.5413
	             of 0.5413
	            all 0.5413
	              , 0.5413
	           </S> 0.5413

   nidification   427039   1 (8)
	              , 0.5413
	   nidification 0.5413
	              a 0.5413
	        purpose 0.1825
	    information 0.1825
	     University 0.1825
	              " 0.1825
	           </S> 0.0857

             in   427108   1 (6)
	             in 0.5413
	             iu 0.5413
	              a 0.5413
	              , 0.5413
	              } 0.1229
	           </S> 0.0857

        Ireland   427111   3 (9)
	             us 0.5413
	           what 0.5413
	        Ireland 0.5097
	            and 0.2816
	              , 0.2816
	          which 0.2656
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

            the   427182   1 (5)
	              , 0.5413
	             us 0.5413
	            the 0.5413
	              } 0.1229
	           </S> 0.0857

         coroue   427223   1 (13)
	         corone 0.7555
	              a 0.5413
	         coroun 0.5413
	         corrue 0.5413
	          corou 0.5413
	    information 0.5413
	          Group 0.5244
	        elegans 0.2816
	        Sassoon 0.2816
	              . 0.2656
	          <UNK> 0.1825
	              , 0.1825
	           </S> 0.0857

            and   427231   1 (7)
	             S. 0.5413
	              s 0.5413
	           </S> 0.5413
	            and 0.5413
	          which 0.1825
	             it 0.1825
	            the 0.0857

      according   427313   1 (8)
	              I 0.5413
	              ( 0.5413
	      according 0.5413
	           </S> 0.5413
	         online 0.5413
	            and 0.5413
	             or 0.1825
	            the 0.0857

     precisel}^   427345   1 (8)
	      precisely 0.7555
	           much 0.5413
	           just 0.4979
	              , 0.2816
	       provided 0.2816
	              a 0.1825
	           </S> 0.1825
	            not 0.0857

           like   427356   1 (7)
	           </S> 0.5413
	             to 0.5413
	           lava 0.5413
	              , 0.5413
	              a 0.5413
	    necessarily 0.5413
	           like 0.5413

         coronc   427448   1 (12)
	         corone 0.7555
	         corona 0.5413
	        company 0.5413
	         corono 0.5413
	              a 0.5413
	          There 0.5413
	        Koronco 0.5413
	            who 0.5413
	          coron 0.5413
	              . 0.2656
	              , 0.1825
	           </S> 0.0857

            are   427455   1 (5)
	              , 0.5413
	           </S> 0.5413
	            are 0.5413
	              s 0.5413
	              I 0.5413

            but   427505   1 (7)
	              , 0.5413
	              a 0.5413
	            but 0.5413
	             us 0.5413
	            the 0.5413
	              } 0.1229
	           </S> 0.0857

         Hooded   427513   4 (9)
	              a 0.5413
	          major 0.5413
	           real 0.5413
	         Hooded 0.5244
	          Hotel 0.5097
	              - 0.2253
	            way 0.1825
	           same 0.1825
	           </S> 0.0857

          Dixon   427563   4 (8)
	           Sign 0.7555
	              , 0.7555
	           This 0.7555
	              a 0.5413
	          Dixon 0.5413
	          minor 0.5413
	              " 0.2816
	           </S> 0.0857

  Ornithologist   427581   3 (9)
	        through 0.7555
	             of 0.7555
	          major 0.5413
	  Ornithologist 0.5413
	            way 0.5244
	              , 0.5097
	            one 0.1825
	              a 0.1825
	           </S> 0.0857

           saj-   427628   8 (10)
	           sala 0.7555
	            saj 0.7555
	           saja 0.5413
	         search 0.5413
	           </S> 0.5413
	           said 0.5097
	            pay 0.2816
	            say 0.2656
	              a 0.1825
	            the 0.0857

           Crow   427642   1 (11)
	           Crow 0.7555
	        purpose 0.5413
	            arz 0.5413
	           from 0.2816
	              a 0.2656
	              , 0.1825
	           book 0.1825
	           </S> 0.1825
	           item 0.1825
	              . 0.1825
	             is 0.0857

             he   427648   1 (6)
	              a 0.5413
	              , 0.5413
	             he 0.5413
	             us 0.5413
	              } 0.1229
	           </S> 0.0857

          never   427852   1 (8)
	          never 0.7555
	       activity 0.5413
	           need 0.5244
	              a 0.5244
	             of 0.1825
	           </S> 0.1825
	              . 0.0857
	              , 0.0857

         Mail}-   427880 inf (9)
	          Maili 0.7555
	         Mailer 0.7555
	           Mail 0.5244
	           mail 0.5244
	              a 0.2816
	             he 0.2656
	            The 0.1825
	              , 0.1825
	           </S> 0.0857

        readers   427887   1 (7)
	           </S> 0.5413
	              " 0.5413
	        readers 0.5413
	              , 0.5413
	            one 0.5413
	           read 0.5413
	              a 0.5413

           held   427924   7 (10)
	            and 0.5413
	              a 0.5413
	        excited 0.5413
	           been 0.5413
	           </S> 0.5413
	           sala 0.5244
	           held 0.5097
	           here 0.2816
	             or 0.1825
	            the 0.0857

          willi   427943   7 (12)
	          wills 0.5413
	         willis 0.5413
	          wolfi 0.5413
	              a 0.5097
	             by 0.5097
	           will 0.5097
	           with 0.2816
	              . 0.1825
	             on 0.1825
	              , 0.1825
	             of 0.0857
	           </S> 0.0655

         regard   427949   4 (9)
	            the 0.7555
	              a 0.7555
	             ng 0.7555
	            how 0.5413
	         regard 0.5413
	         report 0.5413
	              , 0.5244
	            ... 0.0857
	           </S> 0.0857

         tliere   427995   5 (9)
	          tiere 0.5413
	         teiere 0.5413
	         tiller 0.5413
	         Gliere 0.5413
	          there 0.5097
	              a 0.2816
	           </S> 0.2816
	              , 0.1825
	           that 0.0857

        appears   428002   1 (9)
	        appears 0.5413
	              , 0.5413
	          years 0.5413
	recommendations 0.5413
	             us 0.5413
	              I 0.5413
	           </S> 0.5413
	            the 0.5413
	             is 0.0857

      redeeming   428019   4 (12)
	          major 0.5413
	         during 0.5413
	              a 0.5413
	      redeeming 0.5244
	           real 0.2816
	             to 0.2816
	           more 0.1825
	            way 0.1825
	           </S> 0.1825
	              , 0.1825
	              . 0.1825
	         longer 0.0857

         Hoodie   428059   1 (9)
	         Hoodie 0.7555
	              . 0.5413
	          major 0.5413
	              , 0.5413
	              a 0.5413
	           Home 0.2816
	           page 0.2253
	          world 0.1825
	           </S> 0.0857

           when   428083   1 (7)
	             us 0.7555
	           when 0.7555
	              a 0.5244
	           </S> 0.5097
	             on 0.5097
	              , 0.2816
	             of 0.0857

            not   428118   1 (6)
	              a 0.5413
	              , 0.5413
	            not 0.5413
	              s 0.5413
	              } 0.1229
	           </S> 0.0857

         Giitke   428200 inf (11)
	           Gite 0.5413
	         Gietki 0.5413
	           with 0.5413
	           itke 0.5413
	            the 0.5413
	          Giitu 0.5413
	             he 0.5413
	              a 0.5413
	             M. 0.5244
	           </S> 0.1825
	              , 0.0857

          tells   428207   1 (7)
	              a 0.5413
	              , 0.5413
	           tell 0.5413
	           </S> 0.5413
	          Ringe 0.5413
	          tells 0.5413
	          Pales 0.5413

  Heligolanders   428225   1 (8)
	              , 0.5413
	             is 0.5413
	              a 0.5413
	  Heligolanders 0.5413
	              " 0.1825
	      following 0.1825
	           same 0.1825
	           </S> 0.0857

         esteem   428239   1 (6)
	             of 0.5413
	              a 0.5413
	              , 0.5413
	         system 0.5413
	         esteem 0.5413
	           </S> 0.5413

           Lord   428273   1 (8)
	           Lord 0.7555
	           more 0.7555
	              , 0.7555
	            the 0.5413
	              a 0.5413
	          Loxia 0.5413
	              " 0.2816
	           </S> 0.0857

        Lilford   428278 inf (8)
	        Milford 0.7555
	        Lifford 0.7555
	        Linford 0.5413
	           Lord 0.5244
	              I 0.5097
	           </S> 0.2656
	              , 0.1825
	             of 0.0857

            sa3   428286 inf (12)
	             it 0.5413
	            say 0.5413
	            sas 0.5413
	            the 0.5413
	              a 0.5413
	             so 0.5413
	           sala 0.5413
	             sa 0.5413
	             's 0.5244
	           </S> 0.2656
	              , 0.1825
	              V 0.0857

             's   428289 inf (7)
	             us 0.5413
	             ss 0.5413
	             as 0.5413
	             is 0.5413
	              , 0.5244
	           </S> 0.2816
	              - 0.0857

     abominable   428333   1 (12)
	             us 0.5413
	         winner 0.5413
	        private 0.5413
	     abominable 0.5413
	             to 0.2816
	        welcome 0.2656
	       striving 0.2656
	      available 0.2253
	              a 0.1825
	           </S> 0.1825
	              , 0.1825
	           been 0.0857

       although   428349   4 (10)
	    destination 0.5413
	          users 0.5413
	        product 0.5413
	       although 0.5097
	        through 0.5097
	              , 0.2253
	           </S> 0.1825
	              I 0.1825
	           more 0.1825
	            the 0.0857

          Gre}'   428573 inf (12)
	          Greer 0.7555
	              a 0.5413
	              , 0.5413
	          major 0.5413
	              . 0.5413
	            Gre 0.5244
	          Group 0.2816
	          Great 0.2816
	         United 0.1825
	        country 0.1825
	           most 0.1825
	           </S> 0.0857

           Crow   428579   1 (9)
	              a 0.5413
	           </S> 0.5413
	              , 0.5413
	         States 0.5413
	              . 0.5413
	           from 0.5413
	             of 0.5413
	           Crow 0.5413
	            arz 0.5413

        vagrant   428610   1 (7)
	        vagrant 0.5413
	             of 0.5413
	              a 0.5413
	        against 0.5413
	           </S> 0.5097
	         enough 0.2656
	              , 0.0857

             We   428677   1 (7)
	             We 0.7555
	              , 0.7555
	            you 0.7555
	             us 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

  c\ten)ii}iatc   428699 inf (15)
	             us 0.7555
	      eliminate 0.5413
	           </S> 0.5413
	       indicate 0.5413
	    participate 0.5413
	        contact 0.5413
	          match 0.5413
	            eat 0.5413
	              , 0.5413
	         attend 0.5413
	            see 0.5244
	           have 0.5244
	           make 0.5244
	              a 0.5097
	            the 0.0857

            any   428713   1 (8)
	            the 0.5413
	            any 0.5413
	              I 0.5413
	              , 0.5413
	            you 0.5413
	           </S> 0.5413
	           that 0.5413
	            arz 0.5413

            but   428723   1 (6)
	             us 0.5413
	            but 0.5413
	              , 0.5413
	              a 0.5413
	              } 0.1229
	           </S> 0.0857

Fawilx-COR]'ID.E   428806 inf (6)
	           will 0.7555
	              a 0.7555
	              - 0.5244
	              ) 0.5097
	              , 0.2816
	           </S> 0.0857

              .   428822   1 (6)
	             us 0.5413
	            the 0.5413
	           </S> 0.5413
	              " 0.5413
	              , 0.5413
	              . 0.5413

        Corviis   428836 inf (8)
	              , 0.7555
	          Corvi 0.5413
	              a 0.5413
	        Corvids 0.5413
	        Corvida 0.5413
	         Comics 0.5413
	              " 0.2816
	           </S> 0.0857

   /nigi/i(;i(s   428844 inf (10)
	              n 0.5413
	              , 0.5413
	      configure 0.5413
	        million 0.5413
	   configure.in 0.5413
	             is 0.5413
	              a 0.5413
	           </S> 0.5413
	         config 0.5413
	  config.status 0.5413

              ,   428856 inf (3)
	             of 0.5413
	             us 0.5413
	            the 0.5413

           Linn   428858   1 (6)
	           List 0.5413
	           Linn 0.5413
	          minor 0.5097
	              i 0.2816
	             pp 0.2816
	            the 0.0857

             IN   428865   1 (8)
	             In 0.7555
	             IN 0.7555
	              , 0.7555
	             us 0.5413
	              a 0.5413
	              " 0.2816
	              ) 0.2816
	           </S> 0.0857

        Western   428868   1 (7)
	        Western 0.7555
	        WITNESS 0.5097
	              , 0.2816
	              : 0.2656
	           </S> 0.1825
	              A 0.1825
	            THE 0.0857

           Rook   428887   1 (9)
	           Rook 0.7555
	              , 0.5413
	          major 0.5413
	              a 0.5413
	            dog 0.2816
	           good 0.2816
	           same 0.1825
	          world 0.1825
	           </S> 0.0857

         breeds   428892   2 (8)
	         Corvus 0.7555
	           been 0.5413
	         breeds 0.5413
	              a 0.5413
	             of 0.5244
	           </S> 0.1825
	              , 0.1825
	             's 0.0857

      migratory   429102   1 (9)
	      migratory 0.7555
	    migratorius 0.5413
	           more 0.2816
	           </S> 0.2253
	           also 0.1825
	            not 0.1825
	              , 0.1825
	              a 0.1825
	              I 0.0857

       Southern   429191   2 (7)
	           more 0.5413
	       Southern 0.5244
	          South 0.5097
	             us 0.2816
	            see 0.1825
	              a 0.1825
	            the 0.0857

           Asia   429258   2 (7)
	            cia 0.7555
	            All 0.5097
	           Asia 0.5097
	              , 0.1825
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

      Eastwards   429270 inf (8)
	              , 0.7555
	           Last 0.5413
	       Eastward 0.5413
	              a 0.5413
	              s 0.5413
	            the 0.5413
	              " 0.2816
	           </S> 0.0857

      Turkestan   429313   1 (10)
	      Turkestan 0.7555
	         Alaska 0.5413
	    destination 0.5413
	           said 0.5413
	           tone 0.5413
	            The 0.2816
	              , 0.1825
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

       Cashmere   429364   1 (10)
	          <UNK> 0.5413
	      therefore 0.5413
	            and 0.5413
	              a 0.5413
	         Kuwait 0.5413
	              , 0.5413
	           Iraq 0.5413
	       Cashmere 0.5413
	          there 0.1825
	            the 0.0857

             In   429392   1 (6)
	             In 0.7555
	              , 0.7555
	             us 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

           Rook   429427   1 (9)
	           Rook 0.7555
	      Institute 0.5413
	   prescription 0.5413
	           Road 0.4979
	           good 0.2816
	        problem 0.2253
	              - 0.2253
	           same 0.1825
	           </S> 0.0857

        prett}^   429435   4 (9)
	          prett 0.7555
	             A. 0.5413
	         prette 0.5413
	         better 0.2816
	         pretty 0.2816
	            not 0.1825
	              , 0.1825
	           </S> 0.1825
	              a 0.0857

      generally   429443   1 (7)
	              a 0.5413
	              , 0.5413
	             to 0.5413
	        general 0.5413
	            and 0.5413
	           </S> 0.5413
	      generally 0.5413

     localities   429481   1 (10)
	     localities 0.7555
	         states 0.5413
	          major 0.5413
	          cases 0.5413
	              a 0.5413
	             of 0.5413
	        quality 0.5244
	              , 0.5097
	           </S> 0.2816
	            for 0.0857

             in   429494   1 (6)
	              , 0.5413
	              a 0.5413
	             in 0.5413
	             iu 0.5413
	              } 0.1229
	           </S> 0.0857

         though   429506   1 (5)
	         though 0.7555
	              a 0.5413
	        through 0.5244
	              , 0.1825
	           </S> 0.0857

          rarer   429513   1 (7)
	          rarer 0.7555
	          order 0.7555
	          Parus 0.5413
	           more 0.5097
	           </S> 0.2816
	              a 0.2656
	              , 0.0857

           Rook   429676   4 (11)
	           good 0.7555
	            now 0.7555
	          color 0.7555
	         condom 0.5413
	           Rook 0.5413
	              I 0.5413
	             of 0.2816
	            who 0.2816
	           </S> 0.1825
	              , 0.1825
	            and 0.0857

          l^are   429777 inf (11)
	           lare 0.7555
	          laare 0.5413
	              , 0.5413
	              a 0.5413
	             to 0.5413
	    legislative 0.5413
	            are 0.5244
	           lava 0.5244
	     registered 0.1825
	            bit 0.1825
	           </S> 0.0857

           grey   429783   1 (8)
	             of 0.5413
	           free 0.5413
	           </S> 0.5413
	              a 0.5413
	              , 0.5413
	       proposal 0.5413
	           grey 0.5413
	            arz 0.5413

          warty   429788   2 (7)
	          party 0.7555
	              t 0.5413
	          warty 0.5413
	          Parus 0.5413
	           </S> 0.1825
	           area 0.1825
	              , 0.0857

          patch   429794   1 (9)
	           part 0.5413
	              a 0.5413
	          patch 0.5413
	          parva 0.5413
	              " 0.5244
	              ) 0.5244
	           </S> 0.5097
	              , 0.2816
	              - 0.0857

           Bill   429855   1 (7)
	              , 0.7555
	           Bill 0.7555
	           will 0.5413
	              a 0.5413
	           Baya 0.5413
	              " 0.2816
	           </S> 0.0857

           iris   429876   1 (8)
	              a 0.5413
	           iris 0.5413
	             is 0.5413
	              , 0.5413
	           dark 0.5413
	             iu 0.5413
	              } 0.1229
	           </S> 0.0857

           Tlie   429888 inf (9)
	           This 0.7555
	              , 0.7555
	            Tli 0.5413
	           Tile 0.5413
	              a 0.5413
	           Tlia 0.5413
	           alba 0.5413
	              " 0.2816
	           </S> 0.0857

         female   429893   1 (5)
	         female 0.5413
	              , 0.5413
	              a 0.5413
	           </S> 0.1825
	          <UNK> 0.0857

           Tlie   429951 inf (9)
	           This 0.7555
	              , 0.7555
	              a 0.5413
	            Tli 0.5413
	              s 0.5413
	           Tile 0.5413
	           Tlia 0.5413
	              " 0.2816
	           </S> 0.0857

          young   429956   1 (5)
	              a 0.5413
	              , 0.5413
	          young 0.5413
	           </S> 0.1825
	          <UNK> 0.0857

        Carrion   430036   1 (10)
	        Carrion 0.7555
	            mid 0.5413
	              , 0.5413
	              A 0.5413
	            non 0.5413
	           City 0.2253
	           case 0.1825
	           same 0.1825
	          world 0.1825
	           </S> 0.0857

             it   430073   1 (7)
	          which 0.5413
	              , 0.5413
	              a 0.5413
	             it 0.5413
	             iu 0.5413
	              } 0.1229
	           </S> 0.0857

       .slender   430109   3 (8)
	       Calendar 0.7555
	       literacy 0.5413
	        slender 0.5244
	              a 0.4979
	           </S> 0.1825
	              , 0.1825
	              . 0.1825
	           than 0.0857

           bill   430118   1 (7)
	              a 0.5413
	              , 0.5413
	           bill 0.5413
	           </S> 0.5413
	      judgments 0.5413
	            cia 0.5413
	           will 0.5413

           tlie   430127   9 (9)
	           alba 0.7555
	           trie 0.7555
	          tliet 0.5413
	           tile 0.5244
	           this 0.2656
	              a 0.1825
	              , 0.1825
	           </S> 0.1825
	            the 0.0857

           deep   430132   3 (9)
	              . 0.7555
	              , 0.7555
	           does 0.5413
	            the 0.5413
	           deep 0.5413
	              a 0.5413
	             us 0.5413
	           </S> 0.1825
	          <UNK> 0.0857

         .slate   430205   1 (11)
	          slate 0.7555
	              : 0.5413
	             re 0.5413
	            non 0.5413
	         Islate 0.5413
	           </S> 0.5413
	          state 0.5097
	             us 0.2816
	         enable 0.2816
	              a 0.1825
	            the 0.0857

              -   430211   1 (6)
	            the 0.5413
	              - 0.5413
	              , 0.5413
	             us 0.5413
	           </S> 0.5413
	            you 0.5413

         colour   430212   3 (9)
	   authenticate 0.5413
	              s 0.5413
	         colour 0.5097
	              . 0.2816
	              a 0.2253
	             to 0.1825
	             up 0.1825
	           your 0.1294
	           </S> 0.0857

             In   430230   1 (6)
	              , 0.7555
	             In 0.7555
	             us 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

           Rook   430245   1 (9)
	           Rook 0.7555
	        website 0.5413
	           Road 0.4979
	           good 0.2816
	              - 0.2253
	        problem 0.2253
	          world 0.1825
	           same 0.1825
	           </S> 0.0857

             so   430267   2 (8)
	             us 0.7555
	             so 0.5244
	              a 0.5244
	            for 0.5097
	           with 0.2816
	           </S> 0.2253
	              , 0.1825
	            flu 0.0857

         larvje   430335   7 (12)
	           lava 0.7555
	              , 0.5413
	          larve 0.5413
	              . 0.5413
	           larv 0.5413
	              a 0.5413
	         larvae 0.5244
	        ability 0.2816
	           last 0.2816
	       families 0.1825
	           </S> 0.1825
	            own 0.0857

            but   430376   1 (6)
	            but 0.5413
	              , 0.5413
	              a 0.5413
	             us 0.5413
	              } 0.1229
	           </S> 0.0857

        drought   430406   6 (10)
	        through 0.7555
	             if 0.5413
	              a 0.5413
	           that 0.5413
	             us 0.5413
	        drought 0.5244
	            the 0.5097
	              , 0.1825
	           </S> 0.1825
	            and 0.0857

          after   430470   1 (8)
	          after 0.5413
	              a 0.5413
	              I 0.5413
	         Passer 0.5413
	             to 0.5097
	           </S> 0.2816
	              . 0.1825
	              , 0.0857

             In   430506   1 (6)
	             In 0.7555
	              , 0.7555
	              a 0.5413
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

         almost   430583   1 (10)
	           also 0.5413
	          times 0.5413
	         almost 0.5413
	             us 0.5413
	              I 0.5413
	           </S> 0.5244
	             by 0.1825
	              , 0.1825
	              . 0.1825
	            the 0.0857

        Carrion   430605   1 (9)
	        Carrion 0.7555
	            non 0.5413
	              , 0.5413
	             as 0.5413
	              A 0.5413
	           City 0.2253
	              " 0.1825
	           next 0.1825
	           </S> 0.0857

           weak   430679   1 (9)
	           weak 0.5413
	       economic 0.5413
	            cia 0.5413
	           were 0.5244
	             be 0.5244
	           </S> 0.2816
	              a 0.2816
	            the 0.1825
	              , 0.0857

          birds   430684   1 (9)
	          birds 0.7555
	           life 0.5413
	          Parus 0.5413
	          first 0.5244
	              a 0.5097
	     similarity 0.2816
	           </S> 0.1825
	              . 0.0857
	              , 0.0857

            for   430724   1 (7)
	              , 0.5413
	            for 0.5413
	              a 0.5413
	       clothing 0.5413
	            arz 0.5413
	              } 0.1229
	           </S> 0.0857

      witnessed   430785   1 (7)
	      witnessed 0.7555
	              a 0.5097
	           </S> 0.2656
	             in 0.2656
	              , 0.1825
	           with 0.1294
	              . 0.0857

      predatory   430800   1 (9)
	      predatory 0.7555
	            bad 0.5413
	            may 0.2816
	              a 0.2656
	              , 0.1825
	        product 0.1825
	           </S> 0.1825
	             is 0.0857
	           page 0.0857

         severe   430819   2 (7)
	             us 0.5413
	         severe 0.5244
	              , 0.2816
	          every 0.2816
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

         haunts   430889   1 (8)
	         haunts 0.5244
	           stay 0.2816
	           have 0.2253
	             is 0.1825
	           </S> 0.1825
	              a 0.1825
	              , 0.1825
	            the 0.0857

           well   430896   1 (9)
	           life 0.5413
	       informed 0.5413
	           well 0.5413
	          wolfi 0.5413
	              a 0.5097
	           </S> 0.2816
	              , 0.1825
	              . 0.1825
	             of 0.0857

              -   430900   4 (6)
	             us 0.7555
	           </S> 0.2816
	            the 0.2816
	              , 0.1825
	              - 0.1825
	             as 0.0857

    preferabl}^   430923   6 (9)
	     preferable 0.7555
	            and 0.5413
	           </S> 0.5413
	              a 0.5413
	         public 0.5413
	     preferably 0.5097
	          which 0.1825
	             or 0.1825
	            the 0.0857

          where   430935   1 (6)
	            its 0.5413
	           </S> 0.5413
	              a 0.5413
	              , 0.5413
	         cities 0.5413
	          where 0.5413

           here   430990   1 (6)
	              , 0.5413
	           here 0.5413
	              a 0.5413
	            arz 0.5413
	              } 0.1229
	           </S> 0.0857

         busily   431024   1 (7)
	         busily 0.7555
	          Music 0.7555
	        pusilla 0.5413
	              a 0.2816
	           </S> 0.1825
	              , 0.1825
	              . 0.0857

          grubs   431105   2 (9)
	          group 0.7555
	              a 0.5413
	          grubs 0.5413
	    merchandise 0.5413
	          rufus 0.5413
	              . 0.5097
	              , 0.2816
	           </S> 0.2816
	          weeds 0.0857

             in   431113   1 (6)
	             iu 0.5413
	             in 0.5413
	              a 0.5413
	              , 0.5413
	              } 0.1229
	           </S> 0.0857

       swallows   431149   1 (9)
	             us 0.5413
	       swallows 0.5413
	          still 0.5244
	              . 0.5244
	           </S> 0.5244
	             in 0.5097
	              a 0.2816
	             be 0.1825
	              , 0.0857

   incalculable   431182   1 (7)
	   incalculable 0.7555
	             us 0.5413
	        include 0.5244
	           </S> 0.5097
	              , 0.2816
	              a 0.2816
	            not 0.0857

           wire   431214   2 (9)
	           were 0.7555
	            non 0.5413
	   Productivity 0.5413
	           wire 0.5413
	            cia 0.5413
	           </S> 0.5097
	              , 0.2816
	              a 0.2816
	            the 0.0857

    cockchafers   431239   1 (10)
	    cockchafers 0.7555
	         speech 0.5413
	             it 0.2816
	           them 0.2816
	             us 0.2816
	         course 0.2816
	           </S> 0.1825
	              a 0.1825
	              , 0.1294
	            the 0.0857

          onl}'   431289   2 (9)
	          ollon 0.5413
	              a 0.1825
	           have 0.1825
	           only 0.1825
	              , 0.1825
	           </S> 0.1825
	             to 0.1825
	           been 0.1825
	             be 0.0857

        devours   431295   1 (9)
	              , 0.5413
	             at 0.5413
	             to 0.5413
	        devours 0.5413
	              a 0.5413
	           </S> 0.5413
	             us 0.5413
	            any 0.5413
	          hours 0.5413

           such   431303   1 (6)
	           such 0.5413
	           sala 0.5413
	           </S> 0.5244
	              , 0.5097
	              a 0.2816
	            the 0.0857

          grubs   431331   2 (9)
	          great 0.7555
	          grubs 0.5413
	          rufus 0.5413
	              a 0.2816
	             of 0.2656
	           </S> 0.1825
	              . 0.1825
	              , 0.0857
	             is 0.0857

   considerable   431362   1 (6)
	   considerable 0.7555
	          could 0.5413
	              , 0.5097
	           </S> 0.5097
	              a 0.5097
	            not 0.0857

    destructive   431406   2 (6)
	        service 0.5413
	    destructive 0.5244
	              , 0.1825
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

    caterpillar   431418   1 (10)
	             us 0.5413
	         number 0.5413
	    development 0.5413
	    caterpillar 0.5413
	       services 0.5413
	              a 0.5413
	        effects 0.2656
	           </S> 0.2253
	              , 0.1825
	              . 0.0857

       segetuin   431456  10 (11)
	        cinerea 0.7555
	         seguin 0.5413
	              a 0.5413
	         segeti 0.5413
	       shipping 0.5413
	        seguint 0.5413
	              , 0.5244
	           </S> 0.5244
	              ) 0.5097
	        segetum 0.1825
	        ipsilon 0.0857

              )   431464   1 (5)
	              ) 0.5413
	             us 0.5413
	            the 0.5413
	              , 0.5413
	           </S> 0.5413

              .   431466   4 (7)
	             us 0.5244
	              · 0.5097
	            the 0.2816
	              . 0.1825
	              , 0.1825
	              - 0.1825
	           </S> 0.0857

         either   431538   1 (6)
	         either 0.5413
	         shrubs 0.5413
	              a 0.5413
	              , 0.5413
	              } 0.1229
	           </S> 0.0857

         copses   431548   1 (11)
	         copses 0.7555
	             us 0.5413
	         person 0.5413
	           turn 0.3154
	           fact 0.2816
	           case 0.2816
	        writing 0.2816
	              , 0.2816
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

       bounding   431618   1 (8)
	       bounding 0.5413
	          being 0.5413
	              a 0.5244
	             on 0.4979
	           </S> 0.2253
	              , 0.1825
	             in 0.1825
	             of 0.0857

            but   431695   1 (6)
	              a 0.5413
	            but 0.5413
	              , 0.5413
	             us 0.5413
	              } 0.1229
	           </S> 0.0857

      Stevenson   431699   1 (8)
	      Stevenson 0.7555
	           even 0.2816
	             as 0.2253
	           </S> 0.1825
	              a 0.1825
	              , 0.1825
	            the 0.1218
	              I 0.0857

        rightly   431709   1 (9)
	            the 0.5413
	              a 0.5413
	         rights 0.5413
	        Courier 0.5413
	             he 0.5413
	        rightly 0.5413
	             's 0.2816
	           </S> 0.1825
	              , 0.0857

      selecting   431751   1 (7)
	      selecting 0.7555
	             us 0.5413
	          being 0.5413
	              a 0.5097
	           </S> 0.2816
	              , 0.2253
	             of 0.0857

         Scotch   431856   2 (6)
	          Stock 0.7555
	              a 0.5413
	         Scotch 0.5413
	              , 0.1825
	           </S> 0.1825
	              - 0.0857

      Spixworth   431983   1 (9)
	              a 0.5413
	            the 0.5413
	              , 0.5413
	          South 0.5413
	        College 0.5413
	        Harding 0.5413
	      Spixworth 0.5413
	             us 0.2816
	           your 0.0857

           Park   431993   1 (8)
	           Page 0.5413
	           Park 0.5413
	              a 0.5413
	     University 0.5413
	           time 0.5413
	          Parus 0.5413
	           </S> 0.1825
	              , 0.0857

    laurustinus   432082   3 (10)
	              a 0.7555
	            the 0.7555
	           rose 0.5413
	             us 0.5413
	    laurustinus 0.5413
	        looking 0.5413
	           </S> 0.5244
	              - 0.2816
	              , 0.1825
	              . 0.0857

         bushes   432094   1 (8)
	             us 0.5413
	              a 0.5413
	       business 0.5413
	         prints 0.5413
	           </S> 0.5413
	         tuning 0.5413
	         bushes 0.5413
	              , 0.0857

      foiirteen   432118   7 (13)
	        further 0.5413
	       forinten 0.5413
	       flirteen 0.5413
	        hirteen 0.5413
	        damages 0.5413
	         forten 0.5413
	        fifteen 0.5244
	       fourteen 0.5244
	           more 0.1825
	              a 0.1825
	              , 0.1825
	            the 0.0857
	           </S> 0.0655

           feet   432128   1 (8)
	           free 0.5413
	        arising 0.5413
	             us 0.5413
	              . 0.5413
	              , 0.5413
	           feet 0.5413
	           </S> 0.5413
	              a 0.5413

           ilex   432172   1 (9)
	             iu 0.5413
	           ilex 0.5413
	              a 0.5244
	             of 0.5097
	             in 0.2816
	         galaxy 0.2816
	          novae 0.2253
	           </S> 0.1825
	              , 0.0857

          close   432178   1 (8)
	             up 0.5413
	           </S> 0.5413
	              a 0.5413
	          close 0.5413
	         corone 0.5413
	          those 0.2816
	             or 0.1825
	            the 0.0857

     connecting   432212   1 (9)
	           </S> 0.5413
	              a 0.5413
	            and 0.5413
	     connecting 0.5413
	              , 0.5413
	         online 0.5413
	           with 0.1825
	            who 0.1825
	            the 0.0857

          fi^om   432328   6 (10)
	          minor 0.7555
	          finom 0.5413
	              a 0.5413
	           fimo 0.5413
	             fi 0.5413
	              , 0.1825
	           </S> 0.1825
	           from 0.1825
	             in 0.1218
	             to 0.0857

        rookery   432367   1 (10)
	         Booker 0.7555
	        rookery 0.7555
	         report 0.5413
	              , 0.5413
	         person 0.1825
	          major 0.1825
	          child 0.1825
	              " 0.1825
	           </S> 0.0857
	            new 0.0655

       moreover   432491   1 (7)
	       moreover 0.5413
	           over 0.5413
	              . 0.5413
	              , 0.5413
	              a 0.5413
	              } 0.1229
	           </S> 0.0857

      continual   432504   4 (10)
	       continua 0.7555
	           ugly 0.5413
	     subjective 0.5413
	      continual 0.5244
	          total 0.2253
	              - 0.2253
	       National 0.1825
	           same 0.1825
	          right 0.1825
	           </S> 0.0857

         noises   432514   1 (10)
	         noises 0.7555
	         number 0.5413
	              a 0.5413
	             of 0.5413
	        opinion 0.5413
	           need 0.5097
	              , 0.2656
	    development 0.2656
	           </S> 0.1825
	    improvement 0.0857

          Rooks   432606   1 (7)
	          Rooks 0.7555
	          Books 0.7555
	           </S> 0.1825
	              I 0.1825
	              a 0.1825
	              , 0.1825
	            the 0.0857

          still   432612   2 (8)
	            can 0.7555
	              a 0.5413
	          shall 0.5413
	          still 0.5413
	           sala 0.5413
	             is 0.5244
	           </S> 0.1218
	              , 0.0857

          breed   432628   4 (11)
	    participate 0.5413
	         invest 0.5413
	     trademarks 0.5413
	          breed 0.5244
	           been 0.5097
	       services 0.2816
	              , 0.1825
	             to 0.1825
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

     connucuced   432735 inf (11)
	        between 0.7555
	        include 0.7555
	      connected 0.5413
	        reduced 0.5413
	             13 0.5413
	       conduced 0.5413
	              , 0.5244
	             to 0.5244
	           </S> 0.5097
	              a 0.2816
	     dispatched 0.0857

             or   432746   1 (8)
	         within 0.5413
	             to 0.5413
	             in 0.5413
	              a 0.5413
	              , 0.5413
	             us 0.5413
	           </S> 0.5413
	             or 0.5413

       repaired   432749   2 (8)
	             26 0.5413
	       repaired 0.5244
	       required 0.5097
	              , 0.1825
	            two 0.1825
	              a 0.1825
	            the 0.0857
	           </S> 0.0655

             iu   432764   6 (6)
	              I 0.5413
	             iu 0.5413
	              , 0.1825
	             as 0.1825
	           </S> 0.1825
	             in 0.0857

          March   432767   2 (7)
	              s 0.7555
	          March 0.5413
	              a 0.5244
	             's 0.5244
	              , 0.2816
	          <UNK> 0.2656
	           </S> 0.0857

      unusualh-   432784   1 (9)
	      unusually 0.7555
	        unusual 0.7555
	            not 0.5413
	       unusuall 0.5413
	        January 0.4979
	              , 0.2816
	           </S> 0.2656
	              a 0.1825
	            the 0.0857

           mild   432794   1 (8)
	           mail 0.5413
	              a 0.5413
	          minor 0.5413
	              , 0.5413
	           </S> 0.5413
	            the 0.5413
	              . 0.5413
	           mild 0.5413

       building   432807   1 (6)
	       building 0.5413
	              a 0.5244
	           </S> 0.2816
	            and 0.1825
	              , 0.1825
	              . 0.0857

     operations   432816   3 (7)
	           cool 0.5413
	        options 0.5244
	     operations 0.5097
	           </S> 0.1825
	              a 0.1825
	              , 0.0857
	              . 0.0857

      sometimes   432827   1 (6)
	      sometimes 0.7555
	              a 0.5413
	        systems 0.5413
	              , 0.1825
	           </S> 0.1825
	              . 0.0857

       commence   432837   1 (7)
	       commence 0.7555
	       comments 0.7555
	            too 0.2816
	             as 0.2656
	              a 0.1825
	           </S> 0.1825
	              , 0.0857

         1895-6   432899 inf (8)
	             us 0.7555
	           what 0.7555
	              , 0.7555
	           1995 0.5413
	           1996 0.5413
	           </S> 0.5244
	              a 0.5097
	            the 0.0857

              I   432906   1 (6)
	             us 0.5413
	            the 0.5413
	              I 0.5413
	           </S> 0.2816
	              , 0.1825
	              . 0.0857

          Rooks   432926   1 (9)
	             us 0.5413
	          Books 0.5413
	              a 0.5413
	          Rooks 0.5413
	           </S> 0.2253
	            men 0.1825
	            man 0.1825
	              , 0.1825
	         people 0.0857

        sitting   432932   1 (5)
	              a 0.5413
	        Listing 0.5413
	        sitting 0.5413
	           </S> 0.1218
	              , 0.0857

          the}-   432972 inf (8)
	           thee 0.7555
	          their 0.5097
	              a 0.2253
	            the 0.1825
	              , 0.1825
	             he 0.1825
	           </S> 0.1825
	             is 0.0857

            had   432978   1 (8)
	            the 0.5413
	           </S> 0.5413
	           have 0.5413
	            had 0.5413
	            are 0.5413
	              , 0.5413
	              a 0.5413
	            cia 0.5413

          Rooks   433047   1 (8)
	          Rooks 0.7555
	          Books 0.5244
	           Rock 0.5097
	              - 0.2253
	           same 0.1825
	          world 0.1825
	            way 0.1825
	           </S> 0.0857

        rookery   433058   1 (11)
	        rookery 0.7555
	         source 0.5413
	              , 0.5413
	         report 0.5413
	              a 0.5413
	        subject 0.5413
	         series 0.1825
	           very 0.1825
	          major 0.1825
	           </S> 0.0857
	            new 0.0655

          close   433066   3 (10)
	      connected 0.7555
	              a 0.7555
	           case 0.5413
	       addition 0.5413
	          close 0.5413
	         corone 0.5413
	             of 0.2816
	           </S> 0.2656
	              , 0.1825
	              . 0.0857

      repairing   433084   1 (7)
	      repairing 0.7555
	         during 0.5413
	            New 0.5413
	              a 0.2816
	           </S> 0.1825
	              , 0.0857
	              . 0.0857

          their   433094   3 (7)
	            car 0.5244
	          minor 0.5244
	          their 0.5097
	           </S> 0.2816
	              , 0.1825
	              a 0.1825
	            the 0.0857

        January   433109   2 (9)
	             us 0.5413
	        January 0.4979
	           turn 0.3154
	        general 0.2816
	        writing 0.2816
	              , 0.2816
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

      Februar}-   433125   6 (12)
	        Februar 0.7555
	             is 0.5413
	       Februare 0.5413
	          about 0.5413
	             us 0.5413
	       February 0.5097
	              , 0.2816
	           such 0.2816
	          which 0.2656
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

              a   433135   1 (5)
	            the 0.5413
	             us 0.5413
	              a 0.5413
	              , 0.5413
	           </S> 0.5413

          daily   433142   1 (8)
	           days 0.7555
	          daily 0.7555
	           sala 0.5413
	              a 0.5244
	            has 0.5097
	              , 0.2816
	           </S> 0.2253
	             of 0.0857

        visited   433148   1 (7)
	        visited 0.7555
	              a 0.5413
	          visit 0.5244
	           dose 0.2656
	           </S> 0.1825
	              , 0.1825
	              . 0.0857

            m^'   433156   2 (7)
	             mm 0.5413
	             us 0.2816
	             my 0.2816
	           </S> 0.2253
	              a 0.1825
	              , 0.1825
	            the 0.0857

         garden   433160   1 (7)
	           site 0.5413
	         Garden 0.5413
	             us 0.5413
	         garden 0.5413
	           </S> 0.5413
	              , 0.5413
	              a 0.5413

        Dulwich   433206   1 (8)
	              a 0.5413
	              , 0.5413
	           </S> 0.5413
	        Dulwich 0.5413
	            the 0.5413
	             us 0.2816
	          which 0.1825
	           your 0.0857

          first   433214   1 (6)
	              a 0.5413
	          first 0.5413
	              . 0.4011
	           </S> 0.1825
	        College 0.1825
	              , 0.0857

           made   433282   1 (9)
	       articles 0.5413
	          major 0.5413
	           made 0.5413
	          items 0.5413
	              a 0.5097
	           </S> 0.1825
	              . 0.1825
	              , 0.0857
	          sites 0.0857

       assuring   433303   1 (11)
	            and 0.5413
	       assuring 0.5413
	           </S> 0.5413
	     conditions 0.5413
	              I 0.5413
	              " 0.5413
	      Passerine 0.5413
	          using 0.2816
	         please 0.1825
	             to 0.1825
	            the 0.0857

          Rooks   433353   1 (9)
	          Rooks 0.7555
	           eyes 0.5413
	          shoes 0.5244
	          Books 0.5097
	              , 0.2816
	             us 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

       carrying   433359   1 (7)
	        current 0.5413
	              a 0.5413
	       carrying 0.5413
	              . 0.5097
	              - 0.5097
	           </S> 0.1825
	              , 0.0857

      Feathered   433401   1 (9)
	      Feathered 0.7555
	          other 0.5413
	          Hello 0.5413
	             of 0.2816
	             as 0.2816
	              a 0.2816
	            The 0.1825
	              , 0.1825
	           </S> 0.0857

            Mr.   433440   1 (9)
	              s 0.5413
	              a 0.5413
	            Mr. 0.5413
	             My 0.5413
	           </S> 0.5413
	              @ 0.5413
	             d. 0.5413
	              , 0.5413
	            the 0.0857

             W.   433444 inf (9)
	             We 0.7555
	              . 0.5413
	              a 0.5413
	      Spielberg 0.5413
	             J. 0.2816
	              , 0.2816
	         Robert 0.2656
	           </S> 0.1825
	       Chairman 0.0857

             N.   433447 inf (8)
	           Ryan 0.5413
	             A. 0.5413
	              I 0.5413
	             No 0.5244
	              . 0.2816
	              , 0.1825
	           </S> 0.1825
	           Bush 0.0857

         Rushen   433450   2 (9)
	          Rules 0.7555
	              a 0.5413
	              s 0.5413
	           User 0.5413
	         Rushen 0.5413
	          Korea 0.2816
	        America 0.2656
	           </S> 0.1825
	              , 0.0857

           says   433457   2 (8)
	           From 0.7555
	            TEL 0.5413
	              a 0.5413
	           says 0.5413
	           said 0.5413
	           sala 0.5413
	              , 0.1825
	           </S> 0.0857

          Rooks   433482   1 (11)
	             us 0.5413
	          Books 0.5413
	              a 0.5413
	          Rooks 0.5413
	           </S> 0.2253
	            men 0.1825
	       children 0.1825
	              , 0.1825
	              . 0.1825
	            man 0.1825
	         people 0.0857

           near   433488   1 (6)
	           near 0.5413
	            new 0.5413
	            arz 0.5413
	              a 0.5413
	           </S> 0.1218
	              , 0.0857

       Wanstead   433493   1 (8)
	       Wanstead 0.7555
	        instead 0.7555
	           Hyde 0.5413
	          major 0.5413
	           </S> 0.2816
	              , 0.2816
	              a 0.2656
	            the 0.0857

            and   433573   1 (5)
	              , 0.5413
	            and 0.5413
	            arz 0.5413
	              } 0.1229
	           </S> 0.0857

          the}-   433604 inf (8)
	              , 0.5413
	           </S> 0.5413
	            and 0.5413
	              a 0.5413
	           thee 0.5244
	          their 0.2816
	            you 0.1825
	            the 0.0857

           must   433610   1 (6)
	           must 0.5413
	              a 0.5413
	           </S> 0.5413
	             us 0.5413
	              I 0.5413
	              , 0.5413

              t   433651 inf (8)
	             tt 0.5244
	             us 0.5097
	             of 0.2816
	             at 0.2816
	             to 0.2656
	              ) 0.1825
	              , 0.1825
	           </S> 0.0857

         formed   433693   4 (7)
	              a 0.5413
	           </S> 0.5413
	            and 0.5413
	         formed 0.5097
	            one 0.2253
	            for 0.1825
	            the 0.0857

         sticks   433710   1 (9)
	          still 0.7555
	         sticks 0.7555
	          bones 0.5413
	         spinas 0.5413
	              a 0.2816
	       language 0.2816
	              . 0.1825
	           </S> 0.1825
	              , 0.0857

           moss   433793   2 (10)
	             us 0.7555
	           moss 0.5413
	           most 0.5244
	              ) 0.2656
	           </S> 0.1825
	           even 0.1825
	              a 0.1825
	              . 0.1825
	            not 0.1825
	              , 0.0857

           dead   433799   1 (11)
	          young 0.5413
	              a 0.5413
	      sometimes 0.5413
	           dead 0.5413
	           </S> 0.5413
	            cia 0.5413
	            dry 0.5097
	           year 0.5097
	           your 0.2816
	          which 0.1825
	            the 0.0857

         number   433835   1 (8)
	         number 0.7555
	       benefits 0.5413
	          price 0.5413
	              a 0.5097
	             of 0.2816
	           </S> 0.1825
	            are 0.1825
	              , 0.0857

        similar   433922   1 (7)
	        various 0.5244
	             no 0.5244
	        similar 0.5244
	           some 0.5097
	           </S> 0.2656
	              , 0.2656
	              a 0.0857

           they   433968   1 (6)
	           they 0.5413
	              a 0.5413
	              , 0.5413
	         Corvus 0.5413
	              } 0.1229
	           </S> 0.0857

             iu   434083   5 (8)
	              a 0.5413
	             iu 0.5413
	           when 0.5097
	           </S> 0.2816
	             in 0.2656
	              , 0.1825
	              . 0.1825
	           than 0.0857

      different   434086   4 (7)
	              s 0.7555
	              a 0.7555
	             of 0.7555
	      different 0.5413
	            the 0.5244
	              , 0.1294
	           </S> 0.0857

          nests   434096   1 (8)
	          nests 0.7555
	            new 0.5244
	           next 0.5244
	           </S> 0.1825
	          parts 0.1825
	              , 0.1825
	           ways 0.1825
	           from 0.0857

            the   434104   1 (5)
	              , 0.5413
	            the 0.5413
	             us 0.5413
	              } 0.1229
	           </S> 0.0857

        thicklj   434165   1 (7)
	        thickly 0.7555
	          think 0.5097
	          click 0.2816
	              , 0.1825
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

              '   434172   1 (7)
	              ' 0.5413
	             be 0.5413
	           </S> 0.5413
	              . 0.5413
	             us 0.5413
	            the 0.5413
	              , 0.5413

           deep   434242   1 (10)
	           does 0.7555
	           deep 0.7555
	             us 0.5413
	              a 0.5413
	           webs 0.5244
	            for 0.5097
	              . 0.2656
	           </S> 0.1825
	              , 0.1825
	          image 0.0857

        figured   434287   1 (8)
	        figured 0.5413
	       products 0.5413
	              a 0.5097
	             of 0.2816
	           that 0.2816
	            for 0.2816
	           </S> 0.1825
	              , 0.0857

          figs.   434309   5 (7)
	              ( 0.5413
	              a 0.5413
	           </S> 0.5413
	            and 0.5413
	           figs 0.5244
	          first 0.2816
	            the 0.0857

            241   434315 inf (7)
	             24 0.7555
	              , 0.7555
	             us 0.5413
	            the 0.5413
	              a 0.5413
	           </S> 0.1825
	              1 0.0857

            243   434359 inf (8)
	       analysis 0.5413
	             us 0.5097
	              2 0.2816
	             on 0.2816
	           </S> 0.1825
	              , 0.1825
	              a 0.1825
	            the 0.0857

           Farn   434394   1 (8)
	              a 0.5413
	             C. 0.5413
	         Dalton 0.5413
	           Farn 0.5413
	            arz 0.5413
	            For 0.5097
	              , 0.1825
	           </S> 0.0857

             's   434398   1 (8)
	             is 0.7555
	             's 0.7555
	              s 0.5413
	         MATTER 0.5413
	              a 0.5413
	           Wang 0.1825
	              , 0.1825
	           </S> 0.0857

              .   434400   4 (9)
	           page 0.5413
	          words 0.5413
	             us 0.5244
	              " 0.1825
	              . 0.1825
	              , 0.1825
	            the 0.1825
	              a 0.0857
	           </S> 0.0655

             as   434561   1 (6)
	             us 0.5413
	              I 0.5413
	              , 0.5413
	             as 0.5413
	              } 0.1229
	           </S> 0.0857

         branch   434583   3 (8)
	           rain 0.5413
	         Branch 0.5244
	         branch 0.5097
	         Search 0.5097
	              - 0.2253
	         future 0.1825
	           same 0.1825
	           </S> 0.0857

          the}-   434590 inf (8)
	          their 0.7555
	           thee 0.5413
	              a 0.5413
	            the 0.5097
	              , 0.1825
	              - 0.1825
	           </S> 0.1825
	             of 0.0857

            tip   434596   1 (6)
	              a 0.5413
	            tip 0.5413
	              , 0.5413
	            the 0.5413
	           </S> 0.5413
	            cia 0.5413

       forwards   434600   1 (9)
	       forwards 0.7555
	        forward 0.5244
	              a 0.5097
	              s 0.5097
	         sheets 0.5097
	          drill 0.2816
	              , 0.1825
	           </S> 0.1825
	             of 0.0857

            but   434672   1 (6)
	            but 0.5413
	             us 0.5413
	              , 0.5413
	              a 0.5413
	              } 0.1229
	           </S> 0.0857

          the}'   434729 inf (7)
	              a 0.5413
	            and 0.5413
	              - 0.5413
	           </S> 0.5413
	           thee 0.5244
	          their 0.2816
	            the 0.0857

      gradually   434735   1 (6)
	           </S> 0.5413
	              , 0.5413
	      gradually 0.5413
	        details 0.5413
	              a 0.5413
	             us 0.5413

             To   434906   1 (6)
	             To 0.7555
	              , 0.7555
	             us 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

       accuracv   435173   8 (11)
	         accura 0.7555
	              * 0.5413
	              a 0.5413
	       accuravi 0.5413
	       contents 0.5413
	              , 0.5413
	        address 0.5413
	       accuracy 0.5097
	     University 0.1825
	        purpose 0.1825
	           </S> 0.0857

      authoress   435296   1 (7)
	      authoress 0.7555
	              F 0.5413
	      directors 0.5413
	         author 0.2656
	           term 0.2253
	              - 0.1825
	           </S> 0.0857

              '   435305   4 (7)
	             us 0.5413
	             DT 0.5413
	            the 0.5413
	              ' 0.5244
	              , 0.1825
	           </S> 0.1294
	             of 0.0857

           Rook   435398   1 (9)
	           Rook 0.7555
	        success 0.5413
	              , 0.5413
	       coverage 0.5413
	              . 0.5413
	              a 0.5413
	           good 0.2816
	           </S> 0.1825
	           site 0.0857

          could   435404   1 (8)
	              s 0.5413
	            and 0.5413
	          could 0.5413
	           </S> 0.5413
	              a 0.5413
	            why 0.2816
	           will 0.2816
	            the 0.0857

         Hooded   435451   1 (7)
	         Hooded 0.7555
	       Counting 0.5413
	          Hotel 0.5244
	              a 0.1825
	              , 0.1825
	            the 0.0857
	           </S> 0.0655

            she   435465   1 (7)
	            she 0.5413
	              , 0.5413
	              a 0.5413
	            see 0.5413
	             us 0.5413
	              } 0.1229
	           </S> 0.0857

         parent   435485   2 (9)
	           part 0.7555
	              a 0.5413
	          tries 0.5413
	          based 0.5413
	         parent 0.5413
	          parva 0.5413
	             of 0.5244
	           </S> 0.0857
	              , 0.0655

            Yet   435637   1 (7)
	            Yet 0.7555
	              , 0.7555
	            You 0.7555
	             us 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

       creature   435667   1 (10)
	       creature 0.5413
	              a 0.5244
	             of 0.5244
	             us 0.5097
	           </S> 0.5097
	        because 0.2816
	     Christians 0.2816
	         church 0.2816
	              , 0.0857
	             by 0.0857

         hungiy   435714   1 (13)
	         hungry 0.7555
	           hung 0.7555
	              a 0.5413
	       hungrily 0.5413
	         Dhungi 0.5413
	        hinugay 0.5413
	          Munia 0.5413
	              . 0.2253
	              , 0.1825
	          hours 0.1825
	           </S> 0.1825
	          years 0.1825
	              - 0.0857

            and   435721   1 (5)
	           </S> 0.5413
	              . 0.5413
	              , 0.5413
	            and 0.5413
	            arz 0.5413

      clamorous   435730   1 (9)
	      clamorous 0.5413
	             us 0.5413
	              a 0.2816
	           more 0.1825
	              , 0.1825
	              - 0.1825
	             so 0.1825
	           </S> 0.1825
	              . 0.0857

         mouths   435740   2 (10)
	         people 0.7555
	             be 0.5413
	              a 0.5413
	             us 0.5413
	         before 0.5413
	          South 0.5413
	         mouths 0.5413
	           </S> 0.5244
	              . 0.2816
	              , 0.0857

   depredations   435843   1 (9)
	   depredations 0.5413
	    information 0.5413
	              a 0.5413
	         Corvus 0.5244
	         Agency 0.5097
	           laws 0.5097
	              . 0.2656
	           </S> 0.0857
	              , 0.0655

           Poor   435960   2 (7)
	              , 0.7555
	              a 0.5413
	           good 0.5413
	           Poor 0.5413
	           Pica 0.5413
	              " 0.2816
	           </S> 0.0857

         hunted   435965   2 (5)
	          hotel 0.7555
	              a 0.5413
	         hunted 0.5413
	              , 0.2816
	           </S> 0.0857

           Crow   435972   1 (8)
	              s 0.5413
	         Stupid 0.5413
	           Crow 0.5413
	              a 0.5097
	           from 0.5097
	           </S> 0.2816
	              , 0.1825
	           down 0.0857

        against   435978   1 (9)
	              " 0.5413
	              I 0.5413
	            The 0.5413
	         Corvus 0.5413
	            and 0.5413
	           </S> 0.5413
	        against 0.5413
	             to 0.1825
	            the 0.0857

         ever}'   435991   3 (9)
	          other 0.5413
	         everre 0.5413
	          every 0.5244
	           ever 0.5244
	              . 0.2816
	           </S> 0.2816
	              a 0.2656
	              , 0.2253
	            the 0.0857

            man   435998   1 (8)
	          major 0.5413
	             is 0.5413
	            man 0.5413
	           </S> 0.5413
	              , 0.5413
	            may 0.5413
	              a 0.5413
	           have 0.5413

            She   436021   1 (7)
	              a 0.5413
	            She 0.5413
	             us 0.5413
	            the 0.5413
	              , 0.5413
	              ) 0.2816
	           </S> 0.0857

      thirsting   436086   1 (7)
	        Listing 0.5413
	      thirsting 0.5413
	              a 0.5244
	           </S> 0.2816
	             of 0.1825
	              , 0.1825
	              . 0.0857

       cylinder   436121   1 (11)
	       cylinder 0.7555
	            may 0.5413
	              a 0.5413
	             is 0.5413
	         online 0.5413
	              , 0.5413
	           sign 0.5413
	          major 0.2816
	           </S> 0.2253
	           time 0.1825
	            day 0.0857

        pointed   436130   1 (7)
	          point 0.7555
	        pointed 0.7555
	              a 0.5413
	             of 0.2656
	              . 0.1825
	           </S> 0.1825
	              , 0.0857

          snare   436197   1 (10)
	          state 0.7555
	          snare 0.7555
	           sala 0.5413
	              a 0.5244
	             of 0.5244
	            way 0.5097
	          thing 0.5097
	           </S> 0.4979
	              , 0.0857
	            and 0.0857

       entangle   436206   1 (7)
	       entangle 0.7555
	         murder 0.5413
	            try 0.2816
	             us 0.2816
	         change 0.2656
	              a 0.1825
	            the 0.0857

           dear   436251   1 (8)
	           </S> 0.5413
	              a 0.5413
	            and 0.5413
	           dear 0.5413
	            arz 0.5413
	           year 0.5097
	           such 0.2253
	            the 0.0857

        clamour   436271   1 (8)
	            and 0.5413
	              , 0.5413
	           </S> 0.5413
	              a 0.5413
	        clamour 0.5413
	           your 0.2816
	             or 0.1825
	            the 0.0857

            How   436289   1 (7)
	            How 0.7555
	           Home 0.7555
	              , 0.7555
	             us 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

              -   436292   5 (7)
	             us 0.7555
	              , 0.5097
	           </S> 0.4011
	            the 0.2816
	           much 0.1825
	              - 0.1825
	             to 0.0857

             or   436345   1 (6)
	             us 0.5413
	             or 0.5413
	              a 0.5413
	              , 0.5413
	              } 0.1229
	           </S> 0.0857

          Robin   436353   2 (7)
	          comix 0.7555
	          Robin 0.5244
	           down 0.5244
	           </S> 0.1825
	              a 0.1825
	              , 0.1825
	            the 0.0857

         babies   436359   2 (11)
	          based 0.7555
	              a 0.5413
	         babies 0.5413
	           they 0.5413
	     statements 0.5413
	         Lanius 0.5413
	             is 0.2816
	       Williams 0.1825
	              , 0.1825
	           </S> 0.1825
	           Hood 0.0857

         babies   436406   1 (9)
	         babies 0.5413
	           been 0.5413
	            the 0.5413
	              a 0.5413
	           like 0.5413
	         Lanius 0.5413
	              . 0.2253
	           </S> 0.0857
	              , 0.0655

            The   436436   1 (6)
	              a 0.5413
	              , 0.5413
	            The 0.5413
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

        ignores   436447   1 (8)
	           into 0.5413
	        ignores 0.5413
	              a 0.5244
	             of 0.2816
	            and 0.1825
	           </S> 0.1825
	             in 0.1825
	              , 0.0857

            she   436479   1 (7)
	            she 0.7555
	             us 0.5413
	              a 0.5244
	            the 0.5244
	              . 0.1825
	           </S> 0.1825
	              , 0.0857

           carr   436647   1 (11)
	            cia 0.5413
	           good 0.5413
	           free 0.5413
	           carr 0.5413
	             to 0.2816
	            can 0.2816
	              , 0.2816
	           </S> 0.2253
	              a 0.1825
	             do 0.1825
	     dispatched 0.0857

           catv   436667 inf (14)
	           cats 0.7555
	            cat 0.7555
	         appear 0.5413
	        catvine 0.5413
	            cia 0.5413
	           cvat 0.5413
	          least 0.5413
	            can 0.2816
	             it 0.1825
	              a 0.1825
	           </S> 0.1825
	            not 0.1825
	            the 0.1825
	              , 0.0857

            and   436673   1 (6)
	           </S> 0.5413
	      sometimes 0.5413
	            and 0.5413
	            arz 0.5413
	           with 0.1825
	            the 0.0857

        rookery   436711   1 (10)
	        rookery 0.7555
	          house 0.5413
	           wife 0.5413
	          worth 0.5413
	           fast 0.5413
	          Books 0.2253
	           name 0.1825
	              , 0.1825
	              a 0.0857
	           </S> 0.0655

           born   436720   1 (9)
	         photos 0.5413
	           born 0.5413
	              " 0.5413
	       Coronado 0.5413
	          corax 0.5413
	           more 0.2816
	              i 0.2816
	           free 0.2656
	            the 0.0857

      incessant   436743   1 (7)
	          heavy 0.5413
	        Germany 0.5413
	      incessant 0.5413
	              , 0.5097
	           </S> 0.2816
	              a 0.1825
	            the 0.0857

        ar-cc-o   436848 inf (11)
	           </S> 0.5413
	            and 0.5413
	         Golden 0.5413
	              , 0.5413
	         arccos 0.5413
	        arrocco 0.5413
	            The 0.5413
	            Vol 0.5413
	              I 0.5413
	             pp 0.2816
	            the 0.0857

              .   436855   1 (6)
	           </S> 0.5413
	           Gate 0.5413
	             us 0.5413
	            the 0.5413
	              , 0.5413
	              . 0.5413

           arid   436959   1 (11)
	           arid 0.7555
	            arz 0.5413
	              e 0.2656
	            all 0.2656
	            are 0.1825
	          other 0.1825
	              , 0.1825
	            any 0.1825
	           more 0.1825
	            the 0.0857
	           </S> 0.0655

     localities   436964   1 (11)
	             us 0.5413
	           like 0.5413
	     localities 0.5413
	         images 0.5413
	              a 0.5244
	              ) 0.5244
	              . 0.2816
	        regions 0.1825
	              , 0.1825
	           </S> 0.1825
	            and 0.0857

       mollusca   436991   1 (9)
	       mollusca 0.7555
	       wildlife 0.5413
	          <UNK> 0.5413
	      therefore 0.5413
	              , 0.5413
	            and 0.5413
	              a 0.5413
	           most 0.2816
	            the 0.0857

        carrion   437035   1 (10)
	        carrion 0.7555
	             us 0.5413
	unconsciousness 0.5413
	           case 0.2816
	        writing 0.2816
	           Iraq 0.2816
	              , 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

          Later   437074   1 (8)
	              , 0.7555
	           Date 0.7555
	          Later 0.7555
	            but 0.5413
	              a 0.5413
	          Pales 0.5413
	              " 0.2816
	           </S> 0.0857

         fruits   437092   1 (9)
	         fruits 0.7555
	          rufus 0.5413
	              a 0.5097
	           2000 0.2816
	           from 0.2816
	              , 0.1825
	             of 0.1825
	           </S> 0.1825
	              . 0.0857

          beech   437100   1 (10)
	           </S> 0.5413
	              ( 0.5413
	             xf 0.5413
	              s 0.5413
	           self 0.5413
	              a 0.5413
	       desserts 0.5413
	          beech 0.5413
	           been 0.5413
	            the 0.0857

            but   437134   1 (6)
	              , 0.5413
	              a 0.5413
	            but 0.5413
	             us 0.5413
	              } 0.1229
	           </S> 0.0857

         refuse   437205   1 (7)
	         refuse 0.7555
	          rufus 0.7555
	         before 0.5244
	              , 0.2816
	           </S> 0.2253
	              a 0.1825
	            the 0.0857

          heaps   437212   1 (7)
	          heaps 0.7555
	        display 0.5413
	           help 0.5244
	           </S> 0.5097
	              a 0.5097
	              , 0.2816
	             to 0.0857

           cast   437237   1 (7)
	           cast 0.5413
	            cia 0.5413
	            can 0.5244
	              a 0.5244
	           </S> 0.2816
	              , 0.1825
	             of 0.0857

         though   437260   1 (5)
	         though 0.5413
	              a 0.5413
	              , 0.5413
	              } 0.1229
	           </S> 0.0857

       sparrows   437324   1 (9)
	       sparrows 0.5413
	        support 0.5413
	         editor 0.5413
	       bacteria 0.5244
	           </S> 0.2816
	              a 0.2816
	              , 0.2656
	             us 0.1294
	            the 0.0857

           cage   437393   1 (10)
	           cage 0.7555
	            cia 0.7555
	       yourself 0.5413
	            can 0.5244
	              , 0.2816
	           free 0.2656
	           </S> 0.1825
	           sale 0.1825
	              a 0.1825
	            the 0.0857

           ni}-   437410 inf (9)
	            nin 0.5413
	             ni 0.5413
	              a 0.5413
	              , 0.5413
	           nice 0.5413
	            cia 0.5413
	            not 0.5413
	              } 0.1229
	           </S> 0.0857

        brother   437415   1 (4)
	              ) 0.5413
	       Brothers 0.5413
	        brother 0.5413
	           </S> 0.5413

            Mr.   437490   3 (8)
	              , 0.7555
	             My 0.7555
	              s 0.5413
	              a 0.5413
	             Mr 0.5413
	            Mrs 0.5413
	              " 0.2816
	           </S> 0.0857

        Bonhote   437503 inf (10)
	           Book 0.5413
	              s 0.5413
	         nonhot 0.5413
	       nonhotel 0.5413
	        Benhote 0.5413
	       Bonhomme 0.5413
	              : 0.2816
	          <UNK> 0.2816
	           </S> 0.1825
	              , 0.0857

         writes   437511   1 (7)
	          Clark 0.5413
	          write 0.5413
	         writes 0.5413
	              a 0.5413
	        tristis 0.5413
	           </S> 0.2816
	              , 0.0857

            but   437544   1 (7)
	             us 0.5413
	            but 0.5413
	              , 0.5413
	         humans 0.5413
	              a 0.5413
	              } 0.1229
	           </S> 0.0857

        Carrion   437558   1 (11)
	        Carrion 0.7555
	              , 0.5413
	            non 0.5413
	            sub 0.5413
	              I 0.5413
	       Sarbanes 0.5413
	           City 0.2253
	           same 0.1825
	           rest 0.1825
	            two 0.1825
	           </S> 0.0857

       scarcely   437605   1 (6)
	              a 0.5413
	       securely 0.5413
	              , 0.5413
	       scarcely 0.5413
	              } 0.1229
	           </S> 0.0857

         FAMILY   437721   1 (5)
	              a 0.5413
	         FAMILY 0.5413
	              " 0.2253
	              , 0.2253
	           </S> 0.0857

     ALAUDIDJ-:   437728 inf (13)
	        MEDICAL 0.7555
	              ) 0.7555
	        STUDIES 0.7555
	          ALBUM 0.7555
	              D 0.5413
	           LAND 0.5413
	      FILTERING 0.5413
	              a 0.5413
	              s 0.5413
	            AND 0.5097
	              , 0.5097
	              : 0.0857
	           </S> 0.0655

              .   437738   1 (6)
	              , 0.5413
	             us 0.5413
	             OF 0.5413
	            the 0.5413
	              . 0.5413
	           </S> 0.5413

            THE   437741   1 (7)
	            THE 0.7555
	              I 0.7555
	              , 0.7555
	             us 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

       position   437745   1 (7)
	       positive 0.7555
	       position 0.7555
	              , 0.5413
	      configure 0.5413
	  JURISIDICTION 0.5413
	           BEST 0.1825
	           </S> 0.0857

      vSannders   437770 inf (13)
	        Sanders 0.7555
	         anders 0.5413
	            are 0.5413
	              a 0.5413
	       vianders 0.5413
	        vanders 0.5413
	           very 0.5413
	             us 0.5413
	         person 0.5413
	            the 0.5097
	           </S> 0.1825
	           Dean 0.1825
	              , 0.0857

            has   437780   1 (6)
	             us 0.5413
	            has 0.5413
	              , 0.5413
	           </S> 0.5413
	   accidentally 0.5413
	              a 0.5413

         phiccd   437784 inf (15)
	            phi 0.7555
	         phocid 0.5413
	          piccy 0.5413
	          ophic 0.5413
	        phichqa 0.5413
	        chicchi 0.5413
	       informed 0.5413
	          price 0.5244
	         priced 0.5244
	              , 0.2816
	           done 0.2816
	           made 0.2656
	           </S> 0.2253
	              a 0.1825
	           been 0.0857

           this   437791   1 (5)
	              a 0.5413
	              , 0.5413
	           </S> 0.5413
	           this 0.5413
	            cia 0.5413

       faniil_y   437796   7 (14)
	         fanihy 0.5413
	       fanmilyi 0.5413
	         fanilo 0.5413
	         fainly 0.5413
	         Daniil 0.5413
	        fancily 0.5413
	         family 0.5097
	              a 0.2656
	           </S> 0.1825
	            one 0.1825
	              , 0.1825
	             is 0.0857
	           page 0.0857
	           site 0.0655

              -   437856   2 (8)
	             us 0.7555
	              - 0.5413
	             to 0.5097
	           </S> 0.2816
	             be 0.1825
	              , 0.1825
	            the 0.1825
	            not 0.0857

   Motaciilidcc   437952   1 (9)
	             us 0.5413
	              , 0.5413
	              a 0.5413
	   Motacillidae 0.5413
	            the 0.5413
	          local 0.2253
	         public 0.1825
	            top 0.1825
	           </S> 0.0857

             as   437966   1 (8)
	           </S> 0.5413
	              ( 0.5413
	             as 0.5413
	            and 0.5413
	              I 0.5413
	             us 0.5097
	             or 0.1825
	            the 0.0857

      vSeel)ohm   437972   1 (9)
	        Seebohm 0.5413
	           Enya 0.5413
	           very 0.5413
	          today 0.5413
	              " 0.2816
	              , 0.2816
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

             's   437981   1 (7)
	           </S> 0.5413
	          <UNK> 0.5413
	              , 0.5413
	              a 0.5413
	             us 0.5413
	             is 0.5413
	             's 0.5413

      evidently   438020   1 (8)
	      evidently 0.7555
	      available 0.5413
	          those 0.2816
	              , 0.2816
	            the 0.1825
	              " 0.1825
	           </S> 0.1825
	              a 0.0857

      advocated   438030   1 (7)
	      advocated 0.5413
	          about 0.5244
	              I 0.5097
	             as 0.5097
	           </S> 0.2816
	              a 0.1825
	              , 0.0857

            b}'   438040   6 (6)
	             us 0.7555
	              ' 0.5244
	           </S> 0.2816
	              , 0.2816
	              a 0.1825
	             by 0.0857

            Dr.   438044   1 (7)
	            are 0.5413
	              , 0.5413
	            Dr. 0.5413
	              a 0.5413
	            the 0.5413
	           </S> 0.5413
	            arz 0.5413

         Sharpc   438048   1 (10)
	         Sharpe 0.7555
	          Share 0.7555
	              A 0.5413
	        Sarpech 0.5413
	          Sharp 0.5244
	             A. 0.2816
	              , 0.1825
	         Martin 0.1825
	          <UNK> 0.1825
	           </S> 0.0857

          Larks   438161   1 (10)
	          Parus 0.7555
	          Larks 0.7555
	              a 0.5413
	              , 0.5413
	          Links 0.5244
	          world 0.1825
	         system 0.1825
	           same 0.1825
	    information 0.1825
	           </S> 0.0857

           than   438207   1 (7)
	              a 0.7555
	            fly 0.7555
	           than 0.7555
	          torax 0.5413
	             of 0.5244
	              , 0.1825
	           </S> 0.0857

         Pipits   438219   1 (10)
	         Pipits 0.7555
	              a 0.5413
	             us 0.5413
	            the 0.5413
	              , 0.5413
	         rights 0.2816
	            top 0.1825
	         public 0.1825
	          world 0.1825
	           </S> 0.0857

            had   438272   1 (8)
	            had 0.7555
	            cia 0.5413
	              a 0.5413
	              ) 0.2816
	              . 0.2253
	             of 0.1825
	              , 0.1825
	           </S> 0.0857

          borne   438295   2 (8)
	           been 0.7555
	          borne 0.5413
	          corax 0.5413
	              a 0.5244
	           </S> 0.1825
	             of 0.0857
	              . 0.0857
	              , 0.0655

       vSeebohm   438305   1 (9)
	        Seebohm 0.5413
	        Hewllet 0.5413
	          Delta 0.5413
	           what 0.5244
	          about 0.5244
	           </S> 0.5097
	              a 0.5097
	              , 0.2816
	             of 0.0857

             's   438313   1 (7)
	             's 0.5413
	              , 0.5413
	           </S> 0.5413
	             us 0.5413
	            the 0.5413
	              a 0.5413
	             is 0.5413

         appear   438337   3 (8)
	             of 0.7555
	             is 0.7555
	         appear 0.5413
	              I 0.5413
	          areas 0.5413
	           </S> 0.1825
	              , 0.1825
	              ' 0.0857

         Pipits   438377   1 (9)
	         Pipits 0.7555
	            the 0.5413
	             us 0.5413
	              , 0.5413
	              a 0.5413
	         rights 0.2816
	           fact 0.1825
	            top 0.1825
	           </S> 0.0857

       Thrushes   438393   1 (9)
	       Thrushes 0.7555
	              , 0.5413
	           bill 0.5413
	          three 0.5413
	              a 0.5413
	          world 0.1825
	           same 0.1825
	            way 0.1825
	           </S> 0.0857

             do   438402   2 (7)
	             of 0.7555
	             us 0.5413
	              a 0.5413
	             do 0.5413
	            way 0.5413
	           </S> 0.1825
	              , 0.0857

       Warblers   438412   1 (11)
	       Warblers 0.7555
	       question 0.5413
	              , 0.5413
	              a 0.5413
	            the 0.5413
	        cablets 0.5413
	              " 0.1825
	         public 0.1825
	            top 0.1825
	          World 0.1825
	           </S> 0.0857

         Jerdon   438426   1 (9)
	         Jerdon 0.5413
	          Aedon 0.5413
	         person 0.2816
	             it 0.2656
	              a 0.1825
	              " 0.1825
	              , 0.1825
	            the 0.0857
	           </S> 0.0655

             's   438432   9 (10)
	              . 0.7555
	             is 0.7555
	            non 0.5413
	              a 0.5413
	             us 0.5413
	              " 0.5413
	              , 0.1825
	           </S> 0.1825
	            JVC 0.0857
	             's 0.0857

              -   438435   4 (8)
	           book 0.5413
	          Draft 0.5413
	             us 0.5244
	              - 0.2253
	              , 0.1825
	            the 0.1825
	              a 0.0857
	           </S> 0.0655

            may   438448   1 (8)
	            may 0.7555
	            can 0.7555
	             of 0.7555
	          major 0.5413
	              I 0.5413
	              , 0.1825
	           </S> 0.1825
	              ' 0.0857

       P'inchcs   438476 inf (10)
	        Pinchas 0.7555
	          Pinch 0.7555
	             us 0.5413
	              a 0.5413
	              , 0.5413
	      Committee 0.5413
	            the 0.5413
	          right 0.1825
	            top 0.1825
	           </S> 0.0857

             on   438485   1 (6)
	             us 0.5413
	              , 0.5413
	           </S> 0.5413
	             on 0.5413
	              a 0.5413
	             of 0.5413

Jloiifijniioi/Ia   438510 inf (11)
	             in 0.7555
	             us 0.7555
	    information 0.5413
	     individual 0.5413
	             if 0.5413
	       national 0.5413
	           find 0.5413
	           </S> 0.5244
	              , 0.5244
	              a 0.2816
	            the 0.0857

            and   438527   1 (5)
	              , 0.5413
	            and 0.5413
	            the 0.5413
	           </S> 0.5413
	            arz 0.5413

  PUciropluvics   438531 inf (12)
	              , 0.7555
	       services 0.7555
	          click 0.7555
	        Privacy 0.7555
	     facilities 0.5413
	              i 0.5413
	    scholarship 0.5413
	        service 0.5413
	       products 0.5413
	           </S> 0.2816
	              a 0.1294
	            the 0.0857

              ;   438545   1 (6)
	              , 0.5413
	              ; 0.5413
	             us 0.5413
	              . 0.5413
	           </S> 0.5413
	            the 0.5413

            and   438547   1 (4)
	            and 0.5413
	            arz 0.5413
	              } 0.1229
	           </S> 0.0857

         Pipits   438575   1 (9)
	          Posts 0.7555
	         Pipits 0.7555
	              . 0.5413
	           body 0.5413
	       emotions 0.5413
	          Pipes 0.5244
	          world 0.1825
	           same 0.1825
	           </S> 0.0857

        through   438582   2 (6)
	         Anthus 0.7555
	        through 0.5413
	             of 0.5413
	              a 0.5413
	           </S> 0.1825
	              , 0.0857

     Corydallar   438590   1 (8)
	            RSS 0.5413
	         Canada 0.5413
	      Corydalla 0.5413
	             C. 0.5413
	              , 0.5244
	           </S> 0.5244
	              a 0.2816
	            the 0.0857

            The   438602   1 (6)
	           </S> 0.5413
	            the 0.5413
	              , 0.5413
	            The 0.5413
	              a 0.5413
	             us 0.5413

        familj-   438634   7 (12)
	              , 0.5413
	              . 0.5413
	              a 0.5413
	        familja 0.5413
	          major 0.5413
	         familj 0.5413
	         family 0.2816
	           book 0.2253
	        project 0.2253
	           best 0.1825
	          world 0.1825
	           </S> 0.0857

             is   438642   1 (6)
	             is 0.5413
	           </S> 0.5413
	             of 0.5413
	             iu 0.5413
	              , 0.5413
	              a 0.5413

   scutellation   438649   1 (12)
	             to 0.5413
	          major 0.5413
	 responsibility 0.5413
	              a 0.5413
	              , 0.5413
	   scutellation 0.5413
	          world 0.1825
	           most 0.1825
	    information 0.1825
	            top 0.1825
	           case 0.1825
	           </S> 0.0857

             at   438662   1 (6)
	              I 0.5413
	             at 0.5413
	              , 0.5413
	             of 0.5413
	           </S> 0.5413
	            arz 0.5413

            and   438689   1 (5)
	              , 0.5413
	            and 0.5413
	            arz 0.5413
	              } 0.1229
	           </S> 0.0857

      probabl}'   438699   3 (9)
	        probabl 0.7555
	       probabla 0.5413
	       possible 0.2816
	       probably 0.2816
	           </S> 0.1825
	              , 0.1825
	            the 0.1825
	            not 0.1825
	              a 0.0857

          tliis   438720   7 (10)
	           tiis 0.7555
	          tsiis 0.5413
	          aliis 0.5413
	         tiliis 0.5413
	              s 0.5413
	              , 0.2816
	           </S> 0.1825
	           this 0.1825
	              a 0.1825
	            the 0.0857

    peculiarity   438726   1 (8)
	    peculiarity 0.5413
	              , 0.5413
	              . 0.5413
	              a 0.5413
	           best 0.5413
	         public 0.5413
	          <UNK> 0.1825
	           </S> 0.0857

              (   438738   3 (6)
	            the 0.7555
	             us 0.5413
	           </S> 0.5244
	              ( 0.5244
	              , 0.2816
	             of 0.0857

        becanse   438747   5 (14)
	         becase 0.7555
	        bacanes 0.5413
	         secans 0.5413
	          becan 0.5413
	        because 0.2816
	             of 0.2816
	           that 0.2253
	              . 0.1825
	            the 0.1825
	           </S> 0.1825
	              , 0.1825
	          think 0.1825
	              a 0.1825
	             be 0.0857

           they   438755   1 (9)
	           they 0.5413
	        support 0.5413
	             us 0.5413
	             to 0.5413
	              a 0.5413
	           </S> 0.5413
	              , 0.5413
	            the 0.5413
	             of 0.0857

       Sannders   438798 inf (9)
	        Sanders 0.7555
	         anders 0.5413
	              a 0.5413
	         Server 0.5097
	             A. 0.2816
	             is 0.2816
	           </S> 0.1825
	           Dean 0.1825
	              , 0.0857

  subordinating   438807   1 (6)
	            and 0.5413
	              , 0.5413
	           </S> 0.5413
	         during 0.5413
	              a 0.5413
	  subordinating 0.5413

          sa3-s   438842   9 (11)
	             sa 0.7555
	            sas 0.7555
	           sass 0.7555
	           sala 0.5413
	              a 0.5413
	             as 0.5244
	              , 0.2816
	           </S> 0.2656
	           says 0.1825
	           said 0.1825
	            was 0.0857

      majorit}-   438867   6 (10)
	              a 0.5413
	        members 0.5413
	              , 0.5413
	              . 0.5413
	       majorait 0.5413
	       majority 0.2816
	           more 0.2656
	            use 0.1825
	            top 0.1825
	           </S> 0.0857

             O.   438887   1 (8)
	              a 0.5413
	             A. 0.5413
	             O. 0.5413
	             of 0.5244
	              . 0.2816
	              , 0.1825
	             .. 0.1825
	           </S> 0.0857

    Alaiiiiidic   438937 inf (13)
	       American 0.7555
	           page 0.7555
	        listing 0.5413
	              , 0.5413
	              . 0.5413
	           land 0.5413
	    medications 0.5413
	          child 0.5413
	              a 0.5413
	          major 0.5413
	     individual 0.5413
	          world 0.5097
	           </S> 0.0857

     Coii'ida''   438957 inf (12)
	       original 0.7555
	           user 0.7555
	        company 0.7555
	          Board 0.7555
	              ' 0.7555
	            day 0.7555
	        Company 0.5413
	              , 0.5413
	              a 0.5413
	              . 0.5413
	          other 0.5244
	           </S> 0.0857

            has   438968   1 (7)
	             of 0.5413
	              a 0.5413
	           </S> 0.5413
	             is 0.5413
	            has 0.5413
	             us 0.5413
	              , 0.5413

          Larks   438983   1 (12)
	          Parus 0.7555
	          Larks 0.7555
	          table 0.5413
	          Large 0.5244
	          Links 0.5244
	          terms 0.2656
	              - 0.2253
	           form 0.2253
	           same 0.1825
	            top 0.1825
	          world 0.1825
	           </S> 0.0857

       Passcrcs   439007   1 (13)
	       Passeres 0.7555
	      asscracks 0.5413
	         Passca 0.5413
	              a 0.5413
	              . 0.5413
	              , 0.5413
	       Passirac 0.5413
	           page 0.2253
	          world 0.1825
	            day 0.1825
	           last 0.1825
	           year 0.1825
	           </S> 0.0857

            all   439017   1 (9)
	            and 0.5413
	            all 0.5413
	           </S> 0.5413
	              I 0.5413
	              ( 0.5413
	           alba 0.5413
	          while 0.2253
	           with 0.1825
	            the 0.0857

          i'eet   439049 inf (8)
	            eet 0.7555
	            ite 0.7555
	          ikeet 0.5413
	           idea 0.2816
	          items 0.2816
	              - 0.2253
	           same 0.1825
	           </S> 0.0857

         scaled   439055   1 (8)
	              , 0.5413
	           sala 0.5413
	          shall 0.5413
	            not 0.5413
	              a 0.5413
	             of 0.5413
	         scaled 0.5413
	           </S> 0.5413

          Larks   439082   1 (9)
	          Larks 0.7555
	          Parus 0.7555
	       comments 0.5413
	           dead 0.5413
	          Large 0.5244
	          Links 0.5097
	      following 0.1825
	              - 0.1825
	           </S> 0.0857

        walking   439092   1 (7)
	        walking 0.5097
	        working 0.2816
	           </S> 0.1825
	              , 0.1825
	              a 0.1825
	            the 0.1825
	            not 0.0857

          birds   439100   1 (11)
	          first 0.7555
	          birds 0.7555
	         winner 0.5413
	          Parus 0.5413
	         trails 0.2816
	              a 0.2816
	           </S> 0.2253
	         around 0.1825
	              , 0.1825
	             to 0.1825
	       distance 0.0857

       building   439107   1 (9)
	           fish 0.5413
	       building 0.5413
	              , 0.5413
	            and 0.5413
	              a 0.5413
	           </S> 0.5413
	       business 0.5413
	         photos 0.5413
	            the 0.0857

          man}'   439123   4 (9)
	           mana 0.7555
	            man 0.5244
	          major 0.5097
	           many 0.2816
	              , 0.2816
	              - 0.2656
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

        species   439129   1 (6)
	              , 0.5413
	              a 0.5413
	        species 0.5413
	           </S> 0.5413
	           with 0.5413
	        suecica 0.5413

       roosting   439137   1 (9)
	       roosting 0.7555
	           nest 0.5413
	          based 0.5413
	        Hosting 0.5413
	        Oosting 0.5413
	           name 0.5097
	           </S> 0.1825
	              , 0.1825
	              . 0.0857

       arboreal   439193   1 (11)
	       arboreal 0.7555
	           area 0.5413
	        arborea 0.5413
	            you 0.2816
	         common 0.2816
	              . 0.1825
	           </S> 0.1825
	              , 0.1825
	             of 0.1825
	              I 0.1294
	           than 0.0857

          the}-   439209 inf (8)
	           </S> 0.5413
	              ( 0.5413
	             by 0.5413
	            and 0.5413
	              a 0.5413
	           thee 0.5244
	          their 0.2816
	            the 0.0857

         rarely   439215   1 (5)
	              , 0.5413
	              a 0.5413
	         really 0.5413
	         rarely 0.5413
	           </S> 0.5413

          perch   439222   1 (8)
	          perch 0.7555
	            per 0.7555
	          agree 0.5413
	          parva 0.5413
	           seen 0.1825
	           </S> 0.1825
	              a 0.1825
	              , 0.0857

            and   439239   1 (5)
	              , 0.5413
	            and 0.5413
	            arz 0.5413
	              } 0.1229
	           </S> 0.0857

           dust   439313   1 (10)
	           dust 0.5244
	            dry 0.5244
	             us 0.5244
	           just 0.2816
	           </S> 0.1825
	              a 0.1825
	              , 0.1825
	           they 0.1825
	              I 0.0857
	             it 0.0655

       Sparrows   439349   1 (9)
	       Sparrows 0.7555
	        Service 0.2816
	            use 0.2816
	              , 0.2816
	            one 0.2816
	             us 0.2816
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

   Gallinaceous   439361   1 (8)
	           dead 0.5413
	    application 0.5413
	   Gallinaceous 0.5413
	              a 0.1825
	          other 0.1825
	              , 0.1825
	            the 0.0857
	           </S> 0.0655

          Their   439381   1 (6)
	          Their 0.7555
	              , 0.7555
	          There 0.7555
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

          Larks   439463   3 (7)
	          Links 0.7555
	              , 0.7555
	              a 0.5413
	          Larks 0.5413
	          Parus 0.5413
	              " 0.2816
	           </S> 0.0857

            are   439469   3 (6)
	            arz 0.5413
	              n 0.5413
	            are 0.5244
	              , 0.1825
	           </S> 0.1825
	              ' 0.0857

            the   439528   1 (5)
	            the 0.5413
	             us 0.5413
	              , 0.5413
	              } 0.1229
	           </S> 0.0857

       stronger   439570   1 (6)
	       stronger 0.7555
	        service 0.5413
	              a 0.5097
	           </S> 0.1825
	             of 0.0857
	              , 0.0857

      doubtless   439625   6 (9)
	              a 0.5413
	            and 0.5413
	      according 0.5413
	              ( 0.5413
	           </S> 0.5413
	      doubtless 0.5244
	          would 0.2816
	             or 0.1825
	            the 0.0857

        soaring   439668   1 (7)
	        soaring 0.7555
	   independence 0.5413
	         spring 0.5244
	        working 0.5097
	              " 0.2656
	           </S> 0.1825
	            own 0.0857

       hovering   439676   1 (7)
	         having 0.5413
	       hovering 0.5413
	              a 0.5413
	        profits 0.5244
	              . 0.1825
	           </S> 0.1825
	              , 0.0857

              -   439750   4 (8)
	             us 0.7555
	              % 0.5413
	            the 0.5097
	              - 0.1825
	              . 0.1825
	           </S> 0.1825
	           that 0.1294
	              , 0.0857

        fulness   439814   1 (8)
	        fulness 0.7555
	       Business 0.7555
	              a 0.5413
	         weight 0.5097
	         access 0.2816
	              , 0.2816
	           </S> 0.1825
	           than 0.0857

             By   439836   1 (7)
	              , 0.7555
	             by 0.7555
	             By 0.7555
	             us 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

           bird   439860   5 (11)
	              i 0.5413
	            non 0.5413
	            sub 0.5413
	            cia 0.5244
	           bird 0.5097
	             by 0.5097
	              - 0.2253
	           same 0.1825
	            two 0.1825
	            way 0.1825
	           </S> 0.0857

          Larks   439905   1 (7)
	          Larks 0.7555
	          Parus 0.7555
	          Links 0.5244
	              , 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

       directly   439911   1 (8)
	       directly 0.5413
	         person 0.5413
	      Directory 0.5413
	              a 0.5413
	              . 0.2816
	              , 0.1825
	           </S> 0.1825
	              ' 0.0857

          tells   440011   1 (7)
	          tells 0.7555
	              a 0.5413
	           tell 0.5413
	        greeted 0.5413
	          Pales 0.5413
	           </S> 0.1825
	              , 0.0857

           Lark   440038   1 (12)
	           Lark 0.7555
	              , 0.5413
	           that 0.5413
	              a 0.5413
	              . 0.5413
	            arz 0.5413
	           word 0.2816
	           part 0.1825
	          child 0.1825
	         person 0.1825
	           </S> 0.0857
	            new 0.0655

    Practically   440155 inf (8)
	         Please 0.7555
	              , 0.7555
	    practically 0.5413
	   Practicality 0.5413
	              a 0.5413
	      Practical 0.5413
	              " 0.2816
	           </S> 0.0857

       Aluudida   440171   1 (11)
	      Alaudidae 0.7555
	         Alauda 0.7555
	        aludida 0.5413
	          udida 0.5413
	          style 0.5413
	      Alluaudia 0.5413
	       American 0.2253
	              - 0.2253
	            use 0.1825
	           same 0.1825
	           </S> 0.0857

     constitute   440180   1 (6)
	      community 0.5413
	              a 0.5413
	             of 0.5413
	     constitute 0.5413
	           </S> 0.5413
	              , 0.5413

         fainih   440204 inf (7)
	           find 0.7555
	          faini 0.5413
	        fininha 0.5413
	              O 0.5413
	            War 0.1825
	              , 0.1825
	           </S> 0.0857

              '   440210   1 (6)
	           </S> 0.5413
	              ' 0.5413
	              , 0.5413
	             us 0.5413
	            the 0.5413
	             II 0.5413

         Jerdon   440269   1 (8)
	         Jerdon 0.7316
	          Aedon 0.5413
	           John 0.5413
	              , 0.2816
	             he 0.2253
	              " 0.1825
	           </S> 0.1825
	              a 0.0857

       observes   440276   2 (10)
	     Enterprise 0.7555
	       reserved 0.5413
	          whole 0.5413
	       observes 0.5413
	              a 0.5413
	           said 0.5413
	             as 0.5413
	           </S> 0.1825
	              , 0.1825
	            JVC 0.0857

    j\Iala3-ana   440326 inf (13)
	              , 0.7555
	         Canada 0.7555
	           time 0.7555
	        writing 0.7555
	        vanilla 0.5413
	      corporate 0.5413
	       Malaysia 0.5413
	             us 0.5413
	     managerial 0.5413
	             an 0.5244
	           </S> 0.5244
	              a 0.2816
	            the 0.0857

            and   440338   1 (5)
	             in 0.5413
	           </S> 0.5413
	            and 0.5413
	              , 0.5413
	            arz 0.5413

        Familx-   440355   3 (7)
	              s 0.5413
	        Femilax 0.5413
	         Family 0.5097
	              a 0.2816
	             he 0.2656
	              , 0.1825
	           </S> 0.0857

      ALAUDID.E   440363 inf (8)
	            the 0.5413
	              A 0.5413
	           said 0.5413
	              . 0.5413
	              , 0.5413
	              a 0.5413
	           </S> 0.5413
	              " 0.5413

              .   440372 inf (3)
	             of 0.5413
	             us 0.5413
	            the 0.5413

         Alauda   440390   2 (6)
	              , 0.7555
	         Alauda 0.5413
	              a 0.5413
	         Alaska 0.5413
	              " 0.2816
	           </S> 0.0857

      iDVCiisis   440397   9 (9)
	      configure 0.5413
	          Virus 0.5413
	             is 0.5413
	          dists 0.5413
	           this 0.5413
	              a 0.5413
	           </S> 0.5244
	              , 0.5244
	       arvensis 0.0857

              ,   440406   1 (4)
	              , 0.5413
	            the 0.5413
	             us 0.5413
	           </S> 0.5413

           LiNN   440408 inf (8)
	            LNN 0.5413
	           List 0.5413
	           LiNK 0.5413
	            NiL 0.5413
	            cia 0.5413
	             pp 0.2816
	              i 0.2816
	            the 0.0857

              .   440412   1 (5)
	           </S> 0.5413
	              , 0.5413
	             us 0.5413
	              . 0.5413
	            the 0.5413

          FOUND   440415 inf (10)
	              , 0.7555
	              I 0.7555
	            FOR 0.7555
	       FOXHOUND 0.5413
	            UND 0.5413
	       ZFOUNDRY 0.5413
	           FUND 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

         during   440421   1 (8)
	             of 0.5413
	         during 0.5413
	         dubius 0.5413
	              a 0.5244
	             on 0.5244
	              , 0.2816
	           </S> 0.1825
	              - 0.0857

        nesting   440478   1 (7)
	              a 0.5413
	        Listing 0.5413
	       Swingers 0.5413
	              , 0.5413
	        nesting 0.5413
	              } 0.1229
	           </S> 0.0857

            70°   440522   4 (9)
	              , 0.7555
	              I 0.7555
	            the 0.7555
	             us 0.5413
	           70.5 0.5413
	              0 0.5413
	            270 0.5413
	              " 0.2816
	           </S> 0.0857

              ,   440525   1 (4)
	              , 0.5413
	             us 0.5413
	            the 0.5413
	           </S> 0.5413

      sparingly   440560   1 (9)
	             be 0.5413
	      sparingly 0.5413
	             us 0.5413
	          still 0.5413
	           such 0.5097
	              a 0.2816
	           </S> 0.2816
	              . 0.0857
	              , 0.0857

          South   440719   1 (9)
	          South 0.5413
	              s 0.5413
	           </S> 0.5413
	              a 0.5413
	            and 0.5413
	              ( 0.5413
	           self 0.5413
	           Site 0.5413
	            the 0.0857

      IMongolia   440730   1 (10)
	       Mongolia 0.7555
	        sources 0.5413
	              a 0.5244
	         London 0.5097
	           Asia 0.5097
	              , 0.1825
	              - 0.1825
	           </S> 0.1825
	          coast 0.1825
	             of 0.0857

      Turkestan   440741   1 (8)
	              a 0.5413
	            and 0.5413
	          women 0.5413
	         photos 0.5413
	           </S> 0.5413
	      Turkestan 0.5413
	          these 0.2816
	            the 0.0857

             In   440763   1 (6)
	              , 0.7555
	             In 0.7555
	             us 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

     Throughout   441022 inf (9)
	          There 0.7555
	              , 0.7555
	              a 0.5413
	     throughout 0.5413
	     Throughput 0.5413
	              s 0.5413
	            get 0.5413
	              " 0.2816
	           </S> 0.0857

              -   441067   4 (6)
	             us 0.5413
	            the 0.5244
	             of 0.5097
	              - 0.1825
	              , 0.1825
	           </S> 0.0857

    \^excepting   441110 inf (12)
	      excepting 0.7555
	       terrible 0.5413
	    participate 0.5413
	     trademarks 0.5413
	    unexcepting 0.5413
	       services 0.2816
	    information 0.2816
	              , 0.2656
	              a 0.1825
	           </S> 0.1825
	             to 0.1825
	            the 0.0857

           have   441195   1 (8)
	           have 0.7555
	           lava 0.5413
	              a 0.5413
	            has 0.5244
	              " 0.5097
	              - 0.2816
	              , 0.1825
	           </S> 0.0857

             A.   441256 inf (9)
	              . 0.5413
	             AM 0.5244
	             us 0.5244
	            All 0.5244
	              , 0.2816
	            the 0.1825
	           </S> 0.1825
	              " 0.1825
	              a 0.0857

       dulcivox   441259 inf (12)
	       dulciolo 0.5413
	           name 0.5413
	          whole 0.5413
	       dulcitol 0.5413
	        mulcivo 0.5413
	             as 0.5413
	              a 0.5413
	         dulcio 0.5413
	           does 0.5413
	          <UNK> 0.2816
	              , 0.1825
	           </S> 0.0857

             A.   441269   1 (7)
	              a 0.5413
	            and 0.5413
	           </S> 0.5413
	            All 0.5413
	             A. 0.5413
	           took 0.5413
	            the 0.0857

    caiitarclla   441285 inf (12)
	            all 0.5413
	        Maritan 0.5413
	          alert 0.5413
	        contact 0.5413
	              a 0.5413
	             it 0.5413
	    Paccagnella 0.5413
	         Stella 0.5413
	             at 0.5413
	          <UNK> 0.2816
	              , 0.1825
	           </S> 0.0857

             A.   441298   1 (6)
	              a 0.5413
	            and 0.5413
	           </S> 0.5413
	            All 0.5413
	             A. 0.5413
	            the 0.0857

         liopus   441301 inf (12)
	          lopus 0.5413
	      Scoliopus 0.5413
	           your 0.5413
	         lippus 0.5413
	              a 0.5413
	           opus 0.5413
	         pilous 0.5413
	        Oriolus 0.5413
	          <UNK> 0.1825
	            Yes 0.1825
	              , 0.0857
	           </S> 0.0857

             A.   441309   1 (6)
	              a 0.5413
	            and 0.5413
	           </S> 0.5413
	            All 0.5413
	             A. 0.5413
	            the 0.0857

     blakistoni   441312 inf (11)
	     Blakistons 0.5413
	    Blakistonia 0.5413
	      Blakiston 0.5413
	   blacklistons 0.5413
	        listoni 0.5413
	              a 0.5413
	           also 0.5413
	            Yes 0.5097
	          <UNK> 0.2816
	              , 0.1825
	           </S> 0.0857

             A.   441326   1 (6)
	              a 0.5413
	            and 0.5413
	           </S> 0.5413
	            All 0.5413
	             A. 0.5413
	            the 0.0857

      giilgiila   441329 inf (7)
	           will 0.5413
	       gingilla 0.5413
	              a 0.5413
	            Yes 0.5097
	          <UNK> 0.2816
	              , 0.1825
	           </S> 0.0857

             A.   441340   1 (6)
	              a 0.5413
	            and 0.5413
	           </S> 0.5413
	            All 0.5413
	             A. 0.5413
	            the 0.0857

        axlivox   441357 inf (10)
	        altivos 0.5413
	           also 0.5413
	         axlike 0.5413
	           livo 0.5413
	         alivio 0.5413
	          axlir 0.5413
	              I 0.2816
	          <UNK> 0.1825
	           </S> 0.0857
	              , 0.0857

             A.   441366   1 (6)
	              a 0.5413
	            and 0.5413
	           </S> 0.5413
	            All 0.5413
	             A. 0.5413
	            the 0.0857

      ivai/crsi   441369 inf (8)
	              a 0.5413
	       vaincrai 0.5413
	       vaikersi 0.5413
	          first 0.5413
	            Yes 0.5097
	          <UNK> 0.2816
	              , 0.1825
	           </S> 0.0857

           arid   441380   1 (9)
	            and 0.5413
	           </S> 0.5413
	              " 0.5413
	              I 0.5413
	            are 0.5413
	           arid 0.5413
	            arz 0.5413
	           with 0.1825
	            the 0.0857

             A.   441385 inf (9)
	            All 0.5413
	             AM 0.5413
	             us 0.5413
	              a 0.5244
	             to 0.2816
	              . 0.2816
	           </S> 0.1825
	              , 0.1825
	            and 0.0857

           sala   441388   2 (6)
	           said 0.7555
	           sala 0.5413
	              I 0.2253
	            Yes 0.1825
	              , 0.0857
	           </S> 0.0857

            but   441395   1 (6)
	              , 0.5413
	            but 0.5413
	              a 0.5413
	             us 0.5413
	              } 0.1229
	           </S> 0.0857

    intergrades   441407   1 (7)
	    intergrades 0.7555
	         people 0.1585
	              a 0.1229
	    information 0.1229
	              , 0.0857
	           </S> 0.0857
	             of 0.0655

          exist   441419   1 (7)
	             us 0.5413
	              a 0.5413
	           list 0.5413
	          exist 0.5413
	              , 0.5244
	           </S> 0.5244
	           with 0.0857

 Ornithologists   441430   1 (8)
	 Ornithologists 0.5413
	          those 0.5097
	             is 0.1825
	           they 0.1825
	              , 0.1825
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

      generally   441445   2 (9)
	             is 0.7555
	              a 0.5413
	            you 0.5413
	      generally 0.5413
	         manual 0.5413
	        General 0.5413
	              , 0.5244
	           </S> 0.2816
	              ' 0.0857

            Our   441512   1 (8)
	              , 0.7555
	            Our 0.7555
	            our 0.5413
	             us 0.5413
	              a 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

            Sky   441516   1 (9)
	            See 0.7555
	            Sky 0.7555
	           know 0.5413
	              E 0.5413
	              e 0.5413
	              . 0.5413
	            Pyi 0.5413
	           </S> 0.2816
	          Price 0.0857

              -   441519   4 (7)
	             us 0.5413
	           Fire 0.5413
	            the 0.5244
	              : 0.1825
	              , 0.1825
	              - 0.1825
	           </S> 0.0857

         golden   441565   1 (6)
	         golden 0.7555
	           good 0.7555
	              a 0.5244
	              , 0.1825
	           </S> 0.1825
	             of 0.0857

        centres   441593   1 (10)
	        centres 0.5413
	           Back 0.5413
	              a 0.5413
	        control 0.5413
	           view 0.5413
	        cinerea 0.5413
	           </S> 0.5097
	              . 0.2656
	              , 0.1825
	              - 0.0857

          edges   441619   1 (7)
	          edges 0.5413
	           even 0.5413
	              a 0.5413
	              , 0.5413
	          Pales 0.5413
	              } 0.1229
	           </S> 0.0857

          paler   441649   1 (10)
	          paler 0.7555
	              - 0.7555
	           page 0.5413
	          Pales 0.5413
	              ) 0.5244
	          white 0.5244
	              a 0.5244
	           </S> 0.2816
	              , 0.0857
	              . 0.0857

            the   441657   1 (5)
	             us 0.5413
	            the 0.5413
	              , 0.5413
	              } 0.1229
	           </S> 0.0857

              -   441666   6 (9)
	             us 0.7555
	             's 0.5413
	            the 0.5244
	             of 0.5244
	              , 0.2816
	           </S> 0.1825
	           edge 0.1825
	              - 0.1825
	          space 0.0857

              -   441677   4 (8)
	             us 0.7555
	            all 0.5244
	            the 0.5097
	           </S> 0.1825
	             of 0.1825
	              - 0.1825
	              , 0.1825
	              . 0.0857

       blackish   441717   1 (12)
	       blackish 0.7555
	              , 0.5413
	        winning 0.5413
	            red 0.5413
	              . 0.5413
	              a 0.5413
	          place 0.2253
	    significant 0.1825
	            few 0.1825
	          major 0.1825
	           </S> 0.0857
	            new 0.0655

         streak   441726   1 (8)
	         streak 0.7555
	              a 0.5413
	             of 0.5413
	          store 0.5413
	         impact 0.5413
	           </S> 0.5097
	              , 0.1825
	              - 0.0857

            the   441751   1 (5)
	              , 0.5413
	            the 0.5413
	             us 0.5413
	              } 0.1229
	           </S> 0.0857

        sccuiid   441755 inf (12)
	        sciurid 0.7555
	          white 0.5413
	           cuii 0.5413
	          scuid 0.5413
	           text 0.5413
	        scuirid 0.5413
	        securis 0.5413
	              - 0.2253
	         school 0.2253
	        process 0.1825
	           same 0.1825
	           </S> 0.0857

        feather   441763   1 (7)
	        feather 0.5413
	              , 0.5413
	           </S> 0.5413
	             of 0.5413
	            and 0.5413
	              a 0.5413
	          other 0.5413

          white   441771   1 (8)
	           sits 0.7555
	          white 0.7555
	          while 0.7555
	              a 0.5244
	            boa 0.2253
	              . 0.1825
	           </S> 0.1825
	              , 0.0857

         inider   441801 inf (11)
	        insider 0.7555
	         Snider 0.7555
	       Miniderm 0.5413
	         indier 0.5413
	            QML 0.5413
	              , 0.5413
	         United 0.2816
	              a 0.2816
	          <UNK> 0.1825
	            The 0.1825
	           </S> 0.0857

          parts   441808   1 (7)
	          parts 0.5413
	          party 0.5413
	              a 0.5413
	              : 0.5413
	          parva 0.5413
	              , 0.5413
	           </S> 0.5413

        buffish   441814   1 (9)
	            RHA 0.5413
	            off 0.5413
	        buffish 0.5413
	              a 0.5244
	            but 0.5244
	              : 0.2816
	           </S> 0.2253
	              , 0.1825
	             of 0.0857

          witli   441850  12 (12)
	              a 0.7555
	         witali 0.5413
	           wilt 0.5413
	        witling 0.5413
	          Titli 0.5413
	          witai 0.5413
	           wili 0.5413
	          wolfi 0.5413
	              . 0.5097
	           </S> 0.5097
	              , 0.2816
	           with 0.0857

l:)hickish-br(iwu   441856 inf (7)
	            his 0.7555
	          which 0.7555
	       brownish 0.5413
	              , 0.5413
	           </S> 0.5244
	              a 0.2816
	            the 0.0857

             on   441874   1 (3)
	             us 0.5413
	             on 0.5413
	            the 0.5413

           tlie   441877  10 (10)
	           alba 0.7555
	           trie 0.7555
	          tliet 0.5413
	         breast 0.5413
	           tile 0.5244
	              , 0.2816
	           </S> 0.2253
	              a 0.1825
	           this 0.1825
	            the 0.0857

         throat   441882   2 (9)
	              , 0.7555
	           site 0.5413
	         throat 0.5413
	              a 0.5413
	   augmentation 0.5413
	          torax 0.5413
	           that 0.5413
	           </S> 0.1825
	          <UNK> 0.0857

           bill   441909   1 (8)
	              a 0.5413
	              , 0.5413
	           will 0.5413
	            and 0.5413
	           bill 0.5413
	            cia 0.5413
	              } 0.1229
	           </S> 0.0857

           dark   441914   1 (8)
	            day 0.7555
	           dark 0.7555
	            arz 0.5413
	              a 0.5097
	           </S> 0.1825
	              , 0.1825
	            and 0.1825
	              . 0.0857

           feet   441946   1 (7)
	           free 0.5413
	              a 0.5413
	              , 0.5413
	           feet 0.5413
	              ) 0.5097
	              } 0.1229
	           </S> 0.0857

              j   441951 inf (9)
	             us 0.7555
	             dj 0.7555
	          state 0.5413
	             ja 0.5413
	          water 0.5097
	            the 0.5097
	           </S> 0.1825
	              . 0.0857
	              , 0.0857

              -   441952   3 (6)
	             us 0.7555
	            the 0.5244
	              - 0.2656
	              , 0.2253
	              ) 0.1825
	           </S> 0.0857

       ellowish   441953 inf (9)
	      yellowish 0.7555
	           with 0.5413
	              s 0.5413
	           LECT 0.5413
	              . 0.2816
	             of 0.2253
	              a 0.2253
	             to 0.1825
	           </S> 0.0857

              -   441961   1 (5)
	              , 0.5413
	             us 0.5413
	              - 0.5413
	           </S> 0.5413
	            the 0.5413

           iris   441970   1 (7)
	              a 0.5413
	             is 0.5413
	              , 0.5413
	           iris 0.5413
	             iu 0.5413
	              } 0.1229
	           </S> 0.0857

          hazel   441975   1 (7)
	           have 0.7555
	          hazel 0.7555
	           here 0.7555
	          Pales 0.5413
	              ) 0.2816
	           </S> 0.1825
	              , 0.0857

              .   441980   3 (6)
	            the 0.7555
	             us 0.5413
	              . 0.2816
	           </S> 0.2656
	              , 0.1825
	           eyes 0.0857

          d(jes   442053   5 (11)
	            jes 0.7555
	          Pales 0.5413
	          dejes 0.5413
	            did 0.2816
	           does 0.2656
	            can 0.2253
	             do 0.2253
	              a 0.1825
	              , 0.1825
	           </S> 0.1825
	              I 0.0857

        plumage   442073   1 (9)
	        plumage 0.7555
	             us 0.5413
	         thread 0.5413
	         please 0.5244
	              , 0.2816
	           </S> 0.1825
	              a 0.1825
	           this 0.1825
	            the 0.0857

              :   442081   2 (6)
	             us 0.5413
	            the 0.5244
	              : 0.5244
	           </S> 0.2656
	             of 0.1825
	              , 0.0857

         3-oung   442083   3 (8)
	            oun 0.7555
	          goung 0.5413
	          found 0.5244
	          young 0.5244
	              . 0.2816
	              a 0.2816
	            The 0.1825
	           </S> 0.0857

          birds   442090   1 (8)
	              , 0.5413
	          first 0.5413
	           </S> 0.5413
	          birds 0.5413
	              a 0.5413
	            you 0.5413
	              : 0.5413
	          Parus 0.5413

           buff   442107   1 (9)
	           buff 0.7555
	          rufus 0.5413
	            but 0.5244
	             to 0.5097
	              a 0.5097
	     discretion 0.5097
	           </S> 0.2253
	              , 0.1825
	          range 0.0857

           tips   442112   1 (11)
	           tips 0.7555
	          icons 0.5413
	          cover 0.5413
	            cia 0.5413
	             of 0.5244
	             as 0.5244
	              a 0.5244
	           this 0.5244
	             to 0.2816
	           </S> 0.2253
	              , 0.0857

          moult   442151   1 (8)
	          moult 0.7555
	          maura 0.5413
	          would 0.5244
	              a 0.5244
	           </S> 0.1825
	             of 0.1825
	              , 0.0857
	              . 0.0857

           both   442157   3 (6)
	            but 0.7555
	              a 0.7555
	           both 0.5413
	           </S> 0.2253
	              . 0.0857
	              , 0.0655

         tawn}^   442177   1 (10)
	          tawny 0.7555
	     interested 0.5413
	           tawn 0.5413
	              a 0.5097
	        results 0.2816
	             to 0.2656
	         likely 0.2253
	              , 0.1825
	           </S> 0.1825
	           than 0.0857

      colouring   442187   1 (9)
	      colouring 0.7555
	             us 0.5413
	       children 0.5413
	              , 0.2816
	          other 0.2816
	          stock 0.2816
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

           bird   442253   1 (9)
	           bird 0.7555
	              a 0.5413
	            cia 0.5413
	             of 0.5413
	       Websites 0.5413
	          right 0.5413
	             by 0.5097
	           </S> 0.1825
	              , 0.0857

       primar}'   442402   1 (11)
	        primary 0.7555
	         primar 0.5413
	             of 0.5413
	       primaria 0.5413
	        primari 0.5413
	              a 0.5097
	        process 0.5097
	           </S> 0.2656
	              , 0.1825
	           time 0.1825
	              - 0.0857

        touches   442411   1 (8)
	             of 0.5413
	           term 0.5413
	           they 0.5413
	             in 0.5413
	           </S> 0.5413
	              , 0.5413
	              a 0.5413
	        touches 0.5413

    distinctl}-   442488   1 (8)
	     distinctly 0.7555
	         little 0.5413
	           much 0.5413
	           more 0.2816
	             no 0.2816
	              , 0.1825
	           </S> 0.1825
	              a 0.0857

         longer   442500   1 (8)
	              a 0.5413
	         higher 0.5413
	           long 0.5413
	           more 0.5413
	              , 0.5413
	         longer 0.5413
	             to 0.5413
	           </S> 0.5413

           se.\   442627 inf (11)
	      direction 0.5413
	           sala 0.5413
	             se 0.5413
	            see 0.5244
	              a 0.2816
	             of 0.2656
	           part 0.1825
	              . 0.1825
	           </S> 0.1825
	              , 0.0857
	             is 0.0857

              .   442631   1 (6)
	            but 0.5413
	            the 0.5413
	             us 0.5413
	              . 0.5413
	              , 0.5413
	           </S> 0.5413

           thus   442675   1 (9)
	           thus 0.7555
	         Anthus 0.5413
	           this 0.5244
	              a 0.5244
	           have 0.2816
	           </S> 0.1825
	              . 0.1825
	            and 0.1825
	              , 0.0857

       catchers   442742   1 (10)
	       catchers 0.7555
	             us 0.5413
	              , 0.5413
	            the 0.5413
	              a 0.5413
	            top 0.1825
	          world 0.1825
	         public 0.1825
	          other 0.1825
	           </S> 0.0857

      forwarded   442811   1 (7)
	      forwarded 0.7555
	       provided 0.5413
	             to 0.2816
	           used 0.1825
	              a 0.1825
	           </S> 0.1825
	              , 0.0857

            b}-   442821   6 (8)
	              - 0.5244
	             us 0.5244
	           </S> 0.5097
	              a 0.5097
	              , 0.5097
	              . 0.2816
	             by 0.2816
	             to 0.0857

    experienced   442825   1 (6)
	             us 0.5413
	              , 0.5413
	              a 0.5413
	    experienced 0.5413
	           </S> 0.5413
	            the 0.5413

     poulterers   442907   1 (10)
	     poulterers 0.7555
	            the 0.5413
	             us 0.5413
	              , 0.5413
	              a 0.5413
	          world 0.1825
	            top 0.1825
	         public 0.1825
	       Internet 0.1825
	           </S> 0.0857

       Although   442920   1 (5)
	              I 0.7555
	              , 0.7555
	       Although 0.7555
	              " 0.2816
	           </S> 0.0857

       abundant   442929   1 (7)
	       abundant 0.7555
	            any 0.5244
	            not 0.2816
	           </S> 0.2816
	              , 0.2656
	              I 0.1825
	            the 0.0857

         enough   442938   3 (8)
	             is 0.5413
	              a 0.5413
	         enough 0.5244
	        through 0.5244
	    information 0.5097
	           </S> 0.2253
	              , 0.1825
	             in 0.0857

          downs   442967   1 (10)
	          downs 0.7555
	           </S> 0.5413
	      therefore 0.5413
	          <UNK> 0.5413
	   honeymooners 0.5413
	              - 0.5413
	              a 0.5413
	            and 0.5413
	           does 0.2816
	            the 0.0857

      certainly   443022   2 (8)
	    Calandrella 0.7555
	              a 0.5413
	        certain 0.5413
	      certainly 0.5413
	              " 0.5244
	              - 0.5244
	              , 0.1825
	           </S> 0.0857

        prefers   443032   1 (7)
	        prefers 0.7555
	        present 0.5244
	           </S> 0.2816
	              , 0.1825
	             do 0.1825
	              a 0.1825
	            not 0.0857

         arable   443040   2 (9)
	            are 0.7555
	             us 0.5413
	              I 0.5413
	         arable 0.5413
	              , 0.5244
	           </S> 0.5244
	              a 0.5097
	             to 0.2656
	         PayPal 0.0857

          shuns   443131   1 (10)
	          shuns 0.7555
	              s 0.5413
	            she 0.5244
	              : 0.2816
	              a 0.2253
	           </S> 0.1825
	            was 0.1825
	              , 0.1825
	             's 0.1825
	             is 0.0857

        thickly   443148   1 (7)
	        thickly 0.7555
	          think 0.7555
	             us 0.5097
	           </S> 0.1825
	              a 0.1825
	             to 0.0857
	              , 0.0857

    plantatious   443203   7 (13)
	    destination 0.5413
	           said 0.5413
	       children 0.5413
	 plantationibus 0.5413
	        servile 0.5413
	      plantatio 0.5413
	    plantations 0.5244
	    information 0.2816
	          there 0.2656
	              , 0.2253
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

            but   443216   1 (9)
	              a 0.5413
	            but 0.5413
	            and 0.5413
	              ( 0.5413
	           </S> 0.5413
	              s 0.5413
	          which 0.1825
	             it 0.1825
	            the 0.0857

        country   443255   2 (7)
	             us 0.5413
	        country 0.5244
	         County 0.5244
	              , 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

      Excepting   443276 inf (7)
	              , 0.7555
	              a 0.5413
	      excepting 0.5413
	      Expecting 0.5413
	      Exception 0.5413
	              " 0.2816
	           </S> 0.0857

     iudividual   443313   6 (12)
	     University 0.5413
	          first 0.5413
	       National 0.5413
	              a 0.5413
	       dividual 0.5413
	     individual 0.5097
	          major 0.2816
	        edition 0.2816
	            one 0.1825
	           </S> 0.1825
	              , 0.1825
	              . 0.0857

             of   443324   1 (7)
	           with 0.5413
	              . 0.5413
	           </S> 0.5413
	             us 0.5413
	              , 0.5413
	             of 0.5413
	           pass 0.5413

             it   443421   1 (6)
	              , 0.5413
	              a 0.5413
	             iu 0.5413
	             it 0.5413
	              } 0.1229
	           </S> 0.0857

          ver3'   443525   4 (9)
	            ver 0.7555
	          verve 0.7555
	            why 0.2816
	           very 0.2253
	              , 0.1825
	            not 0.1825
	            the 0.1825
	           </S> 0.1825
	              a 0.0857

 characteristic   443531   1 (7)
	              , 0.5413
	           </S> 0.5413
	              a 0.5413
	             we 0.5413
	 characteristic 0.5413
	             to 0.5413
	           case 0.5413

              .   443545   3 (6)
	             us 0.5413
	            the 0.5244
	           </S> 0.2816
	              , 0.2816
	              . 0.2816
	             of 0.0857

         always   443571   1 (9)
	            all 0.5413
	            and 0.5413
	           </S> 0.5413
	              I 0.5413
	              ( 0.5413
	         always 0.5413
	           alba 0.5413
	        finding 0.5413
	            the 0.0857

      commences   443578   1 (9)
	      commences 0.7555
	        contact 0.5413
	        returns 0.5413
	            the 0.1825
	              , 0.1825
	           </S> 0.1825
	              a 0.1825
	            had 0.1825
	           been 0.0857

       hovering   443631   1 (11)
	       hovering 0.7555
	           live 0.5413
	          shape 0.5413
	           have 0.5413
	             us 0.2816
	              - 0.2816
	           </S> 0.2816
	            the 0.1825
	              a 0.1825
	              , 0.1825
	             to 0.0857

         action   443640   1 (10)
	         action 0.7555
	              I 0.5413
	              ) 0.5244
	           </S> 0.5097
	            and 0.5097
	       overhead 0.5097
	              , 0.2816
	          about 0.2816
	              . 0.2816
	           over 0.0857

             at   443719   1 (6)
	             as 0.5413
	              , 0.5413
	             at 0.5413
	            arz 0.5413
	              } 0.1229
	           </S> 0.0857

     obliquel}-   443743   1 (9)
	            not 0.5413
	        oblique 0.5413
	             us 0.5413
	      obliquely 0.5413
	           only 0.5244
	              a 0.5097
	           </S> 0.1825
	              , 0.1825
	             to 0.0857

            and   443754   1 (5)
	              , 0.5413
	           </S> 0.5413
	            and 0.5413
	            the 0.5413
	            arz 0.5413

       rapidl}'   443758   4 (8)
	    destination 0.5413
	   subsidiaries 0.5413
	           said 0.5413
	        rapidly 0.5244
	              , 0.2253
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

       abruptly   443850   2 (8)
	          about 0.7555
	       abruptly 0.5413
	             us 0.5413
	              I 0.5413
	           </S> 0.1825
	             to 0.1825
	              , 0.1825
	             of 0.0857

        perhaps   443859   1 (7)
	        perhaps 0.5413
	             BP 0.5413
	              a 0.5413
	          place 0.5413
	           </S> 0.2816
	              . 0.0857
	              , 0.0857

       flutters   444008   1 (9)
	       flutters 0.7555
	             us 0.5413
	          other 0.5413
	              a 0.2253
	           </S> 0.1825
	             's 0.1825
	              , 0.1825
	            was 0.1825
	             is 0.0857

           each   444055   1 (6)
	              , 0.5413
	           each 0.5413
	           lava 0.5413
	              a 0.5413
	              } 0.1229
	           </S> 0.0857

         shrill   444100   2 (10)
	          shall 0.7555
	         shrill 0.5413
	              s 0.5413
	          order 0.5097
	             of 0.2816
	           </S> 0.1825
	              a 0.1825
	        touches 0.1825
	              , 0.1825
	            the 0.0857

              '   444107 inf (6)
	             us 0.5413
	            the 0.5244
	              ' 0.5244
	           </S> 0.5097
	              . 0.1825
	              , 0.0857

          ivhcc   444108 inf (13)
	            icc 0.7555
	          voice 0.5413
	          Avich 0.5413
	           vicc 0.5413
	           Ahcc 0.5413
	          ivica 0.5413
	              a 0.2816
	              ) 0.1825
	          <UNK> 0.1825
	              s 0.1825
	             in 0.1825
	           </S> 0.0857
	              , 0.0655

              ,   444113   1 (6)
	           </S> 0.5413
	            the 0.5413
	              ' 0.5413
	              , 0.5413
	             us 0.5413
	          Night 0.5413

          tvhee   444115 inf (11)
	            tvh 0.7555
	          tehee 0.7555
	              , 0.5413
	          <UNK> 0.5413
	      therefore 0.5413
	          vehet 0.5413
	             L. 0.5413
	           thee 0.5244
	              i 0.2816
	           they 0.1825
	            the 0.0857

          w/icc   444122 inf (9)
	            icc 0.7555
	           wici 0.5413
	          <UNK> 0.5413
	           Pica 0.5413
	          wicca 0.5244
	              i 0.2816
	            one 0.2253
	          which 0.1825
	            the 0.0857

             of   444128   1 (4)
	              , 0.5413
	           </S> 0.5413
	             us 0.5413
	             of 0.5413

     generall}-   444240   7 (8)
	       generall 0.7555
	              a 0.5413
	              ( 0.5413
	            and 0.5413
	            all 0.5413
	           </S> 0.5413
	      generally 0.5097
	            the 0.0857

        amongst   444251   1 (4)
	              I 0.5413
	              , 0.5413
	        amongst 0.5413
	           </S> 0.5413

        growing   444259   1 (8)
	         growth 0.7555
	        growing 0.7555
	              , 0.5244
	           </S> 0.2816
	             us 0.2816
	              a 0.2816
	          other 0.1825
	            the 0.0857

      sheltered   444287   1 (9)
	      sheltered 0.5413
	             us 0.5413
	           work 0.5413
	          based 0.5413
	          state 0.5244
	              , 0.5097
	           </S> 0.2816
	             to 0.1825
	              a 0.0857

            b}'   444309   7 (9)
	             us 0.7555
	              ' 0.5097
	              a 0.5097
	            the 0.2816
	            and 0.2253
	           </S> 0.2253
	             by 0.1825
	              , 0.1825
	             of 0.0857

             an   444313   1 (6)
	             an 0.5413
	           </S> 0.5413
	              , 0.5413
	              I 0.5413
	            the 0.5413
	            arz 0.5413

           tuft   444328   3 (12)
	           that 0.7555
	             of 0.7555
	           tuft 0.5413
	         source 0.5413
	          rufus 0.5413
	          ledge 0.5244
	           part 0.5244
	              a 0.5097
	              , 0.5097
	           </S> 0.2816
	           rock 0.2816
	            the 0.0857

       whatever   444404   1 (8)
	     whatsoever 0.7555
	       whatever 0.7555
	          water 0.7555
	             us 0.5413
	              a 0.5097
	              . 0.1825
	           </S> 0.1825
	              , 0.0857

              a   444415   1 (6)
	             us 0.5413
	              a 0.5413
	              , 0.5413
	            the 0.5413
	              } 0.1229
	           </S> 0.0857

           nest   444426   2 (11)
	            new 0.7555
	             us 0.5413
	           nest 0.5413
	              a 0.5244
	           verb 0.5097
	        pronoun 0.5097
	         vision 0.2816
	             of 0.2816
	           </S> 0.1825
	            and 0.0857
	              , 0.0655

         formed   444450   1 (10)
	         formed 0.7555
	     University 0.5413
	             us 0.5413
	             me 0.5413
	              a 0.5244
	            off 0.2816
	            for 0.2656
	              , 0.1825
	           </S> 0.1825
	              . 0.0857

          bents   444630   1 (8)
	          bents 0.7555
	              a 0.5413
	           best 0.5413
	          steel 0.5413
	              . 0.1825
	           </S> 0.1825
	              , 0.0857
	             up 0.0857

           dead   444640   2 (7)
	            cia 0.7555
	           year 0.5097
	           dead 0.5097
	              , 0.1825
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

         number   444696   1 (7)
	         number 0.7555
	          price 0.5413
	              a 0.5097
	             of 0.2816
	            are 0.1825
	           </S> 0.1825
	              , 0.0857

      incubated   444755   1 (9)
	      incubated 0.5413
	        include 0.5413
	             us 0.5097
	           here 0.2253
	              , 0.1825
	           </S> 0.1825
	              a 0.1825
	             to 0.1825
	             in 0.0857

     represents   444816   1 (9)
	     represents 0.7555
	             by 0.5413
	      different 0.5413
	              s 0.5413
	              a 0.2816
	           </S> 0.1825
	              , 0.1825
	            had 0.1825
	              . 0.0857

        huffish   444904 inf (9)
	        huffish 0.7555
	              - 0.5413
	          silty 0.5413
	           </S> 0.5413
	              a 0.5413
	            and 0.5413
	            his 0.2816
	             or 0.1825
	            the 0.0857

           clay   444912   2 (7)
	           </S> 0.7555
	           clay 0.5413
	            red 0.5413
	              a 0.5413
	            cia 0.5413
	            can 0.5413
	              , 0.0857

      generally   444949   1 (5)
	      generally 0.5413
	              a 0.5413
	              , 0.5413
	              } 0.1229
	           </S> 0.0857

        densely   444959   1 (6)
	        densely 0.7555
	          sense 0.7555
	           </S> 0.1825
	              a 0.1825
	             in 0.1825
	              , 0.0857

        mottled   444967   1 (8)
	        mottled 0.7555
	              a 0.5413
	         little 0.5413
	              , 0.5244
	             to 0.5244
	         packed 0.2253
	           </S> 0.1294
	      populated 0.0857

         smok}'   444989 inf (11)
	           smok 0.7555
	          until 0.5413
	         canola 0.5413
	      vegetable 0.5413
	          smoko 0.5413
	          smoke 0.5244
	           some 0.2253
	              a 0.1825
	              , 0.1825
	            the 0.0857
	           </S> 0.0655

           grey   444996   1 (9)
	              , 0.5413
	           </S> 0.5413
	           grey 0.5413
	           free 0.5413
	              . 0.5413
	              a 0.5413
	              e 0.5413
	         golden 0.5413
	            arz 0.5413

           zone   445061   1 (9)
	             of 0.7555
	           zone 0.7555
	           look 0.7555
	            one 0.7555
	              a 0.7555
	         corone 0.5413
	           </S> 0.2816
	              , 0.1825
	           than 0.0857

      sometimes   445118   1 (6)
	      sometimes 0.5413
	              , 0.5413
	              a 0.5413
	       November 0.5413
	              } 0.1229
	           </S> 0.0857

        streaks   445154   1 (11)
	        streaks 0.5413
	             us 0.5413
	           that 0.5413
	              a 0.5244
	          sites 0.5097
	           here 0.5097
	           </S> 0.1825
	              . 0.1825
	         around 0.1825
	              , 0.1825
	     throughout 0.0857

            egg   445207   2 (10)
	            the 0.7555
	             us 0.5413
	            egg 0.5413
	      criminals 0.5413
	              a 0.5413
	          thing 0.5413
	            get 0.5413
	           </S> 0.1825
	              , 0.1825
	       behavior 0.0857

         whicli   445211   4 (7)
	        Chiclid 0.5413
	         whilie 0.5413
	         chwili 0.5413
	          which 0.5244
	              a 0.5097
	           </S> 0.1825
	              , 0.0857

              I   445218   1 (6)
	              I 0.5413
	            you 0.5413
	             us 0.5413
	              , 0.5244
	            the 0.0857
	           </S> 0.0857

           lent   445238   1 (10)
	           lava 0.7555
	           lent 0.7555
	           next 0.5244
	           been 0.5244
	              a 0.5097
	              ) 0.2816
	          thing 0.2816
	           </S> 0.2656
	              , 0.1825
	             of 0.0857

             XI   445288   3 (9)
	              , 0.7555
	             In 0.7555
	              a 0.5413
	              s 0.5413
	            rho 0.5413
	             XI 0.5413
	              " 0.2816
	              ) 0.2816
	           </S> 0.0857

           fig.   445292  10 (14)
	           figi 0.7555
	              s 0.5413
	              , 0.5413
	              a 0.5413
	        section 0.5413
	            XII 0.5413
	              y 0.5413
	              § 0.5413
	           </S> 0.5413
	            fig 0.5244
	           figs 0.5244
	             p. 0.2816
	           find 0.2816
	            the 0.0857

        Bunting   445363   2 (10)
	         during 0.7555
	             of 0.5413
	              a 0.5413
	         States 0.5413
	        Bunting 0.5413
	              . 0.2656
	           Lisp 0.1825
	           </S> 0.1825
	              , 0.1825
	          Stock 0.0857

             it   445373   1 (6)
	              a 0.5413
	             iu 0.5413
	             it 0.5413
	              , 0.5413
	              } 0.1229
	           </S> 0.0857

         sieuua   445441 inf (10)
	          sieur 0.5413
	         images 0.5413
	           seua 0.5413
	         seguia 0.5413
	              , 0.5097
	            six 0.5097
	           </S> 0.2816
	             it 0.2816
	              a 0.1825
	            the 0.0857

            and   445448   1 (6)
	            and 0.5413
	              , 0.5413
	           body 0.5413
	              . 0.5413
	           </S> 0.5413
	            arz 0.5413

        macular   445461   1 (10)
	           east 0.5413
	        macular 0.5413
	              a 0.5413
	            may 0.5413
	          maura 0.5413
	           </S> 0.2816
	              , 0.2816
	              . 0.2816
	           more 0.2253
	            out 0.0857

          along   445469   2 (9)
	              . 0.7555
	             of 0.5413
	           also 0.5413
	              I 0.5413
	          along 0.5413
	           alba 0.5413
	              , 0.5244
	           </S> 0.5097
	   degeneration 0.0857

              -   445513   4 (6)
	             us 0.5413
	            the 0.5244
	             of 0.5097
	              - 0.1825
	              , 0.1825
	           </S> 0.0857

          pairs   445519   1 (10)
	           part 0.5413
	          pairs 0.5413
	          parva 0.5413
	              a 0.5413
	       invasion 0.5413
	     Distillery 0.5244
	              " 0.5097
	              - 0.2816
	              , 0.1825
	           </S> 0.0857

   nidification   445535   1 (10)
	   nidification 0.7555
	           2005 0.5413
	            and 0.5413
	              , 0.5413
	              a 0.5413
	            but 0.5413
	           </S> 0.5413
	            not 0.1825
	            who 0.1825
	            the 0.0857

           does   445548   1 (7)
	             do 0.5413
	              a 0.5413
	             us 0.5413
	           does 0.5413
	           </S> 0.5244
	              , 0.2253
	             of 0.0857

          nests   445587   7 (10)
	           2005 0.5413
	              a 0.5413
	            and 0.5413
	              , 0.5413
	         mental 0.5413
	           </S> 0.5413
	          nests 0.5244
	            new 0.2816
	             is 0.1825
	            the 0.0857

          ]\Iay   445632 inf (9)
	             ay 0.7555
	           Itay 0.7555
	            may 0.5244
	              , 0.2816
	             it 0.2816
	             us 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

              ;   445638   1 (7)
	            the 0.5413
	              ; 0.5413
	              , 0.5413
	          first 0.5413
	           </S> 0.5413
	              . 0.5413
	             us 0.5413

            two   445640   1 (6)
	            top 0.5413
	            two 0.5413
	             us 0.5413
	              ) 0.5097
	              } 0.1229
	           </S> 0.0857

           eggs   445712   1 (8)
	           eggs 0.5244
	              , 0.2816
	           each 0.2816
	             us 0.2656
	           </S> 0.1825
	              a 0.1825
	           your 0.1825
	            the 0.0857

            Jul   445742 inf (7)
	            Jul 0.5244
	            Jan 0.5244
	             us 0.5097
	              , 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

              '   445746   2 (7)
	             us 0.5244
	              ' 0.2816
	            the 0.2816
	              ) 0.2656
	              . 0.1825
	              , 0.1825
	           </S> 0.0857

           Both   445749   1 (9)
	              , 0.7555
	           with 0.7555
	           Both 0.7555
	              a 0.5413
	              s 0.5413
	           them 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

     descending   445817   1 (10)
	     descending 0.7555
	        details 0.5413
	           come 0.2816
	           </S> 0.2253
	              a 0.2253
	              , 0.2253
	            get 0.1825
	             be 0.1825
	            got 0.1825
	           been 0.0857

        towards   445963   2 (7)
	              a 0.7555
	        towards 0.5413
	           that 0.5244
	             of 0.2816
	           </S> 0.2816
	              . 0.1825
	              , 0.0857

  niothcr-l)ird   446052 inf (10)
	    information 0.7555
	          third 0.5413
	    traditional 0.5413
	           word 0.5413
	         better 0.5413
	              , 0.5413
	          ninth 0.5413
	          flock 0.5413
	              a 0.5413
	           </S> 0.0857

        wanders   446066   1 (8)
	          under 0.5413
	             of 0.5413
	        wanders 0.5413
	           </S> 0.5413
	             is 0.5413
	              , 0.5413
	              a 0.5413
	          water 0.5413

             By   446233   1 (7)
	              , 0.7555
	             By 0.7555
	             by 0.7555
	             us 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

       watching   446236   3 (7)
	              / 0.5413
	              . 0.5413
	       watching 0.5244
	       matching 0.5244
	              a 0.2816
	           </S> 0.1825
	              : 0.0857

      patiently   446245   1 (9)
	      patiently 0.7555
	         people 0.5097
	             us 0.5097
	           them 0.2816
	           </S> 0.2816
	            and 0.2656
	              a 0.1825
	              , 0.1825
	            the 0.0857

             's   446326   5 (8)
	              a 0.5413
	             us 0.5413
	             is 0.5244
	              " 0.5097
	              - 0.2816
	             's 0.2816
	              , 0.1825
	           </S> 0.0857

           soug   446329 inf (13)
	            sou 0.7555
	           sala 0.7555
	          sough 0.7555
	           sugo 0.7555
	     Zappos.com 0.5413
	           head 0.5413
	        mission 0.5413
	           soul 0.5097
	           some 0.2816
	            the 0.1825
	              , 0.1825
	              a 0.0857
	           </S> 0.0655

             is   446334   1 (7)
	             is 0.5413
	             me 0.5413
	             iu 0.5413
	              , 0.5413
	              a 0.5413
	           </S> 0.2656
	            ... 0.0857

             it   446416   1 (5)
	             it 0.5413
	             iu 0.5413
	              a 0.5413
	              , 0.5413
	           </S> 0.0857

          trill   446461   2 (10)
	          still 0.7555
	          trill 0.5413
	        sources 0.5413
	              a 0.5413
	       diseases 0.5413
	           </S> 0.1825
	          butts 0.1825
	              - 0.1825
	              . 0.0857
	              , 0.0857

   interspersed   446468   6 (8)
	       together 0.5413
	           </S> 0.5413
	            and 0.5413
	           work 0.5413
	              a 0.5413
	   interspersed 0.5244
	          there 0.1825
	            the 0.0857

          drawn   446493   1 (9)
	          drawn 0.5244
	           down 0.5244
	              a 0.5097
	        periods 0.2816
	           </S> 0.2656
	              , 0.1825
	           term 0.1825
	           time 0.1825
	              - 0.0857

   marvellously   446513   1 (9)
	    recommended 0.5413
	   marvellously 0.5413
	         really 0.5097
	              . 0.2816
	              , 0.2816
	           </S> 0.2253
	             an 0.1825
	            not 0.1825
	              a 0.0857

   exhilarating   446526   1 (11)
	           free 0.5413
	   exhilarating 0.5413
	      available 0.5413
	              a 0.5413
	     surprising 0.5413
	             us 0.5413
	             to 0.5244
	           </S> 0.5244
	              , 0.1825
	           well 0.1825
	              . 0.0857

    considering   446540   1 (8)
	              " 0.5413
	            and 0.5413
	    considering 0.5413
	              i 0.2816
	           with 0.1825
	      including 0.1825
	             or 0.1825
	            the 0.0857

         either   446602   1 (8)
	         either 0.7555
	          other 0.7555
	             us 0.5244
	           when 0.5097
	           </S> 0.2816
	              . 0.1825
	              a 0.1825
	              , 0.0857

        soaring   446609   1 (9)
	        soaring 0.7555
	         minors 0.5413
	         during 0.5097
	           case 0.2253
	              a 0.1825
	              , 0.1825
	           </S> 0.1825
	            the 0.0857
	              . 0.0857

       consists   446699   2 (10)
	    Calandrella 0.7555
	        control 0.5413
	              a 0.5413
	       consists 0.5413
	        version 0.5413
	        Ranches 0.5413
	              - 0.5244
	              " 0.5244
	              , 0.1825
	           </S> 0.0857

            but   446755   1 (7)
	     documented 0.5413
	              , 0.5413
	            but 0.5413
	             us 0.5413
	              a 0.5413
	              } 0.1229
	           </S> 0.0857

     gregarious   446916   1 (9)
	     gregarious 0.7555
	          great 0.5413
	             to 0.5413
	              a 0.5413
	              , 0.1825
	      important 0.1825
	           much 0.1825
	           </S> 0.1825
	           good 0.0857

        immense   446959   1 (10)
	        immense 0.7555
	             us 0.5413
	           time 0.5413
	          phone 0.5413
	              . 0.5244
	             of 0.5097
	              a 0.2816
	           </S> 0.2816
	            the 0.1825
	              , 0.0857

       iisually   447002 inf (7)
	       visually 0.7555
	              s 0.5413
	          shall 0.5413
	              a 0.5244
	            and 0.1825
	           </S> 0.1825
	              , 0.0857

      realizing   447011   1 (6)
	           </S> 0.5413
	              , 0.5413
	              a 0.5413
	        animals 0.5413
	      realizing 0.5413
	        reading 0.5413

           from   447021   2 (7)
	            arz 0.5413
	           from 0.5244
	              , 0.5097
	           </S> 0.5097
	          their 0.2816
	              a 0.2816
	           that 0.0857

             gd   447026 inf (8)
	             gd 0.7555
	             do 0.5244
	             us 0.2816
	              , 0.2816
	           CliC 0.2816
	           </S> 0.2253
	              a 0.1825
	            the 0.0857

             to   447030   1 (5)
	              , 0.7555
	             to 0.7555
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

         apiece   447037   3 (9)
	              , 0.7555
	              I 0.7555
	            are 0.5413
	             to 0.5413
	           that 0.5413
	         apiece 0.5413
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

            the   447119   1 (5)
	             us 0.5413
	              , 0.5413
	            the 0.5413
	              } 0.1229
	           </S> 0.0857

             In   447188   1 (6)
	             In 0.7555
	              , 0.7555
	              a 0.5413
	              s 0.5413
	              " 0.2816
	           </S> 0.0857

        rearing   447224   1 (8)
	            the 0.5413
	         during 0.5413
	           </S> 0.5413
	              a 0.5413
	        rearing 0.5413
	              , 0.5413
	             us 0.2816
	           your 0.0857

            Sky   447232   1 (8)
	           drop 0.5413
	            See 0.5413
	              e 0.5413
	            Sky 0.5413
	            Pyi 0.5413
	              a 0.2816
	           </S> 0.1825
	              , 0.0857

              -   447235   5 (7)
	             us 0.5413
	     Soundtrack 0.5413
	            the 0.5244
	         Harbor 0.2656
	              , 0.1825
	              - 0.1825
	           </S> 0.0857

          Larks   447236   1 (10)
	          Larks 0.7555
	              s 0.5413
	          Links 0.5097
	              . 0.2816
	              a 0.2253
	             of 0.2253
	           mail 0.1825
	             up 0.1825
	             to 0.1825
	           </S> 0.0857

          seven   447268   1 (8)
	            see 0.7555
	          seven 0.7555
	            not 0.5413
	          Aedon 0.5413
	              , 0.2816
	           </S> 0.2816
	              a 0.2656
	           from 0.0857

            but   447352   1 (6)
	              , 0.5413
	             us 0.5413
	              a 0.5413
	            but 0.5413
	              } 0.1229
	           </S> 0.0857

        bounded   447414   1 (8)
	        bounded 0.7555
	          under 0.5097
	              a 0.2816
	           work 0.2816
	           </S> 0.1825
	              , 0.0857
	           that 0.0857
	              . 0.0857

      alighting   447477   1 (11)
	      alighting 0.7555
	            sat 0.5413
	          right 0.5413
	         report 0.5413
	             so 0.2656
	            not 0.2253
	              , 0.1825
	           </S> 0.1825
	             to 0.1825
	              I 0.1825
	            the 0.0857

         bought   447556   1 (8)
	         bought 0.5413
	           </S> 0.5413
	              a 0.5413
	              ( 0.5413
	           your 0.2816
	             is 0.1825
	           with 0.1825
	            the 0.0857

     Larkrunuer   447571 inf (11)
	              a 0.7555
	            are 0.7555
	          value 0.5413
	        Warrior 0.5413
	        neutral 0.5413
	         broker 0.5413
	              s 0.5413
	              ) 0.5097
	          <UNK> 0.2816
	              , 0.2816
	           </S> 0.0857

           cage   447599   1 (7)
	           cage 0.5413
	              I 0.5413
	            cia 0.5413
	             of 0.5413
	            can 0.5413
	           </S> 0.2656
	              , 0.0857

             In   447672   1 (7)
	              , 0.7555
	             In 0.7555
	          where 0.5413
	             us 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

          Sedge   447696   1 (10)
	          Sedge 0.7555
	            bug 0.5413
	              C 0.5413
	          Aedon 0.5413
	           Send 0.5244
	            two 0.2253
	              - 0.1825
	            non 0.1825
	           </S> 0.0857
	            new 0.0655

           ui}'   447722 inf (10)
	            uit 0.7555
	           uiui 0.5413
	             ui 0.5413
	           </S> 0.2816
	             us 0.2816
	              , 0.2253
	              a 0.1825
	             up 0.1825
	            the 0.0857
	             it 0.0857

          birds   447727   1 (8)
	              , 0.5413
	          birds 0.5413
	           </S> 0.5413
	              a 0.5413
	             in 0.5413
	           back 0.5413
	          first 0.5413
	          Parus 0.5413

            cue   447736 inf (8)
	            cue 0.7555
	            cia 0.7555
	            can 0.5244
	              , 0.2816
	           more 0.2816
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

            ]jy   447740   6 (10)
	            ajy 0.5413
	             jy 0.5413
	           than 0.5413
	         second 0.5413
	            Pyi 0.5413
	             by 0.5244
	              a 0.5097
	           </S> 0.1825
	              , 0.0857
	           from 0.0857

            one   447744   1 (6)
	              , 0.5413
	             us 0.5413
	            one 0.5413
	              a 0.5413
	              ) 0.5413
	           </S> 0.5413

        jumping   447787   1 (8)
	         during 0.7555
	        jumping 0.7555
	        Cumming 0.5413
	              , 0.5413
	          being 0.5413
	            way 0.1825
	           </S> 0.1825
	            own 0.0857

           When   447863   1 (6)
	              , 0.7555
	           When 0.7555
	           when 0.7555
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

            off   447893   1 (8)
	            off 0.7555
	              a 0.5413
	             us 0.5413
	             of 0.5244
	             to 0.2816
	           </S> 0.2816
	              , 0.0857
	              . 0.0857

        blanket   447906   5 (10)
	        blanche 0.7555
	              , 0.5413
	            hip 0.5413
	          truth 0.5413
	        blanket 0.5244
	            top 0.1825
	          world 0.1825
	           best 0.1825
	           same 0.1825
	           </S> 0.0857

        tumbled   447935   1 (7)
	        tumbled 0.7555
	         number 0.5244
	              a 0.5097
	           </S> 0.1825
	             of 0.1825
	              , 0.0857
	              . 0.0857

              -   448003   3 (5)
	             us 0.7555
	           </S> 0.5097
	            the 0.2816
	              - 0.2816
	              , 0.0857

            lec   448005 inf (9)
	            lec 0.7555
	          linux 0.5413
	           name 0.5413
	              s 0.5413
	              . 0.2816
	            New 0.2816
	              a 0.2253
	             to 0.1825
	           </S> 0.0857

              -   448008   6 (6)
	            the 0.5413
	             us 0.5413
	           name 0.5413
	           </S> 0.1825
	              , 0.1825
	              - 0.0857

          tcc-u   448013 inf (13)
	           tchu 0.7555
	            tcu 0.7555
	          Ntccc 0.5413
	           Atcc 0.5413
	     Scotchgard 0.5413
	              a 0.5413
	          <UNK> 0.5413
	            and 0.5413
	           </S> 0.5413
	             us 0.5413
	              , 0.5413
	             tc 0.5244
	            the 0.0857

            and   448029   1 (5)
	              , 0.5413
	            and 0.5413
	            arz 0.5413
	              } 0.1229
	           </S> 0.0857

         wear}-   448090 inf (9)
	           wear 0.7555
	         Search 0.7555
	         wearer 0.5413
	          wears 0.5413
	              , 0.5097
	           </S> 0.2816
	            now 0.2656
	              a 0.1825
	            the 0.0857

            and   448098   1 (5)
	            and 0.5413
	           </S> 0.5413
	            arz 0.5413
	           when 0.2253
	            the 0.0857

          tlien   448102   8 (12)
	           tien 0.7555
	         tolien 0.5413
	          tliet 0.5413
	         tilien 0.5413
	        Atliens 0.5413
	           lien 0.5244
	             he 0.2253
	           </S> 0.1825
	              a 0.1825
	              , 0.1825
	           then 0.1825
	            the 0.0857

        tumbled   448108   1 (8)
	           </S> 0.5413
	              . 0.5413
	              a 0.5413
	        tumbled 0.5413
	             us 0.5413
	         number 0.5413
	             it 0.5413
	              , 0.0857

           They   448159   1 (6)
	              , 0.7555
	           They 0.7555
	              a 0.5413
	            The 0.5244
	              " 0.2816
	           </S> 0.0857

         seemed   448164   3 (6)
	         server 0.7555
	          semen 0.5413
	         seemed 0.5097
	              , 0.5097
	           </S> 0.2816
	            are 0.0857

          the}'   448204   3 (8)
	           thee 0.7555
	          their 0.5244
	              a 0.5097
	            the 0.5097
	           they 0.5097
	           </S> 0.2656
	              , 0.1825
	             of 0.0857

            got   448210   1 (7)
	              , 0.5413
	            got 0.5413
	           </S> 0.5413
	            get 0.5413
	            the 0.5413
	             us 0.5413
	              a 0.5413

  subsequentl}'   448259   4 (8)
	              I 0.5413
	      currently 0.5413
	       recently 0.5413
	   subsequently 0.5244
	              , 0.2253
	           </S> 0.1825
	           have 0.1825
	             'm 0.0857

      purchased   448273   1 (7)
	      purchased 0.5413
	           </S> 0.5413
	              , 0.5413
	         posted 0.5413
	           have 0.5413
	            not 0.5413
	              a 0.5413

         3'oung   448285   5 (11)
	            oun 0.7316
	          goung 0.5413
	          found 0.5244
	          Young 0.5097
	          young 0.2656
	         single 0.1825
	          major 0.1825
	              - 0.1825
	           very 0.1825
	           </S> 0.0857
	            new 0.0655

           male   448292   1 (7)
	           make 0.5413
	           male 0.5413
	              , 0.5413
	           sala 0.5413
	             of 0.5413
	              a 0.5413
	           </S> 0.5413

              -   448459   5 (7)
	            the 0.7555
	             us 0.5413
	            man 0.5413
	          drive 0.5413
	              - 0.2816
	              , 0.1825
	           </S> 0.0857

    continually   448557   1 (9)
	    continually 0.7555
	             us 0.5413
	           only 0.5244
	              a 0.2816
	              , 0.1825
	              . 0.1825
	            and 0.1825
	           </S> 0.1825
	            the 0.0857

         fl\ing   448604   1 (11)
	            ing 0.7555
	         flying 0.7555
	          fling 0.7555
	         filing 0.7555
	      Northeast 0.5413
	         closes 0.2816
	           find 0.2816
	           </S> 0.2253
	              , 0.2253
	              a 0.2253
	           been 0.0857

              ,   448610   1 (6)
	             us 0.5413
	             be 0.5413
	            the 0.5413
	           </S> 0.5413
	              , 0.5413
	             to 0.5413

           when   448622   1 (5)
	           when 0.5244
	              , 0.5097
	           </S> 0.5097
	              a 0.2816
	            the 0.0857

     recklessly   448654   1 (6)
	     recklessly 0.7555
	        process 0.5413
	           </S> 0.1825
	              , 0.1825
	              a 0.1825
	             to 0.0857

  consecjuences   448693   1 (11)
	   consequences 0.7555
	       services 0.5413
	             up 0.5413
	       anything 0.5413
	   consecuentes 0.5413
	              , 0.5097
	        service 0.5097
	             us 0.5097
	           </S> 0.2656
	              a 0.1825
	            the 0.0857

             to   448707   1 (6)
	             in 0.5413
	              . 0.5413
	              , 0.5413
	           </S> 0.5413
	             us 0.5413
	             to 0.5413

             he   448867   1 (6)
	             he 0.5413
	              a 0.5413
	             us 0.5413
	              , 0.5413
	              } 0.1229
	           </S> 0.0857

           claw   448906   1 (9)
	            can 0.7555
	           claw 0.7555
	            cia 0.5413
	             of 0.5413
	              a 0.5097
	           </S> 0.2816
	              , 0.2816
	              . 0.1294
	             be 0.0857

     watercress   448959   4 (8)
	          water 0.7555
	     TWikiUsers 0.7555
	              , 0.7555
	           milk 0.5413
	     watercress 0.5413
	           </S> 0.5097
	              a 0.1825
	            the 0.0857

             In   449037   1 (7)
	              , 0.7555
	              . 0.7555
	             In 0.7555
	              a 0.5413
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

              I   449054   1 (8)
	           2005 0.5413
	              8 0.5413
	           </S> 0.5413
	              , 0.5413
	              I 0.5413
	             us 0.5097
	             we 0.1825
	            the 0.0857

       nestling   449069   1 (8)
	       nestling 0.7555
	        nothing 0.7555
	              a 0.5413
	          major 0.2816
	          years 0.1825
	              , 0.1825
	           </S> 0.1825
	              - 0.0857

            Sky   449078   2 (10)
	              a 0.7555
	            See 0.5413
	           Bare 0.5413
	           year 0.5413
	            Sky 0.5413
	            Pyi 0.5413
	              . 0.5097
	              , 0.5097
	           </S> 0.4011
	             in 0.0857

          Larks   449082   1 (10)
	          Larks 0.7555
	           High 0.5413
	              s 0.5413
	          Links 0.5097
	              . 0.2816
	           term 0.2656
	              a 0.2253
	             up 0.1825
	             to 0.1825
	           </S> 0.0857

        brought   449092   4 (9)
	           pick 0.5413
	            let 0.5413
	            set 0.5413
	        brought 0.5097
	        through 0.4011
	              , 0.1825
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

    Nightingale   449116   1 (9)
	           land 0.5413
	       original 0.5413
	              , 0.5413
	    Nightingale 0.5413
	         little 0.2816
	           work 0.2253
	           </S> 0.2253
	            own 0.1825
	       products 0.0857

           food   449128   1 (9)
	           food 0.5413
	              a 0.5413
	            for 0.5244
	          House 0.5097
	              ) 0.5097
	              . 0.2816
	              " 0.2816
	              , 0.1825
	           </S> 0.0857

            the   449216   1 (4)
	            the 0.5413
	              , 0.5413
	              s 0.5413
	           </S> 0.0857

         Bulbul   449293   1 (10)
	         number 0.5413
	        galbula 0.5413
	              a 0.5413
	             of 0.5413
	         Bulbul 0.5413
	            and 0.2816
	              . 0.2816
	              , 0.2253
	           </S> 0.1825
	           Gulf 0.0857

           into   449300   1 (9)
	            War 0.5413
	           into 0.5413
	          minor 0.5413
	              a 0.5413
	            and 0.5244
	             in 0.5244
	              , 0.2816
	           </S> 0.1825
	         Sharma 0.0857

          Larks   449409   1 (10)
	          Links 0.7555
	          Larks 0.7555
	              a 0.5413
	          Parus 0.5413
	            age 0.2816
	           </S> 0.2253
	       children 0.1825
	              , 0.1825
	              . 0.1825
	         people 0.0857

           when   449415   1 (5)
	              a 0.5413
	           when 0.5413
	              , 0.1825
	           </S> 0.1825
	              ' 0.0857

       Although   449546   1 (7)
	              , 0.7555
	       Although 0.7555
	              a 0.5413
	        through 0.5413
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

          cramp   449579   1 (11)
	          cramp 0.7555
	           fact 0.5413
	          corax 0.5413
	            can 0.5244
	          class 0.5097
	             it 0.2816
	              , 0.2816
	           this 0.1825
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

         reared   449603   1 (8)
	         reared 0.7555
	              a 0.5413
	             of 0.5413
	         review 0.5244
	              , 0.1825
	           </S> 0.1825
	     understand 0.1825
	              - 0.0857

          moult   449640   1 (8)
	          moult 0.7555
	          years 0.5413
	          maura 0.5413
	          would 0.5244
	              a 0.5244
	           </S> 0.1825
	              , 0.0857
	              . 0.0857

            two   449646   2 (9)
	              a 0.7555
	         winter 0.5413
	            two 0.5413
	         mosaic 0.5413
	             us 0.5413
	          cycle 0.5097
	           </S> 0.2253
	              . 0.0857
	              , 0.0655

            the   449665   1 (5)
	             us 0.5413
	              , 0.5413
	            the 0.5413
	              } 0.1229
	           </S> 0.0857

           tame   449700   1 (10)
	           time 0.7555
	           tame 0.7555
	             of 0.5413
	           lava 0.5413
	              a 0.5413
	      beautiful 0.5097
	           </S> 0.5097
	           rich 0.2816
	              , 0.1825
	              . 0.0857

         little   449705   2 (7)
	          Sitta 0.5413
	         little 0.5244
	           </S> 0.2816
	              a 0.2816
	            and 0.1825
	            the 0.0857
	              , 0.0655

             it   449773   1 (6)
	              , 0.5413
	             iu 0.5413
	              a 0.5413
	             it 0.5413
	              } 0.1229
	           </S> 0.0857

          crest   449831   3 (8)
	              , 0.5413
	          major 0.5413
	          crest 0.5244
	           best 0.2253
	            way 0.1825
	           </S> 0.1825
	              a 0.1825
	            own 0.0857

             it   449874   2 (7)
	             iu 0.5413
	              a 0.5244
	             it 0.5244
	             of 0.2656
	           </S> 0.2253
	              , 0.1825
	            flu 0.0857

     eventually   449952   1 (6)
	     eventually 0.5413
	             us 0.5413
	         really 0.5413
	              a 0.5413
	              , 0.5413
	           </S> 0.0857

           This   450002   1 (6)
	           This 0.7555
	              , 0.7555
	              a 0.5413
	            cia 0.5413
	              " 0.2816
	           </S> 0.0857

       perching   450029   1 (7)
	       perching 0.7555
	             us 0.2816
	        service 0.2816
	              , 0.2816
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

        hanging   450084   1 (10)
	        hanging 0.7555
	             do 0.5413
	             us 0.5413
	         Rating 0.5413
	              a 0.5244
	             it 0.5244
	              . 0.1825
	              , 0.1825
	           </S> 0.1825
	              - 0.0857

        roosted   450141   1 (12)
	        roosted 0.7555
	          based 0.5413
	            not 0.5413
	             us 0.5413
	        depends 0.5413
	           used 0.2816
	              - 0.2816
	              a 0.1825
	           </S> 0.1825
	              , 0.1825
	           been 0.0857
	             be 0.0857

        Judging   450197   1 (7)
	        Judging 0.7555
	        funding 0.7555
	           Sort 0.5413
	              a 0.2816
	              , 0.2253
	              s 0.1294
	           </S> 0.0857

            mj^   450208   4 (10)
	             mj 0.7555
	            mjw 0.7555
	             us 0.5097
	          their 0.2816
	            his 0.2816
	             my 0.2816
	              , 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

            own   450212   1 (8)
	           </S> 0.5413
	             us 0.5413
	            one 0.5413
	            the 0.5413
	              , 0.5413
	            own 0.5413
	              a 0.5413
	             of 0.5413

        rearing   450230   1 (7)
	        rearing 0.5244
	         during 0.5244
	             us 0.2816
	              , 0.2816
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

            Sky   450238   2 (10)
	            non 0.7555
	            Sky 0.5413
	            Pyi 0.5413
	           with 0.5244
	             by 0.5244
	       children 0.2816
	              a 0.2816
	           </S> 0.1825
	              . 0.1825
	              , 0.0857

          Larks   450242   1 (8)
	          Larks 0.7555
	             so 0.5413
	              s 0.5413
	          Links 0.5097
	              . 0.2816
	              a 0.2253
	             to 0.1825
	           </S> 0.0857

    Whitethroat   450325   1 (11)
	    Whitethroat 0.7555
	             it 0.5413
	              . 0.5413
	         moment 0.5413
	     University 0.5413
	              a 0.5413
	            rat 0.5413
	              , 0.5413
	          major 0.1825
	         person 0.1825
	           </S> 0.0857

             's   450336   3 (7)
	             is 0.7555
	             of 0.7555
	              a 0.5413
	             's 0.5413
	             us 0.5413
	              , 0.1825
	           </S> 0.0857

          fixed   450344   2 (7)
	           find 0.7555
	          fixed 0.5413
	              a 0.5097
	              , 0.1825
	           </S> 0.1825
	             of 0.1825
	              . 0.0857

            the   450376   1 (5)
	              , 0.5413
	            the 0.5413
	             us 0.5413
	              } 0.1229
	           </S> 0.0857

          the}-   450442 inf (7)
	              a 0.5413
	           thee 0.5413
	          their 0.5244
	            the 0.4011
	           </S> 0.1825
	              . 0.0857
	              , 0.0655

         crouch   450448   1 (7)
	           </S> 0.5413
	              a 0.5413
	              , 0.5413
	              . 0.5413
	          could 0.5413
	         crouch 0.5413
	        curruca 0.5413

            but   450534   1 (6)
	              a 0.5413
	             us 0.5413
	            but 0.5413
	              , 0.5413
	              } 0.1229
	           </S> 0.0857

      moistened   450638   1 (6)
	      moistened 0.7555
	           most 0.2816
	           </S> 0.1825
	              a 0.1825
	              , 0.1825
	            the 0.0857

           ants   450648   1 (8)
	           ants 0.5413
	           alba 0.5413
	              I 0.5413
	           </S> 0.5097
	              , 0.2816
	            and 0.2816
	              . 0.1825
	           with 0.0857

              '   450652   3 (6)
	             us 0.7555
	            the 0.5244
	              ' 0.5097
	            and 0.1825
	           </S> 0.1825
	              , 0.0857

        cocoons   450654   1 (9)
	        cocoons 0.7555
	        contact 0.5413
	           nest 0.5413
	       termites 0.5413
	              a 0.2816
	              s 0.1825
	              ) 0.1825
	           </S> 0.0857
	              , 0.0655

           When   450663   1 (7)
	           When 0.7555
	              , 0.7555
	           when 0.7555
	              a 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

      mealworms   450688   1 (10)
	              a 0.5413
	      mealworms 0.5413
	        members 0.4979
	          major 0.2816
	              . 0.2656
	              , 0.2253
	           </S> 0.1825
	             of 0.1825
	          times 0.1825
	              - 0.0857

        canar}'   450718   1 (10)
	         canary 0.7555
	            ink 0.5413
	          canar 0.5413
	         Canada 0.4979
	           time 0.2816
	             us 0.2816
	              , 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

            and   450726   1 (5)
	           </S> 0.5413
	              , 0.5413
	              . 0.5413
	            and 0.5413
	            arz 0.5413

     watercress   450759   1 (8)
	     watercress 0.7555
	           were 0.5413
	           then 0.1825
	           </S> 0.1825
	              I 0.1825
	              a 0.1825
	              , 0.1825
	            the 0.0857

           when   450770   1 (7)
	            the 0.5413
	           when 0.5413
	             us 0.5413
	              a 0.5413
	           </S> 0.2816
	              . 0.1825
	              , 0.0857

         1891-2   450872 inf (13)
	              , 0.7555
	             us 0.7555
	         things 0.5413
	           1982 0.5413
	           1991 0.5413
	        1971-72 0.5413
	           1862 0.5413
	      2001-2002 0.5413
	           1918 0.5413
	           2003 0.5413
	           </S> 0.5244
	              a 0.5097
	            the 0.0857

           that   450879   1 (7)
	              a 0.5413
	             in 0.5413
	           that 0.5413
	          torax 0.5413
	              , 0.1825
	              . 0.1825
	           </S> 0.0857

           nets   450927   1 (11)
	           nets 0.7555
	             us 0.7555
	         tongue 0.5413
	              , 0.5413
	              a 0.5413
	           cock 0.2816
	           next 0.2816
	           </S> 0.2253
	            way 0.1825
	           hand 0.1825
	       products 0.0857

       thirteen   450956   1 (8)
	       thirteen 0.5413
	          three 0.5244
	              a 0.5097
	              . 0.1825
	              - 0.1825
	              , 0.1825
	           </S> 0.1218
	           page 0.0857

            Sky   450965   1 (10)
	              a 0.5413
	            Sky 0.5413
	            See 0.5413
	          tacho 0.5413
	            Pyi 0.5413
	            the 0.5244
	           </S> 0.2656
	           year 0.1825
	              , 0.1825
	          years 0.0857

          Larks   450969   1 (10)
	          Larks 0.7555
	              s 0.5413
	           step 0.5413
	          Links 0.5097
	              . 0.2816
	              a 0.2253
	             up 0.1825
	             to 0.1825
	           mail 0.1825
	           </S> 0.0857

          about   451011   1 (5)
	          about 0.5413
	              , 0.5413
	              I 0.5413
	              } 0.1229
	           </S> 0.0857

            one   451111   1 (6)
	             us 0.5413
	              , 0.5413
	              a 0.5413
	            one 0.5413
	              } 0.1229
	           </S> 0.0857

       retained   451134   1 (9)
	       required 0.7555
	       retained 0.7555
	            not 0.5413
	             it 0.4011
	              a 0.2816
	           said 0.2816
	           </S> 0.2816
	            got 0.1825
	              , 0.0857

           This   451183   1 (6)
	              , 0.7555
	           This 0.7555
	            cia 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

           tame   451204   1 (10)
	           tame 0.7555
	       athletic 0.5413
	           lava 0.5413
	           time 0.5244
	             to 0.2816
	          there 0.2816
	              a 0.1825
	           </S> 0.1825
	              , 0.1825
	           been 0.0857

         turfed   451261   1 (9)
	          slave 0.5413
	         turfed 0.5413
	          three 0.5244
	              " 0.5097
	             in 0.2816
	           </S> 0.2816
	              , 0.1825
	              a 0.1825
	             of 0.0857

         sanded   451277   1 (11)
	         sanded 0.7555
	             us 0.5413
	            out 0.5413
	           said 0.5244
	              ) 0.5097
	           </S> 0.2816
	              . 0.1825
	              a 0.1825
	              , 0.1825
	              - 0.1825
	             of 0.0857

             he   451285   1 (6)
	             us 0.5413
	              a 0.5413
	              , 0.5413
	             he 0.5413
	              } 0.1229
	           </S> 0.0857

          3'our   451363   7 (9)
	            not 0.5413
	              a 0.5244
	            our 0.5244
	             us 0.5097
	           </S> 0.5097
	             to 0.5097
	           your 0.2816
	              , 0.2816
	           down 0.0857

           eyes   451369   1 (7)
	           been 0.5413
	           eyes 0.5413
	           </S> 0.5413
	            the 0.5413
	              a 0.5413
	              , 0.5413
	            Pyi 0.5413

       dropping   451427   1 (8)
	       dropping 0.7555
	       Shopping 0.7555
	          liner 0.5413
	              a 0.5413
	              , 0.2816
	           last 0.2253
	           </S> 0.1825
	            own 0.0857

      i-eturned   451448   5 (12)
	              a 0.5413
	             as 0.5413
	       inturned 0.5413
	        whether 0.5413
	          tried 0.2816
	       returned 0.2816
	          wants 0.2816
	           </S> 0.2816
	           came 0.2816
	              , 0.2816
	            had 0.1825
	            was 0.0857

             to   451458   1 (7)
	           </S> 0.5413
	              . 0.5413
	              , 0.5413
	             us 0.5413
	             to 0.5413
	            the 0.5413
	             on 0.5413

        Towards   451468 inf (8)
	          There 0.7555
	              , 0.7555
	             to 0.5413
	         Toward 0.5413
	       Tawadros 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

          moult   451526   1 (9)
	          moult 0.7555
	              a 0.5413
	          maura 0.5413
	          would 0.5244
	              , 0.2816
	           head 0.1825
	           wife 0.1825
	           </S> 0.1825
	            own 0.0857

            Mr.   451597   3 (8)
	             My 0.7555
	              , 0.7555
	            Mrs 0.5413
	              a 0.5413
	             Mr 0.5413
	            arz 0.5413
	              " 0.2816
	           </S> 0.0857

            Sky   451639   3 (9)
	            Pyi 0.7555
	          mixed 0.5413
	            Sky 0.5244
	            See 0.5244
	            non 0.5097
	              , 0.2816
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

              -   451642   4 (6)
	             us 0.5413
	            the 0.5244
	              . 0.2656
	              - 0.1825
	              , 0.1825
	           </S> 0.0857

          Larks   451643   1 (9)
	          Larks 0.7555
	              s 0.5413
	           such 0.5413
	         signal 0.5413
	          Links 0.5097
	              . 0.2816
	              a 0.2253
	             to 0.1825
	           </S> 0.0857

     Heligoland   451671   1 (7)
	     Heligoland 0.7555
	             us 0.5413
	            and 0.2816
	              , 0.2816
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

            but   451711   1 (6)
	              , 0.5413
	            but 0.5413
	              a 0.5413
	             us 0.5413
	              } 0.1229
	           </S> 0.0857

       Speaking   451764   1 (8)
	       Speaking 0.7555
	              , 0.7555
	            One 0.7555
	              a 0.5413
	          State 0.5413
	           part 0.5413
	              " 0.2816
	           </S> 0.0857

     diminution   451806   3 (11)
	         rights 0.5413
	     diminutiva 0.5413
	     diminution 0.5244
	              - 0.2253
	            end 0.1825
	    information 0.1825
	            use 0.1825
	          world 0.1825
	           same 0.1825
	           time 0.1825
	           </S> 0.0857

           Herr   451827   1 (9)
	            and 0.5413
	              ( 0.5413
	           </S> 0.5413
	           Help 0.5413
	              a 0.5413
	           Herr 0.5413
	            arz 0.5413
	          every 0.2816
	            the 0.0857

          Gatke   451832 inf (8)
	              a 0.5413
	          Games 0.5413
	          Gatka 0.5413
	        Gataket 0.5413
	           Gate 0.5413
	             M. 0.5244
	           </S> 0.1825
	              , 0.0857

          saj'S   451838 inf (9)
	           </S> 0.7555
	           said 0.5413
	           saja 0.5413
	              a 0.5413
	            saj 0.5413
	          Ringe 0.5413
	          Sajas 0.5413
	           sala 0.5413
	              , 0.0857

              :   451844 inf (3)
	             of 0.5413
	             us 0.5413
	            the 0.5413

              "   451848   4 (8)
	              : 0.5413
	              , 0.5413
	             us 0.5097
	              " 0.2816
	           mail 0.1825
	             up 0.1825
	            the 0.1825
	           </S> 0.0857

        passage   451889   1 (9)
	        message 0.7555
	        passage 0.7555
	              a 0.5413
	    Association 0.5413
	             of 0.5413
	              , 0.1825
	           </S> 0.1825
	              . 0.1825
	         amount 0.0857

         travel   451963   1 (7)
	         travel 0.7555
	              ; 0.5097
	           this 0.5097
	              a 0.2656
	           </S> 0.1825
	              , 0.1218
	              . 0.0857

      migration   452254   1 (9)
	      migration 0.7555
	              a 0.5413
	            the 0.5413
	             as 0.5413
	    information 0.5413
	        amounts 0.1825
	           </S> 0.1825
	              , 0.1825
	         amount 0.0857

            and   452274   1 (6)
	              , 0.5413
	            and 0.5413
	            arz 0.5413
	              " 0.5244
	              } 0.1229
	           </S> 0.0857

          Larks   452312   1 (8)
	          Larks 0.5413
	          Parus 0.5413
	          Links 0.5413
	           fish 0.5413
	              a 0.5097
	              , 0.2816
	              . 0.1825
	           </S> 0.0857

         caught   452318   1 (10)
	           more 0.5413
	          cause 0.5413
	              $ 0.5413
	         caught 0.5413
	        caudata 0.5413
	              a 0.5413
	        Tongues 0.3154
	              , 0.1825
	           </S> 0.1825
	              ' 0.0857

         autumn   452332   1 (7)
	         autumn 0.7555
	            and 0.2816
	           more 0.2816
	              I 0.2816
	           </S> 0.2656
	              , 0.1825
	             of 0.0857

  approximately   452354   1 (10)
	  approximately 0.7555
	         simply 0.5413
	          apply 0.2816
	    necessarily 0.2656
	              a 0.1825
	      available 0.1825
	           have 0.1825
	           </S> 0.1825
	              , 0.1825
	             be 0.0857

        express   452368   1 (9)
	        express 0.7555
	           even 0.5413
	             us 0.5413
	             to 0.5413
	              , 0.5097
	           half 0.2816
	              a 0.2816
	           </S> 0.1825
	              $ 0.0857

        migrant   452434   5 (11)
	         system 0.5413
	        migrans 0.5413
	              , 0.5413
	     serialized 0.5413
	        migrant 0.5244
	          might 0.5244
	          valid 0.1825
	          great 0.1825
	          major 0.1825
	           </S> 0.0857
	            new 0.0655

          245-8   452471 inf (10)
	            the 0.7555
	              2 0.7555
	              a 0.7555
	            who 0.5413
	           code 0.5413
	           that 0.5244
	              - 0.5244
	           </S> 0.2816
	              . 0.1825
	              , 0.0857

            are   452477   1 (7)
	            arz 0.5413
	              I 0.5413
	            are 0.5413
	      collected 0.5413
	           </S> 0.5244
	              , 0.5244
	              . 0.0857

           Farn   452496   1 (9)
	             C. 0.5413
	           Bock 0.5413
	         Schott 0.5413
	              a 0.5413
	              s 0.5413
	           Farn 0.5413
	            For 0.5097
	              , 0.1825
	           </S> 0.0857

             's   452500   1 (7)
	             's 0.7555
	             is 0.7555
	              a 0.5413
	              s 0.5413
	             D. 0.5413
	              , 0.1825
	           </S> 0.0857

            249   452516 inf (8)
	       excerpts 0.5413
	             us 0.5413
	           data 0.5413
	              a 0.5413
	            the 0.5413
	              , 0.5413
	              } 0.1229
	           </S> 0.0857

        Frohawk   452529   1 (11)
	         seller 0.5413
	              a 0.5413
	             50 0.5413
	           Crew 0.5413
	        Frohawk 0.5413
	              , 0.2816
	             J. 0.2816
	           Bush 0.1825
	           </S> 0.1825
	           Food 0.1294
	       Chairman 0.0857

             's   452536   1 (8)
	             's 0.7555
	             us 0.5413
	          moved 0.5413
	          <UNK> 0.5413
	             is 0.5413
	           </S> 0.5244
	              , 0.5097
	           1898 0.0857

          250-4   452544 inf (11)
	        support 0.7555
	              , 0.7555
	              2 0.7555
	              - 0.7555
	       shipping 0.5413
	          tales 0.5413
	           more 0.5244
	             to 0.5244
	           </S> 0.2816
	              a 0.1294
	            the 0.0857

           from   452550   1 (8)
	             of 0.5413
	           from 0.5413
	             by 0.5413
	              a 0.5413
	            arz 0.5413
	              , 0.5097
	              . 0.1825
	           </S> 0.0857

        Family^   452576   2 (6)
	              , 0.7555
	              a 0.5413
	         Family 0.5413
	              ) 0.2816
	              " 0.2816
	           </S> 0.0857

            ALA   452584 inf (6)
	             us 0.5413
	              a 0.5413
	            All 0.5413
	              , 0.5413
	           </S> 0.5413
	            ALA 0.5413

           UDID   452588 inf (11)
	            UDI 0.5413
	              I 0.5413
	           UDIG 0.5413
	          GUDID 0.5413
	           UDDI 0.5413
	            USD 0.5413
	         SEQRES 0.5097
	              , 0.2816
	              ) 0.2253
	           </S> 0.1825
	              A 0.0857

              .   452592   1 (6)
	              , 0.7555
	              . 0.7555
	             us 0.5413
	              F 0.5413
	            the 0.5413
	           </S> 0.0857

              F   452594 inf (9)
	            the 0.7555
	              , 0.7555
	             OF 0.5413
	             us 0.5413
	             FL 0.5413
	             FF 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

              .   452595   3 (7)
	             us 0.7555
	            the 0.5244
	              . 0.5097
	              ' 0.4011
	              ) 0.1825
	              , 0.1825
	           </S> 0.0857

        Alaitdn   452614   2 (10)
	              , 0.7555
	         Allied 0.5413
	              a 0.5413
	          Alain 0.5413
	         Alauda 0.5413
	           Alai 0.5413
	        Alaitoc 0.5413
	       Adailton 0.5413
	              " 0.2816
	           </S> 0.0857

       ar/iorca   452622   1 (11)
	          arior 0.5413
	        artiora 0.5413
	        authors 0.5413
	        acriora 0.5413
	        arborea 0.5413
	         siorca 0.5413
	              I 0.5413
	              , 0.5413
	      configure 0.5413
	           </S> 0.5413
	        Maiorca 0.5413

              ,   452630 inf (3)
	             of 0.5413
	             us 0.5413
	            the 0.5413

           LlNN   452632 inf (10)
	           LLNL 0.5413
	            yes 0.5413
	           LMNN 0.5413
	            LNN 0.5413
	           List 0.5413
	             Ll 0.5413
	           alba 0.5413
	             pp 0.2816
	              i 0.2816
	            the 0.0857

              .   452636   1 (6)
	            CAN 0.5413
	           </S> 0.5413
	              , 0.5413
	             us 0.5413
	              . 0.5413
	            the 0.5413

              "   452639 inf (6)
	              , 0.7555
	            the 0.7555
	             us 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

              T   452641 inf (8)
	             TT 0.5244
	             IT 0.5244
	             us 0.5097
	             To 0.2816
	            the 0.2253
	              , 0.1825
	              ) 0.1825
	           </S> 0.0857

              N   452643 inf (8)
	             us 0.7555
	             NN 0.7555
	             IN 0.5244
	             No 0.5244
	            the 0.5244
	              " 0.2816
	              , 0.1825
	           </S> 0.0857

         summer   452645   1 (8)
	         summer 0.7555
	              a 0.5413
	              s 0.5413
	             in 0.5097
	             is 0.4979
	              , 0.1825
	           </S> 0.0857
	              / 0.0857

           Wood   452656   4 (10)
	           much 0.5413
	              I 0.5413
	            num 0.5413
	           Wood 0.5244
	           good 0.2816
	            non 0.2816
	              - 0.2253
	           same 0.1825
	            two 0.1825
	           </S> 0.0857

       inhabits   452666   2 (9)
	             of 0.7555
	              a 0.5413
	             us 0.5413
	       inhabits 0.5413
	           into 0.5413
	              - 0.5244
	             in 0.2816
	              , 0.1825
	           </S> 0.0857

         Russia   452719   1 (11)
	         Russia 0.7555
	          Music 0.7555
	         posted 0.5413
	              a 0.5413
	         cassia 0.5413
	        discuss 0.5413
	         Europe 0.5413
	              . 0.2816
	           </S> 0.1825
	              , 0.1825
	             'm 0.0857

          below   452726   1 (8)
	          below 0.7555
	           been 0.7555
	            not 0.5413
	        talking 0.5413
	          Aedon 0.5413
	              a 0.5097
	           </S> 0.0857
	              , 0.0857

            60°   452738   2 (8)
	            600 0.5413
	             60 0.5097
	              , 0.2816
	           </S> 0.2253
	             us 0.1825
	           this 0.1825
	              a 0.1825
	            the 0.0857

             N.   452742 inf (7)
	              , 0.5413
	              . 0.5413
	           </S> 0.5413
	             us 0.5413
	             No 0.5413
	              a 0.5413
	         parody 0.5413

             as   452751   1 (6)
	           </S> 0.5413
	             as 0.5413
	              " 0.5413
	             us 0.5097
	             so 0.1825
	            the 0.0857

      Southward   452826   2 (7)
	              , 0.7555
	              a 0.5413
	       Software 0.5413
	             us 0.5413
	      Southward 0.5413
	              " 0.2816
	           </S> 0.0857

              -   452880   3 (6)
	             us 0.5413
	            the 0.5244
	              - 0.4979
	           </S> 0.2253
	              , 0.0857
	              . 0.0857

           down   452913   4 (10)
	              s 0.5413
	       Bordeaux 0.5413
	           does 0.5097
	           down 0.2816
	              . 0.2816
	              a 0.2253
	           mail 0.1825
	             to 0.1825
	             up 0.1825
	           </S> 0.0857

            its   452965   1 (6)
	              , 0.5413
	            its 0.5413
	             iu 0.5413
	              a 0.5413
	              } 0.1229
	           </S> 0.0857

       Northern   453064   1 (8)
	       Northern 0.7555
	          South 0.5244
	          other 0.5244
	             us 0.5244
	              a 0.2816
	           </S> 0.1825
	              , 0.1825
	             to 0.0857

             "^   453153   5 (6)
	             of 0.7555
	              , 0.7555
	             us 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

              -   453156   1 (5)
	              , 0.5413
	              - 0.5413
	             us 0.5413
	            the 0.5413
	           </S> 0.5413

       Iloivard   453158 inf (12)
	         Rivard 0.7555
	          Ilova 0.5413
	              s 0.5413
	        Ilioara 0.5413
	        Ilgvars 0.5413
	          world 0.5413
	          loiva 0.5413
	              . 0.2816
	              a 0.2253
	           mail 0.1825
	             to 0.1825
	           </S> 0.0857

       Saunders   453167   1 (8)
	           </S> 0.5413
	              , 0.5413
	              a 0.5413
	          under 0.5413
	              - 0.5413
	             us 0.5413
	              ) 0.5413
	       Saunders 0.5413

              .   453175   5 (7)
	            the 0.7555
	             us 0.5413
	              : 0.2816
	            and 0.2816
	              . 0.2253
	           </S> 0.1825
	              , 0.0857

             In   453178   1 (6)
	              , 0.7555
	             In 0.7555
	              a 0.5413
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

           Wood   453199   6 (11)
	      insurance 0.5413
	              a 0.5413
	     Archbishop 0.5413
	              , 0.5413
	            sub 0.5413
	           Wood 0.5244
	           good 0.2816
	            non 0.2816
	            two 0.1825
	           same 0.1825
	           </S> 0.0857

              -   453203   4 (6)
	             us 0.5413
	            the 0.5244
	             of 0.5097
	              - 0.1825
	           </S> 0.0857
	              , 0.0655

           Lark   453204   1 (11)
	           Lark 0.7555
	           axis 0.5413
	       wrapping 0.5413
	              s 0.5413
	           this 0.5413
	          which 0.5413
	            are 0.5097
	              . 0.2816
	              a 0.2253
	             to 0.1825
	           </S> 0.0857

      occurring   453279   1 (6)
	      according 0.5413
	              , 0.5413
	      occurring 0.5413
	              a 0.5413
	              } 0.1229
	           </S> 0.0857

     undulating   453300   1 (6)
	     undulating 0.7555
	    information 0.5097
	              , 0.2816
	           </S> 0.2253
	              a 0.1825
	            the 0.0857

         dotted   453332   1 (6)
	         dotted 0.7555
	         posted 0.5413
	              C 0.5097
	           </S> 0.1825
	              . 0.0857
	              , 0.0857

            six   453495   1 (7)
	             so 0.5413
	              a 0.5413
	            six 0.5413
	              , 0.5413
	            cia 0.5413
	              } 0.1229
	           </S> 0.0857

            but   453552   1 (7)
	             us 0.5413
	            but 0.5413
	              , 0.5413
	              a 0.5413
	     Consulting 0.5413
	              } 0.1229
	           </S> 0.0857

             In   453623   1 (6)
	             In 0.7555
	              , 0.7555
	              a 0.5413
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

  Stirlingshire   453695   1 (10)
	             us 0.5413
	       business 0.5413
	         common 0.5413
	      captivity 0.5413
	  Stirlingshire 0.5413
	          stock 0.5097
	              , 0.5097
	           </S> 0.2816
	              a 0.1825
	            the 0.0857

             In   453804   1 (6)
	             In 0.7555
	              , 0.7555
	             us 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

      colouring   453877   1 (5)
	      colouring 0.7555
	      following 0.5413
	              a 0.5413
	           </S> 0.1825
	              , 0.0857

           Wood   453891   3 (9)
	          major 0.5413
	              i 0.5413
	           Wood 0.5244
	           good 0.2816
	            non 0.2816
	              - 0.2253
	           same 0.1825
	            two 0.1825
	           </S> 0.0857

         nearly   453901   1 (8)
	         nearly 0.5413
	          early 0.5413
	              a 0.5413
	           that 0.5413
	    Calandrella 0.5244
	              - 0.2816
	              , 0.1825
	           </S> 0.0857

            Sky   453922   4 (11)
	            Pyi 0.7555
	              C 0.5413
	           well 0.5413
	            See 0.5097
	            sub 0.5097
	            Sky 0.5097
	            non 0.2816
	              - 0.2253
	           same 0.1825
	            two 0.1825
	           </S> 0.0857

              -   453925   4 (6)
	             us 0.5413
	            the 0.5244
	             of 0.5097
	              , 0.1825
	              - 0.1825
	           </S> 0.0857

       perching   453974   1 (8)
	       perching 0.7555
	             us 0.5413
	          being 0.5413
	              , 0.2816
	           </S> 0.2253
	              a 0.1825
	            the 0.0857
	            you 0.0655

            the   454067   1 (5)
	             us 0.5413
	              , 0.5413
	            the 0.5413
	              } 0.1229
	           </S> 0.0857

        bastard   454071   3 (11)
	           term 0.5413
	          major 0.5413
	          based 0.5244
	        bastard 0.5244
	        Bastard 0.5244
	              - 0.2253
	           same 0.1825
	          whole 0.1825
	            two 0.1825
	            way 0.1825
	           </S> 0.0857

        primary   454079   1 (10)
	        primary 0.5413
	             it 0.5413
	        Privacy 0.5413
	          shoes 0.5413
	              a 0.5244
	             he 0.5244
	             of 0.2816
	           </S> 0.2816
	              , 0.1825
	              . 0.0857

            the   454104   1 (5)
	             us 0.5413
	              , 0.5413
	            the 0.5413
	              } 0.1229
	           </S> 0.0857

       blackish   454108   1 (10)
	         blacky 0.7555
	       blackish 0.7555
	          urban 0.5413
	          major 0.5413
	              - 0.2253
	           best 0.1825
	            way 0.1825
	           same 0.1825
	          world 0.1825
	           </S> 0.0857

        centres   454117   2 (9)
	           back 0.7555
	        centres 0.5413
	             of 0.5413
	              a 0.5413
	        cinerea 0.5413
	        control 0.5413
	           </S> 0.5097
	              , 0.1825
	              - 0.0857

         iipper   454148 inf (13)
	          Earth 0.5413
	              , 0.5413
	         pipier 0.5413
	          major 0.5413
	              a 0.5413
	           item 0.5413
	           land 0.5413
	              . 0.5413
	         ripper 0.5244
	         Ripper 0.5244
	           page 0.2253
	           most 0.1825
	           </S> 0.0857

        surface   454155   1 (8)
	              , 0.5413
	        service 0.5413
	           that 0.5413
	              . 0.5413
	             of 0.5413
	              a 0.5413
	        surface 0.5413
	           </S> 0.5413

        central   454249   1 (6)
	              , 0.5413
	              s 0.5413
	              a 0.5413
	        central 0.5413
	              } 0.1229
	           </S> 0.0857

        reddish   454272   1 (9)
	        reddish 0.5413
	           real 0.5413
	           Eyes 0.5413
	     1999/08/27 0.5244
	              a 0.5244
	          <UNK> 0.5244
	              - 0.5097
	           </S> 0.2656
	              , 0.0857

        centres   454298   1 (10)
	     exceptions 0.5413
	        cinerea 0.5413
	        centres 0.5413
	        control 0.5413
	    information 0.5413
	              a 0.5413
	            red 0.2816
	           </S> 0.2816
	              . 0.2816
	              , 0.0857

      outermost   454307   1 (7)
	      outermost 0.7555
	              a 0.5413
	            and 0.5413
	         yellow 0.5413
	           </S> 0.5413
	          other 0.2816
	            the 0.0857

        feather   454317   1 (6)
	        feather 0.7555
	          other 0.5413
	              a 0.5413
	              , 0.2816
	           </S> 0.1825
	          layer 0.0857

          brown   454325   1 (9)
	          Brown 0.5413
	          brown 0.5413
	              a 0.5244
	         pillow 0.5097
	         duster 0.2656
	           beds 0.2253
	           </S> 0.1825
	              . 0.1825
	              , 0.0857

          dusky   454346   4 (7)
	           dust 0.7555
	             us 0.7555
	            due 0.7555
	          dusky 0.5413
	              , 0.2253
	           </S> 0.1825
	           site 0.0857

      remaining   454405   1 (5)
	              a 0.5413
	              , 0.5413
	      remaining 0.5413
	              } 0.1229
	           </S> 0.0857

       feathers   454415   1 (7)
	       feathers 0.7555
	        kmalloc 0.5413
	       features 0.5244
	              a 0.2816
	              , 0.1825
	           </S> 0.1218
	             in 0.0857

       blackish   454424   2 (10)
	           back 0.7555
	              % 0.5413
	             us 0.5413
	         caches 0.5413
	       blackish 0.5413
	              a 0.5244
	              ) 0.5097
	           </S> 0.2816
	              . 0.1825
	              , 0.0857

     triangular   454448   1 (8)
	     triangular 0.5413
	              a 0.5413
	        program 0.4979
	            and 0.1825
	              ( 0.1825
	              , 0.1825
	              . 0.0857
	           </S> 0.0655

              a   454472   1 (6)
	              a 0.5413
	             us 0.5413
	            the 0.5413
	              , 0.5413
	              } 0.1229
	           </S> 0.0857

        buffish   454480   1 (9)
	             of 0.5413
	            off 0.5413
	       business 0.5413
	           File 0.5413
	        buffish 0.5413
	              a 0.5097
	           </S> 0.2253
	              , 0.1825
	          range 0.0857

            ear   454548   1 (7)
	              a 0.5413
	              , 0.5413
	           year 0.5413
	            ear 0.5413
	            arz 0.5413
	              } 0.1229
	           </S> 0.0857

         rufous   454560   2 (11)
	              - 0.7555
	          rufus 0.5413
	         rufous 0.5413
	        sources 0.5413
	          group 0.5413
	   descriptions 0.5413
	              a 0.5244
	          white 0.5244
	           </S> 0.2816
	              . 0.0857
	              , 0.0857

         cheeks   454595   1 (6)
	          check 0.5413
	              a 0.5413
	              , 0.5413
	         cheeks 0.5413
	              } 0.1229
	           </S> 0.0857

    distinctl}'   454631   1 (5)
	     distinctly 0.7555
	        details 0.5413
	              , 0.5097
	           </S> 0.2816
	              a 0.0857

      yellowish   454643   1 (8)
	           year 0.5413
	              , 0.5413
	              . 0.5413
	           full 0.5413
	          major 0.5413
	           </S> 0.5413
	              a 0.5413
	      yellowish 0.5413

         flanks   454686   1 (6)
	              a 0.5413
	         Thanks 0.5413
	         flanks 0.5413
	              , 0.5413
	              } 0.1229
	           </S> 0.0857

       brownish   454693   2 (7)
	            you 0.7555
	       browsing 0.5413
	       brownish 0.5413
	              a 0.5244
	           </S> 0.5097
	              , 0.1825
	             of 0.0857

         throat   454704   1 (6)
	              , 0.5413
	              a 0.5413
	         throat 0.5413
	          torax 0.5413
	              } 0.1229
	           </S> 0.0857

       narrowly   454711   1 (6)
	       narrowly 0.5413
	              a 0.5097
	             is 0.2816
	           </S> 0.2816
	              , 0.1825
	              . 0.0857

         breast   454742   1 (6)
	         breast 0.5413
	              , 0.5413
	              a 0.5413
	          break 0.5413
	              } 0.1229
	           </S> 0.0857

        broadly   454760   1 (9)
	        product 0.5413
	        broadly 0.5413
	             us 0.5413
	         cancer 0.5413
	              a 0.5244
	           </S> 0.5097
	              , 0.1825
	              . 0.1825
	             of 0.0857

       streaked   454768   1 (7)
	       streaked 0.7555
	         stream 0.5413
	              a 0.5413
	            and 0.2253
	           </S> 0.1825
	        defined 0.1825
	              , 0.0857

              ;   454777   3 (7)
	             us 0.5413
	          while 0.5413
	              ; 0.5244
	           </S> 0.5097
	            the 0.5097
	              , 0.2816
	           with 0.0857

           bill   454779   1 (7)
	           will 0.5413
	              , 0.5413
	              a 0.5413
	           bill 0.5413
	            cia 0.5413
	              } 0.1229
	           </S> 0.0857

           dark   454784   1 (8)
	            day 0.7555
	           dark 0.7555
	            arz 0.5413
	              a 0.5097
	           </S> 0.1825
	              , 0.1825
	            and 0.1825
	              . 0.0857

           feet   454816   1 (7)
	           free 0.5413
	              a 0.5413
	              , 0.5413
	           feet 0.5413
	              ) 0.5097
	              } 0.1229
	           </S> 0.0857

          light   454821   1 (6)
	          light 0.7555
	              a 0.5097
	           </S> 0.1825
	             of 0.1825
	              , 0.0857
	              . 0.0857

           horn   454827   1 (10)
	           horn 0.7555
	        reddish 0.5413
	       Tide2006 0.5413
	          corax 0.5413
	           here 0.5244
	            box 0.5097
	              a 0.2816
	              , 0.1825
	           </S> 0.1825
	             of 0.0857

              -   454831   4 (7)
	             us 0.7555
	           dark 0.5413
	            the 0.5097
	              - 0.1825
	              . 0.1825
	           </S> 0.1825
	              , 0.0857

           iris   454839   1 (7)
	              a 0.5413
	             is 0.5413
	              , 0.5413
	           iris 0.5413
	             iu 0.5413
	              } 0.1229
	           </S> 0.0857

          hazel   454844   1 (7)
	           have 0.7555
	          hazel 0.7555
	           here 0.7555
	          Pales 0.5413
	              ) 0.2816
	           </S> 0.1825
	              , 0.0857

              .   454849   3 (6)
	            the 0.7555
	             us 0.5413
	              . 0.2816
	           </S> 0.2656
	              , 0.1825
	           eyes 0.0857

      soniewhal   454870   5 (9)
	        Toniwha 0.5413
	      nonlethal 0.5413
	       societal 0.5413
	        similar 0.5413
	              a 0.5244
	              , 0.5244
	       somewhat 0.5244
	           </S> 0.5097
	           from 0.0857

             as   454880   1 (6)
	           </S> 0.5413
	             us 0.5413
	           that 0.5413
	              , 0.5413
	            the 0.5413
	             as 0.5413

           Sk3'   454890 inf (11)
	             Sk 0.7555
	              A 0.5413
	              , 0.5413
	            mid 0.5413
	            non 0.5413
	           Skip 0.5244
	           Site 0.2816
	           case 0.1825
	           same 0.1825
	          world 0.1825
	           </S> 0.0857

              -   454894   1 (6)
	           </S> 0.5413
	              , 0.5413
	             of 0.5413
	              - 0.5413
	             us 0.5413
	            the 0.5413

            the   454902   1 (5)
	             us 0.5413
	            the 0.5413
	              , 0.5413
	              } 0.1229
	           </S> 0.0857

      deeidedly   454917   1 (9)
	      decidedly 0.7555
	         deeded 0.7555
	        Aidedly 0.5413
	           much 0.5413
	        deedily 0.5413
	        decided 0.5244
	              , 0.1825
	           </S> 0.1825
	              a 0.0857

        shorter   454927   1 (8)
	        shorter 0.5413
	           </S> 0.5413
	             us 0.5413
	          store 0.5413
	             to 0.5413
	              , 0.5413
	            out 0.5413
	              a 0.5413

          Yonng   454965 inf (8)
	              , 0.7555
	            You 0.7555
	           Yong 0.5413
	          Yonne 0.5413
	              a 0.5413
	              s 0.5413
	              " 0.2816
	           </S> 0.0857

        l:)irds   454971   1 (5)
	          birds 0.5413
	         lairds 0.5413
	              a 0.5413
	              , 0.5413
	           </S> 0.5413

            are   454979   1 (4)
	           area 0.5413
	            are 0.5413
	            arz 0.5413
	            the 0.5413

         rnfons   454988 inf (14)
	          frons 0.5413
	         infons 0.5413
	          rufus 0.5413
	         refons 0.5413
	       renflons 0.5413
	           Info 0.5244
	          fully 0.5097
	              a 0.4979
	            you 0.2816
	             to 0.2656
	         likely 0.2253
	           </S> 0.1825
	              , 0.1825
	           than 0.0857

          above   454995   1 (8)
	           </S> 0.5413
	          above 0.5413
	              , 0.5413
	              I 0.5413
	             to 0.5413
	          about 0.5413
	        arborea 0.5413
	           know 0.5413

          below   455033   1 (6)
	              , 0.5413
	          below 0.5413
	              a 0.5413
	          Aedon 0.5413
	              } 0.1229
	           </S> 0.0857

        3'ellow   455053 inf (10)
	         Yellow 0.7555
	           ello 0.5413
	          below 0.5244
	              a 0.4979
	      expensive 0.2816
	             to 0.2656
	         likely 0.2253
	           </S> 0.1825
	              , 0.1825
	           than 0.0857

        spotted   455082   1 (9)
	         people 0.5413
	             do 0.5413
	        spotted 0.5413
	              a 0.5413
	           than 0.5244
	           </S> 0.2816
	              , 0.1825
	              . 0.1825
	      available 0.0857

             On   455118   1 (7)
	             in 0.7555
	              , 0.7555
	             On 0.7555
	             us 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

            Dr.   455243   1 (11)
	            Dry 0.5413
	              ( 0.5413
	           </S> 0.5413
	              a 0.5413
	            and 0.5413
	             Dr 0.5413
	        writers 0.5413
	            arz 0.5413
	            are 0.5413
	          which 0.1825
	            the 0.0857

        vSharpe   455247   1 (8)
	         Sharpe 0.7555
	          share 0.5413
	              a 0.5413
	             A. 0.2816
	         Jekyll 0.2816
	              , 0.1825
	           King 0.1825
	           </S> 0.0857

            and   455255   1 (5)
	              , 0.5413
	            and 0.5413
	           </S> 0.5413
	             's 0.5413
	              s 0.5413

        Lullula   455306   1 (10)
	        Lullula 0.7555
	          value 0.5413
	              s 0.5413
	       specific 0.5413
	              . 0.2816
	              a 0.2253
	             up 0.1825
	           mail 0.1825
	             to 0.1825
	           </S> 0.0857

              ,   455313   1 (7)
	              , 0.5413
	             us 0.5413
	           </S> 0.5413
	              - 0.5413
	            the 0.5413
	          genus 0.5413
	        arborea 0.0857

           Kaup   455315   1 (10)
	              - 0.5413
	              a 0.5413
	            and 0.5413
	           </S> 0.5413
	      therefore 0.5413
	          <UNK> 0.5413
	           Kaup 0.5413
	           lava 0.5244
	           your 0.2816
	            the 0.0857

         IvU-lu   455357 inf (8)
	              s 0.5413
	          Ivalu 0.5413
	             In 0.2816
	              a 0.2816
	              , 0.1825
	              ) 0.1825
	          <UNK> 0.1825
	           </S> 0.0857

           Col.   455422   2 (9)
	              , 0.7555
	           Cold 0.5413
	           Coll 0.5413
	            Col 0.5413
	              a 0.5413
	           only 0.5413
	           sala 0.5413
	              " 0.2816
	           </S> 0.0857

             L.   455427   2 (6)
	              a 0.5413
	             L. 0.5097
	             of 0.1825
	          James 0.1825
	              , 0.1825
	           </S> 0.0857

          Irb}'   455436   1 (11)
	           Irby 0.7555
	           Iraq 0.7555
	        However 0.5413
	            Irb 0.5413
	             A. 0.5413
	         Claver 0.5413
	              A 0.2816
	              , 0.1825
	          <UNK> 0.1825
	             .. 0.0857
	           </S> 0.0857

    Ornithology   455452   1 (7)
	    Ornithology 0.7555
	        Journal 0.5413
	            One 0.5413
	           with 0.2816
	              a 0.2816
	              , 0.1825
	           </S> 0.0857

          sa3'S   455494 inf (9)
	           sala 0.7555
	           SasS 0.5413
	             sa 0.5244
	              a 0.2816
	              x 0.2656
	           said 0.2253
	            and 0.1825
	              , 0.1825
	           </S> 0.0857

           that   455500   1 (7)
	              a 0.5413
	              " 0.5413
	           </S> 0.5413
	              s 0.5413
	              = 0.5413
	              , 0.5413
	           that 0.5413

     Andalucian   455514   1 (9)
	      Andalucia 0.7555
	     Andalucian 0.7555
	              B 0.5413
	              , 0.5413
	       American 0.2253
	           same 0.1825
	          other 0.1825
	            top 0.1825
	           </S> 0.0857

           Wood   455534   5 (10)
	             EU 0.5413
	              i 0.5413
	             by 0.5413
	            sub 0.5413
	           Wood 0.5244
	            non 0.2816
	           good 0.2816
	              - 0.2253
	           same 0.1825
	           </S> 0.0857

              -   455538   4 (6)
	             us 0.5413
	            the 0.5244
	             of 0.5097
	              - 0.1825
	           </S> 0.0857
	              , 0.0655

           Lark   455539   1 (10)
	           Lark 0.7555
	              s 0.5413
	          Mizer 0.5413
	       wrapping 0.5413
	            are 0.5097
	              . 0.2816
	             it 0.2816
	              a 0.2253
	             to 0.1825
	           </S> 0.0857

    frequenting   455642   1 (8)
	    frequenting 0.7555
	              a 0.5413
	           2005 0.5413
	           </S> 0.5413
	              , 0.5413
	            and 0.5413
	           free 0.2656
	            the 0.0857

          scrub   455654   2 (8)
	         places 0.7555
	          scrub 0.5413
	          Parus 0.5413
	           such 0.5244
	           </S> 0.5244
	              , 0.5244
	              a 0.2816
	            the 0.0857

            not   455666   2 (7)
	             us 0.5244
	            not 0.5097
	              , 0.2816
	          there 0.1825
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

           \&xy   455670 inf (12)
	           Next 0.7555
	             xy 0.7555
	            Oxy 0.5413
	           sexy 0.5244
	            too 0.2816
	        limited 0.2656
	              a 0.1825
	              , 0.1825
	           have 0.1825
	           only 0.1825
	           </S> 0.1825
	             be 0.0857

          thick   455675   1 (7)
	              a 0.5413
	              , 0.5413
	             to 0.5413
	          thick 0.5413
	           </S> 0.5413
	           Pica 0.5413
	          think 0.5413

       locality   455694   1 (8)
	       locality 0.7555
	              a 0.5413
	           town 0.5413
	          local 0.5097
	           </S> 0.2816
	              , 0.2816
	             of 0.2816
	       searches 0.0857

      Gibraltar   455708   1 (9)
	      Gibraltar 0.7555
	      Australia 0.5413
	             us 0.5097
	           </S> 0.2816
	              , 0.2816
	              a 0.2656
	             to 0.2656
	         future 0.1825
	            the 0.0857

      Chaparaks   455728 inf (13)
	     Chaparrals 0.7555
	         Charak 0.7555
	        Company 0.5413
	      Chaparall 0.5413
	     Chaparajos 0.5413
	              t 0.5413
	         Chapar 0.5413
	              . 0.5413
	       Charakas 0.5413
	          world 0.1825
	          first 0.1825
	           same 0.1825
	           </S> 0.0857

              (   455738   1 (6)
	           </S> 0.5413
	             of 0.5413
	              , 0.5413
	            the 0.5413
	             us 0.5413
	              ( 0.5413

           Well   455788   1 (8)
	            Web 0.7555
	           Well 0.7555
	              , 0.7555
	          paper 0.5413
	              a 0.5413
	           sala 0.5413
	              " 0.2816
	           </S> 0.0857

       vSpanish   455806   6 (10)
	              , 0.5413
	            the 0.5413
	              a 0.5413
	             us 0.5413
	        English 0.5413
	        Spanish 0.2816
	         public 0.1825
	           main 0.1825
	            top 0.1825
	           </S> 0.0857

           bird   455815   1 (8)
	             of 0.5413
	           bird 0.5413
	              a 0.5413
	             by 0.5413
	              , 0.5413
	           </S> 0.5413
	            cia 0.5413
	         Double 0.5413

           they   455865   1 (5)
	              , 0.5413
	              a 0.5413
	           they 0.5413
	              } 0.1229
	           </S> 0.0857

          never   455901   1 (7)
	          never 0.5413
	              a 0.5413
	         impact 0.5413
	    Calandrella 0.5244
	              - 0.2816
	              , 0.1825
	           </S> 0.0857

        remains   455907   1 (7)
	        remains 0.7555
	        reading 0.5244
	              , 0.2253
	              a 0.2253
	           </S> 0.2253
	           have 0.1825
	           been 0.0857

          onl}'   455999   4 (7)
	        nowhere 0.5413
	          ollon 0.5413
	          going 0.2816
	           only 0.2656
	              , 0.1825
	           </S> 0.1825
	              a 0.0857

       timbered   456020   1 (7)
	       timbered 0.7555
	             us 0.5413
	          there 0.5413
	              , 0.2816
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

            not   456038   1 (7)
	              , 0.5413
	            and 0.5413
	              a 0.5413
	            not 0.5413
	             us 0.5413
	              } 0.1229
	           </S> 0.0857

      clearings   456119   1 (9)
	      clearings 0.7555
	          major 0.5413
	         delays 0.2816
	              a 0.1825
	              , 0.1825
	             in 0.1825
	         change 0.1825
	            the 0.0857
	           </S> 0.0655

       although   456164   1 (9)
	           </S> 0.5413
	       although 0.5413
	            but 0.5413
	              ( 0.5413
	              I 0.5413
	            and 0.5413
	        through 0.2816
	           that 0.1825
	            the 0.0857

        resorts   456197   5 (9)
	        results 0.7555
	            son 0.5413
	     fatalities 0.5413
	              a 0.5413
	        resorts 0.5244
	              . 0.2816
	              , 0.2816
	           </S> 0.2816
	       searches 0.0857

            for   456207   1 (6)
	              a 0.5413
	              , 0.5413
	            for 0.5413
	            arz 0.5413
	              } 0.1229
	           </S> 0.0857

        commons   456229   2 (9)
	         heaths 0.7555
	        company 0.5413
	             me 0.5413
	        commons 0.5413
	         corone 0.5413
	           </S> 0.5097
	              , 0.5097
	              a 0.5097
	            the 0.0857

            but   456239   1 (6)
	             us 0.5413
	              a 0.5413
	              , 0.5413
	            but 0.5413
	              } 0.1229
	           </S> 0.0857

          trees   456243   2 (10)
	          Pales 0.5413
	          trees 0.5244
	          these 0.2816
	           they 0.1825
	           </S> 0.1825
	              , 0.1825
	              a 0.1825
	            not 0.1825
	              I 0.0857
	             it 0.0655

              '   456271   2 (9)
	             us 0.7555
	              ' 0.5413
	            due 0.5097
	            the 0.5097
	             in 0.2656
	           </S> 0.2656
	              , 0.1825
	            for 0.1825
	             to 0.0857

       Although   456346   1 (7)
	              , 0.7555
	            Not 0.7555
	       Although 0.7555
	        through 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

          feeds   456417   2 (7)
	          needs 0.7555
	          feeds 0.5413
	              a 0.5413
	    Calandrella 0.5244
	              - 0.2816
	              , 0.1825
	           </S> 0.0857

         roosts   456464   1 (8)
	         roosts 0.7555
	         rights 0.7555
	             us 0.5413
	              , 0.1825
	           </S> 0.1825
	            has 0.1825
	              a 0.1825
	             be 0.0857

         builds   456475   1 (9)
	         builds 0.5244
	           will 0.2253
	             in 0.1825
	           </S> 0.1825
	              a 0.1825
	           that 0.1825
	              , 0.1825
	             to 0.1825
	            the 0.0857

        tussock   456567   1 (10)
	        tussock 0.7555
	          large 0.5413
	           this 0.5413
	              s 0.5413
	              . 0.2816
	              a 0.2253
	           time 0.2253
	           year 0.2253
	             to 0.1825
	           </S> 0.0857

             it   456591   1 (6)
	              , 0.5413
	             iu 0.5413
	              a 0.5413
	             it 0.5413
	              } 0.1229
	           </S> 0.0857

     compactl}'   456602   2 (8)
	        solidly 0.5413
	      compactly 0.5244
	              a 0.5097
	       complete 0.5097
	             to 0.2656
	           </S> 0.1825
	              , 0.1825
	           than 0.0857

          built   456613   1 (8)
	          built 0.5413
	           than 0.5413
	              , 0.5413
	            but 0.5413
	             us 0.5413
	              a 0.5413
	             to 0.5413
	           </S> 0.5413

           Sk^^   456636 inf (10)
	             Sk 0.7555
	          major 0.5413
	              , 0.5413
	            non 0.5413
	              . 0.5413
	              a 0.5413
	           Skip 0.5244
	           Site 0.2816
	           most 0.1825
	           </S> 0.0857

              -   456640   1 (7)
	             of 0.5413
	              . 0.5413
	              , 0.5413
	             us 0.5413
	            the 0.5413
	           </S> 0.5413
	              - 0.5413

      sometimes   456648   1 (6)
	    Calandrella 0.5413
	              a 0.5413
	              , 0.5413
	      sometimes 0.5413
	              } 0.1229
	           </S> 0.0857

          couch   456661   1 (10)
	          couch 0.7555
	          comix 0.7555
	            sea 0.5413
	            non 0.5413
	           self 0.5413
	          could 0.5244
	              , 0.2816
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

          grass   456703   1 (9)
	          grass 0.7555
	          great 0.5413
	              a 0.5413
	   segmentation 0.5097
	           </S> 0.2816
	              . 0.2816
	         detail 0.2816
	              , 0.2253
	         points 0.0857

      sometimes   456742   1 (5)
	      sometimes 0.5413
	              a 0.5413
	              , 0.5413
	              } 0.1229
	           </S> 0.0857

          grass   456762   1 (7)
	          grass 0.5244
	          great 0.5097
	              , 0.2816
	             us 0.2816
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

          bents   456768   2 (9)
	           best 0.7555
	        section 0.5413
	    information 0.5413
	      withereth 0.5413
	          bents 0.5413
	              a 0.5244
	           </S> 0.1825
	              . 0.1825
	              , 0.0857

        Central   456913   2 (7)
	         Cettia 0.5413
	         Center 0.5097
	        Central 0.5097
	              , 0.2816
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

        Lilford   456955 inf (11)
	        Linford 0.7555
	        Lifford 0.7555
	        million 0.5413
	          title 0.5413
	              , 0.5413
	        Milford 0.5244
	              a 0.1825
	              s 0.1825
	           </S> 0.1825
	          <UNK> 0.0857
	              1 0.0857

          until   456984   3 (7)
	              a 0.7555
	             of 0.7555
	          under 0.5413
	          until 0.5413
	          Munia 0.5413
	           </S> 0.1825
	              , 0.0857

      Secholiin   457020 inf (12)
	       Decholin 0.5413
	       Scholion 0.5413
	       Scholing 0.5413
	      Schonlein 0.5413
	              . 0.5413
	         Sechin 0.5413
	         people 0.5413
	           </S> 0.1825
	              a 0.1825
	              s 0.1825
	          <UNK> 0.0857
	              1 0.0857

       huffish-   457072 inf (11)
	        huffish 0.5413
	            his 0.5413
	          white 0.5413
	   instructions 0.5413
	     trademarks 0.2816
	              , 0.2253
	              . 0.1825
	           used 0.1825
	              a 0.1825
	           </S> 0.1825
	            not 0.0857

             or   457081   1 (6)
	              a 0.5413
	             or 0.5413
	             us 0.5413
	              , 0.5413
	             to 0.5413
	           </S> 0.5413

         greyer   457167   2 (9)
	          great 0.7555
	       district 0.5413
	              . 0.5413
	        chronic 0.5413
	         greyer 0.5413
	              , 0.2816
	              a 0.2816
	           </S> 0.1825
	            the 0.0857

          spots   457174   1 (9)
	             of 0.5413
	        disease 0.5413
	              B 0.5413
	    regulations 0.5413
	           site 0.5413
	          spots 0.5413
	         spinas 0.5413
	           </S> 0.5244
	              , 0.0857

         massed   457288   1 (8)
	         massed 0.7555
	           made 0.5413
	              a 0.5413
	           look 0.5413
	         Passer 0.5413
	              , 0.5244
	           </S> 0.2816
	      populated 0.0857

             as   457350   1 (7)
	              I 0.5413
	             us 0.5413
	           with 0.5413
	              , 0.5413
	             as 0.5413
	              } 0.1229
	           </S> 0.0857

      confluent   457401   1 (10)
	      confluent 0.7555
	             us 0.5413
	           more 0.5413
	        content 0.5244
	              a 0.4011
	      expensive 0.2816
	              , 0.2816
	              . 0.2253
	           </S> 0.2253
	           than 0.0857

          being   457464   1 (6)
	          being 0.7555
	              a 0.5413
	    Calandrella 0.5244
	              - 0.2816
	              , 0.1825
	           </S> 0.0857

     generall}'   457470   3 (6)
	       generall 0.5413
	       formally 0.5413
	      generally 0.5097
	           </S> 0.1825
	              , 0.1825
	              a 0.0857

       admitted   457481   1 (8)
	            not 0.5413
	              I 0.5413
	      available 0.5413
	          after 0.5413
	             to 0.5413
	       admitted 0.5413
	              , 0.5413
	           </S> 0.5413

              '   457504 inf (8)
	             us 0.7555
	          match 0.5413
	              , 0.5413
	             to 0.2816
	            the 0.1825
	            one 0.1825
	           </S> 0.1825
	            all 0.0857

       resemble   457506   1 (9)
	       resemble 0.7555
	           read 0.2816
	              a 0.2816
	            for 0.2253
	              s 0.1825
	            The 0.1825
	             in 0.1825
	           </S> 0.0857
	              , 0.0655

         cjuite   457627 inf (10)
	         cluite 0.5413
	           uite 0.5413
	          cuite 0.5413
	        juncite 0.5413
	           site 0.5097
	              a 0.5097
	            for 0.2656
	           </S> 0.1825
	              . 0.0857
	              , 0.0857

          eaidy   457634 inf (8)
	              , 0.5413
	          ediya 0.5413
	           </S> 0.5413
	              a 0.5413
	          Saidy 0.5413
	            ead 0.5413
	           said 0.5413
	            the 0.5413

         enough   457640   1 (3)
	         enough 0.5413
	        through 0.5413
	         Keough 0.5413

     consisting   457735   1 (10)
	              a 0.5413
	    Calandrella 0.5413
	            and 0.5413
	              & 0.5413
	              - 0.5413
	           </S> 0.5413
	     consisting 0.5413
	         online 0.5413
	            was 0.2253
	            the 0.0857

              -   457806   6 (8)
	             DT 0.5413
	             us 0.5413
	            the 0.5244
	             of 0.5097
	       Flooring 0.2816
	              - 0.1825
	           </S> 0.0857
	              , 0.0655

             's   457811   5 (8)
	              a 0.5413
	             us 0.5413
	              ! 0.5244
	             is 0.5244
	              - 0.2816
	             's 0.2816
	              , 0.1825
	           </S> 0.0857

          ver^'   457822   3 (6)
	            ver 0.7555
	          verve 0.7555
	           very 0.2253
	           </S> 0.1825
	              , 0.1825
	              a 0.0857

           pnre   457828   1 (10)
	           page 0.5413
	            pre 0.5413
	           pure 0.5413
	              a 0.5413
	           inre 0.5413
	              , 0.5413
	             to 0.5413
	           </S> 0.5413
	           pren 0.5413
	          parva 0.5413

            and   457833   1 (3)
	            and 0.5413
	            the 0.5413
	            arz 0.5413

            b}-   457851   2 (7)
	             us 0.5097
	              - 0.2816
	             by 0.2816
	           </S> 0.1825
	              , 0.1825
	              a 0.1825
	            the 0.0857

          man}^   457855   1 (8)
	            man 0.5413
	              . 0.5413
	           mana 0.5413
	           </S> 0.5413
	          major 0.5413
	              , 0.5413
	           many 0.5413
	              a 0.5413

             it   457861   1 (3)
	             iu 0.5413
	             it 0.5413
	            the 0.5413

     certaiul}'   457927   2 (7)
	         really 0.7555
	      certainly 0.5413
	          could 0.5244
	              a 0.5244
	           </S> 0.2816
	              , 0.2816
	             is 0.0857

             is   457938   1 (7)
	              , 0.5413
	            not 0.5413
	           does 0.5413
	             is 0.5413
	              s 0.5413
	           </S> 0.5413
	              a 0.5413

   nevertheless   457991   1 (6)
	              a 0.5413
	        request 0.5413
	              , 0.5413
	   nevertheless 0.5413
	              } 0.1229
	           </S> 0.0857

     persevered   458030   1 (8)
	     persevered 0.5413
	       provided 0.2816
	           </S> 0.1825
	              , 0.1825
	            the 0.1825
	           used 0.1825
	              . 0.1825
	              a 0.0857

             it   458104   1 (6)
	              a 0.5413
	             it 0.5413
	             iu 0.5413
	              , 0.5413
	              } 0.1229
	           </S> 0.0857

            but   458182   1 (6)
	              s 0.5413
	              , 0.5413
	            but 0.5413
	              a 0.5413
	              } 0.1229
	           </S> 0.0857

            mj-   458369   4 (10)
	             mj 0.7555
	            mjw 0.5413
	              , 0.2816
	             us 0.2656
	             my 0.2656
	           </S> 0.1825
	             an 0.1825
	           your 0.1825
	              a 0.1825
	            the 0.0857

            old   458373   1 (8)
	              . 0.5413
	           </S> 0.5413
	              , 0.5413
	            old 0.5413
	             of 0.5413
	              a 0.5413
	             us 0.5413
	           best 0.5413

       Grayling   458393   2 (9)
	       training 0.7555
	    Blatherwick 0.5413
	       Grayling 0.5413
	              A 0.2816
	          <UNK> 0.1825
	             A. 0.1825
	              , 0.1825
	           </S> 0.0857
	             's 0.0655

  Sittiugbourne   458406   1 (8)
	  Sittingbourne 0.5413
	              , 0.5097
	         course 0.5097
	        Service 0.5097
	             us 0.5097
	           </S> 0.2656
	              a 0.1825
	            the 0.0857

              ;   458420   1 (6)
	              , 0.5413
	              ; 0.5413
	            the 0.5413
	             us 0.5413
	              . 0.5413
	           </S> 0.5413

             we   458422   1 (5)
	             we 0.5413
	             us 0.5413
	              ) 0.5097
	              } 0.1229
	           </S> 0.0857

     delightful   458505   4 (10)
	          sweet 0.5413
	          theme 0.5413
	     subjective 0.5413
	     delightful 0.5244
	          total 0.2253
	           date 0.2253
	              - 0.2253
	          right 0.1825
	           same 0.1825
	           </S> 0.0857

        looking   458538   1 (6)
	              a 0.5413
	              , 0.5413
	    Calandrella 0.5413
	        looking 0.5413
	              } 0.1229
	           </S> 0.0857

         espied   458557   1 (11)
	         espied 0.7555
	           used 0.7555
	            had 0.5097
	              a 0.5097
	          found 0.4979
	              ( 0.2816
	             to 0.2253
	              , 0.1825
	           </S> 0.1825
	             be 0.1825
	             as 0.0857

      promineut   458651   5 (11)
	           send 0.5413
	        promine 0.5413
	       prominet 0.5413
	    prominuerit 0.5413
	      prominent 0.5244
	           stay 0.2816
	           from 0.2816
	              , 0.1825
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

            eye   458661   1 (9)
	              , 0.5413
	       informed 0.5413
	              a 0.5413
	            eye 0.5413
	              . 0.5413
	           </S> 0.5413
	            New 0.5413
	          split 0.5413
	            Pyi 0.5413

              -   458664   3 (6)
	             us 0.7555
	            the 0.5097
	              - 0.1825
	              , 0.1825
	           </S> 0.1825
	              . 0.0857

      Presently   458673 inf (8)
	              , 0.7555
	              a 0.5413
	    Presciently 0.5413
	        Present 0.5413
	      presently 0.5413
	       recently 0.5413
	              " 0.2816
	           </S> 0.0857

          awaj^   458693   6 (12)
	           waaj 0.5413
	            awa 0.5413
	             us 0.5413
	              I 0.5413
	          Zawaj 0.5413
	           away 0.5244
	           </S> 0.5244
	          again 0.5244
	            off 0.5244
	              . 0.1825
	              , 0.1825
	             to 0.0857

         rising   458699   1 (6)
	         rating 0.5413
	              a 0.5413
	           </S> 0.5413
	            the 0.5413
	              , 0.5413
	         rising 0.5413

      obliquely   458715   1 (7)
	      obliquely 0.7555
	          other 0.5413
	              a 0.5413
	          major 0.2816
	              , 0.1825
	           </S> 0.1825
	           time 0.0857

       swinging   458744   1 (10)
	       swinging 0.7555
	            can 0.5413
	             us 0.5413
	           said 0.5413
	              a 0.5413
	           came 0.2816
	            the 0.2656
	           </S> 0.1825
	       increase 0.1825
	              , 0.0857

            aud   458775   1 (8)
	            and 0.5413
	           </S> 0.5413
	              " 0.5413
	            aud 0.5413
	            arz 0.5413
	              I 0.5413
	            who 0.1825
	            the 0.0857

         rising   458779   1 (6)
	          using 0.5413
	              , 0.5413
	              a 0.5413
	         rising 0.5413
	           </S> 0.5244
	              0 0.0857

         spiral   458850   1 (10)
	         spiral 0.7555
	        special 0.7555
	         spinas 0.5413
	         calves 0.5413
	              a 0.5097
	              - 0.1825
	              , 0.1825
	              . 0.1825
	           </S> 0.1825
	          range 0.0857

         curves   458857   3 (8)
	              a 0.5413
	         Corvus 0.5413
	         course 0.5244
	         curves 0.5244
	             as 0.5097
	              , 0.1825
	           </S> 0.1825
	             of 0.0857

      certainlj   458961   4 (10)
	           work 0.5413
	             us 0.5413
	       services 0.5413
	      certainly 0.5097
	              a 0.2253
	              , 0.1825
	              . 0.1825
	            was 0.1825
	           </S> 0.1825
	             is 0.0857

              ?   458970   1 (6)
	             it 0.5413
	              , 0.5413
	            the 0.5413
	             us 0.5413
	              ? 0.5413
	           </S> 0.5413

           does   458972   1 (6)
	             us 0.5413
	           down 0.5413
	           does 0.5413
	              ) 0.2816
	              " 0.2816
	           </S> 0.0857

       gloaming   458998   1 (9)
	       gloaming 0.7555
	              s 0.5413
	           good 0.5413
	              a 0.2816
	             of 0.2816
	              ) 0.1825
	              , 0.1825
	          <UNK> 0.1825
	           </S> 0.0857

        rustics   459023   1 (7)
	          Music 0.5413
	        rustica 0.5413
	        rustics 0.5413
	              a 0.2816
	              , 0.2816
	           </S> 0.2816
	             to 0.0857

    Nightingale   459064   1 (8)
	    Nightingale 0.7555
	              . 0.5413
	          night 0.5413
	       National 0.2253
	          other 0.1825
	           same 0.1825
	          world 0.1825
	           </S> 0.0857

            but   459078   1 (6)
	              a 0.5413
	            but 0.5413
	             us 0.5413
	              , 0.5413
	              } 0.1229
	           </S> 0.0857

       Although   459164   1 (6)
	       Although 0.7555
	              , 0.7555
	              I 0.7555
	         Anthus 0.5413
	              " 0.2816
	           </S> 0.0857

      sometimes   459183   1 (8)
	      sometimes 0.7555
	           site 0.5413
	              a 0.5244
	             is 0.2816
	           </S> 0.2656
	              . 0.1825
	              , 0.1825
	            flu 0.0857

          soars   459193   1 (8)
	          soars 0.7555
	          Board 0.5413
	           sala 0.5413
	              a 0.1825
	             be 0.1825
	           </S> 0.1825
	       referred 0.1825
	              , 0.0857

          quite   459199   2 (7)
	              a 0.7555
	           site 0.5413
	          quite 0.5413
	         quelea 0.5413
	              , 0.1825
	             to 0.0857
	           </S> 0.0857

           this   459229   2 (9)
	             it 0.7555
	        address 0.5413
	           this 0.5413
	            cia 0.5413
	              a 0.5413
	              " 0.5097
	              - 0.2816
	              , 0.1825
	           </S> 0.0857

       moreover   459261   1 (6)
	        However 0.5413
	              a 0.5413
	              , 0.5413
	       moreover 0.5413
	              } 0.1229
	           </S> 0.0857

             it   459270   2 (5)
	             iu 0.5413
	           </S> 0.5097
	             it 0.5097
	              a 0.5097
	              , 0.0857

      obliquely   459350   1 (7)
	      obliquely 0.7555
	         online 0.5413
	              , 0.2816
	             us 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

            b}'   459363   4 (10)
	              s 0.5413
	           beef 0.5244
	              ' 0.2656
	           more 0.1825
	             in 0.1825
	              , 0.1825
	             by 0.1825
	              a 0.1825
	            the 0.0857
	           </S> 0.0655

          jerky   459367   1 (9)
	           were 0.5413
	              . 0.5413
	              a 0.5413
	            few 0.5413
	           </S> 0.5413
	             us 0.5413
	            dew 0.5413
	              , 0.5413
	          jerky 0.5413

          drops   459373   3 (7)
	           does 0.7555
	              a 0.7555
	          drops 0.5413
	      movements 0.2816
	           </S> 0.2656
	              . 0.1825
	              , 0.0857

           Lark   459406   1 (9)
	           Lark 0.7555
	           this 0.5413
	              s 0.5413
	       wrapping 0.5413
	            are 0.5097
	              . 0.2816
	              a 0.2253
	             to 0.1825
	           </S> 0.0857

             On   459475   1 (7)
	             On 0.7555
	              , 0.7555
	             in 0.7555
	             us 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

            but   459689   1 (5)
	              a 0.5413
	            but 0.5413
	              , 0.5413
	             us 0.5413
	           </S> 0.0857

            fed   459710   1 (10)
	            fed 0.7555
	             us 0.7555
	            not 0.5244
	              a 0.5097
	            for 0.2816
	         became 0.2816
	           </S> 0.1825
	              . 0.1825
	              , 0.1825
	             as 0.0857

      repletion   459728   1 (10)
	      repletion 0.7555
	              , 0.5413
	           </S> 0.5413
	         people 0.5413
	             us 0.2816
	           cars 0.2816
	            say 0.2656
	             me 0.2656
	              a 0.1825
	            the 0.0857

          Later   459770   1 (8)
	              , 0.7555
	          Later 0.7555
	              a 0.5413
	          Pales 0.5413
	          after 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

            aud   459801   5 (8)
	            aud 0.5413
	            arz 0.5413
	              I 0.5097
	           </S> 0.2816
	              . 0.1825
	              , 0.1825
	            and 0.1825
	             of 0.0857

              I   459805   2 (6)
	            the 0.7555
	              , 0.5413
	              I 0.5413
	             us 0.5413
	           </S> 0.5097
	              0 0.0857

        exerted   459900   1 (8)
	        exerted 0.7555
	           were 0.5413
	           open 0.5413
	              , 0.1825
	            you 0.1825
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

       hawthorn   459954   1 (6)
	       hawthorn 0.7555
	          hours 0.5413
	              a 0.5413
	             of 0.5413
	           </S> 0.2253
	              , 0.0857

          About   460079   1 (5)
	              , 0.7555
	          About 0.7555
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

           bird   460148   5 (10)
	             by 0.7555
	             of 0.7555
	              a 0.7555
	           flip 0.7555
	           bird 0.5413
	            cia 0.5413
	              e 0.5413
	            eye 0.5413
	           </S> 0.5244
	              , 0.0857

           Wood   460190   1 (8)
	           Wood 0.7555
	           good 0.7555
	              a 0.5413
	              I 0.5413
	           File 0.5413
	             of 0.5244
	           </S> 0.2816
	              , 0.0857

     splendidly   460248   1 (10)
	           said 0.5413
	          major 0.5413
	     splendidly 0.5413
	          whole 0.5413
	             as 0.2816
	           </S> 0.2816
	          along 0.2253
	              a 0.2253
	              " 0.1825
	              , 0.0857

            One   460260   1 (7)
	              , 0.7555
	            One 0.7555
	              a 0.5413
	             us 0.5413
	            one 0.5413
	              " 0.2816
	           </S> 0.0857

              I   460381   1 (6)
	            the 0.7555
	              , 0.7555
	              I 0.7555
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

             it   460463   1 (7)
	              a 0.5413
	            the 0.5413
	              I 0.5413
	             it 0.5413
	              , 0.5413
	             iu 0.5413
	           </S> 0.0857

       uncann}'   460523   1 (11)
	             us 0.5413
	            him 0.5413
	        uncanny 0.5413
	              a 0.5097
	         unique 0.5097
	     misleading 0.5097
	            the 0.2816
	              , 0.1825
	           </S> 0.1825
	           like 0.1825
	           more 0.0857

              ;   460532   1 (6)
	              . 0.5413
	           </S> 0.5413
	            the 0.5413
	             us 0.5413
	              , 0.5413
	              ; 0.5413

        however   460534   1 (5)
	        however 0.5413
	          homer 0.5413
	              ) 0.5097
	              } 0.1229
	           </S> 0.0857

           Lark   460594   1 (10)
	           Lark 0.7555
	         profit 0.5413
	              s 0.5413
	            are 0.5097
	              . 0.2816
	              a 0.2253
	             to 0.1825
	             up 0.1825
	           mail 0.1825
	           </S> 0.0857

            and   460675   1 (6)
	              , 0.5413
	          again 0.5413
	            and 0.5413
	            arz 0.5413
	              } 0.1229
	           </S> 0.0857

            Sky   460751   1 (10)
	            Pyi 0.5413
	            See 0.5413
	            Sky 0.5413
	             of 0.5097
	              a 0.2253
	           </S> 0.1825
	              . 0.1825
	          house 0.1825
	          party 0.0857
	              , 0.0857

              -   460754   3 (5)
	             us 0.5413
	            the 0.5244
	              - 0.1825
	              , 0.1825
	           </S> 0.0857

          whose   460760   1 (8)
	          whose 0.5413
	              a 0.5413
	          those 0.5413
	    Calandrella 0.5244
	              " 0.5097
	              - 0.2816
	              , 0.1825
	           </S> 0.0857

              -   460803   4 (8)
	             us 0.7555
	             be 0.5244
	           </S> 0.2816
	              a 0.1825
	              , 0.1825
	              - 0.1825
	            the 0.1825
	             of 0.0857

              '   460879 inf (7)
	             us 0.5244
	             of 0.2253
	           </S> 0.1825
	              , 0.1825
	             's 0.1825
	              . 0.1825
	            the 0.0857

        figured   460906   1 (10)
	          found 0.5413
	             us 0.5413
	        figured 0.5413
	          rests 0.5413
	        hatches 0.5097
	              a 0.5097
	             of 0.2816
	             is 0.2253
	           </S> 0.1825
	              , 0.0857

           Farn   460945   1 (9)
	           Bock 0.5413
	             C. 0.5413
	         Schott 0.5413
	              a 0.5413
	              s 0.5413
	           Farn 0.5413
	            For 0.5097
	              , 0.1825
	           </S> 0.0857

             's   460949   1 (7)
	             's 0.7555
	             is 0.7555
	              a 0.5413
	              s 0.5413
	             D. 0.5413
	              , 0.1825
	           </S> 0.0857

     Familx-ALA   460965 inf (9)
	              - 0.7555
	              , 0.7555
	         Finite 0.5413
	       analysis 0.5413
	           will 0.5413
	              a 0.5413
	              / 0.5244
	              " 0.2816
	           </S> 0.0857

           UDID   460976 inf (8)
	              a 0.5413
	           UDDI 0.5413
	            USD 0.5413
	            UDI 0.5413
	              , 0.5413
	           UDIG 0.5413
	          GUDID 0.5413
	           </S> 0.5413

              E   460982 inf (9)
	             El 0.7555
	            the 0.7555
	              , 0.7555
	             us 0.5413
	             RE 0.5413
	             EE 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

        Crested   460990   1 (7)
	        Crested 0.7555
	              / 0.5413
	     Associated 0.5413
	        Chester 0.5244
	         Center 0.2816
	              - 0.1825
	           </S> 0.0857

         Alanda   461005   2 (10)
	              , 0.7555
	         Alando 0.5413
	              a 0.5413
	          Aland 0.5413
	        Alandia 0.5413
	         Alauda 0.5413
	         Alaska 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

       crisfafa   461012   1 (9)
	       crisaras 0.5413
	         Friday 0.5413
	              a 0.5413
	      configure 0.5413
	       cristata 0.5413
	          crisa 0.5413
	              , 0.5244
	           </S> 0.2253
	           Club 0.0857

              ,   461020   1 (5)
	             us 0.5413
	           </S> 0.5413
	              , 0.5413
	            the 0.5413
	       Marbella 0.5413

           LiNN   461022 inf (9)
	            LNN 0.5413
	           List 0.5413
	           LiNK 0.5413
	       Marbella 0.5413
	            NiL 0.5413
	            cia 0.5413
	             pp 0.2816
	              i 0.2816
	            the 0.0857

              .   461026   1 (5)
	           </S> 0.5413
	              , 0.5413
	             us 0.5413
	              . 0.5413
	            the 0.5413

       RESIDENT   461029 inf (9)
	              , 0.7555
	              I 0.7555
	        REIDEEN 0.5413
	        TRIDENT 0.5413
	        RESTENA 0.5413
	          IDENT 0.5413
	              / 0.5244
	              " 0.2816
	           </S> 0.0857

        Central   461041   3 (9)
	       Northern 0.5413
	         Cettia 0.5413
	         Center 0.5097
	        Central 0.5097
	        writing 0.2816
	              , 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

        Eiirope   461062  12 (16)
	        Eoropie 0.5413
	         Eiropa 0.5413
	           rope 0.5413
	           from 0.5413
	        siropen 0.5413
	         Valley 0.5413
	             us 0.5413
	              a 0.5413
	           Eiro 0.5413
	              . 0.5097
	              ) 0.4011
	         Europe 0.2816
	              , 0.2816
	         Africa 0.1825
	           </S> 0.1825
	     California 0.0857

            60°   461106   1 (8)
	           </S> 0.5413
	             60 0.5413
	            600 0.5413
	              , 0.5413
	             10 0.5413
	             us 0.2816
	              a 0.1825
	            the 0.0857

             N.   461110 inf (9)
	             us 0.5413
	            the 0.5413
	              a 0.5413
	             No 0.5413
	           </S> 0.5413
	              , 0.5413
	              % 0.5413
	          years 0.5413
	              . 0.5413

             in   461118   1 (6)
	             in 0.7555
	              , 0.7555
	             iu 0.5413
	              " 0.2816
	              ) 0.2816
	           </S> 0.0857

          North   461141   1 (6)
	          North 0.5413
	              , 0.5413
	              a 0.5413
	          corax 0.5413
	              } 0.1229
	           </S> 0.0857

     Senegambia   461168   1 (10)
	              , 0.5413
	       research 0.5413
	          music 0.5413
	     Senegambia 0.5413
	            try 0.2816
	             us 0.2816
	            you 0.2656
	              a 0.1825
	            see 0.1825
	            the 0.0857

      Abyssinia   461221   1 (7)
	      Abyssinia 0.7555
	         online 0.5097
	              , 0.2816
	             us 0.2816
	           </S> 0.2253
	              a 0.1825
	            the 0.0857

           east   461231   2 (7)
	              a 0.7555
	           each 0.5413
	           east 0.5413
	           lava 0.5413
	            non 0.5413
	           </S> 0.2656
	              , 0.0857

             To   461286   1 (7)
	              , 0.7555
	             To 0.7555
	              a 0.5413
	           Asia 0.5413
	              s 0.5413
	              " 0.2816
	           </S> 0.0857

            one   461452   1 (7)
	              . 0.5413
	            one 0.5413
	             us 0.5413
	              a 0.5413
	              , 0.5413
	              } 0.1229
	           </S> 0.0857

         Sussex   461536   2 (8)
	         Passer 0.7555
	           used 0.5244
	         Sussex 0.5244
	              , 0.2816
	          stock 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

   Macclesfield   461719   1 (9)
	   Macclesfield 0.7555
	        Welling 0.5413
	       moisture 0.5413
	       Services 0.2816
	              , 0.2253
	           more 0.1825
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

       climatic   461756   1 (9)
	       climatic 0.7555
	             us 0.5413
	      companies 0.5413
	              a 0.5097
	             to 0.2816
	              , 0.1825
	           </S> 0.1825
	     variations 0.1825
	         chance 0.0857

  modifications   461765   1 (7)
	             of 0.5413
	       movement 0.5413
	              a 0.5413
	  modifications 0.5413
	              , 0.2816
	           </S> 0.2816
	     conditions 0.0857

           Lark   461787   1 (10)
	           Lark 0.7555
	            arz 0.5413
	           part 0.2816
	              a 0.2656
	           </S> 0.1825
	        section 0.1825
	              . 0.1825
	            Web 0.1825
	              , 0.1825
	             is 0.0857

            all   461793   1 (7)
	            all 0.5413
	           </S> 0.5413
	              I 0.5413
	              ( 0.5413
	           alba 0.5413
	            one 0.2253
	            the 0.0857

           Tlie   461858 inf (10)
	           This 0.7555
	              , 0.7555
	           Tlia 0.5413
	            Tli 0.5413
	           fish 0.5413
	              a 0.5413
	           Tile 0.5413
	           alba 0.5413
	              " 0.2816
	           </S> 0.0857

        typical   461863   1 (5)
	        typical 0.5413
	              , 0.5413
	              a 0.5413
	           </S> 0.1825
	          <UNK> 0.0857

          watli   461911  12 (13)
	           wali 0.7555
	           wati 0.7555
	          wolfi 0.7555
	              , 0.5413
	         witali 0.5413
	        Quwatli 0.5413
	           </S> 0.5413
	          watti 0.5413
	            and 0.5413
	          Matli 0.5413
	              a 0.5413
	           with 0.1825
	            the 0.0857

         darker   461917   1 (6)
	              , 0.5413
	           </S> 0.5413
	         Passer 0.5413
	         market 0.5413
	              a 0.5413
	         darker 0.5413

        centres   461924   1 (8)
	        centres 0.7555
	         centre 0.7555
	        central 0.7555
	        cinerea 0.5413
	           </S> 0.2816
	           side 0.1825
	              , 0.1825
	           than 0.0857

            the   462019   1 (5)
	            the 0.5413
	             us 0.5413
	              , 0.5413
	              } 0.1229
	           </S> 0.0857

          crest   462036   1 (8)
	          crest 0.7555
	           term 0.5413
	           best 0.5413
	             us 0.5244
	              a 0.5097
	              , 0.5097
	           </S> 0.5097
	            out 0.0857

      fcatliers   462065 inf (13)
	     flatliners 0.7555
	          major 0.5413
	              , 0.5413
	     catlickers 0.5413
	              a 0.5413
	              . 0.5413
	       outliers 0.5244
	         fliers 0.5244
	           page 0.2253
	          world 0.1825
	           most 0.1825
	          first 0.1825
	           </S> 0.0857

         darker   462075   1 (9)
	              , 0.5413
	             of 0.5413
	           </S> 0.5413
	              . 0.5413
	           date 0.5413
	         rather 0.5413
	         darker 0.5413
	         Passer 0.5413
	              a 0.5413

            the   462098   1 (5)
	              , 0.5413
	            the 0.5413
	             us 0.5413
	              } 0.1229
	           </S> 0.0857

        hastard   462102 inf (12)
	       hamstrad 0.5413
	         hastar 0.5413
	          major 0.5413
	           term 0.5413
	        Bastard 0.5244
	              - 0.2253
	           last 0.1825
	            two 0.1825
	           same 0.1825
	            way 0.1825
	        country 0.1825
	           </S> 0.0857

        primary   462110   1 (8)
	              a 0.5413
	           </S> 0.5413
	              , 0.5413
	             it 0.5413
	        primary 0.5413
	             of 0.5413
	           size 0.5413
	        private 0.5413

            the   462128   1 (5)
	              , 0.5413
	            the 0.5413
	             us 0.5413
	              } 0.1229
	           </S> 0.0857

         Ijrown   462155  12 (15)
	          Brown 0.7555
	           Iron 0.7555
	      available 0.5413
	              a 0.5413
	           Ijon 0.5413
	         winner 0.5413
	         Intown 0.5413
	             us 0.5413
	         Ingrow 0.5413
	           down 0.5244
	             to 0.2816
	          brown 0.1825
	          green 0.1825
	           </S> 0.1825
	              , 0.0857

          greyi   462168 inf (10)
	   CheapTickets 0.5413
	            non 0.5413
	          pstat 0.5413
	          greyi 0.5413
	            Pyi 0.5413
	           free 0.2816
	              , 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

              -   462173   1 (7)
	            the 0.5413
	              - 0.5413
	           name 0.5413
	             us 0.5413
	              . 0.5413
	              , 0.5244
	           </S> 0.0857

       luargius   462177 inf (10)
	              a 0.7555
	              s 0.5413
	        largius 0.5413
	           list 0.5413
	        sources 0.5413
	              , 0.5097
	              " 0.5097
	              - 0.1825
	           </S> 0.0857
	             .. 0.0857

              ,   462185   1 (6)
	           </S> 0.5413
	              , 0.5413
	            the 0.5413
	              c 0.5413
	              / 0.5413
	             us 0.5413

         whicli   462219   5 (10)
	          wires 0.5413
	         chwili 0.5413
	         whilie 0.5413
	        Chiclid 0.5413
	              a 0.5244
	          which 0.5244
	           that 0.5097
	              . 0.1825
	           </S> 0.1825
	              , 0.0857

          outer   462250   2 (9)
	          other 0.7555
	          outer 0.5413
	          major 0.5413
	       complete 0.5413
	          tinge 0.5413
	              a 0.5244
	           </S> 0.2253
	              . 0.1825
	              , 0.0857

        feather   462276   1 (11)
	          other 0.7555
	        feather 0.7555
	              a 0.5413
	          major 0.2816
	           half 0.1825
	             is 0.1825
	              , 0.1825
	             in 0.1825
	           </S> 0.1825
	             of 0.1825
	              - 0.0857

          sandv   462296   7 (13)
	           sala 0.7555
	       sandvitx 0.5413
	          built 0.5413
	          vands 0.5413
	              a 0.5413
	              , 0.5413
	          sandy 0.5244
	           sand 0.5244
	           said 0.5244
	            two 0.2253
	            non 0.1825
	           </S> 0.0857
	            new 0.0655

              -   462301   1 (6)
	              , 0.5413
	            the 0.5413
	             of 0.5413
	              - 0.5413
	             us 0.5413
	           </S> 0.5413

         margin   462307   1 (10)
	          cover 0.5413
	             us 0.5413
	         margin 0.5413
	         access 0.5413
	           mail 0.5413
	          icons 0.5413
	              a 0.5244
	           </S> 0.2253
	              - 0.1825
	              , 0.0857

         t)uter   462321 inf (12)
	           uter 0.7555
	         tauter 0.7555
	            the 0.5413
	          tuter 0.5413
	          their 0.5413
	        Company 0.5413
	             us 0.5413
	         tutter 0.5413
	              a 0.5413
	              , 0.5413
	            top 0.1825
	           </S> 0.0857

            web   462328   1 (8)
	             us 0.5413
	              a 0.5413
	              , 0.5413
	              ) 0.5413
	             we 0.5413
	           </S> 0.5413
	             of 0.5413
	            web 0.5413

            the   462334   1 (6)
	              , 0.5413
	             us 0.5413
	            the 0.5413
	              ) 0.5097
	              } 0.1229
	           </S> 0.0857

      backwards   462382   1 (7)
	      backwards 0.7555
	              a 0.5097
	           back 0.2816
	           </S> 0.2656
	              , 0.1825
	           away 0.1825
	             as 0.0857

        buffish   462419   1 (10)
	       informed 0.5413
	            non 0.5413
	            off 0.5413
	        buffish 0.5413
	        because 0.2816
	            not 0.1825
	           </S> 0.1825
	              , 0.1825
	            the 0.1825
	              a 0.0857

            the   462435   1 (5)
	            the 0.5413
	             us 0.5413
	              , 0.5413
	              } 0.1229
	           </S> 0.0857

   principall}-   462455   1 (10)
	    principally 0.7555
	     principall 0.5413
	        scarlet 0.5413
	       actually 0.5413
	          white 0.5413
	              , 0.2816
	              a 0.1825
	      available 0.1825
	           </S> 0.1825
	            not 0.0857

        buffish   462468   1 (7)
	              a 0.5413
	            but 0.5413
	            non 0.5413
	              , 0.5413
	           </S> 0.5413
	             to 0.5413
	        buffish 0.5413

         deeper   462483   1 (11)
	         aerial 0.5413
	              a 0.5413
	         people 0.5413
	         deeper 0.5413
	            and 0.5413
	           </S> 0.5413
	      depending 0.5413
	              , 0.5413
	          while 0.2253
	             or 0.1825
	            the 0.0857

          sides   462517   1 (7)
	              , 0.5413
	          sides 0.5413
	          sites 0.5413
	              a 0.5413
	          Pales 0.5413
	              } 0.1229
	           </S> 0.0857

        spotted   462533   1 (7)
	         system 0.5413
	        spotted 0.5413
	      documents 0.5413
	              a 0.5097
	           </S> 0.2656
	              , 0.1825
	              . 0.0857

         breast   462563   1 (5)
	              , 0.5413
	         breast 0.5413
	              a 0.5413
	              } 0.1229
	           </S> 0.0857

        spotted   462570   1 (5)
	         sports 0.7555
	        spotted 0.7555
	           </S> 0.2816
	              , 0.1825
	         cancer 0.0857

         flanks   462609   1 (6)
	              , 0.5413
	         Thanks 0.5413
	              a 0.5413
	         flanks 0.5413
	              } 0.1229
	           </S> 0.0857

       slightly   462616   1 (5)
	       slightly 0.5413
	              a 0.5244
	           </S> 0.5097
	              , 0.1825
	             of 0.0857

       streaked   462625   1 (6)
	         stream 0.7555
	       streaked 0.7555
	              , 0.2816
	           </S> 0.2816
	      different 0.1825
	            out 0.0857

              ;   462634   3 (8)
	             of 0.7555
	             us 0.5413
	           gray 0.5244
	              ; 0.5244
	            the 0.5097
	           </S> 0.5097
	              , 0.2816
	           with 0.0857

           bill   462636   1 (7)
	              , 0.5413
	           will 0.5413
	              a 0.5413
	           bill 0.5413
	            cia 0.5413
	              } 0.1229
	           </S> 0.0857

       mandible   462654   1 (8)
	       mandible 0.7555
	            may 0.5413
	         museum 0.5413
	              , 0.5097
	           </S> 0.2656
	           this 0.1825
	              a 0.1825
	            the 0.0857

          paler   462663   2 (9)
	              a 0.7555
	          pages 0.5413
	            Act 0.5413
	          paler 0.5413
	          Pales 0.5413
	              ) 0.4011
	           </S> 0.1825
	              , 0.1825
	              . 0.0857

           feet   462671   1 (6)
	              a 0.5413
	           free 0.5413
	              , 0.5413
	           feet 0.5413
	              } 0.1229
	           </S> 0.0857

         fleshy   462676   1 (7)
	         fleshy 0.7555
	          files 0.7555
	              a 0.5097
	             of 0.1825
	           </S> 0.1825
	              , 0.0857
	              . 0.0857

           iris   462696   1 (7)
	              a 0.5413
	             is 0.5413
	              , 0.5413
	           iris 0.5413
	             iu 0.5413
	              } 0.1229
	           </S> 0.0857

          hazel   462701   1 (7)
	           have 0.7555
	          hazel 0.7555
	           here 0.7555
	          Pales 0.5413
	              ) 0.2816
	           </S> 0.1825
	              , 0.0857

              .   462706   3 (6)
	            the 0.7555
	             us 0.5413
	              . 0.2816
	           </S> 0.2656
	              , 0.1825
	           eyes 0.0857

          crest   462733   1 (9)
	          crest 0.7555
	           best 0.5413
	              a 0.5413
	             of 0.5097
	           </S> 0.2253
	           time 0.1825
	              , 0.1825
	         period 0.1825
	           than 0.0857

      rufescent   462825   1 (11)
	      rufescent 0.7555
	      rufescens 0.5413
	      different 0.5413
	              a 0.5097
	        complex 0.2816
	      effective 0.2816
	             to 0.2656
	         likely 0.2253
	              , 0.1825
	           </S> 0.1825
	           than 0.0857

       blackish   462844   1 (7)
	       blackish 0.7555
	              , 0.2816
	              . 0.2816
	           also 0.2656
	           </S> 0.1825
	           been 0.0857
	              a 0.0857

            sub   462853   1 (10)
	            sub 0.5413
	             us 0.5413
	             re 0.5413
	             so 0.5413
	              N 0.5413
	              a 0.5413
	             to 0.5244
	           </S> 0.5097
	              , 0.1825
	              - 0.0857

              -   462856   5 (5)
	             us 0.7555
	            the 0.5244
	              , 0.5097
	           </S> 0.5097
	              - 0.0857

           tips   462886   1 (8)
	           tips 0.7555
	     comparison 0.5413
	            cia 0.5413
	           this 0.5244
	              a 0.5244
	           </S> 0.2253
	              - 0.1825
	              , 0.0857

           tlie   462910   9 (9)
	           trie 0.7555
	           alba 0.7555
	          tliet 0.5413
	           tile 0.5244
	              , 0.2816
	              a 0.1825
	           this 0.1825
	           </S> 0.1825
	            the 0.0857

          moult   462945   1 (8)
	          moult 0.7555
	          maura 0.5413
	              a 0.5244
	          would 0.5244
	           </S> 0.1825
	             of 0.1825
	              . 0.0857
	              , 0.0857

        becomes   462983   1 (7)
	        becomes 0.5413
	         becker 0.5413
	       Mountain 0.5413
	       Galerida 0.5244
	    Calandrella 0.5244
	              , 0.1825
	           </S> 0.0857

        centres   463024   1 (9)
	        centres 0.7555
	              a 0.5413
	        cinerea 0.5413
	        control 0.5244
	             of 0.2816
	           side 0.1825
	           </S> 0.1825
	          brown 0.1825
	              , 0.0857

           less   463048   1 (8)
	           less 0.7555
	           lava 0.5413
	           News 0.5413
	              a 0.5244
	             of 0.2253
	           </S> 0.2253
	              . 0.1825
	              , 0.0857

           Col.   463067   2 (10)
	              , 0.7555
	           Cold 0.5413
	            Col 0.5413
	           only 0.5413
	              a 0.5413
	           Coll 0.5413
	           sala 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

          Irb}-   463072   1 (10)
	        Mustard 0.5413
	              a 0.5413
	           Iraq 0.5413
	            Irb 0.5413
	           Irby 0.5413
	      configure 0.5413
	             J. 0.5244
	              ) 0.1825
	              , 0.1825
	           </S> 0.0857

    Ornithology   463087   1 (7)
	    Ornithology 0.7555
	        Journal 0.5413
	            One 0.5413
	           with 0.2816
	              a 0.2816
	              , 0.1825
	           </S> 0.0857

      Andalucia   463249   1 (10)
	      Andalucia 0.7555
	         sticky 0.5413
	    destination 0.5413
	       products 0.5413
	           used 0.2816
	              , 0.2253
	           </S> 0.1825
	              a 0.1825
	             in 0.1825
	            the 0.0857

           They   463309   1 (6)
	              , 0.7555
	           They 0.7555
	              a 0.5413
	            The 0.5244
	              " 0.2816
	           </S> 0.0857

            arc   463314   6 (6)
	            arc 0.7555
	            arz 0.5413
	              , 0.5097
	            and 0.5097
	           </S> 0.2816
	            are 0.0857

    distributed   463318   1 (9)
	    distributed 0.5413
	           well 0.5413
	         system 0.5244
	            not 0.5244
	              a 0.5097
	           </S> 0.1825
	              s 0.1229
	              . 0.0857
	              , 0.0857

          pairs   463333   3 (8)
	          parva 0.7555
	     commission 0.5413
	          pairs 0.5244
	           part 0.2816
	              , 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

          onl}'   463397   4 (8)
	            not 0.5413
	              s 0.5413
	          ollon 0.5413
	           only 0.5097
	              , 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

           some   463403   1 (8)
	              a 0.5413
	             to 0.5413
	           some 0.5413
	              . 0.5413
	              s 0.5413
	           </S> 0.5413
	           more 0.5413
	              , 0.5413

    Excessively   463422 inf (10)
	        However 0.7555
	              , 0.7555
	             us 0.5413
	      Excessive 0.5413
	    Exclusively 0.5413
	              a 0.5413
	    excessively 0.5413
	            the 0.5413
	              " 0.2816
	           </S> 0.0857

           tame   463434   3 (8)
	         drowsy 0.7555
	              , 0.7555
	              a 0.5413
	           time 0.5413
	           tame 0.5413
	           lava 0.5413
	           </S> 0.2253
	      Injurious 0.0857

      Curiiicit   463486 inf (11)
	              , 0.7555
	        service 0.7555
	           them 0.7555
	   organization 0.5413
	              s 0.5413
	       Curicica 0.5413
	        Curtici 0.5413
	        Curiini 0.5413
	           </S> 0.5244
	              a 0.5097
	            the 0.0857

    frequenting   463518   1 (7)
	    frequenting 0.7555
	      following 0.5413
	              , 0.2816
	             us 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

          roads   463530   1 (10)
	          rufus 0.5413
	        service 0.5413
	          roads 0.5413
	           made 0.5413
	    information 0.5413
	              , 0.5244
	           </S> 0.5244
	              . 0.5244
	              a 0.2816
	            the 0.0857

           dung   463599   1 (10)
	           dung 0.7555
	              s 0.5413
	             or 0.5413
	              . 0.2816
	              a 0.2253
	             to 0.1825
	             up 0.1825
	          being 0.1294
	             do 0.1294
	           </S> 0.0857

             at   463605   1 (9)
	              I 0.5413
	              - 0.5413
	            and 0.5413
	             at 0.5413
	           </S> 0.5413
	            arz 0.5413
	             of 0.2253
	           with 0.1825
	            the 0.0857

             as   463643   1 (10)
	              I 0.5413
	        written 0.5413
	             as 0.5413
	            and 0.5413
	        writing 0.5413
	           </S> 0.5413
	              " 0.5413
	             us 0.5097
	             or 0.1825
	            the 0.0857

        dusting   463665   1 (8)
	        dusting 0.7555
	     protecting 0.5413
	        rustica 0.5413
	         during 0.5244
	              , 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

            and   463686   1 (7)
	           what 0.5413
	           that 0.5413
	              , 0.5413
	            and 0.5413
	            arz 0.5413
	              } 0.1229
	           </S> 0.0857

     Sauderling   463758   1 (13)
	     Sanderling 0.7555
	      ouderling 0.5413
	       response 0.5413
	              , 0.5413
	          wheel 0.5413
	        service 0.5413
	       Sterling 0.5244
	         result 0.1825
	            bit 0.1825
	          major 0.1825
	           good 0.1825
	            new 0.1218
	           </S> 0.0857

         within   463769   1 (6)
	           </S> 0.5413
	             of 0.5413
	              a 0.5413
	              , 0.5413
	             in 0.5413
	         within 0.5413

          birds   463887   3 (10)
	              a 0.7555
	          first 0.7555
	           more 0.5413
	          birds 0.5413
	     convincing 0.5413
	          Parus 0.5413
	     characters 0.5244
	           </S> 0.5097
	              , 0.1825
	              . 0.0857

           This   463894   1 (6)
	           This 0.7555
	              , 0.7555
	              a 0.5413
	            cia 0.5413
	              " 0.2816
	           </S> 0.0857

      migrating   463948   1 (11)
	      migrating 0.7555
	             us 0.5413
	             to 0.5413
	           more 0.5097
	             it 0.2816
	        changes 0.2816
	              , 0.1825
	            any 0.1825
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

        Crested   463988   1 (6)
	        Crested 0.7555
	              / 0.5413
	        Chester 0.5244
	         Center 0.2816
	              - 0.1825
	           </S> 0.0857

        usually   464001   1 (5)
	        usualis 0.5413
	        usually 0.5413
	    Calandrella 0.5244
	              , 0.1825
	           </S> 0.0857

           eart   464135 inf (9)
	           eart 0.7555
	            non 0.5413
	            arz 0.5413
	             re 0.5244
	           each 0.2816
	              , 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

              -   464140   3 (7)
	            the 0.7555
	             us 0.5413
	              . 0.5097
	              - 0.5097
	              , 0.2253
	           </S> 0.1825
	              } 0.0857

          Larks   464179   1 (12)
	          Larks 0.7555
	              a 0.5413
	           site 0.5413
	          Parus 0.5413
	          Links 0.5244
	              , 0.1825
	           hand 0.1825
	      countries 0.1825
	         people 0.1825
	              . 0.1825
	           </S> 0.1825
	           than 0.0857

          bents   464206   1 (11)
	      workshops 0.5413
	           best 0.5413
	              ( 0.5413
	            and 0.5413
	          trees 0.5413
	           </S> 0.5413
	          bents 0.5413
	              a 0.5413
	      therefore 0.5413
	              x 0.5413
	            the 0.0857

           etc.   464213   8 (9)
	        wedgies 0.5413
	      therefore 0.5413
	          <UNK> 0.5413
	              , 0.5413
	           Pica 0.5413
	           each 0.2816
	              i 0.2816
	           etc. 0.2253
	            the 0.0857

       Saunders   464245   1 (9)
	          under 0.7555
	       Saunders 0.7555
	              a 0.5413
	              " 0.4979
	           said 0.2816
	             A. 0.2816
	           </S> 0.1825
	          Stern 0.1825
	              , 0.0857

         says:-   464254   4 (8)
	            Inn 0.5413
	          sayst 0.5413
	              a 0.5413
	           says 0.5244
	              " 0.5097
	        Company 0.2816
	           </S> 0.1825
	              , 0.0857

              -   464261   1 (5)
	            the 0.5413
	              - 0.5413
	              , 0.5413
	             us 0.5413
	           </S> 0.5413

              "   464263   3 (8)
	           with 0.5413
	             us 0.5097
	              " 0.2816
	              . 0.2816
	            the 0.1825
	             to 0.1825
	           mail 0.1825
	           </S> 0.0857

      commenced   464280   1 (8)
	      commenced 0.7555
	          could 0.5413
	         occurs 0.2816
	              a 0.1825
	           </S> 0.1825
	           with 0.1825
	            the 0.1825
	              , 0.0857

     depression   464337   1 (10)
	     depression 0.7555
	           kind 0.5413
	        details 0.5413
	        portion 0.5413
	            all 0.5413
	             us 0.5413
	           </S> 0.2816
	              , 0.2816
	              a 0.1825
	             as 0.0857

              -   464375   6 (8)
	             us 0.5413
	            the 0.5244
	              : 0.5097
	             of 0.2816
	           </S> 0.2816
	              - 0.1825
	              , 0.0857
	              . 0.0857

        herbage   464394   2 (12)
	           here 0.7555
	        herbage 0.5413
	            run 0.5413
	              ) 0.5413
	              , 0.5244
	              . 0.5244
	             us 0.2816
	           </S> 0.2816
	              a 0.2816
	           them 0.2816
	         others 0.2253
	            the 0.0857

            the   464510   1 (5)
	            the 0.5413
	              , 0.5413
	             us 0.5413
	              } 0.1229
	           </S> 0.0857

            diy   464539 inf (9)
	            did 0.7555
	             di 0.7555
	            day 0.7555
	           diya 0.5413
	            yid 0.5413
	            cia 0.5413
	              , 0.1825
	           </S> 0.1825
	              a 0.0857

          grass   464543   1 (6)
	              a 0.5413
	          grass 0.5413
	          great 0.5413
	             to 0.5244
	              , 0.1825
	           </S> 0.0857

     distinctly   464617   1 (7)
	     distinctly 0.5413
	              a 0.5413
	        listing 0.5413
	      chequered 0.5413
	           </S> 0.1825
	              - 0.1825
	              , 0.0857

        average   464709   1 (5)
	              I 0.5413
	        average 0.5413
	              , 0.5413
	              } 0.1229
	           </S> 0.0857

   measurements   464717   1 (7)
	        results 0.5413
	   measurements 0.5413
	              a 0.5244
	       exchange 0.5244
	           </S> 0.1825
	              , 0.1825
	             of 0.0857

            '95   464730 inf (10)
	             us 0.7555
	              5 0.5413
	              a 0.5413
	          rates 0.5413
	             's 0.5413
	            the 0.5097
	           made 0.2816
	           </S> 0.1825
	              , 0.1825
	             of 0.0857

              "   464737 inf (6)
	           midi 0.5413
	             us 0.5097
	              , 0.2816
	              " 0.2816
	           </S> 0.1825
	            the 0.0857

             bS   464738 inf (11)
	             Sb 0.7555
	            EbS 0.5413
	           PbSe 0.5413
	              s 0.5413
	              a 0.2816
	             by 0.2816
	             he 0.2656
	              - 0.1825
	              , 0.1825
	              ( 0.1825
	           </S> 0.0857

             in   464741   1 (8)
	              a 0.7555
	             in 0.7555
	              c 0.7555
	             iu 0.5413
	           said 0.5413
	              " 0.5244
	              , 0.5097
	           </S> 0.0857

              .   464743   2 (5)
	             us 0.5097
	              , 0.2816
	              . 0.2816
	           </S> 0.1825
	            the 0.0857

     Incubation   464745   4 (9)
	      ChangeLog 0.7555
	              , 0.7555
	        However 0.7555
	          world 0.5413
	         public 0.5413
	     Incubation 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

         wdiich   464760   7 (10)
	        Midwich 0.7555
	           dich 0.7555
	          Riich 0.5413
	             us 0.5413
	           wich 0.5244
	              , 0.2816
	          which 0.2656
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

            the   464767   1 (4)
	              , 0.5413
	             us 0.5413
	            the 0.5413
	           </S> 0.5413

        Crested   464811   1 (9)
	        Crested 0.7555
	              / 0.5413
	              X 0.5413
	          major 0.5413
	         Center 0.2816
	              - 0.1825
	          first 0.1825
	           time 0.1825
	           </S> 0.0857

         sandj^   464868 inf (6)
	         sandja 0.5413
	           said 0.5413
	           </S> 0.5244
	              , 0.5244
	              a 0.2816
	            the 0.0857

          roads   464875   1 (6)
	              , 0.5413
	           </S> 0.5413
	           read 0.5413
	              a 0.5413
	          roads 0.5413
	          rufus 0.5413

        dusting   464906   1 (8)
	        dusting 0.7555
	         saying 0.5413
	        rustica 0.5413
	         during 0.5244
	              , 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

      rapidit}'   464946   1 (13)
	        leaping 0.5413
	           beer 0.5413
	    information 0.5413
	       rapidity 0.5413
	     rapiditati 0.5413
	           rate 0.5244
	              a 0.5097
	           idea 0.2816
	           </S> 0.2816
	         prices 0.2253
	              , 0.1825
	           deal 0.0857
	              . 0.0857

          glide   464984   1 (10)
	          glide 0.7555
	       afforded 0.5413
	           like 0.2816
	              a 0.2253
	              . 0.1825
	             in 0.1825
	              , 0.1825
	            was 0.1825
	           </S> 0.1825
	             is 0.0857

          wlien   465006   8 (15)
	          Alien 0.5413
	           lien 0.5413
	     technician 0.5413
	           look 0.5413
	           wien 0.5413
	        ewlieni 0.5413
	         willen 0.5413
	           when 0.5244
	              a 0.5097
	             of 0.2816
	           </S> 0.2253
	         racing 0.1825
	           cock 0.1825
	              , 0.1825
	            sex 0.0857

            Its   465051   1 (7)
	             It 0.7555
	              , 0.7555
	            Its 0.7555
	              a 0.5413
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

           Lark   465107   1 (10)
	           Lark 0.7555
	            Dog 0.5413
	           side 0.5413
	        Tikchik 0.5413
	              s 0.5413
	            are 0.5097
	              . 0.2816
	              a 0.2253
	             to 0.1825
	           </S> 0.0857

              .   465111   4 (7)
	            the 0.7555
	             us 0.5413
	              : 0.5097
	              - 0.2816
	              . 0.2816
	              , 0.1825
	           </S> 0.0857

     gregarious   465123   1 (8)
	     gregarious 0.7555
	          great 0.5413
	           easy 0.5413
	              , 0.1825
	              a 0.1825
	             to 0.1825
	           </S> 0.1825
	             be 0.0857

     generall}'   465142   6 (7)
	       generall 0.7555
	         really 0.2816
	              , 0.2253
	           </S> 0.1825
	            not 0.1825
	      generally 0.1294
	              a 0.0857

           seen   465153   1 (8)
	            see 0.5413
	            the 0.5413
	           </S> 0.5413
	           seen 0.5413
	              a 0.5413
	             to 0.5413
	           sala 0.5413
	              , 0.5413

            (U-   465166   9 (10)
	           </S> 0.5413
	             US 0.5413
	              - 0.5413
	             EU 0.5413
	            and 0.5413
	              a 0.5413
	        working 0.5413
	             us 0.5097
	             or 0.1825
	            the 0.0857

             iu   465170   1 (5)
	              a 0.5413
	             iu 0.5413
	           </S> 0.5413
	              , 0.5413
	             in 0.5413

          pairs   465173   2 (8)
	              s 0.7555
	          parts 0.5413
	          pairs 0.5413
	              a 0.5244
	              ) 0.2816
	              , 0.2816
	              - 0.1825
	           </S> 0.0857

        fauiily   465183 inf (12)
	       faultily 0.7555
	          small 0.5413
	        fairily 0.5413
	        private 0.5413
	           uily 0.5413
	       kawaiily 0.5413
	          minor 0.5413
	           will 0.2253
	              a 0.1825
	              , 0.1825
	           </S> 0.1825
	            the 0.0857

        parties   465191   1 (9)
	           more 0.5413
	              , 0.5413
	         groups 0.5413
	        parties 0.5413
	           part 0.5413
	             us 0.5413
	           </S> 0.5413
	              . 0.5413
	              a 0.5413

         liquid   465221   1 (7)
	         liquid 0.7555
	           when 0.5413
	           like 0.5097
	           </S> 0.2816
	              , 0.2816
	              a 0.2816
	           than 0.0857

        uttered   465272   1 (8)
	        uttered 0.7555
	          there 0.5097
	          based 0.2816
	            not 0.1825
	             to 0.1825
	              a 0.1825
	           </S> 0.1825
	              , 0.0857

         duriug   465308   4 (10)
	         dubius 0.5413
	          drugi 0.5413
	         durius 0.5413
	         during 0.5097
	           have 0.1825
	             in 0.1825
	             is 0.1825
	           </S> 0.1825
	              a 0.1825
	              , 0.0857

              a   465315   1 (7)
	              , 0.5413
	           </S> 0.5413
	            the 0.5413
	             up 0.5413
	             us 0.5413
	             to 0.5413
	              a 0.5413

            the   465364   1 (5)
	             us 0.5413
	              , 0.5413
	            the 0.5413
	              } 0.1229
	           </S> 0.0857

      syllabled   465380   1 (7)
	      described 0.5413
	       selected 0.5413
	      syllabled 0.5413
	           </S> 0.1825
	              , 0.1825
	           used 0.1825
	              a 0.0857

              '   465393   2 (6)
	             us 0.5244
	              , 0.2816
	              ' 0.2816
	           </S> 0.1825
	            the 0.1825
	              a 0.0857

              '   465403   1 (6)
	              ' 0.7555
	            the 0.7555
	              , 0.7555
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

          horse   465559   1 (7)
	          horse 0.7555
	           home 0.7555
	          corax 0.5413
	              , 0.2816
	           </S> 0.2816
	              a 0.2816
	            the 0.0857

          Dixon   465619   2 (8)
	              , 0.7555
	          Diego 0.5413
	              a 0.5413
	          Dixon 0.5413
	          minor 0.5413
	              " 0.2816
	              ) 0.2816
	           </S> 0.0857

            sa3   465625 inf (9)
	            say 0.7555
	             so 0.7555
	            sas 0.5413
	              a 0.5413
	           sala 0.5413
	             sa 0.5413
	          Hawke 0.5244
	           </S> 0.1825
	              , 0.0857

             's   465628   1 (8)
	            out 0.5413
	             us 0.5413
	             's 0.5413
	              a 0.5413
	             is 0.5413
	              , 0.5244
	           </S> 0.2816
	              - 0.0857

      xA-lgeria   465639   2 (8)
	             us 0.5413
	        Algeria 0.5244
	              , 0.2816
	          which 0.2656
	          their 0.2656
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

             he   465649   1 (5)
	           </S> 0.5413
	              , 0.5413
	             he 0.5413
	             us 0.5413
	              a 0.5413

           soar   465674   1 (11)
	           some 0.7555
	          today 0.7555
	           soar 0.7555
	           sala 0.5413
	           goes 0.5244
	              a 0.5244
	             on 0.2816
	           </S> 0.2253
	              , 0.1825
	              . 0.1825
	            flu 0.0857

           iuto   465679   4 (9)
	             iu 0.5413
	           iuto 0.5413
	              a 0.5244
	           into 0.2816
	        through 0.2816
	             in 0.1825
	              , 0.1825
	           </S> 0.1825
	              . 0.0857

       warbling   465740   1 (7)
	       warbling 0.5413
	         within 0.5413
	              a 0.2816
	             of 0.1825
	              , 0.1825
	           </S> 0.1825
	              . 0.0857

       Theobald   465793   1 (8)
	            and 0.5413
	              a 0.5413
	            The 0.5413
	            New 0.5413
	              - 0.5413
	           </S> 0.5413
	       Theobald 0.5413
	            the 0.0857

      describes   465802   1 (6)
	              a 0.5413
	      describes 0.5413
	        because 0.5413
	            and 0.5097
	           </S> 0.1825
	              , 0.0857

 ovato-pyriform   465875 inf (11)
	    consecutive 0.7555
	  ovatopyriform 0.5413
	       Category 0.5413
	              a 0.5413
	              ( 0.5244
	              . 0.5244
	              , 0.5244
	          major 0.5244
	             of 0.5097
	           </S> 0.5097
	              - 0.0857

              3   465890 inf (7)
	              , 0.5413
	              . 0.5413
	             us 0.5413
	            the 0.5413
	             of 0.5413
	           year 0.5413
	           </S> 0.5413

              -   465891   4 (7)
	             us 0.7555
	         Column 0.5413
	            the 0.5097
	              ) 0.1825
	              - 0.1825
	              , 0.1825
	           </S> 0.0857

       ellowish   465892 inf (8)
	      yellowish 0.7555
	           with 0.5413
	              , 0.5413
	              s 0.5413
	              4 0.2656
	              a 0.2253
	             to 0.1825
	           </S> 0.0857

              -   465900   1 (5)
	             us 0.5413
	              - 0.5413
	            the 0.5413
	              , 0.5413
	           </S> 0.5413

      uuiformly   465912   1 (9)
	      uniformly 0.5413
	     muriformly 0.5413
	    ununiformly 0.5413
	              a 0.5244
	         before 0.5244
	            are 0.2253
	           </S> 0.1825
	              . 0.1825
	              , 0.0857

       freckled   465922   1 (6)
	              a 0.5413
	           laid 0.5413
	         filled 0.5413
	           </S> 0.5413
	              , 0.5413
	       freckled 0.5413

         Jerdon   465971   1 (9)
	         Jerdon 0.7555
	          Aedon 0.7555
	         person 0.5244
	              a 0.2816
	             He 0.2816
	             he 0.2656
	              , 0.1825
	              I 0.1825
	           </S> 0.0857

        Chendul   465994 inf (10)
	        Chendur 0.5413
	         Chendu 0.5413
	              s 0.5413
	           when 0.5413
	       Chundale 0.5413
	              a 0.2816
	             of 0.2816
	          <UNK> 0.1825
	              , 0.1825
	           </S> 0.0857

        chiefly   466031   1 (7)
	            and 0.5413
	           </S> 0.5413
	        chiefly 0.5413
	              a 0.5413
	          could 0.5413
	      including 0.1825
	            the 0.0857

          grass   466039   1 (8)
	          grass 0.7555
	           last 0.5413
	          major 0.5244
	             UK 0.5244
	           </S> 0.2816
	              a 0.2816
	              , 0.2253
	             in 0.0857

             II   466137   1 (7)
	              , 0.7555
	             In 0.7555
	             II 0.7555
	             us 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

            nor   466210   2 (7)
	            not 0.7555
	            nor 0.5413
	          minor 0.5413
	              a 0.5413
	          <UNK> 0.5097
	              , 0.1825
	           </S> 0.0857

             iu   466214   2 (7)
	             iu 0.5413
	             in 0.2253
	              , 0.2253
	             to 0.1825
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

      Himalayas   466221   2 (8)
	          young 0.5413
	      Himalayas 0.5244
	       Himalaya 0.5244
	              - 0.2253
	        company 0.1825
	           same 0.1825
	          world 0.1825
	           </S> 0.0857

             iu   466236   2 (7)
	             iu 0.5413
	              , 0.2253
	             in 0.2253
	           </S> 0.1825
	             is 0.1825
	              a 0.1825
	            the 0.0857

             It   466270   1 (6)
	             It 0.7555
	              , 0.7555
	             us 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

         plaius   466296   9 (14)
	         closed 0.5413
	       products 0.5413
	         Lanius 0.5413
	           plai 0.5413
	         plausi 0.5413
	          plais 0.5413
	              a 0.5413
	       Agelaius 0.5413
	         plains 0.5244
	          place 0.5244
	              , 0.2253
	           </S> 0.1825
	          beach 0.0857
	        beaches 0.0857

       ploughed   466307   1 (9)
	       ploughed 0.7555
	            any 0.1825
	          other 0.1825
	             in 0.1825
	              , 0.1825
	             on 0.1825
	              a 0.1825
	            the 0.0857
	           </S> 0.0655

             It   466361   1 (7)
	             It 0.7555
	              , 0.7555
	             us 0.5413
	              a 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

             A.   466412 inf (9)
	              . 0.5413
	             AM 0.5244
	            All 0.5244
	             us 0.5244
	              $ 0.2816
	              , 0.2816
	           </S> 0.1825
	             to 0.1825
	              a 0.0857

     guli^iila*   466415 inf (13)
	      pratensis 0.5413
	             as 0.5413
	       nidulans 0.5413
	              a 0.5413
	      Similarly 0.5413
	          guide 0.5413
	              % 0.5413
	         Philip 0.5413
	           will 0.5413
	         advice 0.5413
	      eliminate 0.5413
	              , 0.1825
	           </S> 0.0857

            nor   466426   1 (7)
	           </S> 0.5413
	          minor 0.5413
	            not 0.5413
	             it 0.5413
	            nor 0.5413
	              , 0.5413
	              a 0.5413

           flue   466445 inf (10)
	           flue 0.5413
	           alba 0.5413
	           free 0.5244
	              a 0.2816
	           </S> 0.2656
	           much 0.1825
	             on 0.1825
	              , 0.1825
	            far 0.1825
	           that 0.0857

             In   466451   1 (6)
	              , 0.7555
	             In 0.7555
	             us 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

             iu   466507   3 (8)
	          other 0.5413
	             iu 0.5413
	           </S> 0.1825
	              a 0.1825
	              . 0.1825
	             in 0.1825
	           even 0.1825
	              , 0.0857

   considerable   466510   4 (7)
	             to 0.7555
	              a 0.7555
	              s 0.7555
	         really 0.5413
	   considerable 0.5413
	              , 0.1294
	           </S> 0.0857

         flocks   466523   1 (8)
	         flocks 0.7555
	         flores 0.5413
	          focus 0.5244
	      influence 0.2816
	           </S> 0.1825
	              , 0.1825
	           time 0.1825
	         amount 0.0857

         Jerdon   466584   1 (9)
	          Aedon 0.5413
	         Jerdon 0.5413
	         person 0.5244
	              , 0.2816
	           </S> 0.2656
	             he 0.1825
	              a 0.1825
	              I 0.1825
	            you 0.0857

        Chendul   466603 inf (11)
	         Chendu 0.5413
	        Chendur 0.5413
	           when 0.5413
	    unsubscribe 0.5413
	              s 0.5413
	       Chundale 0.5413
	              a 0.2816
	             of 0.2816
	              , 0.1825
	          <UNK> 0.1825
	           </S> 0.0857

        Seebohm   466695   2 (9)
	           both 0.7555
	              ) 0.5413
	        Seebohm 0.5413
	              , 0.5097
	           </S> 0.5097
	              a 0.5097
	             it 0.1825
	              I 0.1825
	            the 0.0857

         states   466703   2 (9)
	             is 0.7555
	          state 0.5413
	              a 0.5413
	           know 0.5413
	          think 0.5413
	         states 0.5413
	          Pales 0.5413
	              , 0.0857
	           </S> 0.0857

        Bunting   466778   1 (11)
	        Bunting 0.7555
	           Corn 0.5413
	         source 0.5413
	              s 0.5413
	         during 0.5244
	              . 0.2816
	              a 0.2253
	           year 0.2253
	             to 0.1825
	             up 0.1825
	           </S> 0.0857

          caged   466820   1 (10)
	          caged 0.5413
	          Pales 0.5413
	           that 0.5097
	            can 0.5097
	              a 0.2816
	             to 0.2253
	           used 0.1825
	              , 0.1825
	           </S> 0.1825
	          asked 0.0857

            the   466940   1 (5)
	            the 0.5413
	              , 0.5413
	             us 0.5413
	              } 0.1229
	           </S> 0.0857

         custom   466944   1 (7)
	         custom 0.5097
	           just 0.5097
	       customer 0.2816
	              - 0.2253
	           time 0.1825
	           same 0.1825
	           </S> 0.0857

           Herr   467233   4 (8)
	            arz 0.7555
	      Exercised 0.5413
	           etc. 0.5413
	           Herr 0.5244
	           Help 0.5097
	              a 0.2816
	              , 0.1825
	           </S> 0.0857

         Rausch   467238   1 (8)
	         Rausch 0.5413
	          cause 0.5413
	             he 0.5413
	              a 0.5413
	             M. 0.5244
	              " 0.5244
	           </S> 0.1825
	              , 0.0857

         speaks   467245   1 (7)
	          Ringe 0.5413
	              a 0.5413
	         speaks 0.5413
	         spinas 0.5413
	          speak 0.5413
	           </S> 0.1825
	              , 0.0857

       songster   467287   1 (9)
	              I 0.5413
	         system 0.5413
	       songster 0.5413
	           idea 0.2816
	             of 0.2816
	            one 0.2816
	         artist 0.1825
	           </S> 0.1825
	              , 0.0857

           wild   467338   5 (11)
	              a 0.5413
	      materials 0.5413
	        singles 0.5413
	          wolfi 0.5413
	           wild 0.5244
	           will 0.5097
	     population 0.2253
	              , 0.1825
	           </S> 0.1825
	              . 0.1825
	            sex 0.0857

         singer   467392   1 (9)
	         singer 0.5413
	          years 0.5413
	          minor 0.5413
	          since 0.5244
	              a 0.5244
	              ) 0.5097
	           </S> 0.2816
	              , 0.1825
	              . 0.0857

        Perhaps   467400   1 (6)
	              , 0.7555
	        Perhaps 0.7555
	              a 0.5413
	        perhaps 0.5413
	              " 0.2816
	           </S> 0.0857

           Herr   467408   1 (9)
	           Herr 0.7555
	           Help 0.5413
	            arz 0.5413
	           </S> 0.5097
	           most 0.2816
	            you 0.1825
	              a 0.1825
	              , 0.1825
	            the 0.0857

         Rausch   467413   1 (10)
	          cause 0.5413
	    importantly 0.5413
	            are 0.5413
	              a 0.5413
	         Rausch 0.5413
	             is 0.5244
	             M. 0.5244
	           </S> 0.1825
	          <UNK> 0.1825
	              , 0.0857

           like   467421   6 (8)
	              " 0.5413
	           </S> 0.5413
	              a 0.5413
	            and 0.5413
	           lava 0.5244
	           like 0.2816
	          while 0.2253
	            the 0.0857

        Seebohm   467426   1 (10)
	        Seebohm 0.5413
	          about 0.4011
	             us 0.2816
	           </S> 0.2816
	             me 0.2816
	              , 0.1825
	           that 0.1825
	              a 0.1825
	           this 0.1825
	             to 0.0857

        Bunting   467481   1 (10)
	        Bunting 0.7555
	              s 0.5413
	         during 0.5244
	              . 0.2816
	           Free 0.2656
	              a 0.2253
	           year 0.2253
	             to 0.1825
	             up 0.1825
	           </S> 0.0857

            aud   467490   1 (10)
	            and 0.5413
	           </S> 0.5413
	            but 0.5413
	              I 0.5413
	              - 0.5413
	            aud 0.5413
	            arz 0.5413
	          while 0.2253
	             so 0.1825
	            the 0.0857

  considerabl}'   467560 inf (10)
	     domesticus 0.5413
	   considerable 0.5413
	         called 0.5413
	           such 0.5413
	              a 0.5244
	            the 0.2816
	             by 0.2816
	              , 0.2656
	           </S> 0.1294
	           with 0.0857

             as   467574   1 (6)
	              , 0.5413
	             us 0.5413
	          their 0.5413
	             as 0.5413
	           </S> 0.5413
	        package 0.5413

           This   467622   1 (6)
	           This 0.7555
	              , 0.7555
	              a 0.5413
	            cia 0.5413
	              " 0.2816
	           </S> 0.0857

           tlie   467641   7 (11)
	           alba 0.7555
	           tile 0.7555
	           trie 0.7555
	          tliet 0.5413
	           this 0.5097
	           true 0.2816
	              , 0.1825
	           able 0.1825
	            the 0.1825
	           </S> 0.1825
	              a 0.0857

     PyauviotKs   467656 inf (11)
	              , 0.7555
	        various 0.7555
	       previous 0.5413
	        support 0.5413
	        respect 0.5244
	           </S> 0.5244
	             us 0.5244
	           your 0.5244
	            its 0.5244
	              a 0.1825
	            the 0.0857

       Icucotis   467667 inf (11)
	        cunctis 0.5413
	              a 0.5413
	       Isocotin 0.5413
	          Ictis 0.5413
	              , 0.5413
	          until 0.5413
	             of 0.5413
	              . 0.5413
	         scuoti 0.5413
	           </S> 0.5413
	          cotis 0.5413

            the   467676   1 (2)
	             us 0.5413
	            the 0.5413

      specimens   467688   1 (8)
	        service 0.5413
	         number 0.5413
	              a 0.5413
	             of 0.5413
	      specimens 0.5413
	              , 0.5097
	           </S> 0.2816
	           Gulf 0.0857

         wliich   467701   4 (10)
	           wich 0.7555
	          lwich 0.5413
	         Iliich 0.5413
	              , 0.2816
	           them 0.2816
	          which 0.2816
	             us 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

           have   467708   1 (8)
	           have 0.5413
	              . 0.5413
	              a 0.5413
	             in 0.5413
	           lava 0.5413
	              , 0.5244
	           </S> 0.2253
	            the 0.0857

       variable   467720   1 (8)
	       variable 0.7555
	      available 0.7555
	      selection 0.5097
	              a 0.5097
	           </S> 0.2656
	             of 0.2253
	              , 0.1825
	              . 0.0857

         liquid   467729   1 (7)
	         listed 0.7555
	         liquid 0.7555
	              a 0.5097
	             of 0.2816
	           </S> 0.1825
	              , 0.1825
	              . 0.0857

           song   467736   1 (8)
	           some 0.7555
	           song 0.7555
	              s 0.5413
	              a 0.5413
	          <UNK> 0.2816
	           </S> 0.1825
	       nitrogen 0.1825
	              , 0.0857

           N.W.   467780 inf (10)
	           NEWS 0.7555
	             us 0.5413
	           NWWW 0.5413
	             NW 0.5244
	            New 0.2816
	              , 0.2816
	           this 0.1825
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

          India   467785   1 (8)
	          Index 0.5413
	           that 0.5413
	          India 0.5413
	              a 0.5413
	              , 0.5413
	           site 0.5413
	          Munia 0.5413
	           </S> 0.0857

        Judging   467814   2 (6)
	              , 0.7555
	        funding 0.5413
	              a 0.5413
	        Judging 0.5413
	              " 0.2816
	           </S> 0.0857

            b}^   467822   6 (6)
	             us 0.7555
	              } 0.5413
	              , 0.5097
	              a 0.2816
	           </S> 0.1825
	             by 0.0857

         Jerdou   467826   1 (9)
	              a 0.5413
	           </S> 0.5413
	         Jersey 0.5413
	         Jerdon 0.5413
	         Jerrod 0.5413
	            the 0.5413
	          today 0.5413
	              , 0.5413
	          Aedon 0.5413

             's   467832 inf (6)
	             so 0.5413
	             us 0.5413
	             as 0.5413
	             is 0.5413
	             ss 0.5413
	            the 0.5413

          India   467864   3 (8)
	          Munia 0.5413
	          Index 0.5244
	          India 0.5097
	              , 0.2816
	          which 0.2816
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

       Tientsin   467913   1 (7)
	       Tientsin 0.7555
	         person 0.5413
	        Tibetan 0.5413
	              a 0.1825
	              , 0.1825
	            the 0.0857
	           </S> 0.0655

           Lark   467922   2 (10)
	            are 0.7555
	              a 0.5413
	           Lark 0.5413
	            arz 0.5413
	              " 0.5244
	             to 0.5244
	              ) 0.5097
	              . 0.2816
	           </S> 0.2816
	              , 0.0857

       scolding   467977   1 (8)
	       scolding 0.7555
	             us 0.5413
	            the 0.5244
	        working 0.5097
	              a 0.5097
	           </S> 0.2816
	          words 0.2253
	              , 0.0857

             My   468056   1 (6)
	             My 0.7555
	              , 0.7555
	             us 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

  aviculturists   468069   1 (8)
	  aviculturists 0.7555
	           </S> 0.5413
	              " 0.5413
	              I 0.5413
	       students 0.5413
	             us 0.2816
	            you 0.2253
	            the 0.0857

          would   468083   2 (8)
	           </S> 0.7555
	        changes 0.5413
	          would 0.5413
	             is 0.5413
	              a 0.5413
	            the 0.5413
	          wolfi 0.5413
	              , 0.0857

         Rausch   468123   1 (8)
	         Rausch 0.7555
	          cause 0.5413
	          major 0.5413
	              a 0.5413
	              , 0.2816
	           </S> 0.1825
	           Bush 0.1825
	       Chairman 0.0857

             's   468129   2 (5)
	             us 0.5413
	             's 0.5244
	             is 0.5244
	           </S> 0.1825
	              , 0.0857

            but   468152   1 (6)
	            but 0.5413
	              a 0.5413
	              , 0.5413
	             us 0.5413
	              } 0.1229
	           </S> 0.0857

          the}'   468160 inf (7)
	           thee 0.7555
	           </S> 0.2816
	          their 0.2816
	              , 0.2816
	              a 0.1825
	            the 0.1825
	            you 0.0857

         desire   468166   1 (7)
	         design 0.5413
	           </S> 0.5413
	             is 0.5413
	              , 0.5413
	         desire 0.5413
	              a 0.5413
	           want 0.5413

        Crested   468185   4 (9)
	              . 0.5413
	         things 0.5413
	         policy 0.5413
	        Chester 0.5244
	        Crested 0.5244
	         Center 0.2816
	          world 0.1825
	           same 0.1825
	           </S> 0.0857

         import   468199   6 (10)
	              a 0.5413
	    Calandrella 0.5413
	              ( 0.5413
	             CO 0.5413
	           </S> 0.5413
	         import 0.5244
	        support 0.5097
	             so 0.1825
	            who 0.1825
	            the 0.0857

           Pere   468260 inf (7)
	           Pere 0.7555
	           Pica 0.7555
	           </S> 0.5413
	              : 0.5413
	           were 0.5244
	              a 0.1825
	            the 0.0857

         (P.Z.S   468271 inf (9)
	              a 0.7555
	             's 0.5413
	          Bowie 0.5413
	           IPZS 0.5413
	             P. 0.5413
	              , 0.5413
	           Park 0.5413
	           </S> 0.5413
	            and 0.0857

              .   468277   1 (5)
	              . 0.5413
	              , 0.5413
	             us 0.5413
	            the 0.5413
	           </S> 0.5413

            187   468279 inf (10)
	              - 0.7555
	            the 0.7555
	              , 0.7555
	              I 0.7555
	            100 0.5413
	             us 0.5413
	             80 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

             In   468349   1 (6)
	              , 0.7555
	             In 0.7555
	              a 0.5413
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

         Jerdon   468382   1 (8)
	         Jerdon 0.7555
	       equation 0.5413
	              : 0.5413
	           </S> 0.5413
	          Aedon 0.5413
	         person 0.5244
	              a 0.1825
	            the 0.0857

            Cat   468394   4 (9)
	              , 0.7555
	             at 0.7555
	              I 0.7555
	            Cat 0.5413
	            cia 0.5413
	              / 0.5097
	              ) 0.2816
	              " 0.2816
	           </S> 0.0857

          Birds   468399   3 (8)
	          first 0.7555
	              , 0.7555
	              s 0.5413
	              a 0.5413
	          Birds 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

             E.   468406 inf (10)
	             EE 0.5413
	              ( 0.5413
	           Cats 0.5413
	              a 0.5413
	             El 0.5413
	           </S> 0.5413
	             us 0.5097
	            see 0.2816
	             of 0.2253
	            the 0.0857

            Ind   468409   1 (8)
	            Ind 0.7555
	              a 0.5413
	             us 0.5413
	             In 0.5097
	          <UNK> 0.1825
	           coli 0.1825
	              , 0.0857
	           </S> 0.0857

              .   468412   3 (6)
	             us 0.7555
	            the 0.7555
	              . 0.2816
	              , 0.2816
	            Med 0.2816
	           </S> 0.0857

           Comp   468414   4 (8)
	              , 0.7555
	           Home 0.7555
	              I 0.7555
	           Comp 0.5413
	          comix 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

             II   468426   1 (8)
	             In 0.7555
	              , 0.7555
	             II 0.7555
	             us 0.5413
	              a 0.5413
	              " 0.2816
	              ) 0.2816
	           </S> 0.0857

   grasshoppers   468474   2 (10)
	          major 0.7555
	           know 0.5413
	        himself 0.5413
	   grasshoppers 0.5413
	          there 0.5413
	           </S> 0.5244
	              a 0.5244
	        because 0.2816
	              , 0.2816
	             in 0.0857

        Seebohm   468574   1 (7)
	        Seebohm 0.7555
	             us 0.5413
	              , 0.2816
	           both 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

              -   468583   1 (5)
	              - 0.7555
	             us 0.5413
	            the 0.5413
	              , 0.0857
	           </S> 0.0857

              "   468585   3 (8)
	           with 0.5413
	             us 0.5097
	              . 0.2816
	              " 0.2816
	            the 0.1825
	             to 0.1825
	           mail 0.1825
	           </S> 0.0857

             In   468831   1 (6)
	             In 0.7555
	              , 0.7555
	              a 0.5413
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

        insects   468902   1 (9)
	        insects 0.7555
	            its 0.5413
	          <UNK> 0.2816
	           that 0.2816
	           said 0.2656
	           </S> 0.1825
	              a 0.1825
	              , 0.1825
	             be 0.0857

      mealworms   468911   1 (10)
	      mealworms 0.7555
	           </S> 0.5413
	        spiders 0.5413
	      therefore 0.5413
	        rodents 0.5413
	              a 0.5413
	            and 0.5413
	           more 0.2816
	        however 0.2253
	            the 0.0857

     Familx-ALA   468928 inf (9)
	           will 0.7555
	              a 0.5413
	       Analysis 0.5413
	       tramadol 0.5413
	              - 0.5244
	              , 0.2656
	             .. 0.1294
	              ) 0.0857
	           </S> 0.0857

          UDID^   468939 inf (11)
	              ) 0.5413
	            UDI 0.5413
	            DVD 0.5413
	          UNIDO 0.5413
	           UDDI 0.5413
	             us 0.5413
	              , 0.5413
	           UDIG 0.5413
	              a 0.5413
	           </S> 0.5413
	          GUDID 0.5413

              .   468944 inf (3)
	             of 0.5413
	             us 0.5413
	            the 0.5413

        AVinged   468957 inf (12)
	         winged 0.7555
	        Avinger 0.5413
	          Vinge 0.5413
	          Ainge 0.5413
	              I 0.5413
	             of 0.5413
	         Vidgen 0.5413
	          thing 0.5413
	        Stripes 0.2656
	              , 0.1825
	          House 0.0857
	           </S> 0.0857

           Lark   468965   1 (7)
	           Last 0.5413
	              , 0.5413
	              a 0.5413
	           </S> 0.5413
	          <UNK> 0.5413
	           Lark 0.5413
	            arz 0.5413

              .   468969   3 (6)
	            the 0.7555
	             us 0.5413
	              . 0.2816
	          Books 0.1825
	              , 0.1825
	           </S> 0.0857

ilTclanocorypha   468972 inf (9)
	          Thank 0.7555
	              , 0.7555
	      Copyright 0.7555
	      According 0.7555
	              a 0.5413
	             in 0.5413
	              / 0.5244
	              " 0.2816
	           </S> 0.0857

       sidirica   468988   1 (10)
	      residiria 0.5413
	           </S> 0.5413
	      ossidrica 0.5413
	       sibirica 0.5413
	              a 0.5413
	              , 0.5413
	         ridica 0.5413
	         Sirica 0.5413
	         silica 0.5413
	      configure 0.5413

              ,   468996 inf (3)
	             of 0.5413
	             us 0.5413
	            the 0.5413

          Gmp;l   468998 inf (7)
	          Gmail 0.5413
	          Gympl 0.5413
	            Gmp 0.5413
	          Email 0.5413
	             pp 0.2816
	              i 0.2816
	            the 0.0857

              .   469003   1 (5)
	           </S> 0.5413
	              , 0.5413
	             us 0.5413
	              . 0.5413
	            the 0.5413

           THIS   469006   1 (6)
	              , 0.7555
	              I 0.7555
	           This 0.7555
	           THIS 0.7555
	              " 0.2816
	           </S> 0.0857

        species   469011   1 (8)
	        species 0.7555
	           case 0.5413
	              I 0.5413
	       document 0.5413
	        suecica 0.5413
	              , 0.2816
	           </S> 0.1825
	             IS 0.0857

           1869   469141 inf (7)
	           1986 0.5413
	           2005 0.5413
	              a 0.5413
	           1861 0.5413
	      therefore 0.5413
	           </S> 0.5413
	            the 0.0857

         Rowley   469178   1 (7)
	              a 0.5413
	              s 0.5413
	          Rules 0.5413
	         Rowley 0.5413
	              : 0.2816
	           </S> 0.1825
	              , 0.0857

           1870   469241 inf (6)
	             pp 0.7555
	           1871 0.5413
	           2006 0.5413
	           </S> 0.5413
	              a 0.5413
	            the 0.0857

        species   469270   1 (9)
	        species 0.7555
	           </S> 0.5413
	              a 0.5413
	              , 0.5413
	     Federation 0.5413
	             of 0.5413
	        suecica 0.5413
	        special 0.5097
	              ] 0.0857

            and   469279   1 (6)
	             eg 0.5413
	            and 0.5413
	              , 0.5413
	            arz 0.5413
	              } 0.1229
	           </S> 0.0857

             by   469284   1 (9)
	              , 0.5413
	             by 0.5413
	              a 0.5413
	           </S> 0.5413
	             us 0.5097
	             or 0.1825
	            for 0.1825
	            who 0.1825
	            the 0.0857

      Mongolian   469321   1 (8)
	             of 0.5413
	      Mongolian 0.5413
	          would 0.5413
	              a 0.5413
	              , 0.5244
	         forces 0.5097
	           </S> 0.5097
	         health 0.0857

        Eugland   469383   1 (11)
	           </S> 0.5413
	              , 0.5413
	     Euglandina 0.5413
	            and 0.5413
	        England 0.5413
	        Rugland 0.5413
	             us 0.2816
	           cars 0.2816
	            you 0.2253
	              a 0.1825
	            the 0.0857

           This   469473   1 (6)
	           This 0.7555
	              , 0.7555
	              a 0.5413
	            cia 0.5413
	              " 0.2816
	           </S> 0.0857

             in   469571   1 (6)
	              a 0.5413
	             in 0.5413
	              s 0.5413
	              , 0.5413
	              } 0.1229
	           </S> 0.0857

        January   469594   4 (8)
	    destination 0.5413
	           said 0.5413
	       children 0.5413
	        January 0.5097
	              , 0.1825
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

           1908   469603 inf (8)
	           1998 0.5413
	           1999 0.5413
	              , 0.5413
	           </S> 0.5413
	              a 0.5413
	            and 0.5413
	           with 0.5097
	            the 0.0857

         Sussex   469628   3 (10)
	         Passer 0.7555
	          color 0.5413
	         Sussex 0.5244
	           used 0.5244
	          place 0.2816
	              , 0.2816
	          stock 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

Faunlx-ALAUDID.E   469637 inf (11)
	       SATURDAY 0.7555
	              - 0.7555
	              , 0.7555
	        England 0.5413
	        Falkirk 0.5413
	           only 0.5413
	             DE 0.5413
	              a 0.5413
	              / 0.5244
	              " 0.2816
	           </S> 0.0857

              .   469653   1 (5)
	             us 0.5413
	           </S> 0.5413
	              , 0.5413
	              . 0.5413
	            the 0.5413

              .   469670   3 (5)
	            the 0.7555
	             us 0.5413
	              . 0.2816
	              , 0.1825
	           </S> 0.0857

 Mcla)iOLoyypha   469673 inf (11)
	              , 0.7555
	      ChangeLog 0.7555
	      Copyright 0.7555
	             My 0.5413
	              a 0.5413
	         Martin 0.5413
	   yeltoniensis 0.5413
	              / 0.5244
	              ) 0.5097
	              " 0.2816
	           </S> 0.0857

    ycltontemis   469688 inf (9)
	       contrast 0.5413
	              a 0.5413
	      Montornés 0.5413
	           </S> 0.5413
	     components 0.5413
	              , 0.5413
	       conftest 0.5413
	             to 0.5413
	      configure 0.5413

              ,   469699 inf (3)
	             of 0.5413
	             us 0.5413
	            the 0.5413

          FoRST   469701 inf (7)
	           FRST 0.5413
	            For 0.5413
	          FIRST 0.5413
	            RST 0.5413
	              i 0.2816
	             pp 0.2816
	            the 0.0857

              .   469706   2 (6)
	              , 0.7555
	           </S> 0.5413
	             us 0.5413
	              . 0.5413
	            the 0.5413
	              ) 0.0857

              A   469709   1 (7)
	              , 0.7555
	            the 0.7555
	              A 0.7555
	             us 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

          FLOCK   469711 inf (9)
	           nest 0.5413
	           FLOC 0.5413
	            FOR 0.5244
	          major 0.2816
	         number 0.2816
	              A 0.2816
	           copy 0.2816
	              , 0.1825
	           </S> 0.0857

          About   469822   1 (6)
	              , 0.7555
	          About 0.7555
	              a 0.5413
	        sources 0.5413
	              " 0.2816
	           </S> 0.0857

       imported   469860   7 (10)
	              , 0.5413
	          items 0.5413
	             us 0.5413
	              a 0.5413
	        ranging 0.5413
	           </S> 0.5413
	       imported 0.5244
	           many 0.2816
	             if 0.1825
	            the 0.0857

     Leadenhall   469905   1 (7)
	     Leadenhall 0.7555
	        January 0.5413
	          major 0.5413
	              , 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

          Larks   469924   3 (9)
	              , 0.7555
	          Links 0.7555
	       Research 0.5413
	         London 0.5413
	              a 0.5413
	          Larks 0.5413
	          Parus 0.5413
	              " 0.2816
	           </S> 0.0857

       Ortolans   469931   1 (11)
	          women 0.5413
	       Swallows 0.5413
	              , 0.5413
	         online 0.5413
	      therefore 0.5413
	           </S> 0.5413
	              a 0.5413
	        drepper 0.5413
	       Ortolans 0.5413
	              s 0.5413
	            the 0.0857

            and   469941   1 (4)
	            and 0.5413
	            arz 0.5413
	          while 0.2253
	            the 0.0857

         Quails   469945   1 (9)
	         dubius 0.7555
	         Quails 0.7555
	       children 0.5413
	          Email 0.5097
	           they 0.2253
	              , 0.1825
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

              "   469984   2 (8)
	             us 0.7555
	              " 0.5097
	            the 0.2816
	           </S> 0.2656
	       distance 0.2253
	           time 0.1825
	              , 0.1825
	              - 0.0857

         almost   470050   1 (8)
	            and 0.5413
	         almost 0.5413
	              I 0.5413
	           also 0.5413
	           </S> 0.5413
	              " 0.5413
	           such 0.2253
	            the 0.0857

       bullocks   470087   1 (8)
	       bullocks 0.7555
	          close 0.5097
	              , 0.2816
	        defined 0.2816
	             if 0.2253
	           well 0.1825
	           </S> 0.1825
	              a 0.0857

        jerking   470119   1 (8)
	        jerking 0.7555
	          doors 0.5413
	          major 0.5413
	        Perkins 0.5244
	        working 0.5097
	              - 0.1825
	          first 0.1825
	           </S> 0.0857

           open   470127   1 (11)
	           open 0.7555
	            one 0.7555
	           part 0.5413
	         number 0.5413
	             us 0.5244
	      movements 0.5244
	           </S> 0.5244
	             of 0.5097
	              a 0.5097
	              , 0.1825
	            off 0.0857

       smashing   470184   1 (8)
	              a 0.5413
	             of 0.5413
	         system 0.5413
	       smashing 0.5413
	              , 0.1825
	              - 0.1825
	             or 0.1825
	           </S> 0.0857

       liberate   470242   1 (8)
	       liberate 0.7555
	           like 0.5413
	             be 0.5413
	           </S> 0.2253
	              , 0.1825
	              . 0.1825
	              a 0.1825
	          again 0.0857

         enough   470251   1 (7)
	         enough 0.7555
	        through 0.5413
	           </S> 0.5244
	              a 0.5097
	              , 0.5097
	             us 0.1294
	            the 0.0857

          flock   470292   2 (10)
	           from 0.7555
	          basis 0.5413
	          flock 0.5413
	              a 0.5244
	             of 0.5244
	           time 0.5097
	           </S> 0.2816
	         family 0.2816
	            and 0.1825
	              , 0.0857

             No   470299   1 (6)
	             No 0.7555
	              , 0.7555
	              a 0.5413
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

   importations   470347   1 (13)
	   importations 0.7555
	            use 0.5413
	      thousands 0.5413
	    information 0.4011
	           that 0.2816
	            one 0.2816
	            any 0.2816
	              , 0.2816
	             us 0.2656
	           your 0.1825
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

          birds   470363   2 (10)
	          Parus 0.7555
	          first 0.5097
	          birds 0.5097
	             it 0.2816
	           time 0.2816
	              , 0.2816
	           them 0.2816
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

         Family   470436   1 (7)
	         Family 0.7555
	              , 0.7555
	              a 0.5413
	           mail 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

   ALAl'DID.-Ji   470444 inf (13)
	              a 0.7555
	            All 0.7555
	              D 0.7555
	           side 0.5413
	             L. 0.5413
	              © 0.5413
	              s 0.5413
	       Atlantis 0.5413
	              , 0.5413
	              p 0.5413
	            Vol 0.5413
	             to 0.5244
	           </S> 0.0857

              .   470456   1 (7)
	              , 0.5413
	             us 0.5413
	            And 0.5413
	              . 0.5413
	            the 0.5413
	              - 0.5413
	           </S> 0.5413

  Ciila)idixlla   470481   3 (9)
	              , 0.7555
	          Click 0.7555
	              a 0.5413
	        Comella 0.5413
	    Calandrella 0.5413
	              / 0.5244
	              ) 0.5097
	              " 0.2816
	           </S> 0.0857

   bnuhydaityla   470495 inf (9)
	       addition 0.5413
	      configure 0.5413
	              a 0.5413
	              , 0.5413
	              n 0.5413
	        Tuesday 0.5413
	          build 0.5413
	          atlas 0.5413
	           </S> 0.5413

              ,   470507 inf (3)
	             of 0.5413
	             us 0.5413
	            the 0.5413

          LEISL   470509 inf (5)
	          LEISD 0.5413
	           LEIS 0.5413
	              i 0.2816
	             pp 0.2816
	            the 0.0857

              .   470514   1 (5)
	           </S> 0.5413
	              , 0.5413
	             us 0.5413
	              . 0.5413
	            the 0.5413

         HOWARD   470517 inf (7)
	              I 0.7555
	              , 0.7555
	          HOARD 0.5413
	         HAZARD 0.5413
	           WARD 0.5413
	              " 0.2816
	           </S> 0.0857

       SAUNDERS   470524 inf (8)
	          SUNDS 0.5413
	         FUNDER 0.5413
	        SINGERS 0.5413
	         UANDES 0.5413
	              a 0.5413
	             A. 0.5244
	           </S> 0.1825
	              , 0.0857

         admits   470533   2 (5)
	              I 0.7555
	          admit 0.5413
	         admits 0.5413
	           </S> 0.1825
	              , 0.0857

    justifiably   470568   1 (8)
	    justifiably 0.7555
	           just 0.5413
	          major 0.5413
	              a 0.2816
	             is 0.2656
	             to 0.2656
	              , 0.1825
	           </S> 0.0857

          geuus   470594   6 (10)
	          rufus 0.7555
	         genuus 0.5413
	            geu 0.5413
	              , 0.5413
	           geus 0.5413
	            get 0.5097
	          genus 0.5097
	          world 0.1825
	           same 0.1825
	           </S> 0.0857

    Calandrclla   470600   1 (7)
	              a 0.5413
	             of 0.5413
	              , 0.5413
	           </S> 0.5413
	       Calandra 0.5413
	    Calandrella 0.5413
	          place 0.5413

              ,   470611 inf (3)
	             of 0.5413
	             us 0.5413
	            the 0.5413

  characterized   470613   1 (6)
	        written 0.5413
	  characterized 0.5413
	          their 0.2816
	              i 0.2816
	             or 0.1825
	            the 0.0857

          crest   470645   1 (9)
	          crest 0.7555
	           best 0.5097
	             it 0.2816
	              , 0.2816
	             us 0.2816
	              a 0.1825
	           this 0.1825
	           </S> 0.1825
	            the 0.0857

        conical   470660   1 (7)
	        conical 0.7555
	        control 0.5413
	         dollar 0.5413
	             of 0.5244
	              a 0.5244
	           </S> 0.2816
	              , 0.0857

           hind   470693   1 (11)
	          minor 0.7555
	           hind 0.7555
	       informed 0.5413
	            non 0.5244
	           half 0.5244
	            his 0.5244
	              a 0.5097
	           </S> 0.2253
	              , 0.1825
	              . 0.1825
	              - 0.0857

  infinitesimal   470707   1 (7)
	  infinitesimal 0.7555
	              . 0.5413
	    information 0.2816
	              , 0.2253
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

        bastard   470721   2 (10)
	        numbers 0.7555
	        bastard 0.5413
	             us 0.5413
	            the 0.5413
	          based 0.5413
	              a 0.5413
	              . 0.1825
	           </S> 0.1825
	              , 0.1825
	       compared 0.0857

        primary   470729   1 (9)
	        private 0.5413
	          since 0.5413
	        primary 0.5413
	              a 0.5244
	              ' 0.5097
	              " 0.2816
	           </S> 0.2816
	              , 0.1825
	              . 0.0857

        Alaiida   470795   1 (15)
	           Alai 0.5413
	        Algaida 0.5413
	           said 0.5413
	          Alaid 0.5413
	         Alauda 0.5413
	        Alaimia 0.5413
	        Adalida 0.5413
	        maiidae 0.5413
	           that 0.2816
	            out 0.2253
	              a 0.2253
	           </S> 0.1825
	              , 0.1825
	              . 0.1825
	             is 0.0857

              .   470802   1 (5)
	            the 0.5413
	           </S> 0.5413
	              . 0.5413
	              , 0.5413
	             us 0.5413

       Inhabits   470805 inf (6)
	              A 0.7555
	              , 0.7555
	    Inhabitants 0.5413
	        Inhabit 0.5413
	              " 0.2816
	           </S> 0.0857

       Southern   470814   2 (5)
	           </S> 0.7555
	       Southern 0.5413
	              , 0.5413
	              a 0.5097
	        shallow 0.0857

             in   470927   1 (6)
	             iu 0.5413
	              a 0.5413
	             in 0.5413
	              , 0.5413
	              } 0.1229
	           </S> 0.0857

     xAbyssinia   470992   1 (8)
	      Abyssinia 0.7555
	          using 0.5413
	              , 0.2816
	            the 0.1825
	       possible 0.1825
	           </S> 0.1825
	              I 0.1825
	              a 0.0857

              ;   471003   1 (8)
	             as 0.5413
	            the 0.5413
	              ; 0.5413
	           know 0.5413
	            can 0.5413
	              , 0.5413
	             us 0.5413
	           </S> 0.5413

       eastward   471005   1 (5)
	        eastern 0.5413
	       eastward 0.5413
	              ) 0.5097
	              } 0.1229
	           </S> 0.0857

             To   471069   1 (7)
	             To 0.7555
	              ( 0.7555
	              , 0.7555
	             us 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

      straggler   471116   1 (9)
	      straggler 0.7555
	              a 0.5413
	             of 0.5413
	          state 0.5413
	            one 0.5097
	          event 0.2816
	    opportunity 0.2253
	           </S> 0.1825
	              , 0.0857

          about   471127   1 (7)
	           </S> 0.5413
	          about 0.5413
	           used 0.5413
	              I 0.5413
	              " 0.5413
	            and 0.5413
	            the 0.0857

  authenticated   471138   3 (11)
	          major 0.7555
	       students 0.7555
	  authenticated 0.5413
	              I 0.5413
	          miles 0.5244
	           </S> 0.5097
	              . 0.2816
	              , 0.2816
	          years 0.1825
	         months 0.0857
	              - 0.0655

           si.x   471213   8 (12)
	              a 0.5413
	            and 0.5413
	           </S> 0.5413
	           siex 0.5413
	              ( 0.5413
	             si 0.5244
	           sala 0.5244
	           site 0.5097
	            six 0.5097
	             on 0.2253
	            one 0.2253
	            the 0.0857

             of   471218   1 (6)
	            put 0.5413
	              , 0.5413
	            the 0.5413
	           </S> 0.5413
	             us 0.5413
	             of 0.5413

            one   471401   1 (5)
	            one 0.7555
	              s 0.5244
	              a 0.5244
	              , 0.1825
	           </S> 0.0857

         caught   471405   2 (9)
	        caudata 0.5413
	         caught 0.5244
	           case 0.5097
	              a 0.5097
	           </S> 0.2656
	            can 0.2656
	             is 0.2253
	              , 0.1825
	             of 0.0857

            was   471428   3 (5)
	             us 0.5413
	              a 0.5413
	            was 0.5244
	           </S> 0.1825
	              , 0.0857

             In   471465   1 (7)
	             In 0.7555
	              , 0.7555
	             us 0.5413
	              a 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

   sand3'-browu   471627 inf (10)
	           send 0.7555
	        implied 0.5413
	          brown 0.5413
	       password 0.5413
	             an 0.5244
	              , 0.5244
	            not 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

            the   471683   1 (5)
	              , 0.5413
	            the 0.5413
	             us 0.5413
	              } 0.1229
	           </S> 0.0857

              -   471699   3 (6)
	             us 0.7555
	            the 0.5097
	              - 0.1825
	              , 0.1825
	           </S> 0.1825
	              . 0.0857

       blackish   471740   3 (8)
	              a 0.7555
	        thereof 0.7555
	           back 0.5413
	       blackish 0.5413
	              ) 0.5244
	              , 0.5097
	           </S> 0.5097
	             of 0.0857

            but   471750   1 (9)
	            but 0.5413
	              a 0.5413
	           </S> 0.5413
	              , 0.5413
	             us 0.5097
	              e 0.2816
	          while 0.2253
	           with 0.1825
	            the 0.0857

        huffish   471787 inf (10)
	           this 0.5413
	             us 0.5413
	        huffish 0.5413
	              a 0.5244
	           </S> 0.5097
	             to 0.5097
	           skin 0.2816
	            and 0.1825
	           blue 0.1825
	              , 0.0857

        patches   471795   2 (6)
	           </S> 0.7555
	        patches 0.5413
	          grief 0.5413
	        Watches 0.5413
	              a 0.5413
	              , 0.0857

              a   471863   1 (6)
	              , 0.5413
	             us 0.5413
	            the 0.5413
	              a 0.5413
	              } 0.1229
	           </S> 0.0857

   superciliary   471871   1 (8)
	        support 0.5413
	              a 0.5413
	    crystalline 0.5413
	   superciliary 0.5413
	             of 0.5097
	            man 0.2656
	           </S> 0.1825
	              , 0.0857

         streak   471884   2 (9)
	              , 0.7555
	         streak 0.5413
	              . 0.5413
	         stream 0.5413
	           sore 0.5413
	              a 0.5413
	           </S> 0.5244
	         stripe 0.1825
	         ridges 0.0857

          under   471892   1 (5)
	              , 0.5413
	              a 0.5413
	          under 0.5413
	              } 0.1229
	           </S> 0.0857

              a   471962   1 (7)
	             us 0.5413
	              , 0.5413
	            the 0.5413
	            and 0.5413
	              a 0.5413
	              } 0.1229
	           </S> 0.0857

           tlie   471997   9 (9)
	           alba 0.7555
	           trie 0.7555
	          tliet 0.5413
	           tile 0.5244
	              , 0.2816
	           </S> 0.1825
	              a 0.1825
	           this 0.1825
	            the 0.0857

           neck   472002   4 (10)
	            new 0.7555
	              , 0.7555
	              . 0.7555
	       Atlantic 0.5413
	           Pica 0.5413
	           neck 0.5413
	              a 0.5413
	            Act 0.5244
	           </S> 0.1825
	          <UNK> 0.0857

           bill   472009   1 (8)
	           will 0.5413
	              , 0.5413
	           bill 0.5413
	            and 0.5413
	              a 0.5413
	            cia 0.5413
	              } 0.1229
	           </S> 0.0857

           dark   472014   1 (9)
	            day 0.7555
	           dark 0.7555
	            arz 0.5413
	              a 0.5097
	           </S> 0.1825
	             of 0.1825
	              , 0.1825
	            and 0.1825
	              . 0.0857

           feet   472040   1 (7)
	           free 0.5413
	              a 0.5413
	              , 0.5413
	           feet 0.5413
	              ) 0.5097
	              } 0.1229
	           </S> 0.0857

     j^ellowish   472045   1 (7)
	      yellowish 0.7555
	          below 0.1229
	              a 0.1229
	           </S> 0.0857
	              , 0.0509
	              . 0.0509
	             of 0.0509

           horn   472056   1 (7)
	           here 0.5413
	              a 0.5413
	              , 0.5413
	           </S> 0.5413
	       Tide2006 0.5413
	           horn 0.5413
	          corax 0.5413

           iris   472069   1 (7)
	              a 0.5413
	             is 0.5413
	              , 0.5413
	           iris 0.5413
	             iu 0.5413
	              } 0.1229
	           </S> 0.0857

          hazel   472074   1 (7)
	           have 0.7555
	          hazel 0.7555
	           here 0.7555
	          Pales 0.5413
	              ) 0.2816
	           </S> 0.1825
	              , 0.0857

              .   472079   3 (6)
	            the 0.7555
	             us 0.5413
	              . 0.2816
	           </S> 0.2656
	              , 0.1825
	           eyes 0.0857

         tipped   472244   2 (7)
	          times 0.7555
	         tipped 0.5413
	              a 0.5244
	              . 0.1825
	              , 0.1825
	           </S> 0.1825
	             of 0.0857

           buff   472269   1 (11)
	           buff 0.7555
	          rufus 0.7555
	          black 0.5413
	            but 0.5244
	           them 0.2816
	              , 0.2816
	             us 0.2656
	           </S> 0.1825
	           your 0.1825
	              a 0.1825
	            the 0.0857

          moult   472292   1 (8)
	          moult 0.7555
	          maura 0.5413
	              a 0.5244
	          would 0.5244
	           </S> 0.1825
	             of 0.1825
	              , 0.0857
	              . 0.0857

        Colonel   472322   2 (7)
	              , 0.7555
	              a 0.5413
	        Colonel 0.5413
	         corone 0.5413
	          <UNK> 0.5097
	              " 0.2816
	           </S> 0.0857

           Irby   472330   2 (8)
	             In 0.7555
	              a 0.5413
	           Irby 0.5413
	           alba 0.5413
	          Blimp 0.2816
	          <UNK> 0.1825
	           </S> 0.1825
	              , 0.0857

    Ornithology   472337   1 (8)
	    Ornithology 0.7555
	        Journal 0.5413
	            One 0.5413
	           with 0.2816
	              a 0.2816
	              , 0.1825
	              ) 0.1825
	           </S> 0.0857

         says:-   472379   3 (9)
	          sayst 0.5413
	              s 0.5413
	           says 0.5244
	             == 0.5097
	              " 0.2816
	              , 0.1825
	              ; 0.1825
	              a 0.1294
	           </S> 0.0857

              "   472386   1 (6)
	              : 0.5413
	            the 0.5413
	           </S> 0.5413
	              " 0.5413
	              , 0.5413
	             us 0.5413

     Andalucian   472394   1 (7)
	      Andalucia 0.7555
	     Andalucian 0.7555
	              , 0.5413
	       American 0.2253
	          other 0.1825
	           same 0.1825
	           </S> 0.0857

      commences   472445   1 (7)
	         summer 0.5413
	       comments 0.5413
	      commences 0.5413
	              a 0.5244
	           </S> 0.2253
	              , 0.1825
	             of 0.0857

          nests   472541   1 (8)
	          nests 0.7555
	             us 0.5413
	            new 0.5244
	              a 0.2816
	              , 0.1825
	            the 0.1825
	           </S> 0.1825
	              . 0.0857

    Excessively   472586 inf (9)
	              , 0.7555
	    exclusively 0.5413
	      Excessive 0.5413
	    excessively 0.5413
	    Exclusively 0.5413
	              a 0.5413
	              / 0.5244
	              " 0.2816
	           </S> 0.0857

       abundant   472598   2 (8)
	              , 0.7555
	         Monday 0.5413
	      configure 0.5413
	              I 0.5413
	       abundant 0.5413
	        Drained 0.5244
	           </S> 0.2253
	      Injurious 0.0857

       Cahuidra   472655 inf (13)
	        Cahuita 0.7555
	       Cahuilla 0.7555
	       Cathedra 0.7555
	              , 0.5413
	         Cahuil 0.5413
	             as 0.5413
	          major 0.5413
	        Chhidru 0.5413
	           City 0.2253
	              " 0.1825
	          other 0.1825
	       original 0.1825
	           </S> 0.0857

              ;   472664   1 (7)
	             of 0.5413
	              , 0.5413
	           </S> 0.5413
	            the 0.5413
	              ; 0.5413
	             us 0.5413
	           that 0.5413

           they   472666   1 (5)
	           they 0.5413
	            the 0.5413
	              ) 0.5097
	              } 0.1229
	           </S> 0.0857

         falhnv   472678 inf (10)
	           find 0.5413
	          falha 0.5413
	         falhas 0.5413
	        falhava 0.5413
	           </S> 0.5097
	             us 0.5097
	            not 0.2253
	              , 0.2253
	              a 0.1825
	             to 0.0857

        i^round   472685 inf (10)
	             us 0.5413
	              a 0.5413
	             to 0.5413
	        inbound 0.5413
	       inground 0.5413
	              , 0.5413
	          round 0.5413
	         around 0.5413
	           </S> 0.5413
	            use 0.5413

              ,   472692 inf (3)
	             of 0.5413
	             us 0.5413
	            the 0.5413

           clod   472724   1 (10)
	           clod 0.7555
	            cia 0.7555
	              a 0.5413
	     References 0.5413
	         excuse 0.5413
	            can 0.5097
	              . 0.2816
	              , 0.2816
	           </S> 0.2253
	             of 0.0857

           au}'   472735 inf (11)
	           alba 0.7555
	             au 0.7555
	            aua 0.5413
	              I 0.5413
	           auto 0.5244
	            and 0.2816
	              , 0.2816
	           part 0.2816
	           some 0.2816
	           </S> 0.1825
	            the 0.0857

        sliglit   472740   1 (11)
	        seligit 0.5413
	         slight 0.5413
	          light 0.5413
	         Piglit 0.5413
	         stigli 0.5413
	           </S> 0.5413
	          sigli 0.5413
	              , 0.5413
	              a 0.5413
	        stiglio 0.5413
	          major 0.5413

     depression   472748   1 (3)
	     expression 0.5413
	     depressior 0.5413
	     depression 0.5413

              I   472774   1 (6)
	              I 0.7555
	              , 0.7555
	            the 0.7555
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

          l)ird   472829 inf (11)
	           Bird 0.7555
	          laird 0.7555
	             of 0.5413
	              a 0.5413
	           dirl 0.5413
	           like 0.5244
	            one 0.2253
	              - 0.1825
	            man 0.1825
	           </S> 0.1825
	              , 0.0857

            off   472835   1 (8)
	              , 0.5413
	           said 0.5413
	             us 0.5413
	            off 0.5413
	             of 0.5413
	           </S> 0.5413
	              a 0.5413
	            new 0.5413

              "   472839   5 (6)
	            the 0.7555
	              , 0.7555
	             us 0.5413
	            all 0.5413
	              " 0.2816
	           </S> 0.0857

       Saunders   472849   1 (9)
	       Saunders 0.7555
	          under 0.7555
	              a 0.5413
	             he 0.5413
	              " 0.4979
	             A. 0.2816
	           Dean 0.1825
	           </S> 0.1825
	              , 0.0857

          liird   472898 inf (10)
	         beauty 0.5413
	          liira 0.5413
	        weather 0.5413
	              , 0.5413
	           team 0.5413
	           liir 0.5413
	           dirl 0.5413
	           like 0.2816
	           same 0.1825
	           </S> 0.0857

      frequents   472904   1 (7)
	              a 0.5413
	             is 0.5413
	        request 0.5413
	             of 0.5413
	              , 0.5413
	      frequents 0.5413
	           </S> 0.5413

            dry   472914   1 (7)
	            day 0.5413
	            dry 0.5413
	            arz 0.5413
	           </S> 0.5097
	              a 0.5097
	              , 0.5097
	            the 0.0857

          while   472984   1 (5)
	              , 0.5413
	              a 0.5413
	          while 0.5413
	              } 0.1229
	           </S> 0.0857

       tameuess   472994   1 (14)
	       tameness 0.7555
	          meues 0.5413
	        ameutes 0.5413
	          tames 0.5413
	          major 0.5413
	              , 0.5413
	         effect 0.2816
	          value 0.2816
	           head 0.2816
	           time 0.2816
	        content 0.2253
	              a 0.1825
	           </S> 0.1825
	            own 0.0857

             is   473003   1 (6)
	           </S> 0.5413
	              . 0.5413
	             is 0.5413
	              a 0.5413
	             iu 0.5413
	              , 0.5413

    difficult}'   473029   1 (11)
	     difficulty 0.7555
	      difficult 0.5413
	          found 0.5413
	             us 0.5244
	      different 0.5244
	             it 0.2816
	           </S> 0.2816
	              , 0.2253
	              a 0.1825
	            the 0.1825
	             of 0.0857

             in   473041   1 (6)
	              , 0.5413
	            the 0.5413
	              s 0.5413
	             in 0.5413
	           </S> 0.5413
	              a 0.5413

       shooting   473044   3 (9)
	          using 0.5413
	             us 0.5413
	       shooting 0.5244
	              , 0.2816
	           such 0.2816
	          which 0.2656
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

       withoiit   473083   4 (9)
	         Pithoi 0.5413
	       Githoito 0.5413
	              a 0.5413
	        without 0.5244
	       purposes 0.2816
	              , 0.1825
	              . 0.1825
	           </S> 0.1825
	             of 0.0857

        blowing   473092   1 (6)
	           </S> 0.5413
	              a 0.5413
	          being 0.5413
	           only 0.5413
	              , 0.5413
	        blowing 0.5413

            cut   473137   1 (10)
	            cut 0.7555
	            cia 0.5413
	           like 0.5413
	              a 0.5244
	            can 0.5097
	             of 0.2656
	           </S> 0.2253
	             's 0.1825
	              , 0.1825
	            flu 0.0857

         utters   473180   1 (9)
	           uses 0.7555
	         utters 0.7555
	              I 0.5413
	          under 0.5244
	             in 0.2816
	             of 0.2816
	           </S> 0.1825
	              , 0.1825
	            and 0.0857

           song   473208   1 (7)
	           song 0.7555
	           some 0.5413
	           sala 0.5413
	              a 0.5244
	           </S> 0.5097
	              . 0.1825
	              , 0.0857

           clod   473235   1 (9)
	           clod 0.7555
	            cia 0.7555
	              a 0.5413
	           high 0.5413
	            can 0.5097
	          level 0.5097
	              , 0.2816
	           </S> 0.2253
	             of 0.0857

         jerk}'   473297 inf (11)
	             us 0.5413
	           jerk 0.5413
	           were 0.5413
	          jerks 0.5413
	         jerker 0.5413
	              a 0.3154
	           </S> 0.1825
	              . 0.1825
	              , 0.1825
	           less 0.1825
	           more 0.0857

         flight   473304   1 (7)
	              , 0.5413
	           </S> 0.5413
	              . 0.5413
	              a 0.5413
	          light 0.5413
	   ostentatious 0.5413
	         flight 0.5413

             In   473312   1 (6)
	             In 0.7555
	              , 0.7555
	              a 0.5413
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

   nidification   473374   1 (10)
	   nidification 0.7555
	         Advent 0.5413
	              , 0.2816
	             it 0.2816
	      Education 0.2816
	             us 0.2816
	           them 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

             as   473388   1 (7)
	             as 0.5413
	           </S> 0.5413
	              ( 0.5413
	              I 0.5413
	            and 0.5413
	             us 0.5097
	            the 0.0857

        Seebohm   473391   1 (8)
	           need 0.5413
	        Seebohm 0.5413
	          <UNK> 0.2816
	              , 0.2816
	             it 0.1825
	           well 0.1825
	           </S> 0.1825
	              a 0.0857

         varies   473439   1 (7)
	        various 0.5413
	              D 0.5413
	         varies 0.5413
	          Parus 0.5413
	          Books 0.1825
	              , 0.1825
	           </S> 0.0857

     commencing   473447   1 (6)
	         online 0.5413
	              a 0.5413
	            but 0.5413
	     commencing 0.5413
	             or 0.1825
	            the 0.0857

             in   473550   1 (6)
	              , 0.5413
	              a 0.5413
	             in 0.5413
	             iu 0.5413
	              } 0.1229
	           </S> 0.0857

        nesting   473628   1 (8)
	        nesting 0.5413
	        Listing 0.5413
	              a 0.5097
	           than 0.5097
	             of 0.1825
	              , 0.1825
	           </S> 0.1825
	              . 0.0857

     operations   473636   1 (8)
	        options 0.7555
	     operations 0.7555
	             it 0.5413
	           they 0.5413
	              a 0.5244
	          birds 0.1825
	           </S> 0.1825
	              , 0.0857

      sheltered   473772   1 (10)
	      sheltered 0.7555
	             to 0.5413
	         caused 0.5413
	       affected 0.5413
	        getting 0.5097
	           </S> 0.2816
	          there 0.2816
	              , 0.2816
	              a 0.1825
	          legal 0.0857

          Larks   473842   1 (11)
	          Larks 0.7555
	              I 0.5413
	          Parus 0.5413
	          Links 0.5244
	           hand 0.1825
	           </S> 0.1825
	         things 0.1825
	              , 0.1825
	         people 0.1825
	      countries 0.1825
	           than 0.0857

          grass   473864   1 (8)
	          great 0.7555
	          grass 0.7555
	      probation 0.5413
	              , 0.5244
	              a 0.2816
	             us 0.2816
	           </S> 0.2816
	            the 0.0857

       feathers   473988   1 (9)
	       feathers 0.7555
	          other 0.5413
	             us 0.5413
	           </S> 0.1825
	             it 0.1825
	              a 0.1825
	              . 0.1825
	           even 0.1825
	              , 0.0857

           bird   474178   2 (10)
	            cia 0.7555
	           bird 0.5244
	             by 0.2816
	              . 0.1825
	             is 0.1825
	              , 0.1825
	              a 0.1825
	          there 0.1825
	           </S> 0.1825
	            the 0.0857

            but   474239   1 (6)
	            but 0.5413
	              a 0.5413
	             us 0.5413
	              , 0.5413
	              } 0.1229
	           </S> 0.0857

            Sky   474362   5 (11)
	            Pyi 0.7555
	          Black 0.5413
	           self 0.5413
	          three 0.5413
	            Sky 0.5244
	            non 0.2816
	             by 0.2816
	              a 0.1825
	              , 0.1825
	           </S> 0.1825
	            the 0.0857

              -   474365   4 (6)
	             us 0.5413
	            the 0.5244
	              . 0.2656
	              , 0.1825
	              - 0.1825
	           </S> 0.0857

          Larks   474366   1 (10)
	          Larks 0.7555
	           side 0.5413
	         namely 0.5413
	              s 0.5413
	          Links 0.5097
	              . 0.2816
	              a 0.2253
	             up 0.1825
	             to 0.1825
	           </S> 0.0857

             In   474463   1 (6)
	              , 0.7555
	             In 0.7555
	              a 0.5413
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

      colouring   474466   1 (7)
	      colouring 0.7555
	          using 0.5413
	              , 0.4011
	              a 0.1825
	           </S> 0.1825
	       addition 0.1825
	            the 0.0857

        whitish   474496   1 (8)
	        whitish 0.7555
	              s 0.5413
	          white 0.5097
	              . 0.2816
	          which 0.2816
	              a 0.2253
	             to 0.1825
	           </S> 0.0857

         freely   474504   1 (7)
	              a 0.5413
	           free 0.5413
	         freely 0.5413
	            and 0.2816
	           </S> 0.2816
	              - 0.1825
	              , 0.0857

      sprinkled   474511   1 (7)
	      sprinkled 0.7555
	       Sprinkle 0.5413
	        printed 0.5244
	         shared 0.5097
	           </S> 0.2816
	              , 0.1825
	      available 0.0857

          smoky   474531   1 (9)
	          smoky 0.7555
	           some 0.7555
	            non 0.5413
	              a 0.5097
	           </S> 0.2816
	           gray 0.2816
	         yellow 0.1825
	              . 0.1825
	              , 0.0857

         greyer   474558   1 (8)
	         greyer 0.7555
	              , 0.2816
	          great 0.2816
	              . 0.2816
	             us 0.2656
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

          shell   474565   1 (9)
	            non 0.5413
	              a 0.5413
	          shall 0.5413
	           Back 0.5413
	          shell 0.5413
	           sala 0.5413
	           </S> 0.5244
	              . 0.1825
	              , 0.0857

          these   474579   1 (5)
	              , 0.5413
	          these 0.5413
	              a 0.5413
	              } 0.1229
	           </S> 0.0857

        marking   474719   2 (8)
	        working 0.7555
	        marking 0.5413
	              a 0.5413
	       elements 0.4979
	           </S> 0.2816
	              . 0.1825
	              , 0.1825
	           than 0.0857

            but   474749   1 (6)
	            but 0.5413
	             us 0.5413
	              , 0.5413
	              a 0.5413
	              } 0.1229
	           </S> 0.0857

          Larks   474792   1 (8)
	          Parus 0.7555
	          Larks 0.7555
	              , 0.5413
	          Links 0.5244
	          Large 0.5244
	           time 0.1825
	           same 0.1825
	           </S> 0.0857

         Jerdon   474838   2 (8)
	              , 0.7555
	           were 0.5413
	            the 0.5413
	          Aedon 0.5413
	         Jerdon 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

             cf   474846   3 (10)
	              \ 0.5413
	     Restricted 0.5413
	             cf 0.5244
	             of 0.2816
	              - 0.2816
	            The 0.2253
	           </S> 0.1825
	              s 0.1825
	              a 0.1825
	          <UNK> 0.0857

            Cat   474849   2 (10)
	              a 0.7555
	            Cat 0.5413
	            cia 0.5413
	             at 0.5244
	              ) 0.5097
	          v2.9s 0.5097
	              , 0.2816
	           </S> 0.2816
	              - 0.2816
	              . 0.0857

          Birds   474854   3 (8)
	              , 0.7555
	          first 0.7555
	              s 0.5413
	           Bird 0.5413
	          Birds 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

             E.   474861 inf (9)
	             EE 0.5413
	              ( 0.5413
	           Cats 0.5413
	              a 0.5413
	             El 0.5413
	           </S> 0.5413
	             us 0.5097
	             of 0.2253
	            the 0.0857

             I.   474864   1 (7)
	             J. 0.5413
	              a 0.5413
	              I 0.5413
	             In 0.5097
	              . 0.2816
	              , 0.0857
	           </S> 0.0857

             II   474879   1 (8)
	             In 0.7555
	              , 0.7555
	             II 0.7555
	             us 0.5413
	              a 0.5413
	              " 0.2816
	              ) 0.2816
	           </S> 0.0857

             It   474970   1 (7)
	             It 0.7555
	              . 0.7555
	              , 0.7555
	              a 0.5413
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

     associates   474973   1 (5)
	     associated 0.7555
	     associates 0.7555
	              , 0.4011
	           </S> 0.1825
	             is 0.0857

    frequenting   475000   1 (8)
	    frequenting 0.7555
	          rufus 0.5413
	              a 0.5413
	            and 0.5413
	           </S> 0.5413
	           free 0.2656
	           with 0.1825
	            the 0.0857

           bare   475016   3 (9)
	           sons 0.5413
	            arz 0.5413
	           tall 0.5097
	           bare 0.5097
	           back 0.2656
	              - 0.2253
	           same 0.1825
	            two 0.1825
	           </S> 0.0857

              -   475026   3 (6)
	             us 0.7555
	            the 0.5244
	           </S> 0.1825
	              . 0.1825
	              - 0.1825
	              , 0.0857

          downs   475027   2 (9)
	              s 0.5413
	          downs 0.5244
	           down 0.2816
	              . 0.2816
	              a 0.2253
	           mail 0.1825
	             to 0.1825
	             up 0.1825
	           </S> 0.0857

             it   475093   1 (7)
	              a 0.5413
	              , 0.5413
	            can 0.5413
	             it 0.5413
	             iu 0.5413
	              } 0.1229
	           </S> 0.0857

          grain   475111   1 (9)
	             co 0.5413
	          great 0.5413
	             us 0.5413
	          Multi 0.5413
	          grain 0.5413
	              , 0.5097
	              a 0.5097
	           </S> 0.5097
	            the 0.0857

        retires   475143   1 (9)
	        retires 0.7555
	           turn 0.5413
	       required 0.5097
	           </S> 0.1825
	         wanted 0.1825
	              , 0.1825
	           have 0.1825
	              a 0.1825
	           been 0.0857

           from   475200   1 (5)
	           from 0.5413
	              a 0.5413
	              s 0.5413
	              , 0.5413
	           </S> 0.0857

             II   475298   1 (7)
	              , 0.7555
	             In 0.7555
	             II 0.7555
	             us 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

           both   475378   1 (5)
	              a 0.5413
	              , 0.5413
	           both 0.5413
	              } 0.1229
	           </S> 0.0857

           Lark   475454   1 (10)
	              a 0.5413
	             of 0.5413
	           Lark 0.5413
	            arz 0.5413
	            are 0.5244
	              , 0.2816
	           </S> 0.2816
	              . 0.2816
	          world 0.2253
	         estate 0.0857

             's   475458   5 (9)
	             us 0.5413
	           time 0.5413
	              a 0.5413
	             is 0.5244
	              . 0.2816
	             's 0.2816
	          Books 0.1825
	              , 0.1825
	           </S> 0.0857

        Towards   475462 inf (8)
	              , 0.7555
	          There 0.7555
	         Toward 0.5413
	              a 0.5413
	             at 0.5413
	       Tawadros 0.5413
	              " 0.2816
	           </S> 0.0857

          April   475501   1 (6)
	              , 0.7555
	          April 0.7555
	              a 0.5413
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

         flocks   475540   1 (7)
	         flocks 0.7555
	              a 0.5413
	    motivations 0.5413
	            and 0.1825
	              , 0.1825
	           </S> 0.1825
	           from 0.0857

          nnite   475553 inf (9)
	           site 0.7555
	        divided 0.5413
	           nite 0.5413
	         nanite 0.5413
	         annite 0.5413
	           more 0.2253
	           </S> 0.1825
	              a 0.1825
	              , 0.0857

           into   475559   1 (6)
	              , 0.5413
	             to 0.5413
	           </S> 0.5413
	           into 0.5413
	              a 0.5413
	          minor 0.5413

         troops   475569   1 (9)
	         troops 0.7555
	     dimensions 0.5413
	          Books 0.5413
	           room 0.5244
	              a 0.5244
	              . 0.5097
	           </S> 0.2816
	              , 0.2253
	       majority 0.0857

     containing   475577   1 (7)
	              a 0.5413
	           </S> 0.5413
	            and 0.5413
	     containing 0.5413
	          rufus 0.5413
	         online 0.5413
	            the 0.0857

          man}'   475588   4 (8)
	            man 0.7555
	           mana 0.5413
	          major 0.5244
	           many 0.5097
	              , 0.4979
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

      tliousand   475594   1 (5)
	           </S> 0.5413
	         tousan 0.5413
	              , 0.5413
	              a 0.5413
	       thousand 0.5413

          birds   475604   1 (4)
	           bird 0.5413
	             is 0.5413
	          birds 0.5413
	          Parus 0.5413

          qnite   475615   4 (10)
	           nite 0.7555
	         quinte 0.5413
	        mammals 0.5413
	          quite 0.5097
	           site 0.5097
	             to 0.1825
	              , 0.1825
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

      darkening   475621   1 (8)
	              , 0.5413
	           </S> 0.5413
	             of 0.5413
	             us 0.5413
	              a 0.5413
	           does 0.5413
	              . 0.5413
	      darkening 0.5413

        flj'ing   475682   5 (13)
	             us 0.5413
	           fing 0.5413
	            wet 0.5413
	          fling 0.5413
	         flying 0.5244
	         filing 0.5244
	        looking 0.5097
	              , 0.2816
	           </S> 0.2253
	              a 0.1825
	           they 0.1825
	             it 0.1825
	            the 0.0857

              .   475689   1 (7)
	            are 0.5413
	           </S> 0.5413
	             us 0.5413
	              , 0.5413
	            the 0.5413
	            was 0.5413
	              . 0.5413

          Great   475691   1 (6)
	              , 0.7555
	              I 0.7555
	          Great 0.7555
	              " 0.2816
	              ) 0.2816
	           </S> 0.0857

       nnnibers   475697   1 (9)
	        numbers 0.5413
	         things 0.5413
	       einibers 0.5413
	        nimbers 0.5413
	       Enniberg 0.5413
	       innitens 0.5413
	              , 0.5097
	           </S> 0.2816
	        Britain 0.0857

            are   475706   1 (5)
	              , 0.5413
	            arz 0.5413
	            are 0.5413
	              I 0.5413
	           </S> 0.5413

       conntr}-   475738 inf (11)
	        conners 0.7555
	         conner 0.7555
	         contro 0.7555
	              . 0.5413
	              a 0.5413
	              , 0.5413
	          major 0.5413
	         contra 0.5244
	        control 0.2816
	          world 0.1825
	           </S> 0.0857

            for   475781   1 (6)
	              , 0.5413
	            for 0.5413
	              a 0.5413
	            arz 0.5413
	              } 0.1229
	           </S> 0.0857

             On   475830   1 (8)
	              , 0.7555
	            the 0.7555
	             in 0.7555
	             On 0.7555
	             us 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

         parade   475862   1 (7)
	         parade 0.7555
	              a 0.5413
	           part 0.5413
	          parva 0.5413
	             of 0.2816
	           </S> 0.2656
	              , 0.0857

        groiind   475869 inf (11)
	        growing 0.5413
	          groin 0.5413
	        gridino 0.5413
	        heroiin 0.5413
	        groined 0.5413
	              a 0.5244
	           will 0.5097
	          route 0.2816
	              , 0.1825
	           </S> 0.1825
	              . 0.0857

              ,   475876   1 (5)
	            the 0.5413
	              , 0.5413
	             us 0.5413
	           </S> 0.5413
	          begin 0.5413

             at   475878   1 (8)
	           </S> 0.5413
	             at 0.5413
	            and 0.5413
	              | 0.5413
	              I 0.5413
	            arz 0.5413
	            you 0.1825
	            the 0.0857

        Kamptee   475881   1 (9)
	           know 0.5413
	           have 0.5413
	              a 0.5413
	              , 0.5413
	           </S> 0.5413
	            all 0.5413
	        Kamptee 0.5413
	             us 0.2816
	           your 0.0857

              I   475890   1 (8)
	              a 0.5413
	            and 0.5413
	              I 0.5413
	           </S> 0.5413
	             us 0.5097
	             of 0.2253
	            who 0.1825
	            the 0.0857

         bagged   475892   1 (7)
	         bagged 0.7555
	              a 0.5413
	          based 0.5244
	            was 0.1825
	           </S> 0.1825
	              , 0.1825
	             'm 0.0857

         twelve   475899   1 (8)
	          there 0.5413
	            not 0.5413
	         twelve 0.5413
	           </S> 0.2253
	            the 0.1825
	              a 0.1825
	              , 0.1825
	            and 0.0857

          birds   475912   3 (9)
	              a 0.5413
	          Parus 0.5413
	          first 0.5244
	          birds 0.5244
	              . 0.1825
	           </S> 0.1825
	          years 0.1825
	              , 0.1825
	             or 0.0857

    discharging   475924   1 (8)
	    discharging 0.7555
	             us 0.5413
	        hearing 0.5097
	              , 0.2816
	           they 0.2816
	           </S> 0.2656
	              a 0.1825
	            the 0.0857

           both   475936   1 (8)
	           both 0.7555
	            but 0.7555
	              . 0.2816
	           </S> 0.2253
	          their 0.1825
	              , 0.1825
	              a 0.1825
	            the 0.0857

        wonnded   475959  10 (17)
	           wonn 0.5413
	         wonden 0.5413
	        Sonndeg 0.5413
	            the 0.5413
	           guns 0.5413
	        wondend 0.5413
	         wonned 0.5413
	          wonde 0.5413
	             us 0.5413
	        wounded 0.5244
	          would 0.5097
	              a 0.2816
	              . 0.2816
	              , 0.1825
	           </S> 0.1825
	          other 0.1825
	             of 0.0857

          birds   475967   1 (7)
	              , 0.5413
	           </S> 0.5413
	              a 0.5413
	           them 0.5413
	          first 0.5413
	          birds 0.5413
	          Parus 0.5413

        escaped   475973   1 (7)
	        escaped 0.7555
	         estate 0.5413
	              a 0.5244
	              ) 0.2816
	              . 0.1825
	           </S> 0.1825
	              , 0.0857

           They   475982   1 (7)
	           They 0.7555
	              , 0.7555
	          minor 0.5413
	              a 0.5413
	            The 0.5244
	              " 0.2816
	           </S> 0.0857

        alwa3'S   476069   2 (7)
	          alway 0.7555
	          often 0.2816
	         always 0.2816
	              , 0.2253
	              a 0.1825
	           </S> 0.1825
	            not 0.0857

         called   476077   1 (7)
	           </S> 0.5413
	              a 0.5413
	              , 0.5413
	             to 0.5413
	           call 0.5413
	         called 0.5413
	        cablets 0.5413

        Ortolan   476084   1 (9)
	     Hottentots 0.5413
	        Ortolan 0.5413
	        Oriolus 0.5413
	          today 0.5244
	           </S> 0.2253
	            for 0.1825
	              a 0.1825
	              , 0.1825
	              " 0.0857

             by   476092   1 (7)
	             us 0.5413
	              a 0.5413
	            the 0.5413
	             by 0.5413
	              , 0.2816
	           </S> 0.2816
	        Bunting 0.0857

           They   476115   1 (7)
	           They 0.7555
	              , 0.7555
	              a 0.5413
	         Return 0.5413
	            The 0.5244
	              " 0.2816
	           </S> 0.0857

          the}'   476194 inf (8)
	             M. 0.5413
	         sister 0.5413
	           thee 0.5244
	           </S> 0.1825
	              a 0.1825
	          their 0.1825
	              , 0.1825
	            the 0.0857

          breed   476200   1 (8)
	              . 0.5413
	          breed 0.5413
	           been 0.5413
	              a 0.5413
	             it 0.5413
	              , 0.5413
	           </S> 0.5413
	             us 0.5413

         laying   476352   4 (8)
	           last 0.5413
	             J. 0.5413
	         within 0.5413
	         laying 0.5244
	           </S> 0.1825
	              , 0.1825
	              a 0.1825
	            the 0.0857

         rufous   476406   1 (9)
	         rufous 0.7555
	          rufus 0.7555
	          white 0.5413
	          radio 0.5413
	           your 0.2816
	           </S> 0.1825
	              a 0.1825
	              , 0.1825
	            the 0.0857

          spots   476413   1 (10)
	              a 0.5413
	          spots 0.5413
	         spinas 0.5413
	           site 0.5413
	              ) 0.5244
	             on 0.5244
	           </S> 0.5244
	              , 0.5097
	              . 0.5097
	              - 0.0857

      unspotted   476447   1 (8)
	      unspotted 0.7555
	              a 0.5413
	              " 0.5413
	              , 0.5413
	           used 0.5413
	            and 0.5413
	           </S> 0.5413
	            the 0.0857

         yellow   476457   2 (8)
	            the 0.7555
	              I 0.5413
	         yellow 0.5413
	              a 0.5413
	           well 0.5413
	           </S> 0.5244
	              , 0.2816
	           from 0.0857

          Larks   476511   1 (9)
	          Parus 0.7555
	          Larks 0.7555
	              , 0.5413
	          Links 0.5244
	          Large 0.5244
	           same 0.1825
	           time 0.1825
	          other 0.1825
	           </S> 0.0857

        insects   476518   5 (8)
	              ( 0.5413
	           </S> 0.5413
	              a 0.5413
	            and 0.5413
	        insects 0.5244
	            its 0.2816
	            who 0.1825
	            the 0.0857

           Herr   476601   3 (7)
	              , 0.7555
	           Help 0.7555
	              a 0.5413
	           Herr 0.5413
	            arz 0.5413
	              " 0.2816
	           </S> 0.0857

          Gatke   476606 inf (9)
	          Games 0.5413
	          Gatka 0.5413
	           Gate 0.5413
	        Gataket 0.5413
	              a 0.5413
	         Doctor 0.5244
	             M. 0.5244
	           </S> 0.1825
	              , 0.0857

           says   476612   2 (8)
	           </S> 0.7555
	              a 0.5413
	           sala 0.5413
	          Ringe 0.5413
	            say 0.5413
	         Kaefer 0.5413
	           says 0.5413
	              , 0.0857

     Heligoland   476633   1 (10)
	     Heligoland 0.7555
	              , 0.2816
	             it 0.2816
	           them 0.2816
	         Health 0.2816
	             us 0.2816
	        America 0.2816
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

              "   476644   1 (8)
	              ( 0.5413
	           </S> 0.5413
	              " 0.5413
	            and 0.5413
	              = 0.5413
	             us 0.5097
	             of 0.2253
	            the 0.0857

            pp.   476646   4 (11)
	            ppp 0.7555
	            ppm 0.7555
	              s 0.5413
	             pp 0.5244
	             up 0.5097
	              a 0.2816
	           said 0.2253
	          <UNK> 0.1825
	              , 0.1825
	              . 0.1825
	           </S> 0.0857

       359-360)   476650 inf (9)
	          29-30 0.7555
	             35 0.7555
	              , 0.5413
	              s 0.5413
	              " 0.5413
	              a 0.5413
	            the 0.5413
	           </S> 0.1825
	          <UNK> 0.0857

              :   476659 inf (6)
	             us 0.5413
	           </S> 0.5413
	              ) 0.5413
	            the 0.5413
	          <UNK> 0.5413
	              , 0.5413

              "   476663   6 (8)
	              , 0.5413
	              : 0.5413
	          party 0.5413
	           open 0.5413
	             us 0.5097
	              " 0.2816
	            the 0.1825
	           </S> 0.0857

           Lark   476723   1 (10)
	           Lark 0.7555
	           Last 0.7555
	          vased 0.5413
	              a 0.5413
	            arz 0.5413
	           girl 0.1825
	              . 0.1825
	           </S> 0.1825
	              , 0.1825
	            bit 0.0857

          being   476728   1 (7)
	          being 0.7555
	        bouquet 0.5413
	              a 0.5413
	    Calandrella 0.5244
	              . 0.2816
	              , 0.1825
	           </S> 0.0857

          ver}-   476795   4 (8)
	          verve 0.7555
	            ver 0.7555
	             us 0.5413
	           very 0.5097
	              , 0.2816
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

      solitar}'   476801   1 (8)
	       solitary 0.5413
	              a 0.5413
	      solitario 0.5413
	           site 0.5413
	              / 0.5413
	           rare 0.5413
	              , 0.5413
	           </S> 0.5413

      instances   476811   1 (3)
	        instans 0.5413
	      insurance 0.5413
	      instances 0.5413

              .   476820   4 (6)
	             us 0.5413
	            the 0.2816
	           </S> 0.2816
	              , 0.1825
	              . 0.1825
	             of 0.0857

             In   476823   1 (6)
	             In 0.7555
	              , 0.7555
	             us 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

            and   477069   1 (5)
	              , 0.5413
	            and 0.5413
	            arz 0.5413
	              } 0.1229
	           </S> 0.0857

        besides   477073   2 (8)
	          found 0.5413
	        besides 0.5244
	           with 0.2816
	       business 0.2816
	              a 0.1825
	           </S> 0.1825
	              , 0.1825
	            the 0.0857

              I   477171   1 (6)
	              , 0.7555
	              I 0.7555
	            the 0.7555
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

             it   477235   1 (7)
	          which 0.5413
	              a 0.5413
	             it 0.5413
	             iu 0.5413
	              , 0.5413
	              } 0.1229
	           </S> 0.0857

   momeutaril}-   477247   1 (6)
	    momentarily 0.5413
	             so 0.2816
	              , 0.2816
	           more 0.2816
	           </S> 0.1825
	              a 0.0857

        stunned   477260   1 (7)
	              , 0.5413
	          major 0.5413
	        stunned 0.5413
	           </S> 0.5413
	             to 0.5413
	              a 0.5413
	          since 0.5413

          ver\'   477342   4 (11)
	             's 0.5413
	            ver 0.5413
	          verve 0.5413
	           very 0.5244
	           will 0.5244
	             to 0.2816
	            the 0.2816
	              a 0.2816
	           </S> 0.2656
	              , 0.1825
	           from 0.0857

           soon   477348   1 (8)
	              , 0.5413
	           soon 0.5413
	           </S> 0.5413
	           some 0.5413
	            the 0.5413
	              a 0.5413
	        however 0.5413
	           sala 0.5413

extraordinarilj''   477365   1 (9)
	    information 0.5413
	           will 0.5413
	extraordinarily 0.5413
	             us 0.5413
	          quite 0.5244
	              , 0.5244
	              . 0.5244
	           </S> 0.5097
	              a 0.0857

           tame   477383   1 (8)
	              , 0.5413
	        friends 0.5413
	             of 0.5413
	              a 0.5413
	           time 0.5413
	           tame 0.5413
	           </S> 0.5413
	           lava 0.5413

             It   477389   1 (6)
	              , 0.7555
	             It 0.7555
	             us 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

            but   477514   1 (6)
	              , 0.5413
	              a 0.5413
	            but 0.5413
	             us 0.5413
	              } 0.1229
	           </S> 0.0857

            Its   477575   1 (7)
	            Its 0.7555
	             It 0.7555
	              , 0.7555
	              a 0.5413
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

        Bunting   477613   1 (10)
	        Bunting 0.7555
	         during 0.7555
	              . 0.5413
	              a 0.5413
	           less 0.5413
	              , 0.5413
	          major 0.1825
	            man 0.1825
	         result 0.1825
	           </S> 0.0857

           than   477621   1 (7)
	           than 0.7555
	              a 0.5413
	          torax 0.5413
	             of 0.5244
	              . 0.2816
	              , 0.1825
	           </S> 0.0857

          Sk}--   477628 inf (10)
	             Sk 0.7555
	              , 0.5413
	            the 0.5413
	           Skin 0.5244
	           Skip 0.5244
	          major 0.1825
	         single 0.1825
	           year 0.1825
	           </S> 0.0857
	            new 0.0655

           Lark   477634   1 (8)
	           </S> 0.5413
	           part 0.5413
	            ago 0.5413
	              , 0.5413
	             of 0.5413
	           Lark 0.5413
	              a 0.5413
	            arz 0.5413

              .   477638   3 (6)
	            the 0.7555
	             us 0.5413
	              . 0.2816
	          Books 0.1825
	              , 0.1825
	           </S> 0.0857

              I   477640   1 (7)
	              I 0.7555
	              , 0.7555
	            the 0.7555
	             us 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

         Canary   477652   1 (8)
	         Canary 0.7555
	         Canada 0.5244
	            top 0.2816
	              1 0.2816
	              , 0.2816
	           </S> 0.2253
	              a 0.1825
	            the 0.0857

              -   477658   4 (7)
	            the 0.7555
	           your 0.5413
	             us 0.5413
	              , 0.5097
	              - 0.5097
	           </S> 0.2816
	        Islands 0.0857

              a   477762   1 (6)
	              , 0.5413
	              a 0.5413
	             us 0.5413
	            the 0.5413
	              } 0.1229
	           </S> 0.0857

       Familx-A   477857   2 (6)
	      FamiliaDA 0.5413
	         Family 0.5244
	              a 0.2816
	              ) 0.1825
	              , 0.1825
	           </S> 0.0857

             LA   477866   1 (7)
	              " 0.5413
	              a 0.5413
	              , 0.5413
	             LA 0.5413
	             us 0.5413
	             of 0.5413
	           </S> 0.5413

              E   477876 inf (9)
	              , 0.7555
	             El 0.7555
	            the 0.7555
	             RE 0.5413
	             us 0.5413
	             EE 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

           Lark   477891   1 (10)
	           Lark 0.7555
	              s 0.5413
	           side 0.5413
	             St 0.5413
	            Vol 0.5413
	            are 0.5097
	              . 0.2816
	              a 0.2253
	             to 0.1825
	           </S> 0.0857

              .   477895   5 (8)
	            the 0.7555
	           Bilk 0.5413
	         Island 0.5413
	             us 0.5413
	              - 0.2816
	              . 0.2816
	              , 0.1825
	           </S> 0.0857

       Olocurvs   477898 inf (9)
	              , 0.7555
	        locuras 0.5413
	         locura 0.5413
	       closures 0.5413
	          Olous 0.5413
	         Olorus 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

      alpcstris   477907   1 (8)
	      alpestris 0.5413
	      palustris 0.5413
	         astris 0.5413
	              I 0.5413
	              , 0.5413
	       addition 0.5413
	           </S> 0.5413
	      configure 0.5413

              ,   477916 inf (3)
	             of 0.5413
	             us 0.5413
	            the 0.5413

           LiNX   477918 inf (8)
	            LNX 0.5413
	           LiNK 0.5413
	           List 0.5413
	           LiXi 0.5413
	            cia 0.5413
	             pp 0.2816
	              i 0.2816
	            the 0.0857

              .   477922   1 (5)
	              , 0.5413
	             us 0.5413
	              . 0.5413
	            the 0.5413
	           </S> 0.0857

         BREEDS   477925 inf (11)
	              I 0.7555
	              , 0.7555
	         BRENDA 0.5413
	           BRES 0.5413
	          BREEF 0.5413
	          BREAK 0.5413
	         BREEAM 0.5413
	        FREEBSD 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

         within   477932   1 (5)
	              a 0.5413
	         within 0.5413
	             of 0.5244
	              , 0.5097
	           </S> 0.0857

        bej'ond   477957   1 (10)
	         bedone 0.5413
	           bond 0.5413
	          bjond 0.5413
	         beyond 0.5413
	              A 0.5097
	             to 0.5097
	           </S> 0.1825
	              . 0.1825
	              , 0.1825
	             of 0.0857

            the   477965   1 (4)
	           </S> 0.5413
	            the 0.5413
	             us 0.5413
	              , 0.5413

             on   478047   1 (6)
	              a 0.5413
	             us 0.5413
	             on 0.5413
	              , 0.5413
	              } 0.1229
	           </S> 0.0857

       eastward   478164   1 (7)
	              , 0.5413
	            the 0.5413
	              a 0.5413
	       Password 0.5413
	       eastward 0.5413
	              } 0.1229
	           </S> 0.0857

      Turkestan   478191   1 (9)
	      Turkestan 0.7555
	          great 0.5413
	             us 0.5413
	           turn 0.3154
	           fact 0.2816
	              , 0.2816
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

             S.   478202 inf (10)
	            and 0.5413
	             US 0.5413
	          China 0.5413
	              a 0.5413
	           </S> 0.5413
	             SS 0.5413
	              s 0.5413
	             So 0.5413
	           your 0.2816
	            the 0.0857

             To   478229   1 (7)
	              , 0.7555
	             To 0.7555
	              s 0.5413
	           Asia 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

           when   478331   1 (6)
	              a 0.5413
	           when 0.5413
	              , 0.1825
	              . 0.1825
	           </S> 0.1825
	            New 0.0857

      according   478451   1 (5)
	              I 0.5413
	      according 0.5413
	              , 0.5413
	              } 0.1229
	           </S> 0.0857

          Aplin   478468   1 (11)
	          Aplin 0.7555
	            All 0.7555
	              1 0.5413
	            the 0.5413
	        changes 0.5413
	              a 0.5413
	          Aedon 0.5413
	              , 0.2816
	           </S> 0.1825
	          <UNK> 0.1825
	       Chairman 0.0857

             In   478643   1 (6)
	              , 0.7555
	             In 0.7555
	             us 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

           Fair   478665   1 (8)
	           Fair 0.7555
	            For 0.7555
	           lava 0.5413
	           </S> 0.2253
	              . 0.1825
	              , 0.1825
	              a 0.1825
	            the 0.0857

         partly   478775   2 (7)
	           part 0.7555
	         partly 0.5413
	          parva 0.5413
	              a 0.5244
	             of 0.2656
	           </S> 0.1825
	              , 0.0857

         creamy   478912   1 (9)
	         creamy 0.5413
	         credit 0.5413
	          <UNK> 0.5097
	              a 0.5097
	           jobs 0.2816
	              - 0.2816
	           </S> 0.2656
	              , 0.1825
	              . 0.0857

            the   478927   1 (6)
	              , 0.5413
	            the 0.5413
	             us 0.5413
	             in 0.5413
	              } 0.1229
	           </S> 0.0857

       erectile   478957   9 (10)
	        receive 0.7555
	     adjustable 0.5413
	              , 0.5413
	              a 0.5413
	        adverse 0.5413
	         apical 0.5413
	              . 0.5413
	   introduction 0.5413
	       erectile 0.5244
	           </S> 0.0857

           tuft   478966   3 (10)
	             of 0.7555
	           that 0.7555
	           tuft 0.5413
	              I 0.5413
	          based 0.5413
	          rufus 0.5413
	           </S> 0.5244
	              , 0.5244
	         tissue 0.5097
	    dysfunction 0.0857

         cheeks   479009   1 (10)
	      therefore 0.5413
	            and 0.5413
	              ( 0.5413
	         cheeks 0.5413
	           </S> 0.5413
	              a 0.5413
	      workshops 0.5413
	        however 0.2253
	          there 0.1825
	            the 0.0857

            ear   479072   1 (8)
	            ear 0.5413
	              a 0.5413
	            and 0.5413
	           year 0.5413
	              , 0.5413
	            arz 0.5413
	              } 0.1229
	           </S> 0.0857

         creamy   479084   2 (10)
	              - 0.7555
	          great 0.5413
	         creamy 0.5413
	        sources 0.5413
	           fife 0.5413
	          white 0.5244
	              a 0.5244
	           </S> 0.2816
	              , 0.0857
	              . 0.0857

           nape   479112   1 (7)
	              , 0.5413
	           nape 0.5413
	              a 0.5413
	           name 0.5413
	           lava 0.5413
	              } 0.1229
	           </S> 0.0857

              ,   479124   3 (5)
	             us 0.7555
	            the 0.5244
	              , 0.1825
	           </S> 0.1825
	             of 0.0857

      vinaceous   479170   4 (10)
	       brownish 0.7555
	              - 0.7555
	          <UNK> 0.7555
	        process 0.5413
	           Eyes 0.5413
	      vinaceous 0.5413
	              a 0.5244
	           </S> 0.2816
	              . 0.0857
	              , 0.0857

           wing   479188   1 (7)
	           with 0.5413
	              , 0.5413
	          minor 0.5413
	              a 0.5413
	           wing 0.5413
	              } 0.1229
	           </S> 0.0857

              -   479192   3 (5)
	             us 0.7555
	            the 0.5097
	           </S> 0.1825
	              - 0.1825
	              , 0.0857

         quills   479221   1 (7)
	          quite 0.5413
	              , 0.5413
	              a 0.5413
	         quills 0.5413
	         quelea 0.5413
	              } 0.1229
	           </S> 0.0857

          smoky   479228   2 (5)
	              a 0.7555
	          smoky 0.5413
	          story 0.5413
	           </S> 0.2816
	              , 0.0857

          white   479259   1 (8)
	          white 0.7555
	          while 0.7555
	      partition 0.5413
	             of 0.5413
	              a 0.5413
	              , 0.1825
	           </S> 0.1825
	           care 0.0857

           ashy   479293   1 (11)
	           ashy 0.7555
	           alba 0.7555
	              I 0.5413
	            non 0.5413
	           well 0.5413
	          trade 0.5413
	             as 0.5097
	              , 0.2816
	           your 0.1825
	           </S> 0.1825
	            the 0.0857

              -   479297   6 (6)
	            the 0.5413
	             us 0.5413
	           </S> 0.2816
	              . 0.2816
	              , 0.1825
	              - 0.0857

        margins   479298   1 (9)
	        margins 0.7555
	          serif 0.5413
	              s 0.5413
	           offs 0.5413
	              . 0.2816
	              a 0.2253
	             to 0.1825
	           mail 0.1825
	           </S> 0.0857

       feathers   479308   1 (7)
	           some 0.5413
	              , 0.5413
	       features 0.5413
	              a 0.5413
	       feathers 0.5413
	              } 0.1229
	           </S> 0.0857

        greyish   479329   1 (10)
	           Free 0.5413
	            non 0.5413
	        greyish 0.5413
	           side 0.5097
	              a 0.2816
	              . 0.1825
	             of 0.1825
	           </S> 0.1825
	              , 0.1825
	             to 0.0857

        centres   479354   1 (12)
	        centres 0.7555
	        control 0.7555
	           wire 0.5413
	           Back 0.5413
	      reference 0.5413
	        cinerea 0.5413
	              a 0.5413
	         pepper 0.2656
	              , 0.1825
	           </S> 0.1825
	              . 0.1825
	            and 0.0857

            two   479380   1 (6)
	              , 0.5413
	              a 0.5413
	            two 0.5413
	             us 0.5413
	              } 0.1229
	           </S> 0.0857

       coloured   479406   2 (6)
	           come 0.7555
	       coloured 0.5413
	              a 0.5244
	              - 0.5097
	           </S> 0.2253
	              , 0.0857

      remainder   479515   1 (7)
	              a 0.5413
	        reviews 0.5413
	              , 0.5413
	       notified 0.5413
	      remainder 0.5413
	              } 0.1229
	           </S> 0.0857

          under   479528   1 (7)
	          under 0.5244
	             us 0.2816
	              , 0.2816
	            two 0.2816
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

         creamy   479540   2 (9)
	          great 0.7555
	         creamy 0.5413
	            off 0.5413
	            the 0.5244
	              a 0.5244
	              : 0.2816
	           </S> 0.2253
	              , 0.1825
	             of 0.0857

         vinous   479564   2 (8)
	          minor 0.7555
	         vinous 0.5413
	      dependent 0.5413
	          Links 0.5413
	       emphasis 0.5413
	              , 0.5097
	           </S> 0.2816
	              a 0.0857

             on   479571   1 (7)
	             of 0.5413
	             on 0.5413
	              a 0.5413
	             us 0.5413
	              . 0.5244
	           </S> 0.5244
	              , 0.0857

         flanks   479606   1 (6)
	              , 0.5413
	              a 0.5413
	         flanks 0.5413
	         Thanks 0.5413
	              } 0.1229
	           </S> 0.0857

           bill   479635   1 (7)
	              a 0.5413
	           will 0.5413
	              , 0.5413
	           bill 0.5413
	            cia 0.5413
	              } 0.1229
	           </S> 0.0857

           iris   479657   1 (7)
	              a 0.5413
	              , 0.5413
	           iris 0.5413
	             is 0.5413
	             iu 0.5413
	              } 0.1229
	           </S> 0.0857

           deep   479662   3 (5)
	           does 0.7555
	           dark 0.7555
	           deep 0.5413
	           </S> 0.1825
	              , 0.0857

       erectile   479728   1 (10)
	       erectile 0.7555
	          major 0.5413
	        service 0.5413
	              a 0.5413
	            ear 0.5413
	           </S> 0.1825
	              , 0.1825
	              . 0.1825
	            one 0.1825
	         longer 0.0857

          tufts   479737   2 (10)
	           that 0.7555
	              a 0.5413
	         effect 0.5413
	          tufts 0.5413
	          rufus 0.5413
	              , 0.5244
	              . 0.5244
	           </S> 0.5244
	         tissue 0.5097
	    dysfunction 0.0857

        centres   479770   1 (10)
	        centres 0.7555
	              a 0.5413
	           Back 0.5413
	         access 0.5413
	        cinerea 0.5413
	        control 0.5244
	              . 0.1825
	           </S> 0.1825
	          brown 0.1825
	              , 0.0857

          Young   479818   1 (7)
	              , 0.7555
	           Your 0.7555
	          Young 0.7555
	              a 0.5413
	            the 0.5413
	              " 0.2816
	           </S> 0.0857

          moult   479990   1 (9)
	          moult 0.7555
	        trellis 0.5413
	          maura 0.5413
	              a 0.5244
	          would 0.5244
	             of 0.1825
	           </S> 0.1825
	              , 0.0857
	              . 0.0857

          adult   479996   2 (6)
	          about 0.7555
	          adult 0.5413
	              I 0.5413
	           </S> 0.2253
	              . 0.0857
	              , 0.0655

             In   480066   1 (6)
	             In 0.7555
	              , 0.7555
	             us 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

         vShore   480080   6 (11)
	         Shrove 0.7555
	           park 0.5413
	              i 0.5413
	            non 0.5413
	         griots 0.5413
	          Shore 0.5244
	           more 0.2253
	              - 0.2253
	            two 0.1825
	           same 0.1825
	           </S> 0.0857

              -   480086   1 (7)
	           </S> 0.5413
	             of 0.5413
	              , 0.5413
	             us 0.5413
	              - 0.5413
	            the 0.5413
	             is 0.5413

       inhabits   480092   2 (9)
	             of 0.7555
	             us 0.5413
	              a 0.5413
	           into 0.5413
	       inhabits 0.5413
	              - 0.5244
	             in 0.2816
	              , 0.1825
	           </S> 0.0857

         liills   480132 inf (11)
	          lills 0.5413
	             us 0.5413
	              a 0.5413
	           ills 0.5413
	         little 0.5244
	          coves 0.5097
	       outcrops 0.2253
	              . 0.1825
	           </S> 0.1825
	       mountain 0.0857
	              , 0.0857

             nf   480139   1 (7)
	           </S> 0.5413
	             of 0.5413
	              a 0.5413
	             us 0.5413
	             no 0.5413
	              , 0.5413
	             nf 0.5413

        Seebohm   480193   3 (6)
	            See 0.7555
	              , 0.7555
	              a 0.5413
	        Seebohm 0.5413
	              " 0.2816
	           </S> 0.0857

           says   480201   1 (6)
	            say 0.5413
	           sala 0.5413
	              a 0.5413
	           says 0.5413
	           </S> 0.0857
	              , 0.0857

              '   480234   2 (10)
	             us 0.7555
	       composed 0.5413
	              ' 0.5413
	             as 0.4011
	            the 0.2656
	           </S> 0.2656
	         within 0.2656
	              , 0.1825
	             to 0.1825
	             on 0.0857

          Inish   480293 inf (15)
	          Index 0.7555
	         tenant 0.5413
	              , 0.5413
	       Inisheer 0.5413
	          Inisa 0.5413
	              a 0.5413
	              . 0.5413
	        Ienishi 0.5413
	         sunset 0.5413
	           Inis 0.5413
	          minor 0.5413
	          woman 0.2253
	              ) 0.1825
	           year 0.1825
	           </S> 0.0857

       Everyone   480301   3 (5)
	              I 0.7555
	              , 0.7555
	       Everyone 0.5413
	              " 0.2816
	           </S> 0.0857

        melod3^   480412   1 (7)
	         melody 0.5244
	           more 0.5097
	              , 0.2816
	             us 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

             It   480420   1 (7)
	             us 0.5413
	              a 0.5413
	             It 0.5413
	            and 0.5413
	           </S> 0.5413
	              , 0.5413
	              . 0.5413

             At   480557   1 (7)
	             to 0.7555
	             At 0.7555
	              , 0.7555
	              a 0.5413
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

         .Uauda   480682   1 (10)
	          Usuda 0.5413
	           auda 0.5413
	           Paul 0.5413
	          Lauda 0.5413
	         Alauda 0.5413
	              , 0.2816
	           </S> 0.2656
	              a 0.1825
	            the 0.1825
	            you 0.0857

    arz'i-fis/s   480689 inf (12)
	           hook 0.5413
	   organization 0.5413
	           </S> 0.5413
	    application 0.5413
	              , 0.5413
	            and 0.5413
	            are 0.5413
	             is 0.5413
	              i 0.5413
	            the 0.5413
	       business 0.5413
	              I 0.5413

           does   480701   1 (4)
	           down 0.5413
	            the 0.5413
	           does 0.5413
	             us 0.5413

           3'OU   480709   9 (9)
	             On 0.7555
	             OU 0.7555
	            UOU 0.5413
	            YOU 0.5244
	              ' 0.5097
	              , 0.2816
	           </S> 0.2816
	              a 0.1825
	            you 0.0857

           take   480714   1 (8)
	           take 0.5413
	           lava 0.5413
	           make 0.5413
	             of 0.5413
	             is 0.5413
	              a 0.5413
	              , 0.5413
	           </S> 0.5413

             As   480808   1 (9)
	            the 0.7555
	              , 0.7555
	             is 0.7555
	           This 0.7555
	             As 0.7555
	              a 0.5413
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

          Larks   480836   1 (10)
	              a 0.5413
	          Larks 0.5413
	          sites 0.5413
	              , 0.5413
	          Parus 0.5413
	          Links 0.5097
	      knowledge 0.2253
	           time 0.1825
	           </S> 0.1825
	           site 0.0857

         stones   480916   1 (11)
	         stones 0.7555
	              . 0.5413
	   underwriters 0.5413
	              ) 0.5413
	         spinas 0.5413
	          state 0.5244
	              , 0.5244
	              a 0.2816
	           </S> 0.2656
	           them 0.1825
	            the 0.0857

      sometimes   480925   1 (5)
	              a 0.5413
	              , 0.5413
	      sometimes 0.5413
	              } 0.1229
	           </S> 0.0857

      naturally   481061   6 (7)
	              ( 0.5413
	           </S> 0.5413
	              a 0.5413
	        January 0.5413
	            and 0.5413
	      naturally 0.5097
	            the 0.0857

        differs   481071   1 (7)
	        differs 0.7555
	           does 0.5413
	            the 0.2816
	              a 0.2816
	           </S> 0.1825
	      occurring 0.0857
	              , 0.0655

     externally   481169   1 (7)
	              , 0.5413
	              a 0.5413
	        Germany 0.5413
	            and 0.5413
	     externally 0.5413
	              } 0.1229
	           </S> 0.0857

           dead   481211   2 (7)
	            cia 0.7555
	           dead 0.5244
	              , 0.2816
	           data 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

          bents   481225   1 (10)
	        worship 0.5413
	            and 0.5413
	           work 0.5413
	      therefore 0.5413
	           </S> 0.5413
	              a 0.5413
	         sedges 0.5413
	          bents 0.5413
	           best 0.5413
	            the 0.0857

            but   481239   1 (7)
	             us 0.5413
	            but 0.5413
	              , 0.5413
	              a 0.5413
	              ) 0.5097
	              } 0.1229
	           </S> 0.0857

       reindeer   481287   4 (8)
	       thinning 0.5413
	          under 0.5413
	           shut 0.5413
	       reindeer 0.5244
	           </S> 0.1825
	              a 0.1825
	              , 0.1825
	            the 0.0857

         number   481311   1 (7)
	         number 0.7555
	          price 0.5413
	              a 0.5097
	             of 0.2816
	            are 0.1825
	           </S> 0.1825
	              , 0.0857

         tlieir   481453   8 (11)
	         telier 0.5413
	           tiei 0.5413
	          tliet 0.5413
	             us 0.5413
	        Entropy 0.5413
	           ieir 0.5413
	              , 0.2816
	          their 0.2656
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

      generally   481460   2 (7)
	           </S> 0.7555
	             or 0.5413
	      generally 0.5413
	              a 0.5413
	              , 0.5413
	        General 0.5413
	          <UNK> 0.0857

             To   481488   1 (6)
	              , 0.7555
	             To 0.7555
	             us 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

    conspicuous   481523   1 (9)
	          minor 0.5413
	    conspicuous 0.5413
	          could 0.5097
	             be 0.2816
	           </S> 0.2253
	             is 0.1825
	              . 0.1825
	              a 0.1825
	              , 0.0857

            Mr.   481562   1 (9)
	             My 0.5413
	              a 0.5413
	            but 0.5413
	            Mrs 0.5413
	             Mr 0.5413
	            and 0.5413
	           </S> 0.5413
	            arz 0.5413
	            the 0.0857

           Hole   481574   2 (9)
	           Home 0.7555
	           Hole 0.5413
	              I 0.5413
	       Capralos 0.5413
	           sala 0.5413
	          <UNK> 0.5097
	           </S> 0.1825
	         Island 0.1825
	              , 0.0857

            Sky   481733   2 (9)
	            See 0.7555
	              a 0.5413
	            Sky 0.5413
	            Pyi 0.5413
	             in 0.1825
	              , 0.1825
	           </S> 0.1825
	             to 0.1825
	       basename 0.0857

          Larks   481737   1 (11)
	          Larks 0.7555
	           side 0.5413
	      Tours.com 0.5413
	              s 0.5413
	            rev 0.5413
	          files 0.5413
	          Links 0.5097
	              . 0.2816
	              a 0.2253
	             to 0.1825
	           </S> 0.0857

             He   481744   1 (8)
	              , 0.7555
	             He 0.7555
	             be 0.5413
	             us 0.5413
	              a 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

            you   481867   1 (6)
	             us 0.5413
	              a 0.5413
	              , 0.5413
	            you 0.5413
	              } 0.1229
	           </S> 0.0857

        firstly   481979   3 (10)
	            but 0.5413
	              s 0.5413
	        firstly 0.5244
	          first 0.5097
	              . 0.2816
	              a 0.2253
	           mail 0.1825
	             up 0.1825
	             to 0.1825
	           </S> 0.0857

       chancing   481988   1 (10)
	            and 0.5413
	              - 0.5413
	           </S> 0.5413
	              a 0.5413
	          minor 0.5413
	       chancing 0.5413
	         online 0.5413
	            how 0.2816
	             or 0.1825
	            the 0.0857

            and   482026   1 (5)
	            and 0.5413
	              , 0.5413
	            arz 0.5413
	              } 0.1229
	           </S> 0.0857

     speciniens   482081   6 (13)
	      spiciness 0.5413
	       socinien 0.5413
	              a 0.5413
	       specient 0.5413
	        section 0.5413
	      specimens 0.5244
	        species 0.5097
	          major 0.2816
	              . 0.2253
	              , 0.2253
	          years 0.1825
	           </S> 0.1825
	              - 0.0857

           shot   482092   1 (8)
	              a 0.5413
	           shot 0.5413
	              . 0.5413
	           </S> 0.5413
	              , 0.5413
	           four 0.5413
	            she 0.5413
	           sala 0.5413

    Polygonacea   482260   1 (9)
	   Polygonaceae 0.7555
	          local 0.5097
	           time 0.2816
	             us 0.2816
	           life 0.2816
	              a 0.1825
	           </S> 0.1825
	              , 0.1294
	            the 0.0857

            and   482272   1 (6)
	           </S> 0.5413
	            and 0.5413
	              . 0.5413
	             in 0.5413
	              , 0.5413
	            arz 0.5413

           Lark   482331   1 (11)
	           Lark 0.7555
	            arz 0.5413
	           part 0.2816
	              a 0.2656
	           kind 0.2656
	              , 0.1825
	           </S> 0.1825
	            Web 0.1825
	              . 0.1825
	             is 0.0857
	           site 0.0655

       consists   482336   2 (8)
	    Calandrella 0.7555
	       consists 0.5413
	              a 0.5413
	              I 0.5413
	          could 0.5413
	              . 0.5097
	              , 0.1825
	           </S> 0.0857

             it   482468   1 (6)
	             iu 0.5413
	             it 0.5413
	              , 0.5413
	              a 0.5413
	              } 0.1229
	           </S> 0.0857

        devours   482476   1 (9)
	        devours 0.7555
	              s 0.5413
	           your 0.5413
	         accept 0.2816
	            has 0.1825
	              , 0.1825
	              a 0.1825
	           </S> 0.1825
	             be 0.0857

          small   482484   1 (7)
	           sala 0.5413
	          small 0.5413
	          shall 0.5413
	           </S> 0.5244
	              , 0.5097
	              a 0.2816
	            the 0.0857

       mollusca   482490   1 (5)
	       mollusca 0.7555
	          house 0.5413
	           </S> 0.1825
	              a 0.1294
	              , 0.0857

      Crustacea   482503   1 (9)
	      Crustacea 0.7555
	          shall 0.5413
	              , 0.2253
	        Privacy 0.2253
	           then 0.1825
	              a 0.1825
	             to 0.1825
	           </S> 0.1825
	            the 0.0857

           cast   482513   1 (8)
	           cast 0.5413
	            can 0.5413
	            cia 0.5413
	             it 0.5413
	              a 0.5413
	              . 0.2816
	           </S> 0.1825
	              , 0.0857

          Being   482540   1 (7)
	              , 0.7555
	          Being 0.7555
	              a 0.5413
	            and 0.5413
	          being 0.5413
	              " 0.2816
	           </S> 0.0857

           both   482546   1 (4)
	           both 0.5244
	              , 0.2656
	           </S> 0.1825
	              a 0.0857

           tame   482551   1 (9)
	           tame 0.7555
	           lava 0.7555
	       intimate 0.5413
	           time 0.5097
	          cases 0.2816
	              , 0.2656
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

      beautiful   482557   1 (10)
	              - 0.5413
	      beautiful 0.5413
	        because 0.5413
	          women 0.5413
	      therefore 0.5413
	           work 0.5413
	              a 0.5413
	           </S> 0.5413
	        chasten 0.5413
	            the 0.0857

          caged   482606   1 (9)
	          caged 0.7555
	          Pales 0.5413
	            can 0.2816
	            the 0.1825
	           used 0.1825
	             to 0.1825
	           </S> 0.1825
	              a 0.1825
	              , 0.0857

            and   482614   1 (5)
	              , 0.5413
	            and 0.5413
	            arz 0.5413
	              } 0.1229
	           </S> 0.0857

    frequentl}^   482640   3 (9)
	           free 0.5413
	              s 0.5413
	     frequently 0.5244
	              , 0.2816
	           also 0.2816
	           </S> 0.2656
	              a 0.1825
	            not 0.1825
	           been 0.0857

           bird   482670   1 (8)
	           bird 0.5413
	            the 0.5413
	              a 0.5413
	            cia 0.5413
	           </S> 0.5413
	              , 0.5413
	             by 0.5413
	           your 0.0857

           Herr   482683   3 (7)
	           Help 0.7555
	              , 0.7555
	              a 0.5413
	           Herr 0.5413
	            arz 0.5413
	              " 0.2816
	           </S> 0.0857

          Gatke   482688 inf (8)
	          Games 0.5413
	          Gatka 0.5413
	           Gate 0.5413
	        Gataket 0.5413
	              a 0.5413
	             M. 0.5244
	           </S> 0.1825
	              , 0.0857

       observes   482694   2 (6)
	           </S> 0.7555
	             J. 0.5413
	              a 0.5413
	          Ringe 0.5413
	       observes 0.5413
	              , 0.0857

      agreeably   482850   1 (7)
	      agreeably 0.5413
	      available 0.5413
	             to 0.5097
	              I 0.5097
	           </S> 0.2816
	              a 0.2816
	              , 0.0857

           Lark   482860   3 (9)
	              a 0.7555
	            old 0.7555
	            are 0.5413
	           well 0.5413
	           Lark 0.5413
	            arz 0.5413
	           </S> 0.5244
	              , 0.2816
	             to 0.0857

            its   482872   1 (7)
	            its 0.5413
	              a 0.5413
	         enable 0.5413
	              , 0.5413
	             iu 0.5413
	              } 0.1229
	           </S> 0.0857

        peevish   483014   1 (10)
	        peevish 0.7555
	           dead 0.5413
	          found 0.2816
	      appearing 0.2656
	     interested 0.2253
	           </S> 0.1825
	              , 0.1825
	       provided 0.1825
	              a 0.1825
	            not 0.0857

     captivit}'   483025   3 (11)
	      captivait 0.5413
	             us 0.5413
	      captivity 0.5244
	           turn 0.4011
	        general 0.2816
	           fact 0.2816
	              , 0.2816
	           case 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

            and   483037   1 (4)
	            and 0.5413
	           </S> 0.5413
	            arz 0.5413
	            the 0.0857

    impetuously   483060   1 (6)
	    impetuously 0.5413
	         people 0.4979
	              , 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

     fluttering   483072   3 (7)
	           </S> 0.7555
	            the 0.7555
	     fluttering 0.5413
	              a 0.5413
	        Company 0.5413
	      following 0.5413
	              , 0.0857

           this   483128   1 (6)
	              a 0.5413
	           this 0.5413
	              , 0.5413
	              s 0.5413
	              } 0.1229
	           </S> 0.0857

       prettily   483208   1 (9)
	       prettily 0.7555
	            non 0.5413
	              A 0.5413
	           well 0.5413
	              - 0.2253
	            two 0.1825
	           same 0.1825
	         people 0.1825
	           </S> 0.0857

           cage   483238   1 (10)
	           cage 0.7555
	            cia 0.7555
	          early 0.5413
	           self 0.5413
	            can 0.5244
	            non 0.2816
	              , 0.2816
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

             My   483251   1 (7)
	             My 0.7555
	              , 0.7555
	            for 0.7555
	              a 0.5413
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

          flies   483348   1 (9)
	          flies 0.7555
	          Pales 0.5413
	           free 0.5244
	              , 0.2816
	           </S> 0.2253
	          place 0.1825
	            the 0.1825
	            you 0.1825
	              a 0.0857

        earwigs   483509   1 (9)
	        service 0.5413
	        earwigs 0.5413
	              - 0.5097
	             us 0.5097
	           </S> 0.1825
	          <UNK> 0.1825
	              a 0.1825
	              , 0.1825
	              " 0.0857

        rejects   483547   1 (8)
	        rejects 0.5244
	           were 0.2816
	            may 0.2816
	            not 0.1825
	           </S> 0.1825
	              , 0.1825
	              a 0.1825
	              I 0.0857

          Small   483596   1 (8)
	          State 0.7555
	              , 0.7555
	          Small 0.7555
	       teaching 0.5413
	              a 0.5413
	           sala 0.5413
	              " 0.2816
	           </S> 0.0857

          moths   483623   1 (8)
	          mouth 0.7555
	          moths 0.7555
	         months 0.5413
	         Anthus 0.5413
	              , 0.1825
	       business 0.1825
	           </S> 0.1825
	     businesses 0.0857

              -   483724   5 (7)
	             us 0.7555
	            the 0.5244
	             of 0.5244
	              . 0.5097
	              - 0.2656
	              , 0.2253
	           </S> 0.0857

            ear   483725   4 (10)
	              s 0.5413
	           side 0.5413
	        student 0.5413
	            ear 0.5244
	             th 0.5097
	              . 0.2816
	           year 0.2253
	              a 0.2253
	             to 0.1825
	           </S> 0.0857

            Its   483730   1 (8)
	            Its 0.7555
	             It 0.7555
	              , 0.7555
	              a 0.5413
	             us 0.5413
	              " 0.2816
	              ) 0.2816
	           </S> 0.0857

         staple   483734   1 (7)
	         staple 0.7555
	              , 0.5413
	           sala 0.5413
	          state 0.5244
	           main 0.1825
	           </S> 0.1825
	              a 0.0857

         Canary   483759   1 (8)
	         Canary 0.7555
	            non 0.5413
	        January 0.5244
	            the 0.1825
	              , 0.1825
	           that 0.1825
	           </S> 0.1825
	              a 0.0857

              -   483765   4 (8)
	            the 0.7555
	             us 0.5413
	             to 0.5244
	              , 0.5097
	              - 0.5097
	           </S> 0.2816
	          Wharf 0.1825
	        Islands 0.0857

     procurable   483801   1 (9)
	     procurable 0.7555
	         people 0.5413
	          whole 0.5413
	         reward 0.5413
	              " 0.2816
	       required 0.2656
	           </S> 0.1825
	              , 0.1825
	              a 0.0857

      Sustained   483813   3 (6)
	              , 0.7555
	              I 0.7555
	      Sustained 0.5413
	              / 0.5244
	              " 0.2816
	           </S> 0.0857

          keeps   483848   1 (8)
	           been 0.7555
	          keeps 0.7555
	       provided 0.5413
	              a 0.5244
	             of 0.2656
	           </S> 0.2253
	              , 0.1825
	            flu 0.0857

          every   483899   2 (6)
	              a 0.7555
	          every 0.5413
	             to 0.5244
	           </S> 0.2656
	              , 0.0857
	              . 0.0655

          Larks   484087   1 (8)
	          Larks 0.7555
	          Parus 0.7555
	            non 0.5413
	          Links 0.5244
	              , 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

              -   484093   3 (8)
	            the 0.5413
	             us 0.5413
	              - 0.5097
	              . 0.2816
	            and 0.2656
	           </S> 0.1825
	              , 0.1825
	              ' 0.0857

        Canar3^   484202   1 (10)
	         Canara 0.7555
	         Canary 0.7555
	          Canar 0.7555
	             us 0.5413
	         Canada 0.5244
	              , 0.2816
	              e 0.2816
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

              -   484209   1 (5)
	              - 0.5413
	            the 0.5413
	             us 0.5413
	           </S> 0.5413
	              , 0.5413

        Canar}'   484267   1 (11)
	         Canary 0.5413
	         Canara 0.5413
	         Canada 0.5413
	          Canar 0.5413
	             us 0.5244
	         PayPal 0.5097
	             it 0.5097
	           </S> 0.5097
	              , 0.2816
	              a 0.2253
	             to 0.0857

             iu   484329   4 (10)
	             iu 0.5413
	              a 0.5097
	             as 0.5097
	              , 0.2816
	             in 0.2816
	           </S> 0.2816
	              . 0.2816
	             by 0.1825
	            the 0.1294
	       argument 0.0857

            one   484332   1 (7)
	              s 0.7555
	            one 0.7555
	             is 0.7555
	              a 0.5244
	            the 0.5244
	              , 0.2816
	           </S> 0.0857

           Lark   484433   1 (9)
	           Lark 0.7555
	              , 0.5413
	              a 0.5413
	            arz 0.5413
	           Last 0.5244
	         chance 0.2253
	            way 0.1825
	           </S> 0.0857
	            new 0.0655

           husk   484441   1 (9)
	           husk 0.7555
	           </S> 0.5413
	              : 0.5413
	              H 0.5413
	            has 0.5244
	             us 0.2816
	             be 0.1825
	              a 0.1825
	            the 0.0857

         ever}'   484446   4 (10)
	           corn 0.7555
	            the 0.7555
	              a 0.7555
	             us 0.5413
	          every 0.5413
	         everre 0.5413
	           even 0.5413
	           ever 0.5413
	           </S> 0.2816
	              , 0.0857

           seed   484453   1 (6)
	              , 0.5413
	              a 0.5413
	           seed 0.5413
	            see 0.5413
	           </S> 0.5413
	           sala 0.5413

           this   484481   1 (6)
	           this 0.5413
	              a 0.5413
	              , 0.5413
	             it 0.5413
	            cia 0.5413
	           </S> 0.0857

            but   484640   1 (6)
	              , 0.5413
	              a 0.5413
	            but 0.5413
	             us 0.5413
	              } 0.1229
	           </S> 0.0857

           Lark   484653   2 (10)
	           part 0.7555
	              a 0.5413
	           Lark 0.5413
	            arz 0.5413
	             of 0.5244
	            man 0.5097
	           </S> 0.2816
	            and 0.1825
	              . 0.0857
	              , 0.0857

       swallows   484658   2 (7)
	    Calandrella 0.7555
	         allows 0.5413
	       swallows 0.5413
	              a 0.5413
	            and 0.5097
	              , 0.1825
	           </S> 0.0857

         ejects   484701   1 (9)
	         ejects 0.5413
	             us 0.5413
	            use 0.2816
	              . 0.2816
	           been 0.2816
	           </S> 0.2656
	              , 0.2656
	              a 0.1825
	            the 0.0857

          later   484723   1 (10)
	          later 0.5413
	              a 0.5413
	           lava 0.5413
	          after 0.5244
	             of 0.2816
	              , 0.1825
	              . 0.1825
	            gun 0.1825
	           </S> 0.1825
	            was 0.0857

  insectivorous   484738   1 (8)
	  insectivorous 0.5413
	              a 0.5413
	    information 0.5413
	             as 0.5413
	          major 0.5097
	              , 0.2816
	           </S> 0.2253
	             of 0.0857

           When   484763   1 (6)
	           When 0.7555
	              , 0.7555
	           when 0.7555
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

          Larks   484807   3 (8)
	              , 0.7555
	              . 0.7555
	              a 0.5413
	           part 0.5413
	          Larks 0.5413
	          Parus 0.5413
	              " 0.2816
	           </S> 0.0857

          would   484813   1 (6)
	          would 0.5413
	          wolfi 0.5413
	              a 0.5413
	              , 0.1825
	           </S> 0.1825
	              ' 0.0857

        insects   484875   1 (9)
	         incest 0.7555
	        insects 0.7555
	              , 0.2816
	             it 0.2816
	             us 0.2816
	           </S> 0.2816
	            him 0.2656
	              a 0.1825
	            the 0.0857

            and   484885   1 (5)
	              , 0.5413
	            and 0.5413
	            arz 0.5413
	              } 0.1229
	           </S> 0.0857

        subsist   484917   1 (10)
	        subsist 0.7555
	            not 0.5413
	             us 0.5413
	        subject 0.5244
	             do 0.2656
	           have 0.2656
	           </S> 0.1825
	              a 0.1825
	            the 0.0857
	              , 0.0655

          seeds   484946   1 (8)
	          needs 0.7555
	          seeds 0.7555
	              , 0.2816
	        receipt 0.2816
	           </S> 0.2816
	             us 0.2816
	              a 0.1825
	            the 0.0857

             it   484972   1 (6)
	              , 0.5413
	             iu 0.5413
	              a 0.5413
	             it 0.5413
	              } 0.1229
	           </S> 0.0857

         solely   485024   2 (8)
	           some 0.7555
	         solely 0.5413
	           time 0.5413
	           turn 0.5413
	              a 0.5244
	           </S> 0.2816
	              , 0.1825
	              . 0.0857

         soaked   485034   1 (7)
	         soaked 0.7555
	           Wall 0.5413
	              , 0.2816
	           some 0.2816
	           </S> 0.2253
	              a 0.1825
	            the 0.0857

           ants   485041   1 (10)
	           alba 0.5413
	           ants 0.5413
	       material 0.5413
	     Newspapers 0.5413
	       Watchers 0.5413
	              I 0.5413
	           </S> 0.5097
	            and 0.2816
	              , 0.2253
	             in 0.0857

              '   485045   3 (5)
	             us 0.7555
	            the 0.5244
	              ' 0.5097
	           </S> 0.1825
	              , 0.0857

        cocoons   485047   1 (10)
	        cocoons 0.7555
	           nest 0.5413
	           bees 0.5413
	        Library 0.5413
	         common 0.5097
	              a 0.2816
	              s 0.1825
	              ) 0.1825
	           </S> 0.0857
	              , 0.0655

      unnatural   485109   1 (8)
	       possible 0.5413
	          under 0.5413
	      unnatural 0.5413
	              a 0.5244
	         online 0.2816
	              , 0.1825
	           </S> 0.1825
	             of 0.0857

          Larks   485158   1 (10)
	          Larks 0.7555
	          Parus 0.7555
	              , 0.5413
	              . 0.5413
	              a 0.5413
	          Links 0.5244
	           most 0.1825
	      following 0.1825
	    information 0.1825
	           </S> 0.0857

            you   485164   2 (8)
	             of 0.7555
	              a 0.5413
	            you 0.5413
	             us 0.5413
	              . 0.2816
	           </S> 0.1825
	              , 0.1825
	              ' 0.0857

       recently   485214   1 (7)
	       recently 0.7555
	       required 0.5097
	              , 0.2816
	           </S> 0.2253
	              a 0.1825
	           they 0.1825
	            the 0.0857

      branchers   485244   1 (7)
	      branchers 0.7555
	              s 0.5413
	          There 0.2816
	              a 0.2816
	          <UNK> 0.1825
	              , 0.1825
	           </S> 0.0857

          Larks   485290   1 (10)
	          Links 0.7555
	          Larks 0.7555
	              a 0.5413
	          users 0.5413
	         errors 0.5413
	          Parus 0.5413
	           </S> 0.2253
	              . 0.1825
	              , 0.1825
	         people 0.0857

             it   485330   1 (6)
	             it 0.5413
	             iu 0.5413
	              , 0.5413
	              a 0.5413
	              } 0.1229
	           </S> 0.0857

      branchers   485381   1 (9)
	        animals 0.5413
	      branchers 0.5413
	          there 0.2656
	              , 0.1825
	              a 0.1825
	             we 0.1825
	           </S> 0.1825
	            you 0.1825
	            the 0.0857

          tamer   485399   1 (10)
	          tamer 0.7555
	      difficult 0.5413
	         manual 0.5413
	          Pales 0.5413
	           time 0.5097
	           held 0.1825
	           </S> 0.1825
	          found 0.1825
	              , 0.1825
	              a 0.0857

      perfectly   485454   1 (7)
	      perfectly 0.7555
	         people 0.5413
	          major 0.5413
	              , 0.2816
	           </S> 0.2816
	      available 0.2656
	              a 0.0857

           tame   485464   1 (11)
	           tame 0.7555
	           time 0.7555
	              a 0.5413
	       involved 0.5413
	       arranged 0.5413
	           lava 0.5413
	           free 0.5097
	           </S> 0.2816
	        located 0.2816
	              , 0.1825
	              . 0.0857

       Appendix   485574   3 (7)
	            And 0.7555
	              , 0.7555
	           prey 0.5413
	       Appendix 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

              .   485582   4 (6)
	            the 0.7555
	             us 0.5413
	              , 0.2816
	              . 0.2656
	           </S> 0.1825
	              A 0.0857

           WHEN   485585   3 (7)
	              , 0.7555
	             We 0.7555
	              a 0.5413
	           WHEN 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

             It   485854   1 (7)
	              , 0.7555
	             It 0.7555
	             us 0.5413
	              a 0.5413
	              ) 0.2816
	              " 0.2816
	           </S> 0.0857

           need   485857   2 (5)
	            new 0.7555
	           need 0.5244
	           </S> 0.1825
	              , 0.1294
	             is 0.0857

    particulars   485967   1 (8)
	    particulars 0.7555
	        reviews 0.5413
	       pictures 0.5413
	           </S> 0.2253
	              a 0.2253
	              , 0.1825
	            the 0.1825
	             of 0.0857

     respecting   485979   5 (9)
	          being 0.7555
	             it 0.7555
	              a 0.5413
	             us 0.5413
	     respecting 0.5244
	            the 0.5244
	           </S> 0.2816
	              , 0.1825
	             of 0.0857

        alreadj   486147   4 (10)
	        alejada 0.5413
	              I 0.5413
	            red 0.5413
	        already 0.5244
	              . 0.1825
	            and 0.1825
	            are 0.1825
	              , 0.1825
	           </S> 0.1825
	             to 0.0857

              '   486154 inf (5)
	            the 0.5413
	             us 0.5413
	           this 0.5413
	              , 0.5413
	           </S> 0.5413

            Had   486188   1 (8)
	             in 0.7555
	              , 0.7555
	            Had 0.7555
	            had 0.5413
	              a 0.5413
	            cia 0.5413
	              " 0.2816
	           </S> 0.0857

       articles   486206   1 (9)
	       articles 0.7555
	    masterpiece 0.5413
	           used 0.5413
	              I 0.5413
	         prices 0.5413
	      restraint 0.5244
	             of 0.5244
	           </S> 0.5097
	              , 0.0857

        Messrs.   486251   4 (9)
	        William 0.5413
	             us 0.5413
	              ] 0.5413
	        Message 0.5244
	         Messrs 0.5244
	              , 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

       Witherby   486265   1 (6)
	         either 0.5413
	       Witherby 0.5413
	             J. 0.5413
	              A 0.5097
	              , 0.0857
	           </S> 0.0857

             F.   486281 inf (8)
	              a 0.5413
	             us 0.5413
	       Spyratos 0.5413
	            For 0.5244
	             FL 0.5244
	              . 0.2816
	           </S> 0.1825
	              , 0.0857

      Ticehurst   486284   1 (7)
	            has 0.5413
	      Tilehurst 0.5413
	      Ticehurst 0.5413
	             C. 0.5097
	              A 0.5097
	              , 0.0857
	           </S> 0.0857

           been   486294   1 (5)
	           been 0.5413
	              a 0.5413
	          Aedon 0.5413
	           </S> 0.1825
	              , 0.0857

       inclttde   486357   5 (10)
	       includet 0.5413
	           </S> 0.5413
	          incle 0.5413
	              , 0.5413
	             us 0.2816
	        include 0.2816
	           have 0.1825
	            see 0.1825
	              a 0.1825
	            the 0.0857

            all   486366   1 (7)
	           </S> 0.5413
	              I 0.5413
	              , 0.5413
	           alba 0.5413
	             of 0.5413
	            the 0.5413
	            all 0.5413

       vagrants   486376   1 (10)
	       vagrants 0.7555
	        reviews 0.5413
	             us 0.5413
	              a 0.5413
	          great 0.2656
	          years 0.2656
	              , 0.1825
	           </S> 0.1825
	         things 0.1825
	            are 0.0857

      gentlemen   486665   1 (12)
	      gentlemen 0.7555
	             us 0.5413
	       Internet 0.5413
	       websites 0.5413
	    impairments 0.5413
	              - 0.5244
	              ) 0.5097
	              a 0.2816
	           </S> 0.2816
	          above 0.1825
	              , 0.1825
	             in 0.0857

             As   486677   1 (7)
	             is 0.7555
	              , 0.7555
	             As 0.7555
	             us 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

     considered   486712   1 (6)
	     considered 0.7555
	              a 0.5413
	        control 0.2816
	              , 0.1825
	           </S> 0.1825
	             of 0.0857

       visitors   486773   1 (11)
	       visitors 0.7555
	           most 0.5413
	           site 0.5413
	     viscivorus 0.5413
	              a 0.5244
	           came 0.5244
	           </S> 0.2816
	            and 0.2816
	              , 0.2656
	              . 0.1825
	             to 0.0857

         remedv   486843   5 (12)
	      remediava 0.5413
	           </S> 0.5413
	        vermede 0.5413
	         recent 0.5244
	         remedy 0.5097
	             us 0.2816
	         reduce 0.2816
	           take 0.2253
	              a 0.1825
	            use 0.1825
	             be 0.1825
	            the 0.0857

    deficienc}'   486854   3 (10)
	     deficience 0.7555
	        details 0.5413
	     deficiency 0.5244
	      deficient 0.5244
	           work 0.2253
	              - 0.2253
	           same 0.1825
	         people 0.1825
	      following 0.1825
	           </S> 0.0857

           here   486866   1 (6)
	           </S> 0.5413
	           here 0.5413
	              , 0.5413
	             of 0.5413
	            arz 0.5413
	              a 0.5413

      published   486948   1 (7)
	      published 0.7555
	              a 0.5413
	         people 0.5413
	             of 0.5413
	           </S> 0.1825
	              , 0.1825
	       changing 0.0857

         Family   486983   1 (7)
	         Family 0.7555
	              , 0.7555
	              s 0.5413
	              a 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

        TURDID^   486991 inf (12)
	            rev 0.5413
	           TURI 0.5413
	         TURYID 0.5413
	           side 0.5413
	              s 0.5413
	              p 0.5413
	            Vol 0.5413
	              , 0.5413
	              a 0.2656
	            The 0.1825
	             to 0.1825
	           </S> 0.0857

              .   486998   1 (6)
	              , 0.5413
	              . 0.5413
	           </S> 0.5413
	              - 0.5413
	             us 0.5413
	            the 0.5413

      Subfamih-   487001   3 (6)
	              I 0.7555
	              , 0.7555
	         Sufami 0.5413
	      Subfamily 0.5413
	              " 0.2816
	           </S> 0.0857

       TURDINyF   487011 inf (8)
	           </S> 0.5413
	          <UNK> 0.5413
	           TODO 0.5413
	              , 0.5413
	              a 0.5413
	         THANKS 0.5413
	        COPYING 0.5413
	    MAINTAINERS 0.5413

              .   487019 inf (3)
	             of 0.5413
	             us 0.5413
	            the 0.5413

          Dusky   487026 inf (10)
	           Dusk 0.7555
	         Duisky 0.5413
	              / 0.5413
	     Associated 0.5413
	          Dusko 0.5413
	             us 0.5244
	           just 0.5244
	           Duke 0.5097
	              - 0.1825
	           </S> 0.0857

        Turdiis   487041   2 (12)
	              , 0.7555
	              a 0.5413
	        Taurids 0.5413
	        Turkish 0.5413
	          urdis 0.5413
	           Turd 0.5413
	          Turds 0.5413
	        Turdiev 0.5413
	         Turdus 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

        dubiiis   487049   1 (8)
	           </S> 0.5413
	         dubius 0.5413
	          dubii 0.5413
	         duties 0.5413
	              a 0.5413
	         dubiis 0.5413
	              , 0.5413
	      configure 0.5413

              ,   487056 inf (3)
	             of 0.5413
	             us 0.5413
	            the 0.5413

         BechsT   487058 inf (7)
	           Bech 0.5413
	        Beeches 0.5413
	         Becher 0.5413
	              i 0.2816
	           each 0.2816
	             pp 0.2816
	            the 0.0857

              .   487064   1 (5)
	           </S> 0.5413
	              , 0.5413
	             us 0.5413
	              . 0.5413
	            the 0.5413

             NE   487067 inf (8)
	              , 0.7555
	             No 0.7555
	              I 0.7555
	             us 0.5413
	             NE 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

       specimen   487070   1 (7)
	              a 0.5413
	        species 0.5413
	          round 0.5413
	       specimen 0.5413
	              , 0.1825
	              ) 0.1825
	           </S> 0.0857

      Gunthorpe   487110   1 (9)
	        another 0.5413
	      Gunthorpe 0.5413
	             us 0.5097
	           </S> 0.2816
	              , 0.2816
	              a 0.2656
	         future 0.1825
	            you 0.1825
	            the 0.0857

          Notts   487121   3 (8)
	              , 0.7555
	              I 0.7555
	          North 0.5413
	          Notts 0.5413
	          Sitta 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

              .   487126   6 (7)
	            the 0.7555
	             us 0.5413
	      configure 0.5413
	           </S> 0.2253
	              , 0.2253
	              . 0.1825
	         County 0.0857

           1905   487146 inf (8)
	             pp 0.7555
	              a 0.5413
	           1990 0.5413
	           1995 0.5413
	           2005 0.5413
	           1950 0.5413
	           </S> 0.5413
	            the 0.0857

     Stornowa}-   487198   1 (9)
	             us 0.5413
	      Stornoway 0.5413
	        Windows 0.5097
	        average 0.5097
	         Monday 0.2816
	              , 0.2816
	           </S> 0.2816
	              a 0.1825
	            the 0.0857

          Outer   487210   1 (7)
	          Outer 0.5413
	          Other 0.5413
	              a 0.5413
	            and 0.5413
	           </S> 0.5413
	            you 0.1825
	            the 0.0857

          White   487284   3 (6)
	              , 0.7555
	           What 0.7555
	          White 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

             's   487289   3 (5)
	             us 0.7555
	             is 0.4011
	             's 0.2816
	              , 0.1825
	           </S> 0.0857

           i8th   487352 inf (11)
	           into 0.7555
	             iu 0.5413
	           iath 0.5413
	              a 0.5413
	            ith 0.5413
	            8th 0.5097
	           </S> 0.1825
	              , 0.1825
	             31 0.1825
	              1 0.1825
	           2005 0.0857

           1902   487358 inf (8)
	             pp 0.7555
	              a 0.5413
	           1990 0.5413
	              ( 0.5413
	           2005 0.5413
	           1903 0.5413
	           </S> 0.5413
	            the 0.0857

            now   487379   1 (9)
	            now 0.7555
	             us 0.5413
	             DT 0.5413
	            dog 0.5413
	              I 0.5413
	         Papers 0.5244
	             of 0.5244
	              , 0.1825
	           </S> 0.0857

          Ouzel   487432   1 (10)
	          Ouzel 0.7555
	       wrapping 0.5413
	       Extended 0.5413
	              s 0.5413
	          Other 0.2816
	             it 0.2816
	              . 0.2816
	              a 0.2253
	             to 0.1825
	           </S> 0.0857

         Family   487500   1 (5)
	              , 0.7555
	         Family 0.7555
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

             Ti   487508 inf (11)
	       Friendly 0.5413
	              v 0.5413
	         lovers 0.5413
	              s 0.5413
	              , 0.5413
	             Ti 0.5244
	             To 0.2816
	              a 0.2253
	             to 0.1825
	             up 0.1825
	           </S> 0.0857

              '   487511   3 (6)
	            the 0.7555
	             us 0.5413
	              ' 0.5244
	              , 0.1825
	           </S> 0.1825
	              - 0.0857

           RDID   487512 inf (8)
	            RDI 0.7555
	           RDIS 0.5413
	             Re 0.5244
	              a 0.2816
	              s 0.1825
	              ) 0.1825
	           </S> 0.0857
	              , 0.0655

              .   487516   3 (7)
	              , 0.7555
	           </S> 0.7555
	              ' 0.5413
	              . 0.5413
	            the 0.5413
	             us 0.5413
	              | 0.0857

             E.   487518 inf (8)
	             of 0.7555
	             El 0.7555
	              , 0.7555
	              I 0.7555
	              . 0.7555
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

    Subfaniily-   487522   3 (6)
	              A 0.7555
	              ' 0.7555
	      Subfamily 0.5413
	        Stanley 0.5413
	           </S> 0.0857
	              , 0.0857

             TL   487534 inf (6)
	           </S> 0.5413
	              a 0.5413
	             TL 0.5413
	             us 0.5413
	             To 0.5413
	              , 0.5413

              '   487537   3 (6)
	             us 0.7555
	            the 0.7555
	              ' 0.5244
	              - 0.0857
	              , 0.0857
	           </S> 0.0655

           RUIN   487538 inf (11)
	            RUI 0.7555
	           RUIM 0.5413
	             al 0.5413
	           IRUN 0.5413
	             Re 0.5244
	              a 0.2816
	            the 0.2253
	              ) 0.1825
	              s 0.1825
	           </S> 0.0857
	              , 0.0655

              .   487542   5 (8)
	              ' 0.7555
	          other 0.5413
	             us 0.5413
	            the 0.5244
	              . 0.5097
	              , 0.4979
	           THIS 0.1825
	           </S> 0.0857

              E   487544 inf (9)
	            the 0.7555
	             El 0.7555
	              , 0.7555
	             us 0.5413
	             RE 0.5413
	             EE 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

       Saxicola   487575   3 (6)
	              , 0.7555
	              I 0.7555
	       Saxicola 0.5413
	              / 0.5244
	              " 0.2816
	           </S> 0.0857

      shipazina   487584 inf (12)
	       shikazan 0.5413
	         hazina 0.5413
	              a 0.5413
	      configure 0.5413
	      quipazine 0.5413
	       simazina 0.5413
	       shipping 0.5413
	           </S> 0.5244
	              , 0.5244
	          maura 0.2816
	       torquata 0.0857
	        rubetra 0.0655

              ,   487593   1 (4)
	             us 0.5413
	            the 0.5413
	              , 0.5413
	           </S> 0.5413

           LiNN   487595 inf (8)
	            LNN 0.5413
	           List 0.5413
	           LiNK 0.5413
	            NiL 0.5413
	            cia 0.5413
	             pp 0.2816
	              i 0.2816
	            the 0.0857

              .   487599   1 (5)
	           </S> 0.5413
	              , 0.5413
	             us 0.5413
	              . 0.5413
	            the 0.5413

              A   487602   1 (7)
	           This 0.7555
	              , 0.7555
	            the 0.7555
	              A 0.7555
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

           1902   487654 inf (8)
	           1992 0.5413
	              a 0.5413
	           </S> 0.5413
	           2005 0.5413
	           1990 0.5413
	      therefore 0.5413
	           1920 0.5413
	            the 0.0857

           1905   487676 inf (8)
	           2002 0.7555
	            the 0.7555
	              a 0.5413
	           1995 0.5413
	           1990 0.5413
	           2005 0.5097
	           </S> 0.2816
	              , 0.0857

        another   487682   1 (11)
	              , 0.5413
	              s 0.5413
	        another 0.5413
	              I 0.5413
	           2005 0.5413
	           </S> 0.5413
	          other 0.2816
	          which 0.1825
	             he 0.1825
	            who 0.1825
	            the 0.0857

            Hoo   487704   1 (9)
	            Hoo 0.7555
	           Home 0.7555
	          times 0.5413
	             us 0.5097
	           </S> 0.2816
	              , 0.2816
	              a 0.2656
	         future 0.1825
	            the 0.0857

         Sussex   487709   1 (9)
	            and 0.5413
	   respectively 0.5413
	         Sussex 0.5413
	              a 0.5413
	              s 0.5413
	           </S> 0.5413
	           used 0.2816
	            who 0.1825
	            the 0.0857

             on   487717   1 (6)
	             us 0.5413
	              a 0.5413
	              , 0.5413
	             on 0.5413
	              } 0.1229
	           </S> 0.0857

          3'ear   487750   6 (11)
	           rear 0.7555
	            ear 0.7555
	         States 0.5413
	             of 0.5413
	              a 0.5413
	           year 0.2656
	           name 0.2253
	              . 0.1825
	           </S> 0.1825
	              , 0.1825
	           time 0.0857

              a   487757   1 (5)
	           </S> 0.5413
	              a 0.5413
	             us 0.5097
	             of 0.2253
	            the 0.0857

           Pett   487779   2 (9)
	           Post 0.7555
	          times 0.5413
	           Pett 0.5413
	           Pica 0.5413
	              , 0.2816
	           </S> 0.2816
	              a 0.2656
	         future 0.1825
	            the 0.0857

              a   487794   1 (6)
	            the 0.5413
	             us 0.5413
	              , 0.5413
	              a 0.5413
	              } 0.1229
	           </S> 0.0857

     Winchelsea   487813   1 (10)
	          least 0.5413
	              a 0.5413
	     Winchelsea 0.5413
	            the 0.5413
	          these 0.5413
	         killed 0.5413
	              , 0.5413
	           </S> 0.5413
	             us 0.5244
	           your 0.0857

           1907   487836 inf (8)
	             pp 0.7555
	              ) 0.5413
	           1900 0.5413
	           </S> 0.5413
	              a 0.5413
	           2005 0.5413
	           1970 0.5413
	            the 0.0857

      stapazina   487851 inf (13)
	         change 0.7555
	        Atazina 0.5413
	       stanzina 0.5413
	      stanarina 0.5413
	           said 0.5413
	     Mabinogion 0.5413
	        stapati 0.5413
	       Capazine 0.5413
	              a 0.5244
	           that 0.5244
	           </S> 0.1825
	              , 0.1218
	             of 0.0857

             by   487881   1 (10)
	              ( 0.5413
	            and 0.5413
	            but 0.5413
	           </S> 0.5413
	             by 0.5413
	              a 0.5413
	             us 0.5097
	           that 0.1825
	         please 0.1825
	            the 0.0857

        species   487927   1 (11)
	              - 0.5413
	        sources 0.5413
	     statements 0.5413
	        species 0.5413
	              a 0.5413
	        suecica 0.5413
	        special 0.5413
	              , 0.5097
	           </S> 0.5097
	          Green 0.1825
	        Sparrow 0.0857

       Saxicola   487962   1 (6)
	       Saxicola 0.5413
	              , 0.2816
	           your 0.2816
	         little 0.2816
	           </S> 0.1825
	              a 0.0857

   occidoitalis   487971   2 (12)
	       Saxicola 0.7555
	             as 0.5413
	   occidentalis 0.5413
	    occipitalis 0.5413
	             is 0.5413
	      occiditis 0.5413
	     individual 0.5413
	          whole 0.5413
	              a 0.5413
	              , 0.5244
	           </S> 0.5244
	       torquata 0.0857

              .   487983   1 (5)
	             us 0.5413
	              , 0.5413
	              . 0.5413
	            the 0.5413
	           </S> 0.5413

       Saxicola   488016   1 (6)
	        Special 0.5413
	              a 0.5413
	       Saxicola 0.5413
	       Oenanthe 0.5097
	              , 0.2656
	           </S> 0.0857

         daerti   488025   1 (12)
	        deserti 0.5413
	          darti 0.5413
	         dzerti 0.5413
	         derati 0.5413
	              a 0.5413
	          death 0.5413
	         Haerti 0.5413
	           </S> 0.5244
	              , 0.5244
	          maura 0.2816
	       torquata 0.0857
	        rubetra 0.0655

            was   488032   1 (5)
	             us 0.5413
	              , 0.5413
	            was 0.5413
	             we 0.5413
	           </S> 0.5413

       Pentland   488064   1 (9)
	       Pentland 0.7555
	             2K 0.5413
	        section 0.5413
	              . 0.5413
	            Now 0.5413
	              s 0.1825
	              a 0.1825
	           </S> 0.1825
	          <UNK> 0.0857

       Skerries   488073   1 (8)
	       Skerries 0.7555
	             A. 0.7555
	              ) 0.7555
	      Filtering 0.5413
	              a 0.5413
	         Series 0.5413
	           </S> 0.2816
	              , 0.0857

           1906   488097 inf (8)
	             pp 0.7555
	           1960 0.5413
	           1900 0.5413
	              a 0.5413
	           </S> 0.5413
	           2005 0.5413
	              ) 0.5413
	            the 0.0857

         Family   488104   1 (6)
	              , 0.7555
	         Family 0.7555
	              a 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

           TURD   488112 inf (12)
	          DUART 0.7555
	            TUR 0.7555
	       friendly 0.5413
	              , 0.5413
	              s 0.5413
	       Friendly 0.5413
	           TURN 0.5244
	              a 0.2253
	           mail 0.1825
	             to 0.1825
	            The 0.1825
	           </S> 0.0857

             ID   488117   2 (9)
	              ) 0.7555
	             us 0.5413
	              a 0.5413
	             In 0.5413
	             ID 0.5413
	          Sites 0.5413
	              - 0.5244
	              , 0.5097
	           </S> 0.0857

              .   488119   3 (7)
	             us 0.7555
	            the 0.5244
	              . 0.2816
	          <UNK> 0.2816
	              , 0.2253
	           </S> 0.1825
	              : 0.0857

             E.   488121 inf (8)
	              , 0.7555
	              . 0.7555
	             El 0.7555
	             of 0.7555
	              s 0.5413
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

     Subfamily-   488125   2 (6)
	              A 0.7555
	      Subfamily 0.5413
	             J. 0.5413
	          Smith 0.5244
	           </S> 0.0857
	              , 0.0857

       TURDIN.E   488136 inf (11)
	            Ave 0.5413
	    PROTECTIONE 0.5413
	           </S> 0.5413
	             E. 0.5413
	              a 0.5413
	             RD 0.5413
	          <UNK> 0.5413
	              , 0.5413
	      INTERSECT 0.5413
	            The 0.5413
	             N. 0.5413

              .   488144 inf (3)
	             of 0.5413
	             us 0.5413
	            the 0.5413

              .   488169   3 (5)
	             us 0.5413
	            the 0.5413
	              . 0.5244
	              , 0.1825
	           </S> 0.0857

     Pratincola   488172   3 (6)
	              , 0.7555
	              I 0.7555
	     Pratincola 0.5413
	              / 0.5244
	              " 0.2816
	           </S> 0.0857

          maura   488183   1 (6)
	              a 0.5413
	          major 0.5413
	      configure 0.5413
	           </S> 0.5413
	          maura 0.5413
	              , 0.0857

           Paix   488190 inf (9)
	           Pica 0.5413
	           Page 0.5413
	              ) 0.5413
	          <UNK> 0.5413
	   philadelphia 0.5413
	           Paix 0.5413
	              i 0.2816
	             pp 0.2816
	            the 0.0857

              .   488194   4 (6)
	            the 0.7555
	           will 0.5413
	             us 0.5413
	              . 0.2816
	           </S> 0.1825
	              , 0.0857

           male   488197 inf (8)
	              , 0.7555
	              I 0.7555
	           This 0.7555
	           make 0.7555
	           male 0.5413
	           sala 0.5413
	              " 0.2816
	           </S> 0.0857

           Cley   488216   1 (10)
	           Cley 0.7555
	           alba 0.7555
	        Norwich 0.5413
	           City 0.5244
	         Disney 0.5097
	           </S> 0.2816
	              , 0.2816
	              a 0.2656
	         future 0.1825
	            the 0.0857

           1904   488249 inf (8)
	             pp 0.7555
	           2005 0.5413
	           1900 0.5413
	           1940 0.5413
	              ) 0.5413
	           </S> 0.5413
	              a 0.5413
	            the 0.0857

              A   488255   1 (7)
	              A 0.7555
	              , 0.7555
	            the 0.7555
	             us 0.5413
	              " 0.2816
	              ) 0.2816
	           </S> 0.0857

      Redstarts   488265 inf (9)
	       Redstart 0.7555
	       research 0.5413
	       kayakers 0.5413
	          <UNK> 0.2816
	             us 0.2816
	              , 0.2816
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

          built   488275   2 (7)
	              - 0.7555
	            but 0.5413
	              a 0.5413
	          built 0.5413
	           </S> 0.5244
	              . 0.2816
	              , 0.0857

        Spiggie   488284 inf (10)
	        Spigiel 0.5413
	              a 0.5413
	              , 0.5413
	         piggie 0.5413
	          <UNK> 0.5413
	            the 0.5413
	           </S> 0.5413
	           high 0.5413
	             us 0.2816
	           your 0.0857

     vShetlands   488293   1 (8)
	      Shetlands 0.7555
	           view 0.5413
	       Compiled 0.5413
	              - 0.2816
	           </S> 0.1825
	              a 0.1825
	              s 0.1825
	          <UNK> 0.0857

              )   488303   1 (5)
	              , 0.5413
	            the 0.5413
	              ) 0.5413
	           </S> 0.5413
	             us 0.5413

            Maj   488309 inf (8)
	            cia 0.7555
	            Maj 0.7555
	             My 0.4979
	              , 0.2816
	          stock 0.2816
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

              '   488312   1 (8)
	              ' 0.7555
	            the 0.7555
	          world 0.5413
	             us 0.5413
	              , 0.2656
	           </S> 0.1825
	            Gen 0.1825
	              - 0.0857

           1901   488315 inf (10)
	              ' 0.5413
	              , 0.5413
	              s 0.5413
	           </S> 0.5413
	              ) 0.5413
	             10 0.5413
	           1964 0.5413
	    Transcripts 0.5413
	              a 0.5413
	            the 0.0857

            two   488322   1 (7)
	             us 0.5413
	              , 0.5413
	            two 0.5413
	          there 0.5413
	              a 0.5413
	              } 0.1229
	           </S> 0.0857

         Skerry   488393   1 (9)
	         Skerry 0.7555
	            age 0.5413
	              , 0.5413
	          Speed 0.5413
	         Sierra 0.5097
	           very 0.2253
	            end 0.1825
	           same 0.1825
	           </S> 0.0857

           Vore   488400   2 (7)
	             of 0.7555
	           more 0.5413
	              a 0.5413
	           Vore 0.5413
	          corax 0.5413
	           </S> 0.1825
	              , 0.0857

          Light   488405   3 (7)
	    definitions 0.7555
	             M. 0.7555
	          Stack 0.5413
	          Light 0.5413
	              a 0.5413
	              , 0.0857
	           </S> 0.0857

        Messrs.   488436   2 (6)
	              , 0.7555
	        Message 0.5413
	              a 0.5413
	         Messrs 0.5413
	              / 0.5244
	           </S> 0.0857

       Witherby   488444   2 (8)
	              , 0.7555
	         either 0.5413
	      configure 0.5413
	              a 0.5413
	       Witherby 0.5413
	             A. 0.5244
	          <UNK> 0.1825
	           </S> 0.0857

      Ticehurst   488457   1 (9)
	      Ticehurst 0.7555
	          major 0.5413
	     superseded 0.5413
	            The 0.2816
	              a 0.1825
	             to 0.1825
	              , 0.1825
	           </S> 0.1825
	            the 0.0857

         record   488467   1 (9)
	             of 0.5413
	             by 0.5413
	             us 0.5413
	         record 0.5413
	         before 0.5413
	              a 0.5413
	              . 0.5244
	           </S> 0.1825
	              , 0.0857

         Solway   488537   1 (12)
	         Solway 0.7555
	          state 0.5413
	            one 0.5413
	              , 0.5413
	          party 0.5413
	      sectional 0.5413
	              : 0.5413
	             us 0.5413
	        kitchen 0.5413
	         Policy 0.5244
	              a 0.2253
	           </S> 0.0857

       Aberdeen   488575   1 (6)
	              a 0.5413
	           1900 0.5413
	              , 0.5413
	       Aberdeen 0.5413
	              } 0.1229
	           </S> 0.0857

        ]\Iarch   488589 inf (9)
	         Search 0.7555
	           arch 0.7555
	          harch 0.5413
	        Isearch 0.5413
	          major 0.5413
	              a 0.5097
	           </S> 0.2656
	              , 0.1825
	             of 0.0857

           20th   488597 inf (9)
	             us 0.5413
	              , 0.5413
	           them 0.5413
	             th 0.5413
	           </S> 0.5413
	            the 0.5413
	              a 0.5413
	            sth 0.5413
	           with 0.5413

           1900   488603 inf (7)
	              s 0.5413
	          <UNK> 0.5413
	              ) 0.5413
	           1990 0.5413
	              a 0.5413
	           2005 0.5413
	            the 0.0857

          Moray   488609   1 (8)
	             ie 0.5413
	           More 0.5413
	              , 0.5413
	              a 0.5413
	          Moray 0.5413
	          corax 0.5413
	              } 0.1229
	           </S> 0.0857

        Flannan   488640   1 (6)
	              , 0.5413
	        Flannel 0.5413
	              a 0.5413
	        Flannan 0.5413
	              } 0.1229
	           </S> 0.0857

           June   488665   1 (7)
	            Jan 0.7555
	           June 0.7555
	              a 0.5413
	          Munia 0.5413
	             of 0.2816
	           </S> 0.1825
	              , 0.0857

         Orkney   488724   1 (7)
	              a 0.5413
	              , 0.5413
	       Regiment 0.5413
	         Orkney 0.5413
	         Orange 0.5413
	              } 0.1229
	           </S> 0.0857

           male   488734   7 (10)
	           sala 0.7555
	              a 0.5413
	              , 0.5413
	         Mother 0.5413
	            was 0.5244
	           make 0.5097
	           male 0.2816
	          woman 0.2253
	           </S> 0.0857
	            new 0.0655

       November   488751   1 (8)
	           over 0.5413
	       November 0.5413
	              , 0.5413
	           </S> 0.5413
	              a 0.5413
	            and 0.5413
	      including 0.1825
	            the 0.0857

           1905   488766 inf (7)
	           1990 0.5413
	           1995 0.5413
	           </S> 0.5413
	           2005 0.5413
	              a 0.5413
	      therefore 0.5413
	            the 0.0857

         Family   488800   1 (6)
	         Family 0.7555
	              , 0.7555
	              a 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

       TURDID.^   488808 inf (11)
	              a 0.7555
	            rev 0.5413
	              s 0.5413
	              , 0.5413
	         TURYID 0.5413
	           side 0.5413
	              p 0.5413
	            Vol 0.5413
	             to 0.5244
	            The 0.5244
	           </S> 0.0857

              .   488816   1 (6)
	              , 0.5413
	              . 0.5413
	           </S> 0.5413
	              - 0.5413
	             us 0.5413
	            the 0.5413

     Subfamily-   488819   3 (5)
	              , 0.7555
	              I 0.7555
	      Subfamily 0.5413
	              " 0.2816
	           </S> 0.0857

       TURDIN/E   488830 inf (10)
	              a 0.5413
	        COPYING 0.5413
	          <UNK> 0.5413
	           </S> 0.5413
	              / 0.5413
	           TODO 0.5413
	              , 0.5413
	         THANKS 0.5413
	         README 0.5413
	    MAINTAINERS 0.5413

              .   488838 inf (3)
	             of 0.5413
	             us 0.5413
	            the 0.5413

       Spottf:d   488851 inf (11)
	        Spoofed 0.7555
	          Spott 0.7555
	              , 0.5413
	         tailed 0.5413
	              s 0.5413
	       Spottify 0.5413
	          point 0.5413
	              a 0.2656
	           mail 0.1825
	             to 0.1825
	           </S> 0.0857

     Bluethroat   488860   1 (9)
	           that 0.5413
	              ) 0.5413
	           Deer 0.5413
	           </S> 0.5413
	              a 0.5413
	     Bluethroat 0.5413
	             us 0.5413
	              - 0.5413
	              , 0.5413

              .   488870   3 (6)
	             us 0.5413
	            the 0.5413
	              . 0.5244
	           Boat 0.5097
	              , 0.2656
	           </S> 0.0857

    Cxa)icciila   488873 inf (8)
	          Click 0.7555
	              I 0.7555
	              , 0.7555
	        Comella 0.5413
	              / 0.5244
	              ) 0.5097
	              " 0.2816
	           </S> 0.0857

        u'i>l/l   488885 inf (7)
	      configure 0.5413
	              a 0.5413
	          uaill 0.5413
	           uill 0.5413
	              , 0.5413
	           </S> 0.5413
	          build 0.5413

              ,   488892 inf (3)
	             of 0.5413
	             us 0.5413
	            the 0.5413

          BrEHM   488894 inf (6)
	             pp 0.7555
	           from 0.7555
	              i 0.7555
	           BEHS 0.5413
	            BrE 0.5413
	            the 0.0857

              .   488899   1 (5)
	           </S> 0.5413
	              , 0.5413
	             us 0.5413
	              . 0.5413
	            the 0.5413

              A   488902   1 (7)
	           This 0.7555
	              , 0.7555
	            the 0.7555
	              A 0.7555
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

      Dungeness   488932   1 (7)
	              , 0.5413
	           </S> 0.5413
	       business 0.5413
	      Dungeness 0.5413
	             us 0.2816
	              a 0.1825
	            the 0.0857

              a   488976   1 (6)
	             us 0.5413
	            the 0.5413
	              a 0.5413
	              , 0.5413
	              } 0.1229
	           </S> 0.0857

            ist   489026 inf (10)
	            ist 0.7555
	            its 0.7555
	             iu 0.5413
	              a 0.5413
	              , 0.1825
	             11 0.1825
	              1 0.1825
	           </S> 0.1825
	             30 0.1825
	           2005 0.0857

           1905   489031 inf (11)
	             pp 0.7555
	           </S> 0.5413
	          <UNK> 0.5413
	           1995 0.5413
	              ( 0.5413
	           1990 0.5413
	           2005 0.5413
	           1950 0.5413
	          19105 0.5413
	              a 0.5413
	            the 0.0857

             it   489129   1 (6)
	             iu 0.5413
	              , 0.5413
	             it 0.5413
	              a 0.5413
	              } 0.1229
	           </S> 0.0857

        visited   489132   1 (7)
	          visit 0.7555
	        visited 0.7555
	              a 0.2253
	            was 0.1825
	              , 0.1825
	           </S> 0.1825
	             is 0.0857

   Lincolnshire   489140   3 (10)
	          sites 0.7555
	          other 0.7555
	             be 0.5413
	   Lincolnshire 0.5413
	             us 0.5244
	            him 0.5244
	              a 0.5097
	           </S> 0.5097
	              , 0.2816
	            the 0.0857

         Sussex   489180   1 (8)
	              , 0.5413
	           1905 0.5413
	          based 0.5413
	              a 0.5413
	         Sussex 0.5413
	         Passer 0.5413
	              } 0.1229
	           </S> 0.0857

           1903   489190 inf (8)
	        writing 0.7555
	              , 0.7555
	             it 0.7555
	             us 0.5413
	           1603 0.5413
	           </S> 0.5244
	              a 0.2816
	            the 0.0857

         Surrey   489196   1 (6)
	         Survey 0.5413
	              , 0.5413
	              a 0.5413
	         Surrey 0.5413
	              } 0.1229
	           </S> 0.0857

           1904   489203 inf (8)
	            CR0 0.7555
	           GU21 0.7555
	            TW9 0.7555
	              ) 0.5244
	              A 0.5244
	            and 0.5097
	           </S> 0.1825
	              , 0.0857

      Yorkshire   489209   1 (5)
	              a 0.5413
	              , 0.5413
	      Yorkshire 0.5413
	              } 0.1229
	           </S> 0.0857

           1903   489219 inf (6)
	           YO17 0.7555
	           BD20 0.7555
	              ) 0.5244
	            and 0.2816
	              , 0.1825
	           </S> 0.0857

      Shetlands   489225   1 (5)
	              , 0.5413
	              a 0.5413
	      Shetlands 0.5413
	              } 0.1229
	           </S> 0.0857

           1905   489235 inf (6)
	             95 0.7555
	             01 0.7555
	            the 0.7555
	        Islands 0.5244
	           </S> 0.2656
	              , 0.0857

         Family   489248   1 (7)
	              , 0.7555
	         Family 0.7555
	           1907 0.5413
	              a 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

        TURDID^   489256 inf (12)
	            rev 0.5413
	           TURI 0.5413
	         TURYID 0.5413
	           side 0.5413
	              s 0.5413
	              p 0.5413
	            Vol 0.5413
	              , 0.5413
	              a 0.2656
	            The 0.1825
	             to 0.1825
	           </S> 0.0857

              .   489263   1 (6)
	              , 0.5413
	              . 0.5413
	           </S> 0.5413
	              - 0.5413
	             us 0.5413
	            the 0.5413

     Subfamily-   489266   3 (5)
	              , 0.7555
	              I 0.7555
	      Subfamily 0.5413
	              " 0.2816
	           </S> 0.0857

        TURDIN^   489277 inf (7)
	              a 0.5413
	         TURYID 0.5413
	              , 0.5413
	         TARDIS 0.5413
	           </S> 0.5413
	           TURN 0.5413
	          <UNK> 0.5413

              .   489284 inf (3)
	             of 0.5413
	             us 0.5413
	            the 0.5413

    Nightingale   489299   2 (10)
	           Good 0.7555
	              I 0.5413
	    Nightingale 0.5413
	          Press 0.5413
	             P. 0.5413
	              , 0.5413
	             of 0.5413
	           </S> 0.5244
	     Washington 0.5244
	         London 0.0857

        Daulias   489313 inf (9)
	              , 0.7555
	        Daulian 0.5413
	         Daulia 0.5413
	         Dallas 0.5413
	         Daulis 0.5413
	              a 0.5413
	              / 0.5244
	              " 0.2816
	           </S> 0.0857

     fliilomcla   489321 inf (6)
	              a 0.5413
	      configure 0.5413
	        million 0.5413
	              , 0.5413
	           film 0.5413
	           </S> 0.5413

              ,   489331 inf (3)
	             of 0.5413
	             us 0.5413
	            the 0.5413

         Bechst   489333 inf (8)
	      Bechstein 0.5413
	         Bechet 0.5413
	         zechst 0.5413
	        Bechets 0.5413
	              i 0.2816
	           each 0.2816
	             pp 0.2816
	            the 0.0857

              A   489342   1 (7)
	           This 0.7555
	              , 0.7555
	            the 0.7555
	              A 0.7555
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

         Smeeth   489365   1 (10)
	              , 0.5413
	            all 0.5413
	           </S> 0.5413
	           home 0.5413
	            the 0.5413
	          South 0.5413
	              a 0.5413
	         Smeeth 0.5413
	             us 0.2816
	           your 0.0857

       believed   489406   1 (6)
	              a 0.5413
	          moved 0.5413
	              , 0.5413
	       believed 0.5413
	              } 0.1229
	           </S> 0.0857

    Nightingale   489442   1 (9)
	          shall 0.5413
	    Nightingale 0.5413
	              I 0.5413
	             of 0.5097
	            use 0.2816
	            law 0.1825
	           </S> 0.1825
	              , 0.1825
	       basename 0.0857

         nested   489454   1 (8)
	           need 0.5413
	           rule 0.5413
	              a 0.5413
	         nested 0.5413
	             of 0.5097
	           Sang 0.2816
	              , 0.1825
	           </S> 0.0857

              A   489492   1 (6)
	              , 0.7555
	              A 0.7555
	            the 0.7555
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

        Orphean   489501   1 (8)
	              a 0.5413
	           Open 0.5413
	         police 0.5413
	        Orphean 0.5413
	             of 0.5097
	        student 0.5097
	           </S> 0.1825
	              , 0.0857

           1903   489570 inf (7)
	           2005 0.5413
	              a 0.5413
	           1990 0.5413
	           </S> 0.5413
	      therefore 0.5413
	           1993 0.5413
	            the 0.0857

            6th   489646 inf (10)
	            sth 0.7555
	             us 0.7555
	             th 0.7555
	              a 0.5413
	            the 0.5097
	             st 0.5097
	              ) 0.1825
	              , 0.1825
	              6 0.1294
	           </S> 0.0857

           1905   489651 inf (8)
	             pp 0.7555
	           </S> 0.5413
	              a 0.5413
	           2005 0.5413
	              , 0.5413
	              " 0.5413
	           1900 0.5413
	            the 0.0857

     vSeptember   489712   3 (8)
	        October 0.5413
	             us 0.5413
	      September 0.5097
	          other 0.2816
	              , 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

           1904   489723 inf (7)
	              a 0.5413
	            the 0.5413
	          world 0.5413
	              1 0.5413
	           </S> 0.5413
	              , 0.5413
	           2004 0.5413

        secured   489856   2 (10)
	         second 0.7555
	        secured 0.5413
	            old 0.5413
	             us 0.5413
	              a 0.5244
	             of 0.2816
	              , 0.1825
	              . 0.1825
	           </S> 0.1825
	            and 0.0857

     Woodchurch   489867   1 (10)
	            all 0.5413
	              0 0.5413
	     Canterbury 0.5413
	     Woodchurch 0.5413
	            the 0.5413
	              a 0.5413
	              , 0.5413
	             us 0.5244
	          which 0.1825
	           your 0.0857

          24t]i   489894   1 (7)
	           24th 0.5413
	              a 0.5413
	          Patti 0.5413
	              , 0.1825
	              1 0.1825
	           </S> 0.1825
	           2005 0.0857

           1907   489901 inf (8)
	   respectively 0.5413
	           1970 0.5413
	              s 0.5413
	           </S> 0.5413
	           2005 0.5413
	              a 0.5413
	           1906 0.5413
	            the 0.0857

            one   489908   1 (7)
	             us 0.5413
	            one 0.5413
	              a 0.5413
	              , 0.5413
	     specialize 0.5413
	              } 0.1229
	           </S> 0.0857

      September   489924   1 (8)
	             VA 0.5413
	           </S> 0.5413
	      September 0.5413
	              , 0.5413
	            and 0.5413
	              a 0.5413
	          other 0.2816
	            the 0.0857

           1902   489940 inf (8)
	           2005 0.5413
	           1904 0.5413
	           1990 0.5413
	              ( 0.5413
	              s 0.5413
	           </S> 0.5413
	              a 0.5413
	            the 0.0857

            one   489946   1 (6)
	              a 0.5413
	            one 0.5413
	              , 0.5413
	              s 0.5413
	              } 0.1229
	           </S> 0.0857

              a   490000   1 (6)
	              a 0.5413
	             us 0.5413
	            the 0.5413
	              , 0.5413
	              } 0.1229
	           </S> 0.0857

         3'oung   490002   5 (11)
	            oun 0.7316
	          goung 0.5413
	         senior 0.5413
	          Young 0.5097
	          young 0.2656
	        similar 0.2253
	              - 0.1825
	         single 0.1825
	          major 0.1825
	           </S> 0.0857
	            new 0.0655

         female   490009   1 (8)
	             of 0.5413
	              , 0.5413
	         family 0.5413
	      professor 0.5413
	           look 0.5413
	              a 0.5413
	         female 0.5413
	           </S> 0.5413

          North   490019   1 (8)
	            the 0.5413
	           </S> 0.5413
	              , 0.5413
	          North 0.5413
	              a 0.5413
	           Long 0.5413
	          corax 0.5413
	           your 0.0857

   Lincolnshire   490032   1 (9)
	   Lincolnshire 0.5413
	          South 0.5413
	              a 0.5413
	          North 0.5413
	           Ohio 0.5413
	         online 0.5413
	      therefore 0.5413
	           </S> 0.5413
	            the 0.0857

           1899   490063 inf (7)
	           1890 0.5413
	           1989 0.5413
	              a 0.5413
	           </S> 0.5413
	           2005 0.5413
	      therefore 0.5413
	            the 0.0857

              a   490140   1 (6)
	              a 0.5413
	            the 0.5413
	             us 0.5413
	              , 0.5413
	              } 0.1229
	           </S> 0.0857

        October   490179   1 (8)
	           </S> 0.5413
	              a 0.5413
	              , 0.5413
	        October 0.5413
	              - 0.5413
	          Other 0.5413
	       Scotland 0.5413
	            the 0.0857

           1900   490193 inf (6)
	             pp 0.7555
	              a 0.5413
	           2005 0.5413
	           1990 0.5413
	           </S> 0.5413
	            the 0.0857

           1905   490274 inf (10)
	           1995 0.5413
	             19 0.5413
	           2005 0.5413
	              s 0.5413
	           2400 0.5413
	              , 0.5413
	              " 0.5413
	           </S> 0.5413
	              a 0.5413
	            the 0.0857

            two   490281   1 (6)
	              , 0.5413
	            two 0.5413
	             us 0.5413
	              a 0.5413
	              } 0.1229
	           </S> 0.0857

        Li^dlow   490303   1 (12)
	         Ludlow 0.7555
	           Lilo 0.5413
	     Shrewsbury 0.5413
	          Lidol 0.5413
	         Disney 0.5097
	             us 0.5097
	         London 0.5097
	              , 0.2816
	           </S> 0.2816
	              a 0.2656
	         future 0.1825
	            the 0.0857

     Shropshire   490312   1 (8)
	            and 0.5413
	           </S> 0.5413
	              a 0.5413
	      therefore 0.5413
	     Shropshire 0.5413
	        through 0.5097
	            who 0.2656
	            the 0.0857

           1903   490327 inf (9)
	              1 0.7555
	           2003 0.7555
	              , 0.7555
	        writing 0.7555
	           1880 0.5413
	             us 0.5413
	           </S> 0.5244
	              a 0.2816
	            the 0.0857

            and   490334   1 (5)
	            and 0.5413
	              , 0.5413
	            arz 0.5413
	              } 0.1229
	           </S> 0.0857

        Fawilx-   490416   2 (9)
	              , 0.7555
	           Fail 0.5413
	        Fawsley 0.5413
	         Flawil 0.5413
	          Tawil 0.5413
	              a 0.5413
	         Family 0.5413
	              " 0.2816
	           </S> 0.0857

           TURD   490424 inf (7)
	           TURN 0.5413
	            The 0.5413
	            TUR 0.5413
	              a 0.5413
	              , 0.5413
	           </S> 0.5413
	          DUART 0.5413

             ID   490429   1 (6)
	             us 0.5413
	             In 0.5413
	             ID 0.5413
	              , 0.5097
	              ! 0.2816
	           </S> 0.0857

              .   490431   3 (7)
	             us 0.7555
	            the 0.5244
	              . 0.2816
	            and 0.2656
	              , 0.2253
	           </S> 0.1825
	              : 0.0857

             -E   490433 inf (9)
	             -- 0.7555
	              , 0.7555
	              - 0.7555
	             of 0.7555
	              s 0.5413
	              a 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

              .   490435   1 (5)
	             us 0.5413
	              , 0.5413
	              . 0.5413
	            the 0.5413
	           </S> 0.5413

    5«//rtw//r-   490438 inf (8)
	              - 0.7555
	              , 0.7555
	              I 0.7555
	      Therefore 0.5413
	          First 0.5413
	              / 0.5244
	              " 0.2816
	           </S> 0.0857

              5   490450 inf (4)
	              , 0.5413
	             us 0.5413
	            the 0.5413
	           </S> 0.5413

           ILY^   490458   1 (9)
	              K 0.5413
	            ILY 0.5413
	           ILYA 0.5413
	             In 0.5244
	              ) 0.2656
	          think 0.1825
	              , 0.1825
	           </S> 0.1825
	             'm 0.0857

              .   490462   1 (7)
	            not 0.5413
	              , 0.5413
	            the 0.5413
	              . 0.5413
	              L 0.5413
	             us 0.5413
	           </S> 0.5413

      Sardinian   490469   1 (8)
	      Sardinian 0.7555
	       Sardinia 0.7555
	              / 0.5413
	      Passerine 0.5413
	     Associated 0.5413
	              - 0.1825
	       National 0.1825
	           </S> 0.0857

        Svlviii   490489   2 (11)
	              , 0.7555
	              a 0.5413
	        Svilici 0.5413
	          Silvi 0.5413
	           Siii 0.5413
	         Sylvia 0.5413
	          Elvii 0.5413
	           viii 0.5413
	              / 0.5244
	              " 0.2816
	           </S> 0.0857

viclanoccpliaUx   490497 inf (9)
	         Llopis 0.5413
	     particular 0.5413
	              , 0.5413
	        Atlanta 0.5413
	      configure 0.5413
	   Applications 0.5413
	           </S> 0.5413
	              a 0.5413
	      client.pl 0.5413

              ,   490512 inf (3)
	             of 0.5413
	             us 0.5413
	            the 0.5413

           GmEL   490514 inf (8)
	            GEL 0.5413
	             Gm 0.5413
	          BimEL 0.5413
	            Get 0.5413
	           GTEL 0.5413
	              i 0.2816
	             pp 0.2816
	            the 0.0857

              .   490518   1 (5)
	           </S> 0.5413
	              , 0.5413
	             us 0.5413
	              . 0.5413
	            the 0.5413

              A   490521   1 (7)
	           This 0.7555
	              , 0.7555
	            the 0.7555
	              A 0.7555
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

           1907   490565 inf (8)
	           1970 0.5413
	           2005 0.5413
	      therefore 0.5413
	           1900 0.5413
	           </S> 0.5413
	              a 0.5413
	              ) 0.5413
	            the 0.0857

         Parkin   490600   1 (10)
	         Parkin 0.7555
	        carrier 0.5413
	              a 0.5413
	    Kirkpatrick 0.5413
	         unique 0.5413
	          Parus 0.5413
	           Park 0.5244
	      Jefferson 0.1825
	              , 0.0857
	           </S> 0.0655

            Esq   490608   1 (11)
	              a 0.5413
	           Phys 0.5413
	              , 0.5413
	             E. 0.5413
	            Esq 0.5413
	           </S> 0.5413
	            and 0.5413
	             ed 0.5097
	            use 0.2816
	             pp 0.2816
	            the 0.0857

          F.Z.S   490614 inf (9)
	             pp 0.7555
	              i 0.7555
	              . 0.5413
	           FZNS 0.5413
	            FZS 0.5413
	          <UNK> 0.5413
	           </S> 0.5413
	             FZ 0.5413
	            the 0.0857

              .   490619   1 (6)
	           </S> 0.5413
	              / 0.5413
	              . 0.5413
	             us 0.5413
	              , 0.5413
	            the 0.5413

           Wren   490639   1 (10)
	           Wren 0.7555
	           free 0.7555
	        Burgers 0.5413
	            arz 0.5413
	              - 0.5244
	              ) 0.5244
	           </S> 0.2253
	              , 0.2253
	              a 0.1294
	      Cormorant 0.0857

    Breconshire   490675   1 (9)
	    Breconshire 0.7555
	             us 0.5413
	       December 0.5413
	           turn 0.5097
	         Canada 0.2816
	              , 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

           1899   490706 inf (7)
	             pp 0.7555
	              a 0.5413
	           1898 0.5413
	           </S> 0.5413
	           1989 0.5413
	           2005 0.5413
	            the 0.0857

              A   490713   1 (6)
	            the 0.7555
	              A 0.7555
	              , 0.7555
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

           1905   490784 inf (8)
	           1950 0.5413
	              a 0.5413
	              ( 0.5413
	           1909 0.5413
	      therefore 0.5413
	           2005 0.5413
	           </S> 0.5413
	            the 0.0857

            one   490844   1 (6)
	              , 0.5413
	            one 0.5413
	              a 0.5413
	             us 0.5413
	              } 0.1229
	           </S> 0.0857

           1906   490903 inf (9)
	              a 0.5413
	           </S> 0.5413
	           1996 0.5413
	           1990 0.5413
	           1960 0.5413
	      therefore 0.5413
	           2005 0.5413
	              ( 0.5413
	            the 0.0857

         Tresco   490953   1 (10)
	              . 0.5413
	              , 0.5413
	          These 0.5413
	          <UNK> 0.5413
	         Tresco 0.5413
	           </S> 0.5413
	            the 0.5413
	              a 0.5413
	             us 0.2816
	           your 0.0857

         Scilly   490961   1 (10)
	         Scilly 0.7555
	           PRES 0.5413
	            TSO 0.5413
	       Compiled 0.5413
	         Social 0.5097
	              - 0.2816
	              s 0.1825
	           </S> 0.1825
	              a 0.1825
	          <UNK> 0.0857

            ist   490981 inf (9)
	            its 0.7555
	             iu 0.5413
	            ist 0.5413
	              a 0.5413
	              4 0.2816
	              , 0.1825
	              1 0.1825
	           </S> 0.1825
	           2005 0.0857

           1905   490986 inf (9)
	             pp 0.7555
	              a 0.5413
	          <UNK> 0.5413
	           1995 0.5413
	           2005 0.5413
	           1950 0.5413
	           1990 0.5413
	           </S> 0.5413
	            the 0.0857

        Family^   490992   2 (6)
	              , 0.7555
	              a 0.5413
	         Family 0.5413
	              " 0.2816
	              ) 0.2816
	           </S> 0.0857

             Ti   491000 inf (6)
	             To 0.5413
	              , 0.5413
	             iu 0.5413
	              a 0.5413
	           </S> 0.5413
	             Ti 0.5413

             7^   491003 inf (5)
	             us 0.5413
	             of 0.5244
	           </S> 0.1825
	              , 0.1825
	              - 0.0857

           DILL   491006 inf (7)
	            DIL 0.5413
	            DSL 0.5413
	              , 0.5413
	           DILG 0.5413
	         DILLIC 0.5413
	           </S> 0.5413
	              a 0.5413

             -E   491011 inf (7)
	             -- 0.7555
	             of 0.7555
	              M 0.7555
	             us 0.5413
	              - 0.2816
	           </S> 0.1825
	              , 0.0857

              .   491013 inf (5)
	             J. 0.5413
	              , 0.5413
	             us 0.5413
	            the 0.5413
	           </S> 0.5413

 SuhJaniiiy-SYL   491016 inf (9)
	      Searching 0.7555
	              , 0.7555
	              - 0.7555
	          Thank 0.7555
	      ChangeLog 0.7555
	              I 0.7555
	              / 0.5244
	              " 0.2816
	           </S> 0.0857

              J   491031 inf (7)
	             us 0.5413
	            the 0.5413
	           </S> 0.5413
	              , 0.5413
	             NJ 0.5413
	             JR 0.5413
	             JJ 0.5413

           7IA\   491033 inf (9)
	             IA 0.7555
	            FAQ 0.7555
	           RIAA 0.5413
	          Gallo 0.5413
	           AIAA 0.5413
	              A 0.5097
	              , 0.1825
	              K 0.0857
	           </S> 0.0857

             E.   491038   1 (8)
	             of 0.5413
	             us 0.5413
	              a 0.5413
	           </S> 0.5413
	              . 0.5413
	              , 0.5413
	              E 0.5413
	              L 0.5413

        PallAvS   491042 inf (9)
	        Pallavi 0.5413
	          Miers 0.5413
	              I 0.5413
	           Pall 0.5413
	        Pallava 0.5413
	         Pallav 0.5413
	           Hall 0.5097
	              , 0.0857
	           </S> 0.0857

              '   491049 inf (5)
	           </S> 0.5413
	             's 0.5413
	            the 0.5413
	             us 0.5413
	              , 0.5413

              .   491066   4 (6)
	            the 0.7555
	             us 0.5413
	              - 0.5097
	              . 0.2816
	              , 0.1825
	           </S> 0.0857

   Phy/Iosiopus   491069   2 (6)
	              , 0.7555
	              a 0.5413
	   Phylloscopus 0.5413
	    Phyprosopus 0.5413
	              " 0.2816
	           </S> 0.0857

  f^ivrcgit/iis   491082 inf (9)
	        drivers 0.5413
	        scripts 0.5413
	           </S> 0.5413
	              , 0.5413
	              a 0.5413
	          <UNK> 0.5413
	             is 0.5413
	            src 0.5413
	vareSelskap.cgi 0.5413

              .   491095 inf (3)
	             of 0.5413
	             us 0.5413
	            the 0.5413

         single   491098 inf (6)
	              , 0.7555
	              I 0.7555
	         single 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

    Chiffchaffs   491185   2 (6)
	              a 0.7555
	    Chiffchaffs 0.5413
	           </S> 0.5244
	              , 0.5244
	      different 0.5097
	             of 0.0857

        visited   491197   3 (8)
	           </S> 0.7555
	             in 0.7555
	            the 0.5413
	         United 0.5413
	              a 0.5413
	        visited 0.5413
	             us 0.5413
	              , 0.0857

        between   491219   2 (6)
	             of 0.7555
	              a 0.5413
	        between 0.5413
	             in 0.5244
	           </S> 0.2656
	              , 0.0857

          i5tli   491233 inf (10)
	           into 0.7555
	           itil 0.5413
	              a 0.5413
	          ixtli 0.5413
	           Atli 0.5413
	            and 0.2816
	              , 0.1825
	           </S> 0.1825
	              1 0.1825
	           2005 0.0857

           1904   491249 inf (9)
	           2005 0.5413
	            and 0.5413
	           </S> 0.5413
	              a 0.5413
	              ( 0.5413
	              s 0.5413
	           1999 0.5413
	          which 0.2816
	            the 0.0857

             in   491255   1 (7)
	             in 0.5413
	              a 0.5413
	             iu 0.5413
	              , 0.5413
	             d. 0.5413
	              } 0.1229
	           </S> 0.0857

          3'ear   491274   5 (10)
	            ear 0.7555
	           rear 0.7555
	              a 0.5413
	             of 0.5413
	           year 0.2656
	           name 0.2253
	           </S> 0.1825
	              , 0.1825
	              . 0.1825
	           time 0.0857

            one   491280   1 (7)
	             us 0.5413
	             it 0.5413
	              . 0.5413
	              , 0.5413
	              a 0.5413
	           </S> 0.5413
	            one 0.5413

        Tnlloch   491308   1 (9)
	        Tulloch 0.7555
	       Benlloch 0.7555
	       Kavulich 0.5413
	              a 0.5413
	         Taylor 0.5097
	             C. 0.5097
	            and 0.2253
	           </S> 0.1825
	              , 0.0857

             at   491316   1 (6)
	             at 0.5413
	              A 0.5413
	           </S> 0.5413
	             II 0.5413
	              , 0.5413
	            arz 0.5413

           Ma}^   491335   4 (9)
	             Ma 0.7555
	           lava 0.7555
	            Maa 0.7555
	        January 0.2816
	              , 0.2816
	            May 0.2816
	           </S> 0.2253
	              a 0.1825
	            the 0.0857

           27th   491340 inf (7)
	           </S> 0.5413
	             27 0.5413
	              a 0.5413
	           with 0.5413
	           site 0.5413
	              , 0.5413
	          piece 0.5413

         Family   491378   1 (7)
	         Family 0.7555
	              , 0.7555
	              a 0.5413
	              s 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

       TURDID.F   491386 inf (12)
	              a 0.7555
	            rev 0.5413
	           side 0.5413
	              s 0.5413
	         TURYID 0.5413
	          TDIDF 0.5413
	            Vol 0.5413
	              , 0.5413
	              p 0.5413
	             to 0.5244
	            The 0.5244
	           </S> 0.0857

              .   491394   1 (6)
	              , 0.5413
	              . 0.5413
	           </S> 0.5413
	              - 0.5413
	             us 0.5413
	            the 0.5413

      Subjaimly   491397   3 (5)
	              , 0.7555
	              I 0.7555
	      Subfamily 0.5413
	              " 0.2816
	           </S> 0.0857

           -SYL   491407 inf (7)
	           WSYL 0.5413
	              , 0.5413
	            USA 0.5413
	            SYL 0.5413
	      configure 0.5413
	              a 0.5413
	           </S> 0.5413

              I   491412 inf (6)
	             of 0.5413
	             In 0.5413
	             us 0.5413
	            the 0.5413
	             MI 0.5413
	             II 0.5413

          IIN.E   491414   1 (10)
	           IINS 0.5413
	           INEE 0.5413
	            IIN 0.5413
	            III 0.5244
	           said 0.2253
	          think 0.1825
	           </S> 0.1825
	              J 0.1825
	              , 0.1825
	             'm 0.0857

              .   491419   1 (7)
	           </S> 0.5413
	              . 0.5413
	            the 0.5413
	            not 0.5413
	              , 0.5413
	             us 0.5413
	              " 0.5413

  Phy//oscop!is   491448   3 (6)
	              I 0.7555
	              , 0.7555
	   Phylloscopus 0.5413
	              / 0.5244
	              " 0.2816
	           </S> 0.0857

        tristis   491462   1 (6)
	              , 0.5413
	        trusted 0.5413
	      configure 0.5413
	              a 0.5413
	           </S> 0.5413
	        tristis 0.5413

          BlyTH   491471 inf (8)
	          Blyth 0.5413
	            Buy 0.5413
	        PolyTHF 0.5413
	            Bly 0.5413
	           Baya 0.5413
	             pp 0.2816
	              i 0.2816
	            the 0.0857

              .   491476   1 (5)
	           </S> 0.5413
	              , 0.5413
	             us 0.5413
	              . 0.5413
	            the 0.5413

              N   491479 inf (10)
	           This 0.7555
	             IN 0.7555
	            the 0.7555
	             No 0.7555
	              , 0.7555
	             us 0.5413
	             NN 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

        example   491481   1 (6)
	        example 0.7555
	              I 0.5413
	              ) 0.1825
	              , 0.1825
	              / 0.0857
	           </S> 0.0857

     lighthonse   491507   5 (9)
	              , 0.5413
	       discount 0.5413
	           shot 0.5413
	     lightcones 0.5413
	     lighthouse 0.5244
	         little 0.1825
	           time 0.1825
	          major 0.1825
	           </S> 0.0857

            off   491518   1 (6)
	             us 0.5413
	           </S> 0.5413
	             of 0.5413
	            off 0.5413
	              a 0.5413
	              , 0.5413

         Family   491544   1 (6)
	         Family 0.7555
	              , 0.7555
	              a 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

       TURDIL)^   491552 inf (12)
	              D 0.7555
	              a 0.7555
	              ) 0.7555
	            rev 0.5413
	              , 0.5413
	              s 0.5413
	           side 0.5413
	              p 0.5413
	            Vol 0.5413
	             to 0.5244
	            The 0.5244
	           </S> 0.0857

              .   491560   1 (6)
	              , 0.5413
	              . 0.5413
	           </S> 0.5413
	              - 0.5413
	             us 0.5413
	            the 0.5413

     Subfamily-   491563   3 (5)
	              , 0.7555
	              I 0.7555
	      Subfamily 0.5413
	              " 0.2816
	           </S> 0.0857

            SYL   491574 inf (7)
	              , 0.5413
	            See 0.5413
	      configure 0.5413
	             us 0.5413
	              a 0.5413
	           </S> 0.5413
	            SYL 0.5413

              I   491578   1 (7)
	              I 0.7555
	             us 0.5413
	            the 0.5413
	              , 0.2656
	          canal 0.2253
	           </S> 0.1825
	              - 0.0857

         'IIN.E   491580 inf (10)
	         PRINCE 0.7555
	           EINE 0.5413
	            IIN 0.5413
	            and 0.2816
	           said 0.2656
	              J 0.1825
	           </S> 0.1825
	              , 0.1825
	          think 0.1825
	             'm 0.0857

              .   491586   1 (7)
	           </S> 0.5413
	              . 0.5413
	            the 0.5413
	            not 0.5413
	              , 0.5413
	             us 0.5413
	              " 0.5413

       Greenish   491593   1 (8)
	       Greenish 0.7555
	              X 0.5413
	       Whomping 0.5413
	              / 0.5413
	      Territory 0.5413
	          Great 0.1825
	              - 0.1825
	           </S> 0.0857

         Willow   491602   1 (9)
	          Ahead 0.5413
	        Windows 0.5413
	              I 0.5413
	             of 0.5413
	         Willow 0.5413
	              , 0.5097
	         Yellow 0.5097
	           </S> 0.2816
	            Rec 0.0857

              .   491617   4 (6)
	            the 0.7555
	             us 0.5413
	              - 0.5097
	              . 0.2816
	              , 0.1825
	           </S> 0.0857

  Phylloscopiis   491620   2 (6)
	              , 0.7555
	   Phylloscopus 0.5413
	              a 0.5413
	 Phylloscopidae 0.5413
	              " 0.2816
	           </S> 0.0857

     viridaiius   491634 inf (10)
	     viridariis 0.5413
	              , 0.5413
	              a 0.5413
	     viridarium 0.5413
	      configure 0.5413
	        viridas 0.5413
	      viridamus 0.5413
	         Friday 0.5413
	           </S> 0.5413
	      viridarii 0.5413

              ,   491644 inf (3)
	             of 0.5413
	             us 0.5413
	            the 0.5413

          Blvth   491646 inf (6)
	            But 0.5413
	          Blyth 0.5413
	            Blv 0.5413
	             pp 0.2816
	              i 0.2816
	            the 0.0857

              .   491651   1 (5)
	           </S> 0.5413
	              , 0.5413
	             us 0.5413
	              . 0.5413
	            the 0.5413

              a   491718   1 (6)
	              a 0.5413
	              , 0.5413
	            the 0.5413
	             us 0.5413
	              } 0.1229
	           </S> 0.0857

           Sule   491734   1 (10)
	             of 0.5413
	              s 0.5413
	           Site 0.5413
	           Sule 0.5413
	           </S> 0.4979
	              , 0.2656
	              . 0.2253
	            the 0.1825
	              a 0.1825
	            out 0.0857

     Lighthouse   491746   1 (6)
	     Lighthouse 0.7555
	             C. 0.5413
	              a 0.5413
	       Sumburgh 0.5244
	           </S> 0.1825
	              , 0.0857

Siitherlandshire   491758   4 (9)
	           </S> 0.7555
	            The 0.7555
	              - 0.7555
	      Australia 0.5413
	           PRES 0.5413
	Sutherlandshire 0.5413
	              s 0.5097
	              a 0.5097
	          <UNK> 0.0857

           1902   491795 inf (7)
	             pp 0.7555
	              a 0.5413
	              ) 0.5413
	           1901 0.5413
	           </S> 0.5413
	           2005 0.5413
	            the 0.0857

            Two   491801   1 (8)
	              , 0.7555
	            Top 0.7555
	            Two 0.7555
	             us 0.5413
	              a 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

       couiinou   491818 inf (13)
	              a 0.5413
	       coutiaou 0.5413
	       Whomping 0.5413
	              . 0.5413
	         couina 0.5413
	        cominou 0.5413
	       couinons 0.5413
	              , 0.5413
	        counion 0.5413
	          major 0.5413
	           most 0.1825
	        company 0.1825
	           </S> 0.0857

         Willow   491827   1 (8)
	              a 0.5413
	              , 0.5413
	              . 0.5413
	            non 0.5413
	           </S> 0.5413
	        Windows 0.5413
	         Willow 0.5413
	             of 0.5413

          fouud   491847   4 (8)
	           foud 0.7555
	            fou 0.7555
	         killed 0.2656
	              , 0.1825
	          found 0.1825
	              a 0.1825
	           </S> 0.1825
	            not 0.0857

      Shetlauds   491890   1 (10)
	      Shetlands 0.7555
	              , 0.5413
	            war 0.5413
	    Netherlands 0.5413
	       Shetland 0.5244
	          State 0.2253
	           same 0.1825
	             US 0.1825
	          world 0.1825
	           </S> 0.0857

             in   491900   1 (6)
	             iu 0.5413
	              , 0.5413
	              a 0.5413
	             in 0.5413
	             of 0.5413
	           </S> 0.5413

              -   491923   5 (7)
	             DT 0.5413
	             us 0.5413
	            the 0.5244
	             of 0.5097
	              - 0.1825
	           </S> 0.0857
	              , 0.0655

         Fnmtlx   491986   2 (8)
	              , 0.7555
	         Family 0.5413
	         Ccnmtl 0.5413
	              a 0.5413
	            Fnm 0.5413
	         Fantax 0.5413
	              " 0.2816
	           </S> 0.0857

              -   491993   1 (5)
	              , 0.5413
	              - 0.5413
	             us 0.5413
	            the 0.5413
	           </S> 0.5413

             TL   491995 inf (8)
	              s 0.5413
	             TL 0.5244
	              . 0.2816
	             To 0.2816
	              a 0.2253
	           mail 0.1825
	             to 0.1825
	           </S> 0.0857

          ^RDID   491998 inf (10)
	            DVD 0.7555
	              a 0.5413
	          ARDIS 0.5413
	            DID 0.5413
	             us 0.5413
	            RDI 0.5413
	              ) 0.1825
	              - 0.0857
	              , 0.0857
	           </S> 0.0655

              .   492003   1 (5)
	              , 0.5413
	            the 0.5413
	              . 0.5413
	             us 0.5413
	           </S> 0.5413

             E.   492005 inf (8)
	             of 0.7555
	             El 0.7555
	              , 0.7555
	              I 0.7555
	              . 0.7555
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

 Sii/^/,u>n/\-S   492009 inf (6)
	           Side 0.7555
	              A 0.7555
	             Am 0.5413
	          Smith 0.5244
	           </S> 0.0857
	              , 0.0857

              J   492024   1 (7)
	           </S> 0.5413
	             NJ 0.5413
	             J. 0.5413
	             JJ 0.5413
	            the 0.5413
	             us 0.5413
	              , 0.5413

              Z   492026 inf (9)
	             us 0.7555
	             AZ 0.7555
	             ZZ 0.7555
	             ZA 0.5413
	            the 0.5244
	              & 0.1825
	              , 0.1825
	              K 0.0857
	           </S> 0.0857

            VLV   492030   2 (9)
	             us 0.7555
	              a 0.5413
	      Financial 0.5413
	            VLV 0.5413
	            DVD 0.5244
	            Med 0.2816
	              , 0.1825
	              K 0.0857
	           </S> 0.0857

              E   492035 inf (9)
	             El 0.7555
	            the 0.7555
	              , 0.7555
	             us 0.5413
	             RE 0.5413
	             EE 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

         Rufous   492043   1 (8)
	         Rufous 0.7555
	          rufus 0.7555
	              / 0.5413
	     Associated 0.5413
	         Rudolf 0.5244
	           four 0.2816
	              - 0.1825
	           </S> 0.0857

              .   492057   3 (5)
	            the 0.7555
	             us 0.5413
	              . 0.2816
	              , 0.1825
	           </S> 0.0857

          Aidon   492060   2 (11)
	              , 0.7555
	          Aedon 0.5413
	              a 0.5413
	          Aidoo 0.5413
	           Aido 0.5413
	         Aidone 0.5413
	          Adino 0.5413
	          Audio 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

     (^alcnimAs   492066 inf (9)
	      configure 0.5413
	   Applications 0.5413
	        general 0.5413
	           libs 0.5413
	  mkinstalldirs 0.5413
	        scripts 0.5413
	              a 0.5413
	              , 0.1825
	           </S> 0.0857

              ,   492076 inf (5)
	             us 0.5413
	             of 0.5413
	            the 0.5413
	           </S> 0.5413
	            Big 0.5413

           Temm   492078 inf (8)
	          Temmu 0.5413
	            The 0.5413
	           Temp 0.5413
	           Teme 0.5413
	            Tem 0.5413
	             pp 0.2816
	              i 0.2816
	            the 0.0857

           THIS   492085   1 (5)
	              , 0.7555
	              I 0.7555
	           THIS 0.7555
	              " 0.2816
	           </S> 0.0857

           rare   492090   1 (8)
	           rare 0.7555
	            are 0.7555
	            arz 0.5413
	              A 0.5097
	              , 0.2816
	             is 0.2816
	           </S> 0.1825
	             IS 0.0857

         Family   492152   1 (5)
	              , 0.7555
	         Family 0.7555
	              a 0.5413
	              " 0.2816
	           </S> 0.0857

       TURDID.E   492160 inf (11)
	              a 0.7555
	            rev 0.5413
	              s 0.5413
	              , 0.5413
	         TURYID 0.5413
	           side 0.5413
	              p 0.5413
	            Vol 0.5413
	             to 0.5244
	            The 0.5244
	           </S> 0.0857

              .   492168   1 (6)
	              , 0.5413
	              . 0.5413
	           </S> 0.5413
	              - 0.5413
	             us 0.5413
	            the 0.5413

 Siih/auiilySYL   492171 inf (9)
	              I 0.7555
	          While 0.7555
	          Since 0.7555
	           Only 0.7555
	      Searching 0.7555
	              , 0.7555
	              / 0.5244
	              " 0.2816
	           </S> 0.0857

              I   492186 inf (7)
	             us 0.5413
	             II 0.5413
	            the 0.5413
	           </S> 0.5413
	              , 0.5413
	             MI 0.5413
	             In 0.5413

          IIN^E   492188   1 (10)
	           IINS 0.5413
	           INEE 0.5413
	            IIN 0.5413
	            III 0.5244
	           said 0.2253
	              , 0.1825
	          think 0.1825
	              J 0.1825
	           </S> 0.1825
	             'm 0.0857

              .   492193   1 (7)
	           </S> 0.5413
	              . 0.5413
	            the 0.5413
	            not 0.5413
	              , 0.5413
	             us 0.5413
	              " 0.5413

        Warbler   492212   1 (11)
	        Warbler 0.7555
	              a 0.5413
	        problem 0.5413
	             us 0.5413
	          Sound 0.5413
	              , 0.5244
	              ) 0.5244
	              - 0.5097
	     Securities 0.1825
	           </S> 0.1294
	             by 0.0857

              .   492219   3 (5)
	            the 0.7555
	             us 0.5413
	              . 0.2816
	              , 0.1825
	           </S> 0.0857

         Acdoii   492222   2 (12)
	              , 0.7555
	         Ardoin 0.5413
	           Acii 0.5413
	         Acodia 0.5413
	         Acilii 0.5413
	              a 0.5413
	            Acd 0.5413
	          Audio 0.5413
	          Aedon 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

     fnmiliaris   492229   1 (7)
	        miliari 0.5413
	          <UNK> 0.5413
	              a 0.5413
	              , 0.5413
	       miliaria 0.5413
	     familiaris 0.5413
	           </S> 0.5413

              .   492239 inf (3)
	             of 0.5413
	             us 0.5413
	            the 0.5413

              A   492242   1 (7)
	           This 0.7555
	              , 0.7555
	            the 0.7555
	              A 0.7555
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

           1907   492288 inf (8)
	             pp 0.7555
	           1997 0.5413
	           1970 0.5413
	              a 0.5413
	           1990 0.5413
	           </S> 0.5413
	           2005 0.5413
	            the 0.0857

         Family   492295   1 (6)
	         Family 0.7555
	              , 0.7555
	              a 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

           TURD   492304 inf (12)
	          DUART 0.7555
	            TUR 0.7555
	              s 0.5413
	       friendly 0.5413
	              v 0.5413
	              , 0.5413
	           TURN 0.5244
	              a 0.2253
	            The 0.1825
	              > 0.1825
	             to 0.1825
	           </S> 0.0857

             ID   492309   1 (9)
	              ' 0.5413
	             ID 0.5413
	             us 0.5413
	             In 0.5413
	              a 0.5413
	         domain 0.5413
	              - 0.5244
	              , 0.5097
	           </S> 0.0857

              ^   492312 inf (7)
	             us 0.7555
	            the 0.5244
	             by 0.5097
	          83701 0.5097
	              , 0.2253
	           </S> 0.1825
	              : 0.0857

              .   492313   5 (7)
	             us 0.7555
	           7ego 0.5413
	            the 0.5244
	              , 0.2816
	              . 0.2656
	           </S> 0.1825
	          <UNK> 0.0857

     Subfamily-   492316   2 (7)
	              , 0.7555
	      Subfamily 0.5413
	              a 0.5413
	              s 0.5413
	              / 0.5244
	              " 0.2816
	           </S> 0.0857

            SYL   492327 inf (7)
	           </S> 0.5413
	            See 0.5413
	              , 0.5413
	             us 0.5413
	              a 0.5413
	            org 0.5413
	            SYL 0.5413

              I   492331   1 (7)
	              I 0.7555
	             us 0.5413
	            the 0.5413
	              , 0.2656
	          canal 0.2253
	           </S> 0.1825
	              - 0.0857

           IIN^   492333   1 (9)
	           IINS 0.5413
	            IIN 0.5413
	             IN 0.5244
	           said 0.2253
	              , 0.1825
	              J 0.1825
	           </S> 0.1825
	          think 0.1825
	             'm 0.0857

              .   492337   1 (6)
	           </S> 0.5413
	            the 0.5413
	             us 0.5413
	              . 0.5413
	            not 0.5413
	              , 0.5413

          Radde   492340   4 (7)
	             It 0.7555
	              I 0.7555
	              , 0.7555
	           Rate 0.5413
	          Radde 0.5413
	              " 0.2816
	           </S> 0.0857

             's   492345   6 (6)
	             is 0.5413
	             us 0.5413
	              a 0.5413
	           </S> 0.2816
	              , 0.1825
	             's 0.0857

     Lusciniola   492363 inf (7)
	         Listen 0.7555
	              , 0.7555
	              a 0.5413
	       luscinia 0.5413
	       Luscinia 0.5413
	              " 0.2816
	           </S> 0.0857

       sckwarzi   492374   1 (7)
	              , 0.5413
	       schwarzi 0.5413
	           </S> 0.5413
	          swarz 0.5413
	        Schwarz 0.5413
	              a 0.5413
	      configure 0.5413

              ,   492382 inf (3)
	             of 0.5413
	             us 0.5413
	            the 0.5413

          Radde   492384   1 (5)
	          Radde 0.5413
	              i 0.2816
	           made 0.2816
	             pp 0.2816
	            the 0.0857

              A   492392   1 (7)
	           This 0.7555
	              , 0.7555
	            the 0.7555
	              A 0.7555
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

            Mr.   492477   6 (7)
	            arz 0.7555
	             My 0.5244
	              , 0.2816
	              a 0.1825
	           </S> 0.1825
	            Mr. 0.1294
	            the 0.0857

         Haigli   492481 inf (15)
	           Haig 0.7555
	        Haigler 0.7555
	          Haili 0.5413
	      merchants 0.5413
	     Bertenshaw 0.5413
	              a 0.5413
	         Hagali 0.5413
	         Haigui 0.5413
	         Haugli 0.5413
	           High 0.5244
	              , 0.2816
	             J. 0.2816
	        Speaker 0.1825
	           </S> 0.1825
	       Chairman 0.0857

              .   492487   1 (6)
	             us 0.5413
	              . 0.5413
	            the 0.5413
	              , 0.5413
	           </S> 0.5413
	          Happy 0.5413

         Family   492489   1 (6)
	         Family 0.7555
	              , 0.7555
	              I 0.7555
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

             --   492496   4 (6)
	             us 0.5413
	             of 0.2253
	            Guy 0.2253
	              - 0.1825
	              , 0.1825
	           </S> 0.0857

             Tl   492499 inf (9)
	             Tl 0.7555
	          World 0.5413
	              L 0.5413
	             us 0.5244
	              , 0.2816
	             To 0.2816
	          <UNK> 0.1825
	              a 0.1825
	           </S> 0.0857

              '   492502   4 (7)
	            the 0.7555
	             -- 0.7555
	             us 0.5413
	              ' 0.5244
	              , 0.2253
	              - 0.1825
	           </S> 0.0857

           KDID   492503 inf (10)
	            KDI 0.7555
	           KDDI 0.7555
	           KDIC 0.5413
	       Estrange 0.5413
	            DVD 0.5244
	              a 0.2816
	              s 0.1825
	              ) 0.1825
	           </S> 0.0857
	              , 0.0655

              .   492507   1 (7)
	           </S> 0.5413
	              . 0.5413
	            the 0.5413
	              ' 0.5413
	              , 0.5413
	             us 0.5413
	           2004 0.0857

             E.   492509 inf (9)
	              , 0.7555
	             of 0.7555
	             El 0.7555
	              I 0.7555
	              . 0.7555
	             us 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

 Su/ifaniuy-SVL   492513 inf (10)
	              ' 0.7555
	              A 0.7555
	    Publication 0.7555
	              / 0.7555
	  config.status 0.5413
	        Stanley 0.5413
	            and 0.5244
	              - 0.5244
	           </S> 0.0857
	              , 0.0857

              I   492528 inf (7)
	           </S> 0.5413
	             MI 0.5413
	            the 0.5413
	              , 0.5413
	             us 0.5413
	             II 0.5413
	             In 0.5413

              '   492530 inf (5)
	             us 0.7555
	            the 0.5097
	           </S> 0.1825
	              , 0.1825
	             'm 0.0857

           ILWF   492531 inf (11)
	            ILW 0.7555
	           IWFL 0.5413
	           ILWU 0.5413
	              a 0.2816
	            not 0.2816
	             it 0.2816
	             In 0.2816
	              ) 0.1825
	              s 0.1825
	           </S> 0.0857
	              , 0.0655

              .   492535   1 (6)
	           </S> 0.5413
	              . 0.5413
	             us 0.5413
	              ' 0.5413
	            the 0.5413
	              , 0.5413

       Cetti'vS   492538 inf (8)
	              I 0.7555
	              , 0.7555
	          Cetti 0.5413
	        Settiva 0.5413
	         Cettia 0.5413
	              / 0.5244
	              " 0.2816
	           </S> 0.0857

        Warrlkr   492547 inf (8)
	           Warr 0.5413
	           </S> 0.5413
	        Warrior 0.5413
	              , 0.5413
	          <UNK> 0.5413
	         Warral 0.5413
	              a 0.5413
	       Warkalki 0.5413

              .   492554 inf (3)
	             of 0.5413
	             us 0.5413
	            the 0.5413

         Cetfin   492557   3 (11)
	              , 0.7555
	              I 0.7555
	        Jetfins 0.5413
	         Ceftin 0.5413
	         Cetlin 0.5413
	         Cettia 0.5413
	         Celtic 0.5413
	          Cetin 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

         ccttii   492564 inf (12)
	            tii 0.5413
	              , 0.5413
	      accattivi 0.5413
	         cuttie 0.5413
	          citii 0.5413
	              a 0.5413
	        cutting 0.5413
	      configure 0.5413
	         Vettii 0.5413
	           </S> 0.5413
	            cti 0.5413
	         Cettia 0.5413

              ,   492570 inf (3)
	             of 0.5413
	             us 0.5413
	            the 0.5413

           Marm   492572   1 (6)
	           More 0.5413
	           Marm 0.5413
	            arz 0.5413
	              i 0.2816
	             pp 0.2816
	            the 0.0857

              .   492576   3 (6)
	             us 0.5413
	            the 0.5413
	              . 0.2816
	           </S> 0.2253
	              , 0.2253
	             .. 0.0857

              A   492579   1 (7)
	           This 0.7555
	            the 0.7555
	              A 0.7555
	              , 0.7555
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

           Ma}'   492617   4 (9)
	             Ma 0.7555
	           lava 0.7555
	            Maa 0.7555
	              , 0.2816
	            May 0.2816
	        January 0.2816
	           </S> 0.2253
	              a 0.1825
	            the 0.0857

           12th   492622 inf (8)
	           16th 0.5413
	              , 0.5413
	           with 0.5413
	              1 0.5413
	              a 0.5413
	           site 0.5413
	             12 0.5413
	           </S> 0.5413

           1904   492628 inf (7)
	             pp 0.7555
	           2005 0.5413
	           </S> 0.5413
	              ) 0.5413
	              a 0.5413
	           1900 0.5413
	            the 0.0857

            One   492635   1 (8)
	            One 0.7555
	              , 0.7555
	            one 0.5413
	              a 0.5413
	             us 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

       Icterine   492654   1 (11)
	       Icterine 0.7555
	              , 0.5413
	        present 0.5413
	              a 0.5413
	          major 0.5413
	         latter 0.5413
	              . 0.5413
	       Internet 0.1825
	           most 0.1825
	            use 0.1825
	           </S> 0.0857

         Cromer   492683   1 (11)
	           home 0.5413
	          night 0.5413
	              , 0.5413
	            the 0.5413
	         Center 0.5413
	            all 0.5413
	              a 0.5413
	         Cromer 0.5413
	           </S> 0.5413
	             us 0.2816
	           your 0.0857

            one   492715   1 (7)
	            one 0.5413
	              , 0.5413
	            and 0.5413
	              a 0.5413
	             us 0.5413
	              } 0.1229
	           </S> 0.0857

            one   492752   1 (6)
	            one 0.5413
	              a 0.5413
	              , 0.5413
	             us 0.5413
	              } 0.1229
	           </S> 0.0857

      September   492783   1 (10)
	       December 0.7555
	      September 0.7555
	          major 0.5413
	           </S> 0.2816
	         before 0.2656
	             it 0.1825
	              , 0.1825
	              a 0.1825
	             to 0.1825
	             in 0.0857

            one   492801   1 (6)
	              , 0.5413
	             us 0.5413
	              a 0.5413
	            one 0.5413
	              } 0.1229
	           </S> 0.0857

           Cley   492813   1 (11)
	            the 0.5413
	              a 0.5413
	           City 0.5413
	           alba 0.5413
	           </S> 0.5413
	           home 0.5413
	           this 0.5413
	              , 0.5413
	           Cley 0.5413
	            all 0.5413
	           your 0.0857

        Holkham   492855   1 (11)
	           </S> 0.5413
	           home 0.5413
	              , 0.5413
	            the 0.5413
	           Home 0.5413
	        Holkham 0.5413
	      Annapolis 0.5413
	            all 0.5413
	              a 0.5413
	             us 0.2816
	           your 0.0857

            one   492884   1 (6)
	            one 0.5413
	              , 0.5413
	              a 0.5413
	             us 0.5413
	              } 0.1229
	           </S> 0.0857

          Knock   492905   1 (8)
	              . 0.7555
	          Knock 0.7555
	           know 0.5413
	             of 0.5413
	              a 0.5413
	           </S> 0.5244
	              , 0.5244
	           Town 0.0857

      Lightship   492911   3 (8)
	         Lights 0.7555
	           Road 0.7555
	      Lightship 0.5413
	              a 0.5244
	           </S> 0.2816
	              , 0.1825
	          Knock 0.1825
	              - 0.0857

      September   492922   1 (5)
	              " 0.5413
	              a 0.5413
	              , 0.5413
	      September 0.5413
	            the 0.0857

            one   492939   1 (6)
	            one 0.5413
	              a 0.5413
	              , 0.5413
	             us 0.5413
	              } 0.1229
	           </S> 0.0857

           June   492961   3 (7)
	          Munia 0.5413
	            Jan 0.5244
	           June 0.5097
	              , 0.2816
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

            one   492973   1 (6)
	              , 0.5413
	              a 0.5413
	             us 0.5413
	            one 0.5413
	              } 0.1229
	           </S> 0.0857

         Family   493049   1 (6)
	         Family 0.7555
	              , 0.7555
	              a 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

        TURDID^   493057 inf (12)
	            rev 0.5413
	           TURI 0.5413
	         TURYID 0.5413
	           side 0.5413
	              s 0.5413
	              p 0.5413
	            Vol 0.5413
	              , 0.5413
	              a 0.2656
	            The 0.1825
	             to 0.1825
	           </S> 0.0857

              .   493064   1 (6)
	              , 0.5413
	              . 0.5413
	           </S> 0.5413
	              - 0.5413
	             us 0.5413
	            the 0.5413

     Subfamily-   493067   3 (5)
	              , 0.7555
	              I 0.7555
	      Subfamily 0.5413
	              " 0.2816
	           </S> 0.0857

            SYL   493078 inf (6)
	            See 0.5413
	             us 0.5413
	              a 0.5413
	              , 0.5413
	           </S> 0.5413
	            SYL 0.5413

          VIIN^   493082 inf (8)
	              I 0.7555
	            VII 0.5413
	           VIII 0.5413
	            VIN 0.5413
	              , 0.2656
	          canal 0.2253
	           </S> 0.1825
	              - 0.0857

              .   493087   1 (5)
	              . 0.5413
	             us 0.5413
	            the 0.5413
	              , 0.5413
	           </S> 0.5413

      Melodious   493094 inf (8)
	      melodious 0.7555
	              / 0.5413
	      Melodinus 0.5413
	          Music 0.5413
	      Passerine 0.5413
	     Associated 0.5413
	              - 0.1825
	           </S> 0.0857

       Hypolais   493114   2 (7)
	              , 0.7555
	              a 0.5413
	       Hypnosis 0.5413
	       Hypolais 0.5413
	              / 0.5244
	              " 0.2816
	           </S> 0.0857

     polyglolla   493123 inf (8)
	    polygonella 0.5413
	           </S> 0.5413
	              , 0.5413
	      configure 0.5413
	       polyglot 0.5413
	           pool 0.5413
	       polygala 0.5413
	              a 0.5413

              ,   493133 inf (3)
	             of 0.5413
	             us 0.5413
	            the 0.5413

         ViEILL   493135 inf (7)
	             pp 0.7555
	              i 0.7555
	           VEIL 0.5413
	            ILL 0.5413
	         ViEWER 0.5413
	           with 0.5097
	            the 0.0857

              .   493141   1 (5)
	           </S> 0.5413
	              , 0.5413
	             us 0.5413
	              . 0.5413
	            the 0.5413

             AN   493144   4 (9)
	           This 0.7555
	              , 0.7555
	              I 0.7555
	             us 0.5413
	             AM 0.5413
	             AN 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

        example   493147   1 (7)
	        example 0.7555
	       document 0.5413
	              E 0.2816
	      EMERGENCY 0.2816
	              , 0.1825
	           </S> 0.0857
	            ACT 0.0857

        Burwash   493171   1 (11)
	              , 0.5413
	           </S> 0.5413
	            the 0.5413
	              0 0.5413
	         Bosham 0.5413
	              a 0.5413
	            all 0.5413
	        Burwash 0.5413
	            was 0.5097
	             us 0.2816
	           your 0.0857

              a   493198   1 (6)
	             us 0.5413
	              a 0.5413
	              , 0.5413
	            the 0.5413
	              } 0.1229
	           </S> 0.0857

       Ninfield   493219   2 (10)
	           well 0.7555
	           </S> 0.5413
	              , 0.5413
	            all 0.5413
	           home 0.5413
	            the 0.5413
	              a 0.5413
	       Ninfield 0.5413
	             us 0.5244
	           your 0.0857

            May   493241   2 (9)
	              a 0.7555
	           hand 0.5413
	            may 0.5413
	            cia 0.5413
	            May 0.5413
	             of 0.5097
	           </S> 0.5097
	              , 0.2816
	             to 0.0857

            one   493252   1 (7)
	             us 0.5413
	              , 0.5413
	             it 0.5413
	            one 0.5413
	              a 0.5413
	              } 0.1229
	           </S> 0.0857

    Lighthoi:se   493281 inf (8)
	           Road 0.5413
	     Lighthouse 0.5244
	              M 0.5097
	          Light 0.5097
	         Island 0.2656
	              , 0.1825
	           </S> 0.1825
	             of 0.0857

              ,   493294   1 (5)
	              , 0.5413
	           </S> 0.5413
	             us 0.5413
	            the 0.5413
	        Kinsale 0.5413

            co.   493296   1 (10)
	             co 0.5413
	            can 0.5413
	              a 0.5413
	           </S> 0.5413
	            com 0.5413
	            coo 0.5413
	              ( 0.5413
	             SC 0.5413
	            cia 0.5413
	            the 0.0857

           Cork   493300   3 (8)
	        Wicklow 0.7555
	           </S> 0.7555
	           Cork 0.5413
	           work 0.5413
	              a 0.5413
	         Corvus 0.5413
	              , 0.2816
	            mar 0.0857

            the   493335   1 (5)
	              , 0.5413
	            the 0.5413
	             us 0.5413
	              } 0.1229
	           </S> 0.0857

           Rev.   493339   3 (10)
	           Reve 0.7555
	         letter 0.5413
	           Read 0.5244
	           Revo 0.5244
	           lava 0.5244
	            Rev 0.5244
	              - 0.2253
	           same 0.1825
	          first 0.1825
	           </S> 0.0857

         Mathew   493350   1 (7)
	         rather 0.7555
	         Mathew 0.7555
	             M. 0.5413
	          There 0.5097
	              I 0.2253
	              , 0.0857
	           </S> 0.0857

          heard   493357   2 (7)
	            are 0.7555
	          heard 0.5413
	           hard 0.5413
	              a 0.5413
	            arz 0.5413
	              , 0.1825
	           </S> 0.0857

       Warblers   493367   2 (8)
	       Wireless 0.7555
	              a 0.5413
	       Warblers 0.5413
	        cablets 0.5413
	              , 0.1825
	             of 0.1825
	           </S> 0.1825
	              - 0.0857

           near   493376   1 (8)
	           near 0.7555
	              a 0.5413
	            new 0.5413
	          three 0.5413
	            arz 0.5413
	              . 0.1825
	           </S> 0.1825
	              , 0.0857

             he   493444   1 (6)
	              , 0.5413
	             us 0.5413
	              a 0.5413
	             he 0.5413
	              } 0.1229
	           </S> 0.0857

      Melodious   493467 inf (9)
	      melodious 0.7555
	      Melodinus 0.5413
	       products 0.5413
	             us 0.5413
	              , 0.2253
	            the 0.1825
	           </S> 0.1825
	              . 0.1825
	              a 0.0857

       Warblers   493477   5 (8)
	        problem 0.5413
	              a 0.5413
	             to 0.5413
	        cablets 0.5413
	       Warblers 0.5244
	           </S> 0.5097
	              , 0.2816
	        Warbler 0.0857

         nested   493500   1 (6)
	         nested 0.7555
	              a 0.5413
	           need 0.2253
	           </S> 0.2253
	              , 0.1229
	            are 0.0857

      Shetlands   493556   1 (10)
	             SC 0.5413
	           </S> 0.5413
	      therefore 0.5413
	      Shetlands 0.5413
	              a 0.5413
	            Man 0.5413
	       Shetland 0.5413
	          these 0.2816
	            who 0.1825
	            the 0.0857

           1906   493586 inf (8)
	           </S> 0.5413
	      therefore 0.5413
	              ( 0.5413
	           2005 0.5413
	           1960 0.5413
	           1909 0.5413
	              a 0.5413
	            the 0.0857

        Warbler   493657   4 (9)
	       wrapping 0.5413
	              s 0.5413
	          water 0.5413
	        Warbler 0.5244
	              . 0.2816
	              a 0.2253
	             to 0.1825
	             up 0.1825
	           </S> 0.0857

             Au   493737 inf (8)
	              , 0.7555
	              a 0.5413
	             us 0.5413
	             AM 0.5413
	             Au 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

        example   493740   1 (6)
	              a 0.5413
	        example 0.5413
	        content 0.5413
	           </S> 0.1825
	              , 0.1825
	           Pair 0.0857

              a   493823   1 (6)
	              a 0.5413
	              , 0.5413
	            the 0.5413
	             us 0.5413
	              } 0.1229
	           </S> 0.0857

        Bexhill   493833   1 (10)
	        Bexhill 0.5413
	           </S> 0.5413
	           home 0.5413
	              a 0.5413
	            all 0.5413
	            the 0.5413
	              , 0.5413
	             us 0.2816
	           will 0.2816
	           your 0.0857

            one   493856   1 (7)
	              , 0.5413
	            and 0.5413
	             us 0.5413
	              a 0.5413
	            one 0.5413
	              } 0.1229
	           </S> 0.0857

  Christclinrch   493863   2 (11)
	        version 0.7555
	              0 0.5413
	              , 0.5413
	              a 0.5413
	           that 0.5413
	            all 0.5413
	           </S> 0.5413
	            the 0.5413
	   Christchurch 0.5413
	             us 0.5244
	           your 0.0857

          Hants   493878   1 (9)
	          Hants 0.5413
	              a 0.5413
	            and 0.5413
	           </S> 0.5413
	      therefore 0.5413
	          Parus 0.5413
	           into 0.5097
	            who 0.1825
	            the 0.0857

            one   493899   1 (6)
	              , 0.5413
	             us 0.5413
	            one 0.5413
	              a 0.5413
	              } 0.1229
	           </S> 0.0857

        Horning   493911   1 (12)
	              a 0.5413
	              , 0.5413
	              0 0.5413
	      Braintree 0.5413
	           </S> 0.5413
	            all 0.5413
	          <UNK> 0.5413
	        Horning 0.5413
	            the 0.5413
	        working 0.5097
	             us 0.2816
	           your 0.0857

          there   493943   1 (6)
	              , 0.5413
	              a 0.5413
	          there 0.5413
	         Member 0.5413
	              } 0.1229
	           </S> 0.0857

   Charterhonse   493975   1 (10)
	   Charterhouse 0.7555
	    Netherlands 0.5413
	              , 0.5413
	           data 0.2253
	         number 0.1825
	           same 0.1825
	          world 0.1825
	           next 0.1825
	       Internet 0.1825
	           </S> 0.0857

     collection   493988   1 (6)
	     collection 0.5413
	              , 0.5413
	              a 0.5413
	             of 0.5413
	        section 0.5413
	           </S> 0.5413

           shot   493999   1 (8)
	            she 0.7555
	           shot 0.7555
	           sala 0.5413
	              a 0.5244
	              , 0.1825
	           </S> 0.1825
	              . 0.1825
	             of 0.0857

      Godalming   494007   1 (10)
	          <UNK> 0.5413
	           </S> 0.5413
	      Godalming 0.5413
	             it 0.5413
	              a 0.5413
	              , 0.5413
	            the 0.5413
	        working 0.5097
	             us 0.2816
	           your 0.0857

 Ornithologists   494065   1 (10)
	          trade 0.5413
	         market 0.5413
	 Ornithologists 0.5413
	             us 0.5413
	              , 0.2816
	              a 0.1825
	           </S> 0.1825
	          <UNK> 0.1825
	          those 0.1294
	            the 0.0857

       believed   494096   1 (9)
	       believed 0.5413
	            way 0.5413
	        between 0.5413
	              a 0.5413
	             of 0.1825
	             is 0.1825
	           </S> 0.1825
	              , 0.1825
	              . 0.0857

         Tresco   494136   1 (9)
	          These 0.5413
	            the 0.5413
	          <UNK> 0.5413
	              , 0.5413
	         Tresco 0.5413
	           </S> 0.5413
	              a 0.5413
	             us 0.2816
	           your 0.0857

         Scilly   494144   1 (9)
	         Scilly 0.7555
	            TSO 0.5413
	       Compiled 0.5413
	         Social 0.5097
	              - 0.2816
	              a 0.1825
	           </S> 0.1825
	              s 0.1825
	          <UNK> 0.0857

      Specimens   494167   2 (8)
	              , 0.7555
	          minor 0.5413
	         second 0.5413
	              a 0.5413
	      Specimens 0.5413
	          <UNK> 0.5244
	              " 0.2816
	           </S> 0.0857

        Ireland   494260   3 (8)
	    destination 0.5413
	            and 0.5413
	        Ireland 0.5097
	              a 0.1825
	           </S> 0.1825
	           that 0.1825
	              , 0.1825
	            the 0.0857

     Additional   494298   2 (6)
	              , 0.7555
	              a 0.5413
	           with 0.5413
	     Additional 0.5413
	              " 0.2816
	           </S> 0.0857

       Accentor   494367   6 (11)
	             of 0.5413
	              a 0.5413
	           into 0.5413
	       Wellness 0.5413
	     Convention 0.5413
	       Accentor 0.5244
	              . 0.5097
	            CDA 0.2816
	           </S> 0.1825
	              , 0.1825
	         Skiing 0.0857

            has   494443   2 (5)
	              , 0.7555
	              T 0.5413
	            has 0.5413
	             us 0.5413
	           </S> 0.0857

       Januar}'   494473   1 (11)
	        January 0.5413
	           </S> 0.5413
	              a 0.5413
	              , 0.5413
	            and 0.5413
	             A. 0.5413
	              x 0.5413
	         Januar 0.5413
	        Vermont 0.5413
	      therefore 0.5413
	            the 0.0857

           1905   494483 inf (6)
	              i 0.7555
	      therefore 0.5413
	          <UNK> 0.5413
	             y1 0.5413
	              , 0.5413
	            the 0.0857

      Godalming   494513   1 (9)
	      Godalming 0.7555
	         having 0.5413
	       infrared 0.5097
	             us 0.5097
	              , 0.2816
	           </S> 0.2816
	              a 0.2656
	         future 0.1825
	            the 0.0857

            one   494543   1 (6)
	              , 0.5413
	            one 0.5413
	              a 0.5413
	              s 0.5413
	              } 0.1229
	           </S> 0.0857

        January   494568   3 (9)
	        October 0.5413
	             us 0.5413
	        January 0.4979
	           turn 0.3154
	              , 0.2816
	           fact 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

             it   494641   1 (6)
	              a 0.5413
	             iu 0.5413
	             it 0.5413
	              , 0.5413
	              } 0.1229
	           </S> 0.0857

        Scill}'   494665   1 (10)
	         Scicli 0.7555
	         Scilly 0.7555
	             us 0.5413
	          stock 0.2816
	              , 0.2816
	            all 0.2816
	           2004 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

              .   494672   1 (6)
	            the 0.5413
	              . 0.5413
	           </S> 0.5413
	              : 0.5413
	              , 0.5413
	             us 0.5413

              A   494675   1 (6)
	              , 0.7555
	              A 0.7555
	            the 0.7555
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

        Crested   494858   1 (9)
	        Crested 0.7555
	              / 0.5413
	          major 0.5413
	        Chester 0.5244
	         Center 0.2816
	              - 0.1825
	           same 0.1825
	          first 0.1825
	           </S> 0.0857

            Tit   494866   7 (10)
	            The 0.7555
	              I 0.5413
	             of 0.5413
	         effect 0.5413
	       returned 0.5413
	            cia 0.5413
	            Tit 0.5244
	              , 0.5244
	           </S> 0.1294
	          Butte 0.0857

       Yarmouth   494884   1 (10)
	       Yarmouth 0.7555
	       increase 0.5413
	          South 0.5244
	             us 0.5097
	             or 0.4011
	           </S> 0.2816
	              , 0.2816
	              a 0.2656
	            you 0.1825
	            the 0.0857

              a   494975   1 (6)
	             us 0.5413
	              , 0.5413
	              a 0.5413
	            the 0.5413
	              } 0.1229
	           </S> 0.0857

        Creeper   494982   1 (11)
	        Creeper 0.7555
	              s 0.5413
	        Wstrict 0.5413
	         Center 0.5097
	             it 0.2816
	              . 0.2816
	            old 0.2816
	              a 0.2253
	           year 0.2253
	             to 0.1825
	           </S> 0.0857

       Alderney   495044   1 (8)
	       Alderney 0.7555
	           five 0.5413
	             us 0.5413
	              , 0.2816
	          order 0.2656
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

         Family   495092   1 (7)
	         Family 0.7555
	              , 0.7555
	              a 0.5413
	              / 0.5097
	              " 0.2816
	              ) 0.2816
	           </S> 0.0857

             TA   495103   1 (7)
	             TA 0.7555
	             To 0.7555
	             us 0.5413
	              a 0.5413
	              - 0.1825
	              , 0.1825
	           </S> 0.0857

         CILLID   495106 inf (10)
	         CIALIS 0.5413
	         DILLIC 0.5413
	            USA 0.5413
	           CILL 0.5413
	           City 0.5413
	              A 0.5244
	           </S> 0.1825
	              , 0.1825
	          Dewey 0.1294
	              - 0.0857

              .   495112   1 (5)
	            the 0.5413
	              . 0.5413
	              , 0.5413
	             us 0.5413
	           </S> 0.5413

             -E   495114 inf (9)
	              , 0.7555
	             of 0.7555
	             -- 0.7555
	              - 0.7555
	              I 0.7555
	             us 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

              .   495116   1 (5)
	             us 0.5413
	              , 0.5413
	              . 0.5413
	            the 0.5413
	           </S> 0.5413

        Wagtail   495135   1 (12)
	             us 0.5413
	          again 0.5413
	        Wagtail 0.5413
	         Flying 0.5413
	              a 0.5413
	              - 0.5244
	              ) 0.5244
	              , 0.5097
	         League 0.5097
	       Stranger 0.4979
	           </S> 0.2816
	             by 0.0857

              .   495142   3 (5)
	             us 0.5413
	            the 0.5413
	              . 0.5097
	              , 0.1825
	           </S> 0.0857

             j]   495145 inf (8)
	             of 0.7555
	              , 0.7555
	              I 0.7555
	             us 0.5413
	             ja 0.5413
	              ] 0.5097
	              " 0.2816
	           </S> 0.0857

            lot   495148   1 (6)
	            not 0.5413
	            lot 0.5413
	              a 0.5413
	              , 0.5413
	           </S> 0.5413
	           lava 0.5413

             ac   495152   1 (7)
	             ac 0.7555
	            arz 0.5413
	              I 0.5244
	             at 0.5097
	           </S> 0.2816
	              , 0.2816
	             of 0.0857

           ilia   495155   1 (8)
	           ilia 0.5413
	           alba 0.5413
	             in 0.5097
	              a 0.5097
	              , 0.2656
	           </S> 0.1825
	             dc 0.1825
	              - 0.0857

       60/ra/is   495160 inf (8)
	             is 0.7555
	              a 0.5413
	          oasis 0.5413
	         travis 0.5413
	  thunderstruck 0.5413
	          kulik 0.5244
	              , 0.2816
	           </S> 0.0857

              ,   495168   1 (4)
	             us 0.5413
	            the 0.5413
	           </S> 0.5413
	              , 0.5413

           SuND   495170 inf (12)
	           SEND 0.5413
	             Su 0.5413
	           SSND 0.5413
	            SND 0.5413
	         SuNava 0.5413
	           Site 0.5413
	      ekaterina 0.5413
	          <UNK> 0.5413
	             us 0.5097
	             pp 0.2816
	              i 0.2816
	            the 0.0857

              .   495174   1 (5)
	           </S> 0.5413
	              , 0.5413
	             us 0.5413
	              . 0.5413
	            the 0.5413

           THIS   495177   1 (7)
	              , 0.7555
	            THE 0.7555
	              I 0.7555
	           THIS 0.7555
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

           race   495182   1 (11)
	           side 0.7555
	           race 0.7555
	           each 0.5413
	           kind 0.5413
	        version 0.5413
	           lava 0.5413
	              A 0.5097
	              , 0.2816
	             is 0.2816
	           </S> 0.1825
	             IS 0.0857

           near   495238   1 (9)
	           near 0.7555
	            new 0.7555
	            arz 0.5413
	            the 0.2253
	              , 0.1825
	              a 0.1825
	           </S> 0.1825
	      published 0.0857
	           from 0.0655

             In   495253   1 (6)
	              , 0.7555
	             In 0.7555
	              A 0.7555
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

            two   495304   1 (7)
	           they 0.7555
	            two 0.7555
	             us 0.5413
	          there 0.5413
	              a 0.5244
	              , 0.1825
	           </S> 0.0857

          .shot   495313   3 (8)
	           show 0.7555
	          Ashot 0.5413
	           shot 0.5097
	         killed 0.2656
	              , 0.1825
	              a 0.1825
	           </S> 0.1825
	            not 0.0857

           near   495319   1 (7)
	            new 0.5413
	           near 0.5413
	              a 0.5413
	              , 0.5413
	             to 0.5413
	           </S> 0.5413
	            arz 0.5413

     Willingdon   495324   1 (10)
	     Willingdon 0.7555
	        Phoenix 0.5413
	     Chichester 0.5413
	             us 0.5097
	     Washington 0.5097
	              , 0.2816
	           </S> 0.2816
	              a 0.2656
	         future 0.1825
	            the 0.0857

              A   495344   1 (7)
	              A 0.7555
	            the 0.7555
	              , 0.7555
	             us 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

           Lydd   495426   1 (10)
	           Lydd 0.7555
	            Pyi 0.7555
	           2000 0.5413
	        Derwent 0.5413
	            Add 0.5244
	              , 0.1825
	              a 0.1825
	           more 0.1825
	           </S> 0.1825
	            the 0.0857

              A   495432   1 (6)
	              , 0.7555
	              A 0.7555
	            the 0.7555
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

     Winchelsea   495451   1 (11)
	              a 0.5413
	              , 0.5413
	          these 0.5413
	           home 0.5413
	           </S> 0.5413
	            the 0.5413
	            all 0.5413
	     Winchelsea 0.5413
	          night 0.5413
	             us 0.5244
	           your 0.0857

         Family   495477   1 (6)
	         Family 0.7555
	              , 0.7555
	              a 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

             TA   495488   1 (7)
	             TA 0.7555
	             To 0.7555
	             us 0.5413
	              a 0.5413
	              , 0.1825
	              - 0.1825
	           </S> 0.0857

            CIL   495491   2 (8)
	             In 0.7555
	             us 0.5413
	            CIL 0.5413
	              A 0.5244
	              ' 0.5097
	              , 0.1825
	           </S> 0.1825
	              - 0.0857

              L   495495 inf (8)
	            the 0.7555
	             La 0.5413
	             LL 0.5413
	             FL 0.5413
	             us 0.5413
	  International 0.2816
	              , 0.1825
	           </S> 0.0857

            ID^   495497   4 (11)
	            IDE 0.7555
	            IDD 0.7555
	             In 0.7555
	             ID 0.5097
	           Word 0.5097
	              A 0.5097
	              s 0.2816
	              , 0.1825
	              ) 0.1825
	              M 0.1825
	           </S> 0.0857

              .   495500   1 (7)
	           </S> 0.5413
	              . 0.5413
	              , 0.5413
	              N 0.5413
	            the 0.5413
	             us 0.5413
	              : 0.5413

        Wagtail   495520   1 (12)
	          model 0.5413
	              a 0.5413
	          again 0.5413
	             us 0.5413
	        Wagtail 0.5413
	           Gull 0.5244
	              - 0.5244
	              ) 0.5244
	              , 0.5097
	       Stranger 0.4979
	           </S> 0.2816
	             by 0.0857

      Motacilla   495530   3 (6)
	              I 0.7555
	              , 0.7555
	      Motacilla 0.5413
	              / 0.5244
	              " 0.2816
	           </S> 0.0857

  vulauoccphala   495540 inf (9)
	      Motacilla 0.7555
	  Aulacocephala 0.5413
	     particular 0.5413
	      configure 0.5413
	              a 0.5413
	              , 0.5244
	           </S> 0.5244
	           alba 0.0857
	          flava 0.0857

              ,   495553   1 (4)
	             us 0.5413
	            the 0.5413
	              , 0.5413
	           </S> 0.5413

          LiCHT   495555 inf (9)
	            LiH 0.5413
	            LCH 0.5413
	           LTCH 0.5413
	           List 0.5413
	           LiCl 0.5413
	            CHT 0.5413
	              i 0.2816
	             pp 0.2816
	            the 0.0857

              .   495560   1 (5)
	           </S> 0.5413
	              , 0.5413
	             us 0.5413
	              . 0.5413
	            the 0.5413

              A   495563   1 (7)
	           This 0.7555
	              , 0.7555
	            the 0.7555
	              A 0.7555
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

     Willingdon   495584   1 (10)
	     Willingdon 0.7555
	          times 0.5413
	     Washington 0.5097
	             us 0.5097
	           </S> 0.2816
	              , 0.2816
	          <UNK> 0.2816
	              a 0.2656
	         future 0.1825
	            the 0.0857

           Ma}-   495599   4 (8)
	            Maa 0.7555
	           lava 0.7555
	             Ma 0.7555
	            May 0.2816
	              , 0.2816
	           </S> 0.2253
	              a 0.1825
	            the 0.0857

          ijtli   495604 inf (11)
	             18 0.5413
	          ixtli 0.5413
	           Atli 0.5413
	           site 0.5413
	           ijlt 0.5413
	              a 0.5413
	              , 0.5413
	           into 0.5413
	           </S> 0.5413
	            ijl 0.5413
	        Cejtlin 0.5413

              ,   495609 inf (3)
	             of 0.5413
	             us 0.5413
	            the 0.5413

           1906   495611 inf (8)
	              i 0.7555
	   respectively 0.5413
	              s 0.5413
	              | 0.5413
	             r0 0.5413
	             r1 0.5413
	          which 0.2816
	            the 0.0857

             it   495617   1 (7)
	             it 0.5413
	             iu 0.5413
	              , 0.5413
	              a 0.5413
	         Member 0.5413
	              } 0.1229
	           </S> 0.0857

         flaz'a   495641   1 (13)
	          flava 0.7555
	    information 0.5413
	         Alauda 0.5413
	           faza 0.5413
	         family 0.5413
	            Act 0.5413
	          fazla 0.5413
	              a 0.5413
	            fla 0.5413
	              . 0.2816
	          <UNK> 0.1825
	           </S> 0.1825
	              , 0.0857

             as   495649   1 (9)
	              ( 0.5413
	            and 0.5413
	             as 0.5413
	           </S> 0.5413
	             us 0.5097
	          there 0.1825
	            you 0.1825
	            who 0.1825
	            the 0.0857

      followiug   495664   6 (13)
	              a 0.5413
	    unfollowing 0.5413
	        matches 0.5413
	       extremes 0.5413
	         follow 0.5244
	      following 0.5097
	          major 0.2816
	      countries 0.2816
	              , 0.1825
	           </S> 0.1825
	             of 0.1825
	          years 0.1825
	              - 0.0857

              .   495673   1 (6)
	              , 0.5413
	              . 0.5413
	           </S> 0.5413
	             of 0.5413
	            the 0.5413
	             us 0.5413

             Fa   495676 inf (7)
	             at 0.7555
	              , 0.7555
	              I 0.7555
	             Fa 0.5413
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

            ly-   495682   3 (9)
	             by 0.7555
	            lyx 0.5413
	              s 0.5244
	             ly 0.5244
	              a 0.5244
	              / 0.2816
	              , 0.2816
	           </S> 0.1825
	            Map 0.0857

             MO   495686 inf (7)
	              | 0.5413
	             My 0.5413
	              , 0.5413
	           </S> 0.5413
	             us 0.5413
	             MO 0.5413
	              a 0.5413

             TA   495689   1 (7)
	             TA 0.7555
	             To 0.7555
	             us 0.5413
	    Grangeville 0.5413
	              - 0.1825
	              , 0.1825
	           </S> 0.0857

           CILL   495692   1 (8)
	             J. 0.5413
	           City 0.5413
	        Listing 0.5413
	           CILL 0.5413
	              A 0.5244
	              , 0.1825
	           </S> 0.1825
	              - 0.0857

             ID   495697   1 (9)
	             In 0.5413
	             us 0.5413
	              a 0.5413
	             ID 0.5413
	             al 0.5413
	              , 0.5244
	           site 0.5244
	           </S> 0.1825
	          <UNK> 0.0857

              .   495699   3 (6)
	             us 0.7555
	            the 0.5244
	              . 0.2816
	              , 0.2253
	           </S> 0.1825
	              : 0.0857

             F.   495701 inf (9)
	              , 0.7555
	              . 0.7555
	            For 0.7555
	              s 0.5413
	              a 0.5413
	             FL 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

         SykEvS   495705 inf (9)
	          Sykes 0.7555
	            Syk 0.5413
	      configure 0.5413
	              A 0.5097
	             C. 0.5097
	          Smith 0.2816
	        Kennedy 0.1825
	              , 0.0857
	           </S> 0.0857

              '   495711   1 (5)
	              ' 0.5413
	              , 0.5413
	             us 0.5413
	           </S> 0.5413
	            the 0.5413

        Wagtail   495713   1 (8)
	        Wagtail 0.7555
	            Ask 0.5413
	              a 0.2816
	           What 0.2816
	              ) 0.1825
	              s 0.1825
	           </S> 0.0857
	              , 0.0655

              .   495720   4 (7)
	              ' 0.7555
	            the 0.5413
	             us 0.5413
	              . 0.5097
	              ( 0.2816
	              , 0.1825
	           </S> 0.0857

      Motacilla   495723   3 (6)
	              I 0.7555
	              , 0.7555
	      Motacilla 0.5413
	              / 0.5244
	              " 0.2816
	           </S> 0.0857

          beema   495733 inf (10)
	              a 0.5413
	         beeman 0.5413
	           bema 0.5413
	      configure 0.5413
	           beem 0.5413
	           been 0.5413
	              , 0.5244
	           </S> 0.5244
	          flava 0.0857
	           alba 0.0857

          SykeS   495740 inf (6)
	           Site 0.5413
	          Sykes 0.5413
	           Syke 0.5413
	              i 0.2816
	             pp 0.2816
	            the 0.0857

              .   495745   1 (5)
	           </S> 0.5413
	              , 0.5413
	             us 0.5413
	              . 0.5413
	            the 0.5413

              A   495748   1 (7)
	           This 0.7555
	              , 0.7555
	            the 0.7555
	              A 0.7555
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

    Rottingdean   495771   2 (11)
	        working 0.7555
	              0 0.5413
	           </S> 0.5413
	              a 0.5413
	    Rottingdean 0.5413
	            the 0.5413
	         Bosham 0.5413
	              , 0.5413
	            all 0.5413
	             us 0.5244
	           your 0.0857

          2otli   495801 inf (10)
	          Hotel 0.7555
	          Kotli 0.5413
	           otli 0.5413
	              a 0.5413
	          wolfi 0.5413
	             25 0.1825
	              1 0.1825
	           </S> 0.1825
	              , 0.1825
	           2005 0.0857

           1898   495808 inf (8)
	             pp 0.7555
	           </S> 0.5413
	           1989 0.5413
	           1988 0.5413
	           1998 0.5413
	              a 0.5413
	           2005 0.5413
	            the 0.0857

         Family   495815   1 (6)
	         Family 0.7555
	              , 0.7555
	              a 0.5413
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

             TA   495826   1 (7)
	             TA 0.7555
	             To 0.7555
	             us 0.5413
	              a 0.5413
	              - 0.1825
	              , 0.1825
	           </S> 0.0857

       CILLlDzE   495829 inf (9)
	              A 0.7555
	           IDEX 0.7555
	            USA 0.5413
	             IL 0.5413
	        College 0.5413
	          Dewey 0.5244
	              , 0.1825
	           </S> 0.1825
	              - 0.0857

              .   495837   1 (5)
	            the 0.5413
	              . 0.5413
	              , 0.5413
	             us 0.5413
	           </S> 0.5413

          AvShy   495844 inf (11)
	           Avvy 0.7555
	             Av 0.7555
	          Avahi 0.7555
	            Avy 0.7555
	              C 0.5413
	              e 0.5413
	            All 0.5413
	            Red 0.5413
	            Shy 0.5244
	              - 0.1825
	           </S> 0.0857

              -   495849   1 (6)
	           </S> 0.5413
	            the 0.5413
	              , 0.5413
	             us 0.5413
	             of 0.5413
	              - 0.5413

        Wagtail   495857   1 (11)
	        Wagtail 0.5413
	             us 0.5413
	              a 0.5413
	          again 0.5413
	              ) 0.5244
	              - 0.5244
	         League 0.5097
	              , 0.5097
	       Stranger 0.4979
	           </S> 0.2816
	             by 0.0857

              .   495864   3 (6)
	             us 0.5413
	            the 0.5413
	              . 0.5097
	              ( 0.2816
	              , 0.1825
	           </S> 0.0857

      Motacilla   495867   3 (6)
	              I 0.7555
	              , 0.7555
	      Motacilla 0.5413
	              / 0.5244
	              " 0.2816
	           </S> 0.0857

 cinereocapilla   495877 inf (9)
	              a 0.5413
	        compile 0.5413
	      configure 0.5413
	              , 0.5244
	           </S> 0.5244
	       citreola 0.2253
	        cinerea 0.1825
	           alba 0.0857
	          flava 0.0857

              ,   495891   1 (4)
	             us 0.5413
	            the 0.5413
	              , 0.5413
	           </S> 0.0857

          Sa\'I   495893 inf (6)
	             pp 0.7555
	              i 0.7555
	           have 0.7555
	           SaPI 0.5413
	             Sa 0.5413
	            the 0.0857

              .   495898   1 (5)
	           </S> 0.5413
	              , 0.5413
	             us 0.5413
	              . 0.5413
	            the 0.5413

            THE   495901   1 (8)
	            THE 0.7555
	              I 0.7555
	              , 0.7555
	             us 0.5413
	            The 0.5244
	              / 0.5097
	              " 0.2816
	           </S> 0.0857

          /lava   496106 inf (10)
	           have 0.7555
	              a 0.5413
	        sources 0.5413
	          alava 0.5413
	           lava 0.5413
	          Slava 0.5413
	        parties 0.5413
	          <UNK> 0.1825
	           </S> 0.1825
	              , 0.0857

            but   496113   1 (8)
	            but 0.5413
	            and 0.5413
	              a 0.5413
	              ( 0.5413
	           </S> 0.5413
	             us 0.5097
	           with 0.1825
	            the 0.0857

 Ornithologists   496138   1 (8)
	             to 0.5413
	 Ornithologists 0.5413
	              , 0.5244
	              a 0.2816
	           </S> 0.2816
	             us 0.2816
	          those 0.2816
	            the 0.0857

      nowadaj'S   496153   1 (8)
	              a 0.5413
	       nowadays 0.5413
	        nowaday 0.5413
	            new 0.5413
	              . 0.5244
	              , 0.5244
	           </S> 0.2816
	              ' 0.0857

             is   496163   1 (6)
	           </S> 0.5413
	             iu 0.5413
	              , 0.5413
	             in 0.5413
	             is 0.5413
	          Union 0.5413

             if   496182   1 (7)
	             iu 0.5413
	              a 0.5413
	            but 0.5413
	             if 0.5413
	              , 0.5413
	              } 0.1229
	           </S> 0.0857

         occurs   496232   2 (9)
	              a 0.7555
	             us 0.5413
	       obscurus 0.5413
	         occurs 0.5413
	           Part 0.5413
	          hours 0.5413
	              - 0.5097
	              , 0.2253
	           </S> 0.0857

      Shetlands   496253   1 (9)
	           </S> 0.5413
	              a 0.5413
	            Man 0.5413
	      therefore 0.5413
	      Shetlands 0.5413
	             SC 0.5413
	          these 0.2816
	            who 0.1825
	            the 0.0857

             as   496264   1 (6)
	             as 0.5413
	          <UNK> 0.5413
	           Skye 0.5413
	             us 0.5097
	           with 0.1825
	            the 0.0857

             it   496332   1 (7)
	              , 0.5413
	             it 0.5413
	            who 0.5413
	             iu 0.5413
	              a 0.5413
	              } 0.1229
	           </S> 0.0857

         Scilly   496356   1 (11)
	         Scilly 0.7555
	         hotels 0.5413
	             us 0.5413
	           file 0.5413
	           will 0.5244
	              , 0.2816
	         behalf 0.2816
	           </S> 0.2253
	              a 0.1825
	           sale 0.1294
	            the 0.0857

              A   496379   1 (6)
	              , 0.7555
	              A 0.7555
	            the 0.7555
	             us 0.5413
	              " 0.2816
	           </S> 0.0857

         Achill   496424   1 (9)
	         Achill 0.7555
	             us 0.5413
	          while 0.5244
	           turn 0.3154
	              , 0.2816
	         Canada 0.2816
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

            co.   496432   1 (12)
	            com 0.5413
	            Co. 0.5413
	              , 0.5413
	            and 0.5413
	              a 0.5413
	             co 0.5413
	            can 0.5413
	           </S> 0.5413
	            coo 0.5413
	            cia 0.5413
	           with 0.1825
	            the 0.0857

              a   496462   1 (6)
	              , 0.5413
	             us 0.5413
	            the 0.5413
	              a 0.5413
	              } 0.1229
	           </S> 0.0857

            co.   496474   3 (9)
	            cia 0.7555
	            coo 0.7555
	             co 0.5244
	            com 0.5244
	            can 0.5244
	              , 0.2816
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

        Donegal   496478   3 (9)
	        Wicklow 0.7555
	           </S> 0.7555
	              a 0.5413
	        General 0.5413
	          world 0.5413
	        Donegal 0.5413
	        England 0.5413
	              , 0.2816
	            mar 0.0857

           1898   496502 inf (9)
	      therefore 0.5413
	              a 0.5413
	           1988 0.5413
	           </S> 0.5413
	           2005 0.5413
	            yes 0.5413
	           1998 0.5413
	           1989 0.5413
	            the 0.0857

              a   496549   1 (6)
	              a 0.5413
	              , 0.5413
	             us 0.5413
	            the 0.5413
	              } 0.1229
	           </S> 0.0857

       Ninfield   496580   2 (9)
	           well 0.7555
	           </S> 0.5413
	              a 0.5413
	            the 0.5413
	          <UNK> 0.5413
	              , 0.5413
	       Ninfield 0.5413
	             us 0.5244
	           your 0.0857

           1901   496617 inf (7)
	             pp 0.7555
	           </S> 0.5413
	           1990 0.5413
	           2005 0.5413
	              a 0.5413
	           1903 0.5413
	            the 0.0857

             In   496624   1 (7)
	              , 0.7555
	             In 0.7555
	              a 0.5413
	             us 0.5413
	              " 0.2816
	              ) 0.2816
	           </S> 0.0857

           1903   496627 inf (6)
	           1999 0.7555
	              , 0.7555
	           1993 0.5413
	              a 0.5097
	           </S> 0.2816
	            the 0.0857

           four   496632   1 (6)
	           four 0.7555
	             us 0.5413
	            for 0.5244
	              a 0.5244
	              , 0.1825
	           </S> 0.0857

          Tawny   496637   1 (9)
	          Tawny 0.7555
	          Table 0.7555
	              a 0.5413
	          young 0.5413
	          major 0.2816
	           </S> 0.1825
	              , 0.1825
	             of 0.1825
	              - 0.0857

        another   496736   1 (5)
	              I 0.5413
	              , 0.5413
	        another 0.5413
	              } 0.1229
	           </S> 0.0857

        Bexhill   496780   1 (11)
	           </S> 0.5413
	              , 0.5413
	        Bexhill 0.5413
	            the 0.5413
	              a 0.5413
	            all 0.5413
	          least 0.5413
	            1pm 0.5413
	             us 0.2816
	           will 0.2816
	           your 0.0857

              a   496790   1 (6)
	              , 0.5413
	              a 0.5413
	             us 0.5413
	            the 0.5413
	              } 0.1229
	           </S> 0.0857

         Bodmin   496854   1 (9)
	          comix 0.5413
	          <UNK> 0.5413
	          Login 0.5413
	              , 0.5413
	            the 0.5413
	           </S> 0.5413
	              a 0.5413
	         Bodmin 0.5413
	           your 0.0857

        Richard   496892   2 (5)
	              , 0.7555
	              a 0.5413
	        Richard 0.5413
	              " 0.2816
	           </S> 0.0857

         Scilly   496957   1 (11)
	         Europe 0.5413
	              a 0.5413
	         photos 0.5413
	              , 0.5413
	           </S> 0.5413
	       Cheshire 0.5413
	       Scotland 0.5413
	          South 0.5413
	         Scilly 0.5413
	           will 0.2816
	            the 0.0857

        Kentish   496968   1 (7)
	        Kentish 0.7555
	       Northern 0.5413
	           this 0.2656
	              , 0.1825
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

          Pipit   497022   1 (10)
	          Pipit 0.7555
	             we 0.5413
	         Sewage 0.5413
	              , 0.5413
	              s 0.5413
	          there 0.5413
	           Post 0.5097
	              a 0.2253
	             to 0.1825
	           </S> 0.0857

            one   497108   1 (6)
	            one 0.5413
	              , 0.5413
	             us 0.5413
	              a 0.5413
	              } 0.1229
	           </S> 0.0857

        Scill3%   497115   1 (10)
	         Scilly 0.7555
	         Scicli 0.7555
	           late 0.5413
	             us 0.5413
	          early 0.5413
	           will 0.5413
	              , 0.2816
	           </S> 0.1825
	              a 0.1825
	            the 0.0857

            May   497123   1 (7)
	           </S> 0.5413
	              , 0.5413
	            cia 0.5413
	            May 0.5413
	            may 0.5413
	              a 0.5413
	              . 0.5413

            one   497134   1 (6)
	            one 0.5413
	              a 0.5413
	              , 0.5413
	             us 0.5413
	              } 0.1229
	           </S> 0.0857

        Milcomb   497141 inf (11)
	              , 0.5413
	              a 0.5413
	          <UNK> 0.5413
	         Milcom 0.5413
	           that 0.5413
	            the 0.5413
	       Milcombe 0.5413
	           </S> 0.5413
	             us 0.2816
	           will 0.2816
	           your 0.0857

              (   497149   1 (6)
	              ( 0.2816
	              , 0.1294
	            the 0.1294
	             us 0.1294
	           </S> 0.1229
	           time 0.1040

            one   497172   1 (6)
	            one 0.5413
	             us 0.5413
	              , 0.5413
	              a 0.5413
	              } 0.1229
	           </S> 0.0857

            one   497203   1 (6)
	              a 0.5413
	              , 0.5413
	             us 0.5413
	            one 0.5413
	              } 0.1229
	           </S> 0.0857

    Littlestone   497210   1 (10)
	            the 0.5413
	          <UNK> 0.5413
	    Littlestone 0.5413
	              a 0.5413
	           that 0.5413
	              , 0.5413
	           </S> 0.5413
	      different 0.5413
	             us 0.5244
	           your 0.0857

     altogether   497240   4 (10)
	        reviews 0.5413
	       shoulder 0.5413
	       children 0.5413
	     altogether 0.5244
	          there 0.2656
	              , 0.2253
	           </S> 0.1825
	          other 0.1825
	              I 0.1825
	            the 0.0857

         Sussex   497267   4 (10)
	         Passer 0.7555
	         defeat 0.5413
	       progress 0.5413
	         Sussex 0.5244
	           used 0.5244
	          stock 0.2816
	              , 0.2816
	              a 0.1825
	           </S> 0.1825
	            the 0.0857

GradientBoost

In [ ]:
import model

GB_MODELS = {
  # name:                            model,                       data type, balanced, customized grid)
    'GB-top1.t10':                  (model.GradientBoostingModel, 'top1',    False,    dict(n_estimators=[10])),
    'GB-top1.t10.balanced':         (model.GradientBoostingModel, 'top1',    True,     dict(n_estimators=[10])),
    'GB-top1.t100':                 (model.GradientBoostingModel, 'top1',    False,    dict(n_estimators=[100])),
    'GB-top1.t100.balanced':        (model.GradientBoostingModel, 'top1',    True,     dict(n_estimators=[100])),
    'GB-top1.t200':                 (model.GradientBoostingModel, 'top1',    False,    dict(n_estimators=[200])),
    'GB-top1.t200.balanced':        (model.GradientBoostingModel, 'top1',    True,     dict(n_estimators=[200])),
    'GB-top1.t200.d4.balanced':     (model.GradientBoostingModel, 'top1',    True,     dict(n_estimators=[200], max_depth=[4])),
    'GB-top1.t200.d5.balanced':     (model.GradientBoostingModel, 'top1',    True,     dict(n_estimators=[200], max_depth=[5])),
    'GB-top1.t200.d6.balanced':     (model.GradientBoostingModel, 'top1',    True,     dict(n_estimators=[200], max_depth=[6])),
    'GB-top1.t300':                 (model.GradientBoostingModel, 'top1',    False,    dict(n_estimators=[200])),
    'GB-top1.t300.balanced':        (model.GradientBoostingModel, 'top1',    True,     dict(n_estimators=[200])),
#     'AB-top1.t10.balanced':         (model.AdaBoostModel, 'top1',    True,     dict(n_estimators=[10])),
#     'AB-top1.t10.lr5E-1, balanced': (model.AdaBoostModel, 'top1',    True,     dict(n_estimators=[10], learning_rate=[0.5])),
# #     'AB-top1.t10.sp2':       (model.RandomForestModel, 'top1',    False,    dict(n_estimators=[10], min_samples_split=[2])),
#     'AB-top1.t50':                  (model.AdaBoostModel, 'top1',    False,    dict(n_estimators=[50])),
#     'AB-top1.t50.balanced':         (model.AdaBoostModel, 'top1',    True,    dict(n_estimators=[50])),
#     'AB-top3.t10':                  (model.AdaBoostModel, 'top3',    False,    dict(n_estimators=[10])),
#     'AB-top3.t10.balanced':         (model.AdaBoostModel, 'top3',    True,     dict(n_estimators=[10])),
}
train(GB_MODELS, prefix='GB')
In [136]:
test(GB_MODELS)
                                           P@1      P@3      P@5     P@10      P@A
----------------------------------------------------------------------------------
All errors
----------------------------------------------------------------------------------
ED                               top1  0.82468  0.83899  0.84265  0.84365  0.84365
ED                               top3  0.83666  0.84897  0.85396  0.86194  0.86593
----------------------------------------------------------------------------------
GB-top1.t10                      top1  0.81603  0.83799  0.84198  0.84365  0.84365
GB-top1.t10.balanced             top1  0.81470  0.83999  0.84232  0.84365  0.84365
GB-top1.t100                     top1  0.83034  0.83999  0.84098  0.84331  0.84365
GB-top1.t100.balanced            top1  0.83067  0.84165  0.84331  0.84365  0.84365
GB-top1.t200                     top1  0.83167  0.84132  0.84232  0.84365  0.84365
GB-top1.t200.balanced            top1  0.83200  0.84198  0.84265  0.84365  0.84365
GB-top1.t300                     top1  0.83167  0.84132  0.84232  0.84365  0.84365
GB-top1.t300.balanced            top1  0.83200  0.84198  0.84265  0.84365  0.84365
----------------------------------------------------------------------------------
TP errors
----------------------------------------------------------------------------------
ED                               top1  0.44937  0.51741  0.53481  0.53956  0.53956
ED                               top3  0.50633  0.56487  0.58861  0.62500  0.64241
----------------------------------------------------------------------------------
GB-top1.t10                      top1  0.41139  0.51266  0.53165  0.53956  0.53956
GB-top1.t10.balanced             top1  0.40190  0.52215  0.53323  0.53956  0.53956
GB-top1.t100                     top1  0.47785  0.52215  0.52690  0.53797  0.53956
GB-top1.t100.balanced            top1  0.47943  0.53006  0.53797  0.53956  0.53956
GB-top1.t200                     top1  0.48418  0.52848  0.53323  0.53956  0.53956
GB-top1.t200.balanced            top1  0.48576  0.53165  0.53481  0.53956  0.53956
GB-top1.t300                     top1  0.48418  0.52848  0.53323  0.53956  0.53956
GB-top1.t300.balanced            top1  0.48576  0.53165  0.53481  0.53956  0.53956
----------------------------------------------------------------------------------
FP errors
----------------------------------------------------------------------------------
ED                               top1  0.92460  0.92460  0.92460  0.92460  0.92460
ED                               top3  0.92460  0.92460  0.92460  0.92502  0.92544
----------------------------------------------------------------------------------
GB-top1.t10                      top1  0.92376  0.92460  0.92460  0.92460  0.92460
GB-top1.t10.balanced             top1  0.92460  0.92460  0.92460  0.92460  0.92460
GB-top1.t100                     top1  0.92418  0.92460  0.92460  0.92460  0.92460
GB-top1.t100.balanced            top1  0.92418  0.92460  0.92460  0.92460  0.92460
GB-top1.t200                     top1  0.92418  0.92460  0.92460  0.92460  0.92460
GB-top1.t200.balanced            top1  0.92418  0.92460  0.92460  0.92460  0.92460
GB-top1.t300                     top1  0.92418  0.92460  0.92460  0.92460  0.92460
GB-top1.t300.balanced            top1  0.92418  0.92460  0.92460  0.92460  0.92460